forked from NASAWorldWind/WorldWindJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworldwind.jnlp
More file actions
61 lines (55 loc) · 2.52 KB
/
worldwind.jnlp
File metadata and controls
61 lines (55 loc) · 2.52 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2012 United States Government as represented by the Administrator of the
~ National Aeronautics and Space Administration.
~ All Rights Reserved.
-->
<jnlp spec="1.0+" codebase="" href="worldwind.jnlp">
<!--
Provides a description of the WorldWind SDK core library.
-->
<information>
<title>NASA WorldWind Java</title>
<vendor>NASA</vendor>
<homepage href="https://worldwind.arc.nasa.gov"/>
<offline-allowed/>
</information>
<!--
Requests a trusted application environment. The WorldWind SDK core library requires access to the network and
the local filesystem. All WorldWind JAR files are signed with a digital signature associated with NASA.
-->
<security>
<all-permissions/>
</security>
<!--
Specifies the resources required by the WorldWind SDK core library:
* WorldWind core JAR file.
* WorldWind GDAL JAR file. WorldWind must include the GDAL JAR file on its class path, even when the GDAL
native libraries are not used. We include the GDAL JAR file at the GDAL webstart site to avoid a version
conflict should the application choose to include the GDAL Web Start component.
* JOGL version 2.0 Web Start component. WorldWind depends on the JOGL library to communicate with the platform
native OpenGL libraries.
* WebView native library JAR archives for Mac OS X, Windows 32-bit and Windows 64-bit. The WebView native
libraries are required by implementations of the WorldWind BrowserBalloon class.
* Disable the use of DirectDraw by Java2D on Windows. This is necessary for correct operation of JOGL on Windows
and is accomplished by setting the sun.java2d.noddraw property to true. See the JOGL Userguide for details:
http://jogamp.org/jogl/doc/userguide/
-->
<resources>
<jar href="worldwind.jar"/>
<jar href="gdal.jar"/>
<extension name="jogl" href="jogl-all.jnlp"/>
</resources>
<resources os="Mac OS X">
<nativelib href="webview-natives-macosx.jar"/>
</resources>
<resources os="Windows">
<nativelib href="webview-natives-windows.jar"/>
<property name="sun.java2d.noddraw" value="true"/>
</resources>
<!--
Indicates that this Java Web Start file describes a component. This element is intentionally left blank, since
it is used only as an indicator.
-->
<component-desc/>
</jnlp>