summaryrefslogtreecommitdiff
path: root/BKUWebStart/src/main/jnlp/template.xml
diff options
context:
space:
mode:
Diffstat (limited to 'BKUWebStart/src/main/jnlp/template.xml')
-rw-r--r--BKUWebStart/src/main/jnlp/template.xml37
1 files changed, 37 insertions, 0 deletions
diff --git a/BKUWebStart/src/main/jnlp/template.xml b/BKUWebStart/src/main/jnlp/template.xml
new file mode 100644
index 00000000..0a89a036
--- /dev/null
+++ b/BKUWebStart/src/main/jnlp/template.xml
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="utf-8"?>
+<jnlp spec="$jnlpspec" codebase="$project.Url" href="$outputFile">
+ <information>
+ <title>$project.Name</title>
+ <vendor>$project.Organization.Name</vendor>
+ <homepage href="$project.Url"/>
+ <description>$project.Description</description>
+ <icon href="lib/splash.png" kind="splash"/>
+ <icon href="lib/logo.png" kind="default"/>
+ <shortcut online="false">
+ <desktop/>
+ <menu submenu="MOCCA"/>
+ </shortcut>
+
+#if($offlineAllowed)
+ <offline-allowed/>
+#end
+
+ </information>
+
+
+#if($allPermissions)
+ <security>
+ <all-permissions/>
+ </security>
+#end
+
+ <resources>
+ <!-- initial-heap-size="32m" max-heap-size="128m" -->
+ <j2se version="$j2seVersion"/>
+ <property name="jnlp.versionEnabled" value="true"/>
+
+ $dependencies
+
+ </resources>
+ <application-desc main-class="$mainClass"/>
+</jnlp> \ No newline at end of file