123456789101112131415161718192021222324252627 |
- <jnlp spec="1.0+" codebase="${jnlp.codebase}" href="launch.jnlp">
- <information>
- <title>${APPLICATION.TITLE}</title>
- <vendor>${APPLICATION.VENDOR}</vendor>
- <homepage href="${APPLICATION.HOMEPAGE}"/>
- <description>${APPLICATION.DESC}</description>
- <description kind="short">${APPLICATION.DESC.SHORT}</description>
- <!--${JNLP.ICONS}-->
- </information>
- <!--${JNLP.UPDATE}-->
- <!--${JNLP.SECURITY}-->
- <resources>
- <!--${JNLP.RESOURCES.RUNTIME}-->
- <!--${JNLP.RESOURCES.MAIN.JAR}-->
- <!--${JNLP.RESOURCES.JARS}-->
- <jar href='lib/jME3-testdata.jar'/>
- <jar href="lib/jME3-test.jar"/>
- <!--${JNLP.RESOURCES.EXTENSIONS}-->
- </resources>
- <application-desc main-class="${jnlp.main.class}">
- <!--${JNLP.APPLICATION.ARGS}-->
- </application-desc>
- <shortcut online="false">
- <desktop />
- <menu submenu="jMonkeyEngine 3.0"/>
- </shortcut>
- </jnlp>
|