bigbluebutton-Github/bbb-screenshare/jws/webstart/build.gradle
Richard Alam 86ec20ae6a - setup all JavaCV jar files
- make the window not movable when sharing because ffmpeg doesn't adjust x.y coordinates after
   sharing has started
2016-02-11 19:50:23 +00:00

28 lines
688 B
Groovy
Executable File

apply plugin: 'java'
apply plugin: 'eclipse'
sourceCompatibility=1.6
targetCompatibility=1.6
version = '0.0.1'
archivesBaseName = 'javacv-screenshare'
repositories {
flatDir name: 'localRepo', dirs: "./lib"
}
dependencies {
compile ":javacpp:@jar"
compile ":ffmpeg:@jar"
compile ":javacv:@jar"
}
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")
}