1

我正在尝试将我的项目部署到 maven 中央存储库,但我无法解决 Error:Sources Validation. 我已经安装了 gpg 并查看了说明: 添加 GPG 密钥Apache Maven 签名组件

当我尝试运行时clear deploy -e,出现以下错误:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-gpg-plugin:1.5:sign (sign-artifacts) on project tarantoolorm: Exit code: 1 -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-gpg-plugin:1.5:sign (sign-artifacts) on project tarantoolorm: Exit code: 1 at 
    org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:212) at 
    org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153) at 
    org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145) at 
    org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116) at 
    org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80) at 
    org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51) at 
    org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128) at 
    org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:307) at 
    org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:193) at 
    org.apache.maven.DefaultMaven.execute(DefaultMaven.java:106) at 
    org.apache.maven.cli.MavenCli.execute(MavenCli.java:863) at 
    org.apache.maven.cli.MavenCli.doMain(MavenCli.java:288) at 
    org.apache.maven.cli.MavenCli.main(MavenCli.java:199) at 
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at 
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at 
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at 
    java.lang.reflect.Method.invoke(Method.java:498) at 
    org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289) at 
    org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229) at 
    org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415) at 
    org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356) at 
    org.codehaus.classworlds.Launcher.main(Launcher.java:47) Caused by: org.apache.maven.plugin.MojoExecutionException: Exit code: 1 at 
    org.apache.maven.plugin.gpg.GpgSigner.generateSignatureForFile(GpgSigner.java:168) at 
    org.apache.maven.plugin.gpg.AbstractGpgSigner.generateSignatureForArtifact(AbstractGpgSigner.java:205) at 
    org.apache.maven.plugin.gpg.GpgSignAttachedMojo.execute(GpgSignAttachedMojo.java:140) at 
    org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134) at 
    org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:207) ... 21 more

在我的pom.xml我有下一个设置:

 <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>

 <build>
     <plugins>
         <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-compiler-plugin</artifactId>
             <configuration>
                 <source>1.8</source>
                 <target>1.8</target>
             </configuration>
         </plugin>
         <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-source-plugin</artifactId>
             <version>2.2.1</version>
             <executions>
                 <execution>
                     <id>attach-sources</id>
                     <goals>
                         <goal>jar-no-fork</goal>
                     </goals>
                 </execution>
             </executions>
         </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>
         <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-javadoc-plugin</artifactId>
             <version>2.9.1</version>
             <executions>
                 <execution>
                     <id>attach-javadocs</id>
                     <goals>
                         <goal>jar</goal>
                     </goals>
                 </execution>
             </executions>
         </plugin>
     </plugins>
 </build>

另外,我添加了一些属性到settings.xml

 <profiles>
     <profile>
         <id>ossrh</id>
         <activation>
             <activeByDefault>true</activeByDefault>
         </activation>
         <properties>
             <gpg.executable>gpg</gpg.executable>
             <gpg.passphrase></gpg.passphrase>
         </properties>
     </profile>
 </profiles>

但这无济于事。

我怎么解决这个问题?

4

1 回答 1

3

我有同样的问题,我使用完整路径而不是“gpg” 在此处输入图像描述

于 2018-06-12T15:59:13.773 回答