0

在构建期间,我需要将 5 个properties文件从我的项目工作区复制src/main/resources/my到文件夹C:\my(我在 Windows 7 上开发)。C:\my存在但为空。

我在我的 pom.xml 文件中使用以下代码,但这些文件没有被复制。

在构建期间,我没有收到任何错误,但我得到以下输出:

[INFO] --- maven-resources-plugin:2.5:copy-resources (copy-my-resources) @ my-webapp ---
[debug] execute contextualize
[WARNING] Using platform encoding (Cp1252 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] Copying 5 resources

请注意,[INFO] Copying 5 resources to somewhere复制成功时它不会像通常那样说。

但是,文件根本不会复制到C:\my

你能看到我应该在我的 xml 代码中更改什么吗?

以下是相关代码:

<plugin>
   <groupId>org.apache.maven.plugins</groupId>
   <artifactId>maven-resources-plugin</artifactId>
    <version>2.5</version>
    <executions>
            <execution>
                    <id>copy-my-resources</id>

                    <phase>process-resources</phase>

                    <goals>
                            <goal>copy-resources</goal>
                    </goals>
                    <configuration>

                            <!-- overwrite! -->
                            <overwrite>true</overwrite>

                            <outputDirectory>${env.HOMEDRIVE}/my</outputDirectory>
                            <resources>
                                    <resource>
                                            <directory>src/main/resources/my</directory>
                                            <filtering>false</filtering>
                                            <includes>
                                                <include>**/*.properties</include>
                                            </includes>
                                    </resource>
                            </resources>
                    </configuration>
            </execution>
    </executions>
</plugin>
4

2 回答 2

2

要摆脱警告,您必须在 pom 中定义一个属性:

<properties>
  <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

此外,在您的构建中放置一些东西,例如 homedrive 等,将使您的构建不便携。更好的解决方案是创建像 .zip 这样的包,其中包含您的应用程序的整个配置。

于 2012-04-05T07:35:20.987 回答
1

您可以run mvn -X ...命令从所有插件中获取更详细的调试输出。

还要确保 ${env.HOMEDRIVE} 属性已定义且 ${env.HOMEDRIVE}/my 文件夹存在。

于 2012-04-04T18:07:36.130 回答