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

30 lines
743 B
Groovy
Raw Normal View History

2014-03-30 04:39:03 +08:00
apply plugin: 'war'
version = '0.9.0'
repositories {
mavenCentral()
}
2011-06-17 15:33:06 +08:00
2014-03-30 04:39:03 +08:00
task resolveDeps(type: Copy) {
into('lib')
from configurations.default
2014-03-30 04:39:03 +08:00
from configurations.default.allArtifacts.file
}
2014-03-30 04:39:03 +08:00
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'
compile 'com.google.code.gson:gson:2.2.2'
compile 'org.expressme:JOpenId:1.08'
2011-06-17 15:33:06 +08:00
}