Reputation: 892
I have a Playframework which also has a Play subproject called auth
since both Plugins have enabled the PlayScala
Plugin and the root
project has .dependsOn(auth).aggregate(auth)
it will always create a tgz
file for both projects i.e. root-version.tgz and auth-version.tgz, is there a way to disable that behavior for the auth
project?
Upvotes: 0
Views: 123
Reputation: 3641
You can simply override the task in the auth
project:
packageBin in Universal := {}
That should do the trick.
Upvotes: 2