bigbluebutton-Github/bbb-voice/build.gradle

83 lines
2.3 KiB
Groovy
Raw Normal View History

apply plugin: 'java'
apply plugin: 'war'
apply plugin: 'eclipse'
version = '0.9.0'
jar.enabled = true
archivesBaseName = 'sip'
task resolveDeps(type: Copy) {
into('lib')
from configurations.default
from configurations.default.allArtifacts.file
2010-08-20 23:00:09 +08:00
}
repositories {
mavenCentral()
mavenLocal()
}
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
// Spring
providedCompile 'org.springframework:spring-web:4.3.20.RELEASE@jar'
providedCompile 'org.springframework:spring-beans:4.3.20.RELEASE@jar'
providedCompile 'org.springframework:spring-context:4.3.20.RELEASE@jar'
providedCompile 'org.springframework:spring-core:4.3.20.RELEASE@jar'
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'
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'
2018-01-25 04:53:31 +08:00
//redis
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
compile 'org.apache.commons:commons-lang3:3.8.1'
compile 'org.bigbluebutton:bbb-common-message_2.12:0.0.20-SNAPSHOT'
// Testing
testRuntime 'org.easymock:easymock:3.6@jar'
2010-08-20 23:00:09 +08:00
}
test {
useTestNG()
}
war.doLast {
ant.unzip(src: war.archivePath, dest: "$buildDir/sip")
}
task deploy() << {
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")
}
}