I am using sbt 11.2 and xsbt web plugin for a web project (which is a multi-module). I am trying to change the war file name generated by sbt. He has a version that I would like not to include.
I tried to redefine some keys without luck
lazy val admin = Project("admin", file("admin"), settings = baseSettings ++ webSettings ++ jettySettings ++ Seq( name := "admin", moduleName := "my-admin",
...
Evaluate if someone can show me how to change the name of a war file
thanks
source share