如何配置 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>
此配置在带有 m2e 1.2 的 Eclipse 3.8 中创建错误
Project build error: Non-parseable POM D:\Workspaces\W\Parent\pom.xml: Duplicated tag: 'repository' (position: START_TAG
seen ...
我希望在 pom 的版本后缀为 -SNAPSHOT 时将工件部署到 InternalSnapshots 存储库,并在 RELEASE 时部署到 InternalReleases 存储库。这应该使用相同的 pom.xml 文件并执行相同的mvn deploy
命令。