master-application.jnlp 861 B

1234567891011121314151617181920212223242526
  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/jme3testdata.jar'/>
  17. <!--${JNLP.RESOURCES.EXTENSIONS}-->
  18. </resources>
  19. <application-desc main-class="${jnlp.main.class}">
  20. <!--${JNLP.APPLICATION.ARGS}-->
  21. </application-desc>
  22. <shortcut online="false">
  23. <desktop />
  24. <menu submenu="jMonkeyEngine 3.0"/>
  25. </shortcut>
  26. </jnlp>