You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.2 KiB
44 lines
1.2 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>CFBundleName</key>
|
|
<string>${application.title}</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>${main.class}</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>100.0</string>
|
|
<key>CFBundleAllowMixedLocalizations</key>
|
|
<string>true</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>JavaApplicationStub</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>GenericApp.icns</string>
|
|
<key>Java</key>
|
|
<dict>
|
|
<key>VMOptions</key>
|
|
<string>${run.jvmargs}</string>
|
|
<key>WorkingDirectory</key>
|
|
<string>$APP_PACKAGE/Contents/Resources/Java</string>
|
|
<key>MainClass</key>
|
|
<string>${main.class}</string>
|
|
<key>JVMVersion</key>
|
|
<string>1.5+</string>
|
|
<key>ClassPath</key>
|
|
<string>$JAVAROOT/${application.title}.jar</string>
|
|
<key>Properties</key>
|
|
<dict>
|
|
<key>apple.laf.useScreenMenuBar</key>
|
|
<string>true</string>
|
|
</dict>
|
|
</dict>
|
|
</dict>
|
|
</plist>
|
|
|