master-application.jnlp 764 B

12345678910111213141516171819202122
  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. <!--${JNLP.OFFLINE.ALLOWED}-->
  10. </information>
  11. <!--${JNLP.SECURITY}-->
  12. <resources>
  13. <!--${JNLP.RESOURCES.RUNTIME}-->
  14. <!--${JNLP.RESOURCES.MAIN.JAR}-->
  15. <!--${JNLP.RESOURCES.JARS}-->
  16. <jar href='lib/assets.jar'/>
  17. <!--${JNLP.RESOURCES.EXTENSIONS}-->
  18. </resources>
  19. <application-desc main-class="${jnlp.main.class}">
  20. <!--${JNLP.APPLICATION.ARGS}-->
  21. </application-desc>
  22. </jnlp>