2013-09-18 02:10:52 +08:00
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'war'
|
|
|
|
apply plugin: 'eclipse'
|
2009-11-13 06:09:58 +08:00
|
|
|
|
2014-08-13 19:20:10 +08:00
|
|
|
version = '0.9.0'
|
2009-11-13 06:09:58 +08:00
|
|
|
jar.enabled = true
|
|
|
|
archivesBaseName = 'sip'
|
|
|
|
|
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
|
2010-08-20 23:00:09 +08:00
|
|
|
}
|
|
|
|
|
2009-11-13 06:09:58 +08:00
|
|
|
repositories {
|
2015-01-14 02:08:03 +08:00
|
|
|
mavenCentral()
|
2016-04-01 02:53:08 +08:00
|
|
|
mavenLocal()
|
2009-11-13 06:09:58 +08:00
|
|
|
}
|
|
|
|
|
2015-01-14 02:08:03 +08:00
|
|
|
|
2010-02-20 01:59:12 +08:00
|
|
|
dependencies {
|
2016-11-23 04:45:58 +08:00
|
|
|
// Servlet
|
|
|
|
providedCompile 'javax.servlet:servlet-api:2.5@jar'
|
|
|
|
|
|
|
|
// Mina
|
2018-04-12 02:40:02 +08:00
|
|
|
providedCompile 'org.apache.mina:mina-core:2.0.17@jar'
|
|
|
|
providedCompile 'org.apache.mina:mina-integration-beans:2.0.17@jar'
|
|
|
|
providedCompile 'org.apache.mina:mina-integration-jmx:2.0.17@jar'
|
2011-11-04 04:24:50 +08:00
|
|
|
|
2014-04-06 00:22:01 +08:00
|
|
|
// Spring
|
2018-04-12 02:40:02 +08:00
|
|
|
providedCompile 'org.springframework:spring-web:4.3.12.RELEASE@jar'
|
|
|
|
providedCompile 'org.springframework:spring-beans:4.3.12.RELEASE@jar'
|
|
|
|
providedCompile 'org.springframework:spring-context:4.3.12.RELEASE@jar'
|
|
|
|
providedCompile 'org.springframework:spring-core:4.3.12.RELEASE@jar'
|
2014-04-06 00:22:01 +08:00
|
|
|
|
2018-04-12 02:40:02 +08:00
|
|
|
providedCompile 'org.red5:red5-server:1.0.10-M5@jar'
|
|
|
|
providedCompile 'org.red5:red5-server-common:1.0.10-M5@jar'
|
|
|
|
providedCompile 'org.red5:red5-io:1.0.10-M5@jar'
|
2014-12-30 02:37:35 +08:00
|
|
|
|
2016-11-23 04:45:58 +08:00
|
|
|
// Logging
|
2018-04-12 02:40:02 +08:00
|
|
|
providedCompile 'ch.qos.logback:logback-core:1.2.3@jar'
|
|
|
|
providedCompile 'ch.qos.logback:logback-classic:1.2.3@jar'
|
|
|
|
providedCompile 'org.slf4j:log4j-over-slf4j:1.7.25@jar'
|
|
|
|
providedCompile 'org.slf4j:jcl-over-slf4j:1.7.25@jar'
|
|
|
|
providedCompile 'org.slf4j:jul-to-slf4j:1.7.25@jar'
|
|
|
|
providedCompile 'org.slf4j:slf4j-api:1.7.25@jar'
|
2013-02-28 08:33:53 +08:00
|
|
|
|
2016-11-23 04:45:58 +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.
|
2018-04-12 02:40:02 +08:00
|
|
|
providedCompile 'org.springframework:spring-aop:4.3.12.RELEASE@jar'
|
2016-11-23 04:45:58 +08:00
|
|
|
compile 'aopalliance:aopalliance:1.0@jar'
|
2011-11-04 04:24:50 +08:00
|
|
|
|
2018-01-25 04:53:31 +08:00
|
|
|
//redis
|
|
|
|
compile 'redis.clients:jedis:2.9.0'
|
2018-08-06 05:36:56 +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
|
|
|
|
2018-04-12 02:40:02 +08:00
|
|
|
compile 'org.apache.commons:commons-lang3:3.7'
|
2018-01-25 04:53:31 +08:00
|
|
|
compile 'org.bigbluebutton:bbb-common-message_2.12:0.0.19-SNAPSHOT'
|
2013-02-28 08:33:53 +08:00
|
|
|
|
2018-08-06 05:36:56 +08:00
|
|
|
// Testing
|
|
|
|
testRuntime 'org.easymock:easymock:3.6@jar'
|
2010-08-20 23:00:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useTestNG()
|
2009-11-13 06:09:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
war.doLast {
|
|
|
|
ant.unzip(src: war.archivePath, dest: "$buildDir/sip")
|
|
|
|
}
|
2009-11-25 04:00:06 +08:00
|
|
|
|
|
|
|
|
|
|
|
task deploy() << {
|
2009-11-20 05:37:47 +08:00
|
|
|
def red5AppsDir = '/usr/share/red5/webapps'
|
|
|
|
def sipDir = new File("${red5AppsDir}/sip")
|
|
|
|
println "Deleting $sipDir"
|
2010-03-30 02:19:22 +08:00
|
|
|
if (sipDir.exists()) ant.delete(dir: sipDir)
|
2009-11-20 05:37:47 +08:00
|
|
|
ant.mkdir(dir: sipDir)
|
|
|
|
ant.copy(todir: sipDir) {
|
|
|
|
fileset(dir: "$buildDir/sip")
|
|
|
|
}
|
|
|
|
}
|
2009-11-25 04:00:06 +08:00
|
|
|
|