プロジェクトルートのdist/
など、いくつかのファイル(jar、起動スクリプト、ドキュメント)をディレクトリにコピーしたいと思います。
maven-Assembly-pluginを使用しており、pom.xmlに<configuration><outputDirectory>
を設定しています。 dist/
内に、ただし<my_project>-<decsriptor_id>/
サブディレクトリ内にファイルを作成します。
dist/
のルートだけに出力する方法はありますか?
または、単にファイルをコピーするプラグインがMavenにありますか?
<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>
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>