diff options
author | Sven Gothel <[email protected]> | 2014-01-25 14:05:42 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-01-25 14:05:42 +0100 |
commit | b8a515bbfa9bc26aaf5291f065f6860cd5ddee11 (patch) | |
tree | a8e012a42ab64108c9285b2929d67bb38c9cc8c2 | |
parent | f1090c3db5e7647b0a1e1fef2cda5f9c424a2fb8 (diff) |
Jar Manifest: Seal all packages ; Each jar is 'standalone' as required by 'sealed packages': gluegen-rt.jar < gluegen-rt-android.jar < gluegen.jar
-rwxr-xr-x | make/Manifest | 6 | ||||
-rwxr-xr-x | make/Manifest-rt | 3 | ||||
-rwxr-xr-x | make/Manifest-rt-android | 3 | ||||
-rw-r--r-- | make/build.xml | 2 |
4 files changed, 12 insertions, 2 deletions
diff --git a/make/Manifest b/make/Manifest index fc4501b..cab8805 100755 --- a/make/Manifest +++ b/make/Manifest @@ -15,3 +15,9 @@ Extension-Name: com.jogamp.gluegen Main-Class: com.jogamp.gluegen.GlueGen Class-Path: antlr.jar +Name: jogamp/common/ +Sealed: true + +Name: com/jogamp/common/ +Sealed: true + diff --git a/make/Manifest-rt b/make/Manifest-rt index 2972793..4a76c0c 100755 --- a/make/Manifest-rt +++ b/make/Manifest-rt @@ -20,3 +20,6 @@ Application-Library-Allowable-Codebase: * Name: jogamp/common/ Sealed: true +Name: com/jogamp/common/ +Sealed: true + diff --git a/make/Manifest-rt-android b/make/Manifest-rt-android index 77506d4..bf5f123 100755 --- a/make/Manifest-rt-android +++ b/make/Manifest-rt-android @@ -20,3 +20,6 @@ Application-Library-Allowable-Codebase: * Name: jogamp/common/ Sealed: true +Name: com/jogamp/common/ +Sealed: true + diff --git a/make/build.xml b/make/build.xml index 55ef270..550fe4e 100644 --- a/make/build.xml +++ b/make/build.xml @@ -759,7 +759,6 @@ <fileset dir="${classes}"> <include name="**/*.class" /> <exclude name="${jogamp-android-launcher.classes}" /> - <exclude name="${java.part.android}" /> </fileset> <fileset dir="resources/assets"> <include name="**" /> @@ -860,7 +859,6 @@ <include name="com/jogamp/common/**" /> <include name="jogamp/common/**" /> <include name="${java.part.android}" /> - <exclude name="${java.part.awt}" /> <exclude name="${jogamp-android-launcher.classes}" /> </fileset> <fileset dir="resources/assets"> |