- addd necessary manifest attributes to fix java security dialog popups

This commit is contained in:
Richard Alam 2013-10-18 19:24:11 +00:00
parent a64dd3736c
commit 24809481a6

View File

@ -30,6 +30,10 @@ jar.doFirst {
}
jar {
manifest.mainAttributes("Trusted-library": "true")
manifest.mainAttributes("Permissions": "all-permissions")
manifest.mainAttributes("Codebase": "*")
manifest.mainAttributes("Application-Name": "BigBlueButton Deskshare Applet")
manifest.mainAttributes("Application-Library-Allowable-Codebase": "*")
manifest.mainAttributes("Caller-Allowable-Codebase": "*")
manifest.mainAttributes("Trusted-Only": "true")
}