forked from thorstenv/PoCoTo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
master.jnlp
25 lines (25 loc) · 1.06 KB
/
master.jnlp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE jnlp PUBLIC "-//Sun Microsystems, Inc//DTD JNLP Descriptor 6.0//EN" "http://java.sun.com/dtd/JNLP-6.0.dtd">
<jnlp spec="1.0+" codebase="$$codebase">
<information>
<title>${app.title}</title>
<vendor>${app.title} vendor</vendor>
<description>${app.name} application</description>
<icon href="${app.icon}"/>
</information>
<security><all-permissions/></security>
<resources>
<!-- The following property is needed when running with unsigned jars: -->
<property name="netbeans.jnlp.fixPolicy" value="${netbeans.jnlp.fixPolicy}"/>
<extension name='branding' href='branding.jnlp' />
<!-- The following line will be replaced with an automatically generated list of resources: -->
<!--${jnlp.resources}-->
</resources>
<resources os="Mac OS X">
<property name="netbeans.user" value="${user.home}/Library/Application Support/${app.name}"/>
</resources>
<application-desc>
<argument>--branding</argument>
<argument>${branding.token}</argument>
</application-desc>
</jnlp>