My project uses Play Framework 2.3.7 (that uses sbt 0.13.5, sbt-native-packager and Activator 1.2.12) and I'm generating a tar.gz file with
activator universal:package-bin
The generated tar.gz file include the directories (conf, bin, share, conf).
I need a base directory (/opt/my_application/) inside the tar.gz file, resulting in:
/opt/my_application/conf
/opt/my_application/bin
I tried several mappings combinations in my build.sbt from http://www.scala-sbt.org/sbt-native-packager/formats/universal.html, with no success.
Thanks