We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With a multi-modules project like that one:
lazy val core = playProject("core") lazy val root = playProject("myapp").in(file(".")) .dependsOn(core) .aggregate(core) private def playProject(name: String) = play.Project( name = name, applicationVersion = "1", path = file("modules/" + name) )
the root project is packaged 2 times as jar in the generated war:
(You can assign this issue to me)
The text was updated successfully, but these errors were encountered:
fix issue play2war#205: do not duplicate jar of the application
babce2d
Merge pull request #212 from yanns/issue-#205
23aab4b
Fix issue #205
Fixed by #212
Sorry, something went wrong.
Play2War v1.2-beta4 with a fix for this issue is out!
yanns
No branches or pull requests
With a multi-modules project like that one:
the root project is packaged 2 times as jar in the generated war:
(You can assign this issue to me)
The text was updated successfully, but these errors were encountered: