我想使用maven-resources-plugin复制一个excel,并使用exec-maven-plugin从该excel创建一些属性文件。并且新创建的属性需要随构建一起附加。我可以创建属性文件,但是这些属性文件未包含在build(jar)中。 谁能帮我解决这个问题。 还是有任何方法可以做到这些。
答案 0 :(得分:1)
您必须创建maven-resources-plugin
的多个执行,并将它们分配给Please refer to this page for more info。
例如,您可以这样做:
generate-resources
阶段:您需要做的第一件事process-resources
阶段:exec-maven-plugin
处理资源prepare-package
阶段:maven-resources-plugin
的任意一次运行(再次)您将选择对插件所做的事情有意义的阶段,您可以采取一些自由措施使其正常工作。
您可以这样配置执行:
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>first</id>
<phase>generate-resources</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
...
</configuration>
</execution>
<execution>
<id>second</id>
<phase>prepare-package</phase>
...
</execution>
</executions>
</plugin>
...