Guest User

Untitled

a guest
Nov 16th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. fred@cheetah:~/workspaces/osxappbundle-maven-plugin$ git diff
  2. diff --git a/src/site/apt/examples/custom-dictionary.apt b/src/site/apt/examples/custom-dictionary.apt
  3. index 4021795..1f65f7b 100644
  4. --- a/src/site/apt/examples/custom-dictionary.apt
  5. +++ b/src/site/apt/examples/custom-dictionary.apt
  6. @@ -38,13 +38,17 @@ Using a custom Info.plist file
  7. </project>
  8. +------------------------------------------+
  9.  
  10. - Your custom dictionary may contain the following variables:
  11. + Your custom dictionary may contain any of the following variables:
  12.  
  13. ----------------------------------
  14. ${bundleName} (As defined in your POM. Default is the Maven name in your POM)
  15. ${mainClass} (Your mainClass defined in the plugin configuration of your POM)
  16. ${iconFile} (As defined in your POM. Defaults to a generic Application Icon)
  17. ${classpath} (An <array> containing all you classpath entries, used as the value of the ClassPath key)
  18. +${jvmVersion} (As defined in your POM. Defaults to 1.4+)
  19. +${version} (The project version as defined in your POM.)
  20. +${vmOptions} (As defined in your POM.)
  21. +${cfBundleExecutable} (The final part of your configuration for <javaApplicationStub>. Defaults to JavaApplicationStub)
  22.  
  23. ----------------------------------
  24.  
  25. @@ -60,7 +64,7 @@ Info.plist example
  26. <key>CFBundleName</key>
  27. <string>${bundleName}</string>
  28. <key>CFBundleVersion</key>
  29. - <string>10.2</string>
  30. + <string>${version}</string>
  31. <key>CFBundleAllowMixedLocalizations</key>
  32. <string>true</string>
  33. <key>CFBundleExecutable</key>
  34. @@ -80,11 +84,11 @@ Info.plist example
  35. <key>MainClass</key>
  36. <string>${mainClass}</string>
  37. <key>JVMVersion</key>
  38. - <string>1.4+</string>
  39. + <string>${jvmVersion}</string>
  40. <key>ClassPath</key>
  41. ${classpath}
  42. <key>VMOptions</key>
  43. - <string>-Xmx512m -Xms128m</string>
  44. + <string>${vmOptions}-</string>
  45. <key>Properties</key>
  46. <dict>
  47. <key>apple.laf.useScreenMenuBar</key>
Add Comment
Please, Sign In to add comment