2016-02-11 03:53:01 +08:00
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'eclipse'
|
|
|
|
|
2016-06-03 04:56:52 +08:00
|
|
|
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 {
|
2016-06-16 04:11:59 +08:00
|
|
|
// compile ":javacpp:@jar"
|
2016-02-11 03:53:01 +08:00
|
|
|
compile ":ffmpeg:@jar"
|
2016-06-03 04:56:52 +08:00
|
|
|
// 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")
|
|
|
|
}
|