source: josm/trunk/josm-latest.jnlp @ 15128

Last change on this file since 15128 was 15128, checked in by Don-vip, 5 years ago

see #16047, see #16498, see #17516, fix #17723

  • add java.scripting module when loading JOSM with Java 11+
  • detect java 12/13 on Linux
File size: 2.0 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE jnlp PUBLIC "-//Sun Microsystems, Inc//DTD JNLP Descriptor 6.0//EN" "http://java.sun.com/dtd/JNLP-6.0.dtd">
3<jnlp spec="6.0+" codebase="https://josm.openstreetmap.de/download/" href="josm-latest.jnlp">
4    <information>
5        <title>JOSM (development version)</title>
6        <vendor>OpenStreetMap</vendor> 
7        <homepage href="https://josm.openstreetmap.de"/> 
8        <description>Java OpenStreetMap editor</description>
9        <description kind="one-line">JOSM</description>
10        <description kind="tooltip">JOSM</description>
11        <icon href="https://josm.openstreetmap.de/logo.png" width="256" height="256"/>
12        <icon href="https://josm.openstreetmap.de/logo64.png" width="64" height="64" kind="shortcut"/>
13        <offline-allowed/>
14        <shortcut>
15            <desktop/>
16            <menu/>
17        </shortcut>
18    </information>
19    <security>
20        <all-permissions/>
21    </security>
22    <resources>
23        <java version="1.8+" max-heap-size="2048m" java-vm-args="--add-modules=java.scripting --add-exports=java.base/sun.security.util=ALL-UNNAMED --add-exports=java.base/sun.security.x509=ALL-UNNAMED --add-exports=java.desktop/com.apple.eawt=ALL-UNNAMED --add-exports=java.desktop/com.sun.imageio.spi=ALL-UNNAMED --add-exports=javafx.graphics/com.sun.javafx.application=ALL-UNNAMED --add-exports=jdk.deploy/com.sun.deploy.config=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.nio=ALL-UNNAMED --add-opens=java.base/jdk.internal.loader=ALL-UNNAMED --add-opens=java.base/jdk.internal.ref=ALL-UNNAMED --add-opens=java.desktop/javax.imageio.spi=ALL-UNNAMED --add-opens=java.desktop/javax.swing.text.html=ALL-UNNAMED --add-opens=java.prefs/java.util.prefs=ALL-UNNAMED"/>
24        <jar href="josm-latest.jar"/>
25        <property name="java.util.Arrays.useLegacyMergeSort" value="true"/>
26    </resources>
27    <application-desc main-class="org.openstreetmap.josm.gui.MainApplication"/>
28</jnlp>
Note: See TracBrowser for help on using the repository browser.