Maven Replacer插件1.5.3没有输入文件定义的警告

时间:2015-03-20 16:17:31

标签: java maven replace pom.xml maven-replacer-plugin

我正在使用maven replacer插件版本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>

1 个答案:

答案 0 :(得分:0)

请尝试使用文件标记提及输入文件。

例如:<file>${scac.input.dir}/WSDLs/ProjectB.wsdl</file>

请将以下插件作为样本。

<plugin>
    <groupId>com.google.code.maven-replacer-plugin</groupId>
    <artifactId>replacer</artifactId>
    <version>1.5.3</version>
    <executions>
        <execution>
            <phase>prepare-package</phase>
            <goals>
                <goal>replace</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
        <file>${scac.input.dir}/WSDLs/ProjectB.wsdl</file>
        <replacements>
            <replacement>
                <token>%SERVER_NAME%</token>
                <value>${env.soa.lbhost}</value>
            </replacement>
        </replacements>
    </configuration>
</plugin>`