Mavenアセンブリプラグインを「dir」形式で使用してすべてをフォルダーに配置し、「jar」形式を使用してそれらをjarにグループ化します。
詳細:
- Mavenプロジェクトから始めます(サブプロジェクトと呼びましょう)
- <module>タグを使用してすべてのサブプロジェクトを集約する新しいMavenプロジェクト(pomパッケージ)を作成します
- アセンブリプラグインをpom.xmlファイルに入れます(以下を参照)
- 正しいassembly.xmlファイルを作成します(以下を参照)
pom.xmlファイル:
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>distro-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<finalName>somefolder</finalName>
<attach>false</attach>
<descriptors>
<descriptor>assembly.xml</descriptor>
</descriptors>
<phase>package</phase>
</configuration>
</execution>
</executions>
</plugin>
assembly.xmlファイル:
<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>SomeName</id>
<formats>
<format>dir</format>
</formats>
<includeBaseDirectory>true</includeBaseDirectory>
<baseDirectory></baseDirectory>
<fileSets>
<fileSet>
<directory>appfiles</directory>
<includes>
<include>**</include>
</includes>
<outputDirectory>.</outputDirectory>
</fileSet>
</fileSets>
<moduleSets>
<moduleSet>
<!-- useAllReactorProjects must be false if the assembly's run on the project with the module list -->
<useAllReactorProjects>false</useAllReactorProjects>
<includeSubModules>false</includeSubModules>
<binaries>
<includeDependencies>true</includeDependencies>
<outputDirectory>bundle</outputDirectory>
<unpack>false</unpack>
</binaries>
</moduleSet>
</moduleSets>