我正在使用 Maven 替换插件版本 1.5.3 从 tokenValueMap 创建输出文件作为我的替换模式文件。我的输入文件是一个 .txt 文件。这是我的 pom.xml 的样子。在运行 mvn groupId:artifactId:replace 时,它构建成功但收到警告“未定义输入文件”。替换在 0 个文件上运行。请建议!谢谢
<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
<version>1.5.3</version>
<executions>
<execution>
<id>osb-ext-pci-config</id>
<phase>generate-sources</phase>
<goals>
<goal>replace</goal>
</goals>
<configuration>
<file>src/main/customization/LocalImpl.txt</file>
<outputFile>target/local_out.xml</outputFile>
<tokenValueMap>src/main/customization/ReplacementPatterns.txt</tokenValueMap>
</configuration>
</execution>
</executions>
</plugin>