2009-10-23 22:47:31 +08:00
|
|
|
usePlugin 'java'
|
|
|
|
usePlugin 'eclipse'
|
|
|
|
|
|
|
|
task copyToLib(dependsOn: configurations.default.buildArtifacts, type: Copy) {
|
|
|
|
into('lib')
|
|
|
|
from configurations.default
|
|
|
|
from configurations.default.allArtifacts*.file
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
add(new org.apache.ivy.plugins.resolver.ChainResolver()) {
|
|
|
|
name = 'remote'
|
|
|
|
returnFirst = true
|
|
|
|
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
|
|
|
|
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]"
|
|
|
|
}
|
|
|
|
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
|
|
|
|
name = "maven2-central"
|
|
|
|
m2compatible = true
|
|
|
|
addArtifactPattern "http://repo1.maven.org/maven2/[organisation]/[module]/[revision]/[artifact](-[revision]).[ext]"
|
|
|
|
addArtifactPattern "http://repo1.maven.org/maven2/[organisation]/[artifact]/[revision]/[artifact](-[revision]).[ext]"
|
2009-11-06 03:58:46 +08:00
|
|
|
}
|
2009-10-23 22:47:31 +08:00
|
|
|
}
|
|
|
|
}
|
2009-11-06 03:58:46 +08:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile ':log4j-over-slf4j:1.5.6@jar', 'spring:spring-web:2.5.6@jar', 'javax.servlet:servlet-api:2.5@jar', 'org.apache.mina:mina-core:2.0.0-M6@jar'
|
|
|
|
compile 'spring:spring-aop:2.5.6@jar', 'spring:spring-beans:2.5.6@jar', 'spring:spring-context:2.5.6@jar', 'spring:spring-core:2.5.6@jar'
|
|
|
|
compile 'org/red5:red5:0.8@jar'
|
|
|
|
compile 'commons-fileupload:commons-fileupload:1.2.1@jar', 'commons-io:commons-io:1.4@jar'
|
|
|
|
compile ':logback-core:0.9.14@jar', ':logback-classic:0.9.14@jar', ':slf4j-api:1.5.6@jar'
|
|
|
|
compile 'spring:spring-webmvc:2.5.6@jar', 'org.apache.mina:mina-integration-spring:1.1.7@jar'
|
|
|
|
compile 'org/testng:testng:5.8@jar', 'net/jcip:jcip-annotations:1.0@jar'
|
|
|
|
}
|
|
|
|
|
|
|
|
subprojects {
|
|
|
|
usePlugin 'java'
|
|
|
|
usePlugin 'eclipse'
|
2009-10-23 22:47:31 +08:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
testCompile 'org.testng:testng:5.8'
|
|
|
|
}
|
|
|
|
|
|
|
|
group = 'org.bigbluebutton'
|
|
|
|
version = '0.62'
|
|
|
|
manifest.mainAttributes(provider: 'bigbluebutton')
|
|
|
|
}
|
|
|
|
|
|
|
|
dependsOnChildren()
|