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-08-21 04:44:40 +08:00
|
|
|
ivy {
|
|
|
|
// URL can refer to a local directory
|
|
|
|
url "./lib"
|
2015-06-11 03:11:31 +08:00
|
|
|
}
|
2015-01-14 02:08:03 +08:00
|
|
|
mavenCentral()
|
2015-06-11 03:11:31 +08:00
|
|
|
mavenLocal()
|
2014-05-30 04:55:01 +08:00
|
|
|
add(new org.apache.ivy.plugins.resolver.ChainResolver()) {
|
|
|
|
name = 'remote'
|
|
|
|
returnFirst = true
|
2011-10-19 22:34:15 +08:00
|
|
|
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
|
2014-05-30 04:55:01 +08:00
|
|
|
name = "googlecode"
|
|
|
|
addArtifactPattern "http://red5.googlecode.com/svn/repository/[artifact](-[revision]).[ext]"
|
|
|
|
addArtifactPattern "http://red5.googlecode.com/svn/repository/[organisation]/[artifact](-[revision]).[ext]"
|
|
|
|
}
|
|
|
|
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
|
|
|
|
name = "blindside-repos"
|
|
|
|
addArtifactPattern "http://blindside.googlecode.com/svn/repository/[artifact](-[revision]).[ext]"
|
|
|
|
addArtifactPattern "http://blindside.googlecode.com/svn/repository/[organisation]/[artifact](-[revision]).[ext]"
|
2015-06-23 05:27:44 +08:00
|
|
|
}
|
2011-10-19 22:34:15 +08:00
|
|
|
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
|
2014-05-30 04:55:01 +08:00
|
|
|
name = "testng_ibiblio_maven2"
|
|
|
|
m2compatible = true
|
|
|
|
addArtifactPattern "http://repo1.maven.org/maven2/[organisation]/[module]/[revision]/[artifact](-[revision])-jdk15.[ext]"
|
|
|
|
addArtifactPattern "http://repo1.maven.org/maven2/[organisation]/[artifact]/[revision]/[artifact](-[revision])-jdk15.[ext]"
|
|
|
|
}
|
|
|
|
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
|
|
|
|
name = "spring-bundles"
|
|
|
|
m2compatible = true
|
|
|
|
addArtifactPattern "http://repository.springsource.com/maven/bundles/external/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]"
|
|
|
|
addArtifactPattern "http://repository.springsource.com/maven/bundles/release/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]"
|
2014-08-05 15:44:35 +08:00
|
|
|
}
|
2015-01-14 02:08:03 +08:00
|
|
|
mavenRepo name: "jboss", urls: "http://repository.jboss.org/nexus/content/groups/public-jboss"
|
|
|
|
mavenRepo name: "sonatype-snapshot", urls: "http://oss.sonatype.org/content/repositories/snapshots"
|
|
|
|
mavenRepo name: "sonatype-releases", urls: "http://oss.sonatype.org/content/repositories/releases"
|
2014-05-30 04:55:01 +08:00
|
|
|
}
|
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
|
2016-03-25 02:54:51 +08:00
|
|
|
providedCompile 'org.apache.mina:mina-core:2.0.13@jar'
|
|
|
|
providedCompile 'org.apache.mina:mina-integration-beans:2.0.13@jar'
|
|
|
|
providedCompile 'org.apache.mina:mina-integration-jmx:2.0.13@jar'
|
2014-05-30 04:55:01 +08:00
|
|
|
|
|
|
|
// Spring
|
2016-03-25 02:54:51 +08:00
|
|
|
providedCompile 'org.springframework:spring-web:4.2.5.RELEASE@jar'
|
|
|
|
providedCompile 'org.springframework:spring-beans:4.2.5.RELEASE@jar'
|
|
|
|
providedCompile 'org.springframework:spring-context:4.2.5.RELEASE@jar'
|
|
|
|
providedCompile 'org.springframework:spring-core:4.2.5.RELEASE@jar'
|
2013-09-28 01:43:32 +08:00
|
|
|
|
2014-04-06 00:22:01 +08:00
|
|
|
// Red5
|
2016-03-31 05:18:39 +08:00
|
|
|
providedCompile 'org.red5:red5-server:1.0.7-M10@jar'
|
|
|
|
providedCompile 'org.red5:red5-server-common:1.0.7-M10@jar'
|
2014-04-06 00:22:01 +08:00
|
|
|
|
|
|
|
// Logging
|
2016-03-25 02:54:51 +08:00
|
|
|
providedCompile 'ch.qos.logback:logback-core:1.1.6@jar'
|
|
|
|
providedCompile 'ch.qos.logback:logback-classic:1.1.6@jar'
|
|
|
|
providedCompile 'org.slf4j:log4j-over-slf4j:1.7.18@jar'
|
|
|
|
providedCompile 'org.slf4j:jcl-over-slf4j:1.7.18@jar'
|
|
|
|
providedCompile 'org.slf4j:jul-to-slf4j:1.7.18@jar'
|
|
|
|
providedCompile 'org.slf4j:slf4j-api:1.7.18@jar'
|
2014-04-06 00:22:01 +08:00
|
|
|
|
|
|
|
compile "org.codehaus.jackson:jackson-core-asl:$jacksonVersion"
|
|
|
|
compile "org.codehaus.jackson:jackson-mapper-asl:$jacksonVersion"
|
|
|
|
compile "javax.servlet:com.springsource.javax.servlet.jsp.jstl:1.2.0"
|
|
|
|
compile ("org.springframework.data:spring-data-redis:$springRedisVersion") {
|
2014-05-30 04:55:01 +08:00
|
|
|
exclude group: 'commons-logging'
|
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.
|
2016-03-25 02:54:51 +08:00
|
|
|
providedCompile 'org.springframework:spring-aop:4.2.5.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'
|
2014-11-08 06:09:49 +08:00
|
|
|
providedCompile 'org.apache.commons:commons-lang3:3.2'
|
|
|
|
|
2016-03-22 02:12:30 +08:00
|
|
|
compile 'org.bigbluebutton:bbb-common-message:0.0.17-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
|
|
|
}
|