2013-09-18 02:10:52 +08:00
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'war'
|
|
|
|
apply plugin: 'eclipse'
|
2015-01-31 07:01:48 +08:00
|
|
|
apply plugin: 'idea'
|
2009-12-01 01:35:37 +08:00
|
|
|
|
2014-08-13 19:20:10 +08:00
|
|
|
version = '0.9.0'
|
2009-12-01 01:35:37 +08:00
|
|
|
jar.enabled = true
|
2009-12-01 04:18:53 +08:00
|
|
|
|
|
|
|
def appName = 'bigbluebutton'
|
|
|
|
|
|
|
|
archivesBaseName = appName
|
2009-12-01 01:35:37 +08:00
|
|
|
|
2013-09-18 02:10:52 +08:00
|
|
|
task resolveDeps(type: Copy) {
|
2009-12-01 01:35:37 +08:00
|
|
|
into('lib')
|
|
|
|
from configurations.default
|
2013-09-18 02:10:52 +08:00
|
|
|
from configurations.default.allArtifacts.file
|
2009-12-01 01:35:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2015-01-14 02:08:03 +08:00
|
|
|
mavenCentral()
|
2015-06-11 03:11:31 +08:00
|
|
|
mavenLocal()
|
2009-12-01 01:35:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2014-05-30 04:55:01 +08:00
|
|
|
// Servlet
|
|
|
|
providedCompile 'javax.servlet:servlet-api:2.5@jar'
|
|
|
|
|
|
|
|
// Mina
|
2018-04-12 02:38:11 +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'
|
2014-05-30 04:55:01 +08:00
|
|
|
|
|
|
|
// Spring
|
2018-04-12 02:38:11 +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.13.RELEASE@jar'
|
2013-09-28 01:43:32 +08:00
|
|
|
|
2014-04-06 00:22:01 +08:00
|
|
|
// Red5
|
2018-04-12 02:38:11 +08:00
|
|
|
providedCompile 'org.red5:red5-server:1.0.10-M5@jar'
|
|
|
|
providedCompile 'org.red5:red5-server-common:1.0.10-M5@jar'
|
2014-04-06 00:22:01 +08:00
|
|
|
|
|
|
|
// Logging
|
2018-04-12 02:38:11 +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'
|
2014-04-06 00:22:01 +08:00
|
|
|
|
2014-05-30 04:55:01 +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:38:11 +08:00
|
|
|
providedCompile 'org.springframework:spring-aop:4.3.12.RELEASE@jar'
|
2014-05-30 04:55:01 +08:00
|
|
|
compile 'aopalliance:aopalliance:1.0@jar'
|
2014-04-06 00:22:01 +08:00
|
|
|
|
|
|
|
// Testing
|
|
|
|
compile 'org.easymock:easymock:2.4@jar'
|
2011-05-29 01:57:09 +08:00
|
|
|
|
2014-05-30 04:55:01 +08:00
|
|
|
//redis
|
2015-08-19 05:51:48 +08:00
|
|
|
compile "redis.clients:jedis:2.7.2"
|
|
|
|
compile 'org.apache.commons:commons-pool2:2.3'
|
2012-10-31 00:27:19 +08:00
|
|
|
|
2016-01-27 23:44:22 +08:00
|
|
|
compile 'com.google.code.gson:gson:2.5'
|
2018-04-12 02:38:11 +08:00
|
|
|
providedCompile 'org.apache.commons:commons-lang3:3.7'
|
2014-11-08 06:09:49 +08:00
|
|
|
|
2017-05-16 03:23:54 +08:00
|
|
|
compile 'org.bigbluebutton:bbb-common-message_2.12:0.0.19-SNAPSHOT'
|
|
|
|
compile 'org.bigbluebutton:bbb-apps-common_2.12:0.0.1-SNAPSHOT'
|
2009-12-01 01:35:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
2014-05-30 04:55:01 +08:00
|
|
|
useTestNG()
|
2009-12-01 01:35:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
war.doLast {
|
2009-12-01 04:18:53 +08:00
|
|
|
ant.unzip(src: war.archivePath, dest: "$buildDir/$appName")
|
2009-12-01 01:35:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
task deploy() << {
|
2014-05-30 04:55:01 +08:00
|
|
|
def red5AppsDir = '/usr/share/red5/webapps'
|
|
|
|
def bbbDir = new File("${red5AppsDir}/$appName")
|
|
|
|
ant.delete(dir: bbbDir)
|
|
|
|
ant.mkdir(dir: bbbDir)
|
|
|
|
ant.copy(todir: bbbDir) {
|
|
|
|
fileset(dir: "$buildDir/$appName")
|
|
|
|
}
|
2009-12-01 01:35:37 +08:00
|
|
|
}
|