Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Maven, how to copy files?

I want to copy some files (jar, launch scripts, docs) to some directory, like dist/ in project root.

I am using maven-assembly-plugin and set <configuration><outputDirectory> in pom.xml. It creates files in dist/ but inside <my_project>-<decsriptor_id>/ subdirectory.

Is there any way to output it just in the root of dist/?

Or is there a plugin in Maven that simply copies files?

        <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <version>3.0.0</version>
            <executions>
                <execution>
                    <id>maven-assembly</id>
                    <phase>package</phase>
                    <goals>
                        <goal>single</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <outputDirectory>${project.basedir}/dist</outputDirectory>
                <descriptors>
                    <descriptor>${project.basedir}/src/main/maven-assembly/dist.xml</descriptor>
                </descriptors>
            </configuration>
        </plugin>

dist.xml

<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
    <id>dist</id>
    <formats>
        <format>dir</format>
    </formats>
    <includeBaseDirectory>false</includeBaseDirectory>
    <files>
        <file>
            <source>path........</source>
            <fileMode>0755</fileMode>
            <outputDirectory>.</outputDirectory>
        </file>
    </files>
</assembly>
like image 300
Alex P. Avatar asked Jan 14 '17 19:01

Alex P.


1 Answers

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>
like image 170
alexbt Avatar answered Oct 13 '22 07:10

alexbt