adding the java webstart kicker

This commit is contained in:
dickelbeck 2008-03-18 21:21:24 +00:00
parent e6717b3f71
commit 23835ffbe7
1 changed files with 25 additions and 0 deletions

25
freeroute.jnlp Normal file
View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- JNLP File for Freeroute -->
<jnlp
spec="6.0+"
codebase="http://freerouting.net/java"
href="freeroute.jnlp">
<information>
<title>Routing Application</title>
<vendor>FreeRouting</vendor>
<description>Printed Circuit Board Routing Application</description>
<homepage href="http://www.freerouting.net"/>
<shortcut online="true"/>
</information>
<resources>
<jar download="eager" href="router.jar"/>
<extension href="help.jnlp" name="Java Help"/>
<java version="1.6+"/>
</resources>
<application-desc main-class="gui.MainApplication">
<argument>-webstart</argument>
<argument>-Xincgc</argument>
<argument>-Xmx512m</argument>
</application-desc>
</jnlp>