ShowProps.jnlp

Download ShowProps.jnlp

 1: <?xml version="1.0" encoding="UTF-8" ?>
 2: <!-- Basic jnlp file.
 3:   For details see http://docs.oracle.com/javase/7/docs/technotes/guides/javaws/
 4:   and http://docs.oracle.com/javase/7/docs/technotes/guides/javaws/developersguide/syntax.html
 5: -->
 6: <jnlp spec="6.0+" codebase="https://wpollock.com/AJava/" href="ShowProps.jnlp"
 7:    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 8:    xsi:noNamespaceSchemaLocation="jnlp-schema.xsd">
 9:   <information>
10:     <title>ShowProps</title>
11:     <vendor>Wayne Pollock, Tampa Florida USA</vendor>
12:     <homepage href="https://wpollock.com/Cop2805C.htm" />
13:     <description>A WebStart app to list system properties and environment variables</description>
14:     <!-- icon href="Demo_icon32.png" width="32" height="32" /-->
15:     <!-- icon href="Demo_icon64.png" width="64" height="64" /-->
16:     <offline-allowed />
17:   </information>
18:   <!-- If security is omitted, run in a secure sandbox (no access to environment):
19:   <security>
20:      <all-permissions/>
21:   </security>
22:   -->
23:   <update check="background" policy="prompt-update" />
24:   <resources>
25:      <java version="1.8.0+" />
26:      <jar href="https://wpollock.com/AJava/ShowProps.jar" />
27:   </resources>
28:   <application-desc main-class="ShowProps" name="ShowProps" />
29: </jnlp>