diff options
author | clemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2009-05-12 14:46:41 +0000 |
---|---|---|
committer | clemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2009-05-12 14:46:41 +0000 |
commit | 4af6912e43237c3678f05e30c69385481f42ae76 (patch) | |
tree | c81a087bc7b1149dd2ebc590fc2078a29c61a6e2 /BKUWebStart/src/main/jnlp/template.xml | |
parent | a8af530c64d4612f5a15d66ce71bbfd1c3579ea0 (diff) | |
download | mocca-4af6912e43237c3678f05e30c69385481f42ae76.tar.gz mocca-4af6912e43237c3678f05e30c69385481f42ae76.tar.bz2 mocca-4af6912e43237c3678f05e30c69385481f42ae76.zip |
bku web start
git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@354 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
Diffstat (limited to 'BKUWebStart/src/main/jnlp/template.xml')
-rw-r--r-- | BKUWebStart/src/main/jnlp/template.xml | 37 |
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 |