Change 'play dist' output file name via command-line
playframework, playframework-2.1, scala
Solution
For Play Framework 2.4 changing the name of the output file worked like this in build.sbt:
packageName in Universal := "dist"
Problem
Is it possible to change `play dist` output file name apart from modifying `appName` on `Build.scala`? I'm trying to automate the creation of two different zip files from the same project tree, e.g.: `myapp-production-1.0-SNAPSHOT.zip` and `myapp-integration-1.0-SNAPSHOT.zip`. Thank you very much!