我正在尝试向Java Maven项目中添加一些模块,但出现以下错误消息

"Only projects with 'pom' packaging can declare modules"

如何切换当前项目以声明“pom”包装?

谢谢

最佳答案

在项目部分添加<packaging>pom</packaging>:

<project ...>

    <groupId>...</groupId>
    <artifactId>...</artifactId>
    <version>...</version>
    <packaging>pom</packaging>

参见https://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html#Packaging

07-24 20:46