0

我有多个项目,其中一个需要打包为 WAR 文件。但是,它被打包为 JAR 文件。这是我的构建文件:

enablePlugins(WarPlugin)

val foo = project in file("foo")

val war = project in file("war")

val root = project in file(".") aggregate(foo, war)
4

1 回答 1

0

我注意到构建的根项目,因此我将enablePlugins调用移至特定项目:

val foo = project in file("foo")

val war = (project in file("war"))
              .enablePlugins(WarPlugin)

val root = project in file(".") aggregate(foo, war)
于 2016-05-24T08:06:34.340 回答