Enable java app packaging on bundle project (#3144)

This commit is contained in:
Chris Stewart 2021-05-26 07:01:18 -05:00 committed by GitHub
parent 55db4fbd6b
commit caf6c2e724
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -419,6 +419,7 @@ lazy val bundle = project
.in(file("app/bundle")) .in(file("app/bundle"))
.settings(CommonSettings.prodSettings: _*) .settings(CommonSettings.prodSettings: _*)
.dependsOn(appServer, gui) .dependsOn(appServer, gui)
.enablePlugins(JavaAppPackaging)
lazy val gui = project lazy val gui = project
.in(file("app/gui")) .in(file("app/gui"))