diff options
author | clemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2009-06-12 12:42:05 +0000 |
---|---|---|
committer | clemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2009-06-12 12:42:05 +0000 |
commit | 61366ba8efcc0cf3d36438e9ee26228e7bc66174 (patch) | |
tree | 707016a32d57ab734396b24675659a92f2317278 /BKUOnline/src/main/jnlp/template.xml | |
parent | 0d5e54423b3cbc6c16b28800890c6ee5a5aacf75 (diff) | |
download | mocca-61366ba8efcc0cf3d36438e9ee26228e7bc66174.tar.gz mocca-61366ba8efcc0cf3d36438e9ee26228e7bc66174.tar.bz2 mocca-61366ba8efcc0cf3d36438e9ee26228e7bc66174.zip |
BKU Web Start
git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@361 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
Diffstat (limited to 'BKUOnline/src/main/jnlp/template.xml')
-rw-r--r-- | BKUOnline/src/main/jnlp/template.xml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/BKUOnline/src/main/jnlp/template.xml b/BKUOnline/src/main/jnlp/template.xml new file mode 100644 index 00000000..c8291f61 --- /dev/null +++ b/BKUOnline/src/main/jnlp/template.xml @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="utf-8"?> +<jnlp spec="$jnlpspec" codebase="$$codebase" context="$$context" href="$$name"> + <information> + <title>$project.Name</title> + <vendor>$project.Organization.Name</vendor> + <homepage href="$project.Url"/> + <description>$project.Description</description> + <description kind="short">$project.Description</description> + <icon href="lib/logo.png" kind="default"/> + <icon href="lib/splash.png" kind="splash"/> + <shortcut online="false"> + <desktop/> + <menu submenu="Bürgerkarte"/> + </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 |