You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using OSX we cannot force the debian build to use JDeb when having a play project. When we build it prints:
Building debian package with native implementation if we remove the Play plugin dependency we instead get Building debian package with java based implementation 'jdeb'.
To avoid using the play version of sbt-native-packager I evicted it from the plugin, but it did not make any difference: addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.3.7" exclude("com.typesafe.sbt", "sbt-native-packager"))
It is easy to reproduce:
Using test-project-play-rpm
In build.sbt change from RPM to enablePlugins(JDebPackaging)
In activator run debian:packageBin and you should see the output Building debian package with native implementation
In build.sbt comment out the line enablePlugins(PlayScala)
In activator run debian:packageBin again and you will now see the output Building debian package with java based implementation 'jdeb' (not much gets build however).
The text was updated successfully, but these errors were encountered:
Hi
When using OSX we cannot force the debian build to use JDeb when having a play project. When we build it prints:
Building debian package with native implementation
if we remove the Play plugin dependency we instead getBuilding debian package with java based implementation 'jdeb'
.To avoid using the play version of sbt-native-packager I evicted it from the plugin, but it did not make any difference:
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.3.7" exclude("com.typesafe.sbt", "sbt-native-packager"))
It is easy to reproduce:
Using test-project-play-rpm
build.sbt
change from RPM toenablePlugins(JDebPackaging)
debian:packageBin
and you should see the outputBuilding debian package with native implementation
build.sbt
comment out the lineenablePlugins(PlayScala)
debian:packageBin
again and you will now see the outputBuilding debian package with java based implementation 'jdeb'
(not much gets build however).The text was updated successfully, but these errors were encountered: