みんな!私は、Mavenのシェードのプラグインを使用してjarファイルを取得しようとしてきたが、私はまだ成功を得ることはありません:(マルチモジュールプロジェクトでMavenシェードプラグインを設定するには?
私のプロジェクト構造だこと:
MainModule
-Module1
-src
-pom.xml
-Module2
-src
-pom.xml
-pom.xml
Module1の(のpom.xml):
<parent>
<artifactId>MainModule</artifactId>
<groupId>com.plugintest</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>Module1</artifactId>
モジュール2(のpom.xml):
<parent>
<artifactId>MainModule</artifactId>
<groupId>com.plugintest</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>Module1</artifactId>
MainModule(のpom.xml):
<groupId>com.plugintest</groupId>
<artifactId>MainModule</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<modules>
<module>Module1</module>
<module>Module2</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
このコードによれば、2つのjarファイル(Module1-version.jarとModule2-version.jar)が得られます。しかし、それは私が望むものではありません。私は、1つのjarファイル(MainModule-version.jar)を取得し、もう一方のモジュール(Module1とModule2)を含むことを望みます。
このShade Pluginはなぜ機能しないのですか教えてください。
Module2は上記のコードスニペットで "Module1"というラベルが付けられています。 ... – ingyhere