Sonatype网站上的说明很简单,关于重定位poms的maven文档引用了对存储库文件的基于本地文件系统的访问(并建议移动文件)。我需要在新的groupId中部署新版本的多模块项目,然后在旧的groupId中发布该版本的重定向pom。我已经准备好了重定位poms - 我只是将它们交换为主要的pom.xml文件,然后重新运行我的部署(它在我这样做时部署jar内容),或者是否有其他方法将这些pom工件推送到oss.sonatype.org?任何人都有这方面的最佳实践吗?
答案 0 :(得分:1)
使用旧的groupId(s)部署新版本的pom。
包装应为pom
,并且必须签署工件。
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>example</artifactId>
<version>1.0.0</version>
<name>${project.artifactId}</name>
<description>Example</description>
<packaging>pom</packaging>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<licenses>
<license>
<name>BSD License</name>
<url>http://opensource.org/licenses/BSD-3-Clause</url>
</license>
</licenses>
<distributionManagement>
<relocation>
<groupId>org.example</groupId>
</relocation>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>