2019-01-09 22:39:12 +08:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'war'
|
|
|
|
id 'eclipse'
|
|
|
|
id 'idea'
|
|
|
|
}
|
2009-11-13 06:09:58 +08:00
|
|
|
|
2019-01-09 22:39:12 +08:00
|
|
|
version = '0.10.0'
|
2009-11-13 06:09:58 +08:00
|
|
|
jar.enabled = true
|
2019-01-09 22:39:12 +08:00
|
|
|
archivesBaseName = 'sip'
|
2009-11-13 06:09:58 +08:00
|
|
|
|
2013-09-18 02:10:52 +08:00
|
|
|
task resolveDeps(type: Copy) {
|
2010-06-19 05:45:09 +08:00
|
|
|
into('lib')
|
|
|
|
from configurations.default
|
2013-09-18 02:10:52 +08:00
|
|
|
from configurations.default.allArtifacts.file
|
2019-01-09 22:39:12 +08:00
|
|
|
doLast { println '[bbb:task] Resolved dependencies for sip application' }
|
2010-08-20 23:00:09 +08:00
|
|
|
}
|
|
|
|
|
2009-11-13 06:09:58 +08:00
|
|
|
repositories {
|
2019-01-09 22:39:12 +08:00
|
|
|
jcenter()
|
|
|
|
mavenLocal()
|
2018-11-22 05:30:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
runtime.exclude group: "org.slf4j", module: "slf4j-api"
|
|
|
|
runtime.exclude group: "org.red5", module: "red5-server"
|
|
|
|
runtime.exclude group: "org.red5", module: "red5-server-common"
|
|
|
|
runtime.exclude group: "org.red5", module: "red5-io"
|
2009-11-13 06:09:58 +08:00
|
|
|
}
|
|
|
|
|
2018-11-21 20:53:40 +08:00
|
|
|
dependencies {
|
2019-01-09 22:39:12 +08:00
|
|
|
// Servlet
|
|
|
|
providedCompile 'javax.servlet:servlet-api:2.5'
|
2016-11-23 04:45:58 +08:00
|
|
|
|
2019-01-09 22:39:12 +08:00
|
|
|
// Mina
|
|
|
|
providedCompile 'org.apache.mina:mina-core:2.0.19'
|
|
|
|
providedCompile 'org.apache.mina:mina-integration-beans:2.0.19'
|
|
|
|
providedCompile 'org.apache.mina:mina-integration-jmx:2.0.19'
|
2018-11-21 22:34:23 +08:00
|
|
|
|
2019-01-09 22:39:12 +08:00
|
|
|
// Spring
|
|
|
|
providedCompile 'org.springframework:spring-web:4.3.12.RELEASE'
|
|
|
|
providedCompile 'org.springframework:spring-beans:4.3.12.RELEASE'
|
|
|
|
providedCompile 'org.springframework:spring-context:4.3.12.RELEASE'
|
|
|
|
providedCompile 'org.springframework:spring-core:4.3.12.RELEASE'
|
2014-04-06 00:22:01 +08:00
|
|
|
|
2019-01-09 22:39:12 +08:00
|
|
|
// Red5
|
|
|
|
providedCompile 'org.red5:red5-server:1.0.10-M9'
|
|
|
|
providedCompile 'org.red5:red5-server-common:1.0.10-M9'
|
|
|
|
providedCompile 'org.red5:red5-io:1.0.10-M9'
|
2018-11-21 22:34:23 +08:00
|
|
|
|
2019-01-09 22:39:12 +08:00
|
|
|
// Logging
|
|
|
|
providedCompile 'ch.qos.logback:logback-core:1.2.3'
|
|
|
|
providedCompile 'ch.qos.logback:logback-classic:1.2.3'
|
|
|
|
providedCompile 'org.slf4j:log4j-over-slf4j:1.7.25'
|
|
|
|
providedCompile 'org.slf4j:jcl-over-slf4j:1.7.25'
|
|
|
|
providedCompile 'org.slf4j:jul-to-slf4j:1.7.25'
|
|
|
|
providedCompile 'org.slf4j:slf4j-api:1.7.25'
|
2013-02-28 08:33:53 +08:00
|
|
|
|
2019-01-09 22:39:12 +08:00
|
|
|
// Needed for the JVM shutdown hook but needs to be put into red5/lib dir.
|
|
|
|
// Otherwise we get exception on aop utils class not found.
|
|
|
|
providedCompile 'org.springframework:spring-aop:4.3.12.RELEASE'
|
|
|
|
compile 'aopalliance:aopalliance:1.0'
|
2018-11-21 20:53:40 +08:00
|
|
|
|
2019-01-09 22:39:12 +08:00
|
|
|
compile 'org.apache.commons:commons-pool2:2.6.0'
|
|
|
|
compile 'com.google.code.gson:gson:2.8.5'
|
2018-01-25 04:53:31 +08:00
|
|
|
|
2019-01-09 22:39:12 +08:00
|
|
|
providedCompile 'org.apache.commons:commons-lang3:3.7'
|
|
|
|
compile 'org.bigbluebutton:bbb-common-message_2.12:0.0.20-SNAPSHOT'
|
2009-11-13 06:09:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
war.doLast {
|
2019-01-09 22:39:12 +08:00
|
|
|
ant.unzip(src: war.archivePath, dest: "$buildDir/sip")
|
|
|
|
println '[bbb:task] WAR file ready for sip application'
|
2009-11-13 06:09:58 +08:00
|
|
|
}
|
2009-11-25 04:00:06 +08:00
|
|
|
|
2019-01-09 22:39:12 +08:00
|
|
|
task deploy {
|
|
|
|
doLast {
|
|
|
|
def red5AppsDir = '/usr/share/red5/webapps'
|
|
|
|
def sipDir = new File("${red5AppsDir}/sip")
|
|
|
|
println "Deleting $sipDir"
|
|
|
|
if (sipDir.exists()) ant.delete(dir: sipDir)
|
|
|
|
ant.mkdir(dir: sipDir)
|
|
|
|
ant.copy(todir: sipDir) {
|
|
|
|
fileset(dir: "$buildDir/sip")
|
|
|
|
}
|
|
|
|
println '[bbb:task] WAR file deployed for sip application'
|
2009-11-20 05:37:47 +08:00
|
|
|
}
|
2018-11-21 20:53:40 +08:00
|
|
|
}
|