efe278ba95
git-svn-id: http://svn.bigbluebutton.org/project-bbb/trunk@63 6ac8b576-4aa1-4e98-a958-8badfeb98c9d
26 lines
461 B
Groovy
26 lines
461 B
Groovy
ant.importBuild 'build.xml'
|
|
|
|
archivesBaseName = 'bbb-deskshare-applet'
|
|
|
|
dependencies {
|
|
testRuntime 'org/testng:testng:5.8@jar'
|
|
compile project(':common')
|
|
compile 'net/jcip:jcip-annotations:1.0@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.62.jar')
|
|
}
|
|
|