マルチモジュール プロジェクトを としてセントラルにアップロードしたところ、次のbundle.jar
問題が発生
しました。そのため、Nexus could not found pom.asc
.
質問する
1672 次
4 に答える
1
私にとっては、*.asc
ファイルが見つからないために署名エラーが発生しました。gpg キーをインストールし、ssh サーバーに送信しました。
Deploying to OSSRH with Apache Maven - Introductionによると、プラグインnexus-staging-maven-plugin
とnexus-staging-maven-plugin
. 次に、 を実行するmaven clean deploy
と、パッケージがrepo.maven.apache.orgにリリースされます(30 分以内)。
ここにpom.xml
サンプルがあります
<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/maven-v4_0_0.xsd">
...
<build>
<plugins>
...
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>
https://oss.sonatype.org/service/local/staging/deploy/maven2/
</url>
</repository>
</distributionManagement>
</project>
メイヴンsettings.xml
<!--maven connect nexus need user and password-->
<settings>
<servers>
<server>
<id>ossrh</id>
<username></username>
<password></password>
</server>
</servers>
<profiles>
<profile>
<id>ossrh</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<gpg.passphrase>gpg.passphrase
</gpg.passphrase>
</properties>
</profile>
</profiles>
</settings>
于 2020-06-16T11:55:48.290 に答える