我正在做一个 Maven 项目。在对 pom.xml 文件进行一些更改后,我成功编译它,当我在 jboss 中部署它时,部署失败。在进行更改之前,我能够部署它。
我定义了 ENV 配置文件。这是我的 pom.xml 文件的一部分:
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<filters>
<filter>src/main/filters/filter-${env}.properties</filter>
</filters>
<webResources>
<resource>
<directory>WebContent/WEB-INF</directory>
<filtering>true</filtering>
<targetPath>WEB-INF</targetPath>
</resource>
<resource>
<directory>WebContent/WEB-INF</directory>
</resource>
</webResources>
</configuration>
</plugin>
我对 pom.xml 文件做错了吗?