-
Notifications
You must be signed in to change notification settings - Fork 0
/
josm.jnlp
27 lines (27 loc) · 1.09 KB
/
josm.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
26
27
<?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="6.0+" codebase="https://josm.openstreetmap.de/download/" href="josm.jnlp">
<information>
<title>JOSM</title>
<vendor>OpenStreetMap</vendor>
<homepage href="https://josm.openstreetmap.de"/>
<description>Java OpenStreetMap editor</description>
<description kind="one-line">JOSM</description>
<description kind="tooltip">JOSM</description>
<icon href="https://josm.openstreetmap.de/svn/trunk/images/logo.png"/>
<offline-allowed/>
<shortcut>
<desktop/>
<menu/>
</shortcut>
</information>
<security>
<all-permissions/>
</security>
<resources>
<java version="1.8+"/>
<jar href="josm-tested.jar"/>
<property name="java.util.Arrays.useLegacyMergeSort" value="true"/>
</resources>
<application-desc main-class="org.openstreetmap.josm.gui.MainApplication"/>
</jnlp>