I'm using sbt-native-packager 0.7.0-RC3 to package some of my application and many times I need to package with another mainClass.
When in dev mod i use this :
mainClass in (Compile, run) := Some("package.blabla.Dev")
And when packaging i want to use this :
mainClass in Debian := Some("package.blabla.Prod")
I try with "in Debian" but it don't work.
Is there any way to do this ?