如何配置maven項目以將快照和發佈版本部署到Nexus?如何配置maven項目以將快照和發佈版本部署到Nexus?
<distributionManagement>
<repository>
<id>InternalReleases</id>
<name>Internal Releases</name>
<url>http://192.168.16.232:8081/nexus/content/repositories/releases/</url>
</repository>
<repository>
<id>InternalSnapshots</id>
<name>Internal Snapshots</name>
<url>http://192.168.16.232:8081/nexus/content/repositories/snapshots/</url>
</repository>
</distributionManagement>
這種配置在Eclipse 3.8與M2E 1.2
Project build error: Non-parseable POM D:\Workspaces\W\Parent\pom.xml: Duplicated tag: 'repository' (position: START_TAG
seen ...
我要部署到InternalSnapshots庫神器當POM版的後綴有-SNAPSHOT並部署到InternalReleases庫裏創建了錯誤,當它是RELEASE。這應該使用相同的pom.xml文件並執行相同的mvn deploy
命令。
配置文件允許一個使用不同部分。如果您有多個和,那麼您可以使用不同的配置文件來完成它。 –