bigbluebutton-Github/bbb-api-demo/build.gradle

27 lines
712 B
Groovy
Raw Normal View History

//usePlugin 'war'
2011-06-17 15:33:06 +08:00
usePlugin 'war'
version = '0.8'
repositories {
mavenCentral()
}
2011-06-17 15:33:06 +08:00
task resolveDeps(dependsOn: configurations.default.buildArtifacts, type: Copy) {
into('lib')
from configurations.default
from configurations.default.allArtifacts*.file
}
war {
2011-06-17 15:33:06 +08:00
baseName = 'demo'
version = ''
}
dependencies {
compile group: 'commons-codec', name: 'commons-codec', version: '1.4'
compile group: 'commons-fileupload', name: 'commons-fileupload', version: '1.2'
compile group: 'commons-io', name: 'commons-io', version: '2.0'
compile group: 'commons-httpclient', name: 'commons-httpclient', version: '3.1'
2011-11-16 05:01:30 +08:00
compile group: 'commons-lang', name: 'commons-lang', version: '2.5'
2011-06-17 15:33:06 +08:00
}