diff options
author | Sven Gothel <[email protected]> | 2010-12-15 02:56:37 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-12-15 02:56:37 +0100 |
commit | c95bc87835319758c10f56ea2cd12093efc3c9c0 (patch) | |
tree | 463d76134f93f5ed209754d67fdfcc0c7d261441 /jnlp-files/newt.jnlp | |
parent | 74b18ab38f7606a2db17a26245c430d3051ed789 (diff) |
Fix jnlp files jar names and removed main attribute of jar ref
<module>.[win|x11|osx].jar -> <module>.os.[win|x11|osx].jar
nativewindow.os.windows.jar -> nativewindow.os.win.jar
newt.broadcomegl.jar -> newt.hw.broadcomegl.jar
newt.intelgdl.jar -> newt.hw.intelgdl.jar
removed non existing jnlp file for config gl2es12.
Diffstat (limited to 'jnlp-files/newt.jnlp')
-rw-r--r-- | jnlp-files/newt.jnlp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/jnlp-files/newt.jnlp b/jnlp-files/newt.jnlp index ce4ed6f28..4e97526d8 100644 --- a/jnlp-files/newt.jnlp +++ b/jnlp-files/newt.jnlp @@ -14,64 +14,64 @@ <all-permissions/> </security> <resources> - <jar href="newt.core.jar" main="true" /> + <jar href="newt.core.jar" /> <extension name="nativewindow" href="JOGL_CODEBASE_TAG/nativewindow.jnlp" /> </resources> <resources os="Windows" arch="x86"> - <jar href="newt.win.jar" main="true" /> + <jar href="newt.os.win.jar" /> <nativelib href = "newt-natives-windows-i586.jar" /> </resources> <resources os="Windows" arch="amd64"> - <jar href="newt.win.jar" main="true" /> + <jar href="newt.os.win.jar" /> <nativelib href = "newt-natives-windows-amd64.jar" /> </resources> <resources os="Windows" arch="x86_64"> - <jar href="newt.win.jar" main="true" /> + <jar href="newt.os.win.jar" /> <nativelib href = "newt-natives-windows-amd64.jar" /> </resources> <resources os="SunOS" arch="sparc"> - <jar href="newt.x11.jar" main="true" /> + <jar href="newt.os.x11.jar" /> <nativelib href = "newt-natives-solaris-sparc.jar" /> </resources> <resources os="SunOS" arch="sparcv9"> - <jar href="newt.x11.jar" main="true" /> + <jar href="newt.os.x11.jar" /> <nativelib href = "newt-natives-solaris-sparcv9.jar" /> </resources> <resources os="SunOS" arch="x86"> - <jar href="newt.x11.jar" main="true" /> + <jar href="newt.os.x11.jar" /> <nativelib href = "newt-natives-solaris-i586.jar" /> </resources> <resources os="SunOS" arch="amd64"> - <jar href="newt.x11.jar" main="true" /> + <jar href="newt.os.x11.jar" /> <nativelib href = "newt-natives-solaris-amd64.jar" /> </resources> <resources os="SunOS" arch="x86_64"> - <jar href="newt.x11.jar" main="true" /> + <jar href="newt.os.x11.jar" /> <nativelib href = "newt-natives-solaris-amd64.jar" /> </resources> <resources os="Linux" arch="i386"> - <jar href="newt.x11.jar" main="true" /> + <jar href="newt.os.x11.jar" /> <nativelib href = "newt-natives-linux-i586.jar" /> </resources> <resources os="Linux" arch="x86"> - <jar href="newt.x11.jar" main="true" /> + <jar href="newt.os.x11.jar" /> <nativelib href = "newt-natives-linux-i586.jar" /> </resources> <resources os="Linux" arch="amd64"> - <jar href="newt.x11.jar" main="true" /> + <jar href="newt.os.x11.jar" /> <nativelib href = "newt-natives-linux-amd64.jar" /> </resources> <resources os="Linux" arch="x86_64"> - <jar href="newt.x11.jar" main="true" /> + <jar href="newt.os.x11.jar" /> <nativelib href = "newt-natives-linux-amd64.jar" /> </resources> <resources os="Mac OS X" arch="i386"> - <jar href="newt.osx.jar" main="true" /> + <jar href="newt.os.osx.jar" /> <nativelib href = "newt-natives-macosx-universal.jar" /> </resources> <resources os="Mac OS X" arch="x86_64"> - <jar href="newt.osx.jar" main="true" /> + <jar href="newt.os.osx.jar" /> <nativelib href = "newt-natives-macosx-universal.jar" /> </resources> |