Today I integrated sbt-native-packager into my scala project, mostly to generate handy execution scripts and/or packages.
Now, I added to my build.sbt line:
packageArchetype.java_application
and to my plugins.sbt
resolvers += "sbt-plugins" at "http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-releases"
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "0.7.0-RC2")
when I invoke sbt stage I get the target/universal/stage directory, but there is only lib there, no bin with scripts (which according to http://www.scala-sbt.org/sbt-native-packager/GettingStartedApplications/MyFirstProject.html should be created).
Do I need to add something else to get bin directory with scripts?