I am using sbt-assembly to create an executable jar.
I was wondering, how do I modify the output directory of jar generated by sbt assembly
?
By default, the generated jar is in /path/target/scala-2.11/
. I want to change this to not include the scala version, that is, have the generated jar be in /path/target/
instead.
How to go about this?