bigbluebutton-Github/bbb-screenshare/jws/webstart/build.gradle

28 lines
692 B
Groovy
Raw Normal View History

2016-02-11 03:53:01 +08:00
apply plugin: 'java'
apply plugin: 'eclipse'
sourceCompatibility=1.7
targetCompatibility=1.7
2016-02-11 03:53:01 +08:00
version = '0.0.1'
archivesBaseName = 'javacv-screenshare'
repositories {
flatDir name: 'localRepo', dirs: "./lib"
}
dependencies {
// compile ":javacpp:@jar"
2016-02-11 03:53:01 +08:00
compile ":ffmpeg:@jar"
// compile ":javacv:@jar"
2016-02-11 03:53:01 +08:00
}
jar {
manifest.mainAttributes("Permissions": "all-permissions")
manifest.mainAttributes("Codebase": "*")
manifest.mainAttributes("Application-Name": "BigBlueButton Screenshare")
manifest.mainAttributes("Application-Library-Allowable-Codebase": "*")
manifest.mainAttributes("Caller-Allowable-Codebase": "*")
manifest.mainAttributes("Trusted-Only": "true")
}