At the moment I am searching for a possibility to build web applications written with the Play framework with maven.
In the end I would like to have the following process on the build server:
- check out the application from the version control system
- do a "play war"
- do a assembly to tar.gz
But I don't want to install the play framework and all of its versions to the build server. I don't want to switch between play versions on the build server just because application one is build with play version x and application two is expecting play version y. Is there a way to include the play version inside the dependencies and so somehow decouple the framework+application from the build tool? (with maven or some other build tool) I'm not relying on maven so I'm looking forward for every idea.