jar
my pom.xml
and runningで以下を使用してデプロイできmvn deploy
ます。
<distributionManagement>
<repository>
<id>releases</id>
<url>http://${host}:8081/nexus/content/repositories/releases</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<name>Internal Snapshots</name>
<url>http://${host}:8081/nexus/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
jar-with-dependencies
そして、次を使用して実行可能ファイルをビルドできます。
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>create-executable-jar</id>
<phase>deploy</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>my.company.app.Main</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
jar
問題は、これらをつなぎ合わせて実行可能ファイルを Maven リポジトリにデプロイする方法がわからないことです。これが新しいプラグインによって達成されるのか、それとも既存のアセンブリ プラグインに目標やその他のステップを追加することによって達成されるのか、私にはよくわかりません。