sbt/sbt-bundle

Fix invalid JVM heap options

hseeberger opened this issue · 2 comments

  • Minimum is given via -Xms, not -Xmm
  • Minimum and maximum must not have an equals sign, i.e. not -Xmx=1024, but -Xmx1024
  • The launcher created with the sbt-native-packager needs -X options prefixed with -J, .e.g -J-Xmx1024

I'm really sorry for the poor quality here.

Don't worry, I learned a lot ;-)