我有多个项目,其中一个需要打包为 WAR 文件。但是,它被打包为 JAR 文件。这是我的构建文件:
enablePlugins(WarPlugin)
val foo = project in file("foo")
val war = project in file("war")
val root = project in file(".") aggregate(foo, war)
我注意到构建的是根项目,所以我将enablePlugins
调用移动到特定项目:
val foo = project in file("foo")
val war = (project in file("war"))
.enablePlugins(WarPlugin)
val root = project in file(".") aggregate(foo, war)