Hello guys,
Currently I am using gradle (2.12) in my organization as a build tool for our play framework projects, but I am experiencing some troubles to match the same result we had with old build tool (sbt).
-
If I have a project dependency, why does the plugin rename the final jar when I run the stage task? And why this renaming is using the projectPath-filename instead of group-filename? At last, why version is not used in the jar naming?
e.g.:build.gradle
…
dependencies {
play project(’:foo’)
}
…stage directory:
lib/
├── foo-foo.jar
├── foo-foo-assets.jar -
Is it possible to redefine different sources to be used by playRun or by play tasks independently?
Regards,