回答:
注:スプリングブートアプリケーションの場合は、回答の最後をお読みください
あなたにプラグイン以下を追加しpom.xml
、最新バージョンが可能で発見
...
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>CHOOSE LATEST VERSION HERE</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>assemble-all</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
...
このプラグインを構成した後、実行mvn package
すると2つのjarが生成されます。1つはプロジェクトクラスのみを含み、2つ目はすべての依存関係に「-jar-with-dependencies」のサフィックスが付いた2番目のファットjarです。
classpath
実行時に正しい設定が必要な場合は、次のプラグインも追加してください
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>fully.qualified.MainClass</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
スプリングブートアプリケーションの場合は、次のプラグインのみを使用します(適切なバージョンを選択してください)。
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
<mainClass>${start-class}</mainClass>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
ビルドでシェードプラグインを構成した後、コマンドmvn package
はすべての依存関係がマージされた単一のjarを作成します。
おそらくmaven-shade-plugin
、依存関係をバンドルし、未使用のコードを最小限に抑え、外部の依存関係を非表示にして競合を回避します。
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
<createDependencyReducedPom>true</createDependencyReducedPom>
<dependencyReducedPomLocation>
${java.io.tmpdir}/dependency-reduced-pom.xml
</dependencyReducedPomLocation>
<relocations>
<relocation>
<pattern>com.acme.coyote</pattern>
<shadedPattern>hidden.coyote</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
参照:
Provider org.apache.xerces.jaxp.SAXParserFactoryImpl not found
、単に削除し<minimizeJar>true</minimizeJar>
ます。
実際には、
<archive>
<manifest>
<addClasspath>true</addClasspath>
<packageName>com.some.pkg</packageName>
<mainClass>com.MainClass</mainClass>
</manifest>
</archive>
maven-jar-pluginへの宣言では、メインクラスエントリがマニフェストファイルに追加されません。それをマニフェストで取得するには、それをmaven-assembly-pluginに追加する必要がありました
パッケージ化にはonejar-maven-pluginを使用できます。基本的には、プロジェクトとその依存関係を1つのjarとしてアセンブルします。これには、プロジェクトのjarファイルだけでなく、すべての外部依存関係も「jarのjar」として含まれます。たとえば、
<build>
<plugins>
<plugin>
<groupId>com.jolira</groupId>
<artifactId>onejar-maven-plugin</artifactId>
<version>1.4.4</version>
<executions>
<execution>
<goals>
<goal>one-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
注1:構成オプションはプロジェクトのホームページで使用できます。
注2:何らかの理由で、onejar-maven-pluginプロジェクトはMaven Centralで公開されていません。ただし、jolira.comは元のプロジェクトを追跡し、それをgroupIdで公開しcom.jolira
ます。
別の方法は、maven シェードプラグインを使用してを構築することuber-jar
です。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version> Your Version Here </version>
<configuration>
<!-- put your configurations here -->
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>