由于我的pom.xml war-plugin配置,我在Eclipse中有Maven Problems警告。
该项目有多个模块。层次结构在这里: Project hierarchy
我需要将特定目录(module2中的webapp)的内容打包到模块中。 top pom.xml配置的主要部分在这里:
<plugins>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<webResources>
<resource>
<directory>../module2/src/main/webapp</directory>
</resource>
</webResources>
<packagingExcludes>**/*.db,**/*.scss,**/*.example,**/abrepository/**,,**/abconnection.xml</packagingExcludes>
<attachClasses>true</attachClasses>
</configuration>
</plugin>
</plugins>
模块配置的主要部分在于:
<plugins>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<warName>modul</warName>
</configuration>
</plugin>
</plugins>
使用这个war-plugin配置我有这个警告我想要排除:
***module\..\module2\src\main\webapp" directory outside of project base directory. (org.apache.maven.plugins:maven-war-plugin:3.2.0:war:default-war:package) pom.xml /module line 1 Maven Build Participant Problem
我可以摆脱它,还是可以以不同的方式将文件夹(webapp)的内容添加到.war包中?
感谢您的帮助。