6

我有默认的Maven结构:

main
--java
--resources
--webapp

我看到每个mvn compile资源都复制了,即使它们没有改变。我应该怎么做才能使构建副本仅更改文件?

<build>
         <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.5.1</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>

        </plugins>
    </build>
    <dependencies>
        ...
    </dependencies>

    <properties>
        <maven.resources.overwrite>false</maven.resources.overwrite>
    </properties>

这是调试模式下的输出:

[INFO] Using 'cp1252' encoding to copy filtered resources.
[DEBUG] resource with targetPath null
directory C:\core\src\main\resources
excludes []
includes []
[DEBUG] ignoreDelta true
[INFO] Copying 190 resources
[DEBUG] file batch.bat has a filtered file extension
[DEBUG] copy C:\core\src\main\resources\batch.bat to C:\core\target\classes\batch.bat
[DEBUG] file DataObject.hbm.xml has a filtered file extension
[DEBUG] copy C:\core\src\main\resources\com\data\DataObject.hbm.xml to C:\core\target\classes\com\data\DataObject.hbm.xml
4

2 回答 2

4

-Dmaven.resources.overwrite=false使用Maven 命令上的属性。查看目标的overwrite参数resources:resources

但是文档提到这是默认行为,因此请检查此参数是否在项目配置中的某处设置为 true。

编辑:

正如评论中提到的,似乎即使日志表明正在复制,实际上文件并没有被更改(当maven.resources.overwrite为 false 时时间戳保持不变)。

于 2015-11-13T20:09:23.807 回答
4

意识到:

如果资源被激活,则maven-resources-plugin忽略该标志overwritefiltering

于 2019-05-16T13:19:32.940 回答