I'm using sbt 11.2 and xsbt web plugin for a web project (which is multi module). I'm trying to change the war file name generated by sbt. It has version which I like to not to include.
I tried overriding several keys without luck
lazy val admin = Project("admin", file("admin"),
settings = baseSettings ++ webSettings ++ jettySettings ++ Seq(
name := "admin",
moduleName := "my-admin",
...
Appreciate if someone can show me how to change war file name
Thanks