master-application.jnlp 894 B

123456789101112131415161718192021222324252627
  1. <jnlp spec="1.0+" codebase="${jnlp.codebase}" href="launch.jnlp">
  2. <information>
  3. <title>${APPLICATION.TITLE}</title>
  4. <vendor>${APPLICATION.VENDOR}</vendor>
  5. <homepage href="${APPLICATION.HOMEPAGE}"/>
  6. <description>${APPLICATION.DESC}</description>
  7. <description kind="short">${APPLICATION.DESC.SHORT}</description>
  8. <!--${JNLP.ICONS}-->
  9. </information>
  10. <!--${JNLP.UPDATE}-->
  11. <!--${JNLP.SECURITY}-->
  12. <resources>
  13. <!--${JNLP.RESOURCES.RUNTIME}-->
  14. <!--${JNLP.RESOURCES.MAIN.JAR}-->
  15. <!--${JNLP.RESOURCES.JARS}-->
  16. <jar href='lib/jME3-testdata.jar'/>
  17. <jar href="lib/jME3-test.jar"/>
  18. <!--${JNLP.RESOURCES.EXTENSIONS}-->
  19. </resources>
  20. <application-desc main-class="${jnlp.main.class}">
  21. <!--${JNLP.APPLICATION.ARGS}-->
  22. </application-desc>
  23. <shortcut online="false">
  24. <desktop />
  25. <menu submenu="jMonkeyEngine 3.0"/>
  26. </shortcut>
  27. </jnlp>