我想使用 maven-war-plugin 仅在一个属性上使用 maven 进行过滤
我有以下属性:
- 键1=值1
- 键2=值2
还有一个文件:index.html
- 你好 ${key1} - ${key2}
过滤后的实际结果:
- 你好 value1 - value2
预期结果:我只想过滤属性“key1”
- 你好 value1 - ${key2}
我的 pom.xml :
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<webResources>
<resource>
<filtering>true</filtering>
<directory>${project.basedir}/src/main/webapp</directory>
</resource>
</webResources>
</configuration>
</plugin>
请帮我。谢谢