Maven - 在项目构建期间替换java文件

时间:2013-04-30 09:00:49

标签: maven

我的问题是: 我有java项目,在编译之前我需要用外部文件夹中的自定义文件替换一些java文件。 我试过build-helper-maven-plugin:

            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>build-helper-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <id>add-source</id>
                        <phase>generate-sources</phase>
                        <goals>
                            <goal>add-source</goal>
                        </goals>
                        <configuration>
                            <sources>
                                <source>custom_scr_directory</source>
                            </sources>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

但似乎它不会替换文件,只是添加新的源文件夹,这就是为什么我在编译期间有“重复类”异常,因为文件与主项目中的名称相同。

1 个答案:

答案 0 :(得分:1)

回答类似的问题here(剧透:antrun)

毕竟,build-helper:add-source不会做的伎俩,(它打算做它做的事情:添加另一个源目录),你可以安全地删除它。

UPD:是的,+1对于khmarbaise所说的:你需要配置文件来使这个目标有条件。