This repository has been archived by the owner on Feb 4, 2023. It is now read-only.
forked from liamsharp/universalJavaApplicationStubDemo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Info.plist
70 lines (68 loc) · 2.26 KB
/
Info.plist
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
62
63
64
65
66
67
68
69
70
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
<plist version="0.9">
<dict>
<key>CFBundleName</key>
<string>UniversalJavaApplicationStubDemo</string>
<key>CFBundleIdentifier</key>
<string>com.github.liamsharp</string>
<key>CFBundleVersion</key>
<string>8.2.0</string>
<key>CFBundleShortVersionString</key>
<string>8.2.0</string>
<key>CFBundleAllowMixedLocalizations</key>
<string>true</string>
<key>CFBundleExecutable</key>
<string>UniversalJavaApplicationStub</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleIconFile</key>
<string>icon</string>
<key>NSHighResolutionCapable</key>
<string>true</string><key>NSAppleEventsUsageDescription</key>
<string>There was an error while launching the application. Please click OK to display a dialog with more information or cancel and view the syslog for details.</string>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeName</key>
<string>Budle Type Name</string>
<key>CFBundleTypeExtensions</key>
<array>
<string>txt</string>
</array>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>LSTypeIsPackage</key>
<string>true</string>
</dict>
</array>
<key>JavaX</key>
<dict>
<key>MainClass</key>
<string>com.github.liamsharp.SwingApp</string>
<key>JVMVersion</key>
<string>1.7;1.8*</string>
<key>ClassPath</key>
<array>
<string>$JAVAROOT/UniversalJavaApplicationStubDemo-1.0-SNAPSHOT.jar</string>
</array>
<key>SplashFile</key>
<string>SplashScreen_Mac.png</string>
<key>VMOptions</key>
<string>-Xmx1g</string>
<key>Arguments</key>
<string>-enableassertions "a second argument with spaces"</string>
<!-- <array>
<string>-full</string>
<string>-manager</string>
<string>"-slide-show left"</string>
</array> -->
</dict>
</dict>
</plist>