2009-10-23 22:47:31 +08:00
|
|
|
ant.importBuild 'build.xml'
|
|
|
|
|
2010-03-05 23:12:30 +08:00
|
|
|
version = '0.64'
|
2009-10-23 22:47:31 +08:00
|
|
|
archivesBaseName = 'bbb-deskshare-applet'
|
|
|
|
|
|
|
|
dependencies {
|
2009-11-06 04:28:53 +08:00
|
|
|
testRuntime 'org/testng:testng:5.8@jar'
|
2009-10-23 22:47:31 +08:00
|
|
|
compile project(':common')
|
|
|
|
compile 'net/jcip:jcip-annotations:1.0@jar'
|
2010-03-03 01:44:35 +08:00
|
|
|
compile 'com/sun/java:plugin:1.6.0_16@jar'
|
2009-10-23 22:47:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
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.
|
|
|
|
**/'''
|
|
|
|
|
2010-03-05 23:12:30 +08:00
|
|
|
jar.merge('../common/build/libs/bbb-deskshare-common-0.64.jar')
|
2009-10-23 22:47:31 +08:00
|
|
|
}
|
|
|
|
|