bigbluebutton-Github/deskshare/applet/build.gradle
Richard Alam b024b4ecae - upgrade version numbers
git-svn-id: http://svn.bigbluebutton.org/project-bbb/trunk@79 6ac8b576-4aa1-4e98-a958-8badfeb98c9d
2010-03-05 15:12:30 +00:00

28 lines
522 B
Groovy

ant.importBuild 'build.xml'
version = '0.64'
archivesBaseName = 'bbb-deskshare-applet'
dependencies {
testRuntime 'org/testng:testng:5.8@jar'
compile project(':common')
compile 'net/jcip:jcip-annotations:1.0@jar'
compile 'com/sun/java:plugin:1.6.0_16@jar'
}
test {
useTestNG()
}
jar.doFirst {
println '''
/**
* Combine the common classes into the applet's jar because we
* do not want to sign and manage 2 jar files.
**/'''
jar.merge('../common/build/libs/bbb-deskshare-common-0.64.jar')
}