Last active
August 29, 2015 14:05
-
-
Save kinwahlai/e9db7807aa142e10db66 to your computer and use it in GitHub Desktop.
Enable other JVM capabilities in Mac with
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>CFBundleDevelopmentRegion</key> | |
<string>English</string> | |
<key>CFBundleExecutable</key> | |
<string>libjli.dylib</string> | |
<key>CFBundleGetInfoString</key> | |
<string>Java SE 1.7.0_60</string> | |
<key>CFBundleIdentifier</key> | |
<string>com.oracle.java.7u60.jdk</string> | |
<key>CFBundleInfoDictionaryVersion</key> | |
<string>7.0</string> | |
<key>CFBundleName</key> | |
<string>Java SE 7</string> | |
<key>CFBundlePackageType</key> | |
<string>BNDL</string> | |
<key>CFBundleShortVersionString</key> | |
<string>1.0</string> | |
<key>CFBundleSignature</key> | |
<string>????</string> | |
<key>CFBundleVersion</key> | |
<string>1.7.0_60</string> | |
<key>JavaVM</key> | |
<dict> | |
<key>JVMCapabilities</key> | |
<array> | |
<string>JNI</string> | |
<string>BundledApp</string> | |
<string>WebStart</string> | |
<string>Applets</string> | |
<string>CommandLine</string> | |
</array> | |
<key>JVMMinimumFrameworkVersion</key> | |
<string>13.2.9</string> | |
<key>JVMMinimumSystemVersion</key> | |
<string>10.6.0</string> | |
<key>JVMPlatformVersion</key> | |
<string>1.7</string> | |
<key>JVMVendor</key> | |
<string>Oracle Corporation</string> | |
<key>JVMVersion</key> | |
<string>1.7.0_60</string> | |
</dict> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment