我可以部署jar
在下面我pom.xml
和運行mvn deploy
:Maven的使用部署罐子依賴於回購
<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回購。我不知道這是通過一個新的插件完成的,還是通過向現有的程序集插件添加一個目標或其他步驟來完成的。
有意思......所以你想要一個包含所有依賴關係('jar-with-dependencies')的單個jar到nexus?我假設你將它部署到生產環境時,這個jar將是獨立的(因爲它內部嵌入了所有的依賴)? –