-
Bug
-
Resolution: Fixed
-
P4
-
8
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8131116 | 7u40 | Dmitry Cherepanov | P4 | Closed | Fixed |
when running any self-contained application on Mac, it fails as it unable to parse Info.plist:
here's a simple diffs to fix it:
deploy/packager/src/com/sun/javafx/tools/resource/mac/Info.plist.template
Print this page
@@ -35,12 +35,12 @@
<key>JVMAppClasspath</key>
<string>DEPLOY_APP_CLASSPATH</string>
<key>JVMMainJarName</key>
<string>DEPLOY_MAIN_JAR_NAME</string>
<key>JVMOptions</key>
- <key>NSHighResolutionCapable</key>
- <string>true</string>
<array>
DEPLOY_JVM_OPTIONS
</array>
+ <key>NSHighResolutionCapable</key>
+ <string>true</string>
</dict>
</plist>
here's a simple diffs to fix it:
deploy/packager/src/com/sun/javafx/tools/resource/mac/Info.plist.template
Print this page
@@ -35,12 +35,12 @@
<key>JVMAppClasspath</key>
<string>DEPLOY_APP_CLASSPATH</string>
<key>JVMMainJarName</key>
<string>DEPLOY_MAIN_JAR_NAME</string>
<key>JVMOptions</key>
- <key>NSHighResolutionCapable</key>
- <string>true</string>
<array>
DEPLOY_JVM_OPTIONS
</array>
+ <key>NSHighResolutionCapable</key>
+ <string>true</string>
</dict>
</plist>
- backported by
-
JDK-8131116 packager generates invalid Info.plist on Mac
-
- Closed
-