Maven, how to copy files?

[亡魂溺海] 提交于 2019-12-01 04:43:46

You may use maven-resources-plugin:

<plugin>
  <artifactId>maven-resources-plugin</artifactId>
  <version>3.0.2</version>
  <executions>
    <execution>
    <id>copy-resources</id>
    <!-- insert here the phase you need -->
    <phase>validate</phase>
    <goals>
      <goal>copy-resources</goal>
    </goals>
    <configuration>
      <outputDirectory>${basedir}/target/extra-resources</outputDirectory>
      <resources>        
        <resource>
        <directory>src/non-packaged-resources</directory>
        <filtering>true</filtering>
        </resource>
      </resources>          
    </configuration>        
    </execution>
  </executions>
</plugin>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!