0

我一直在尝试将我的项目推送到 maven 存储库中并尝试正确配置我的 maven gpg 插件,我目前将其用作

                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-gpg-plugin</artifactId>
                        <version>1.6</version>
                        <executions>
                            <execution>
                                <id>sign-artifacts</id>
                                <phase>package</phase>
                                <goals>
                                    <goal>sign</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>

但它似乎无法找到我的神器,因为它给出了 rr

Failed to execute goal org.apache.maven.plugins:maven-gpg-plugin:1.6:sign (default-cli) on project fitnesse-bootstrap-plus-theme: The project artifact has not been assembled yet. Please do not invoke this goal before the lifecycle phase "package".

我的 jar 在 root/target 文件夹中生成。

4

1 回答 1

0

您应该绑定maven-gpg-plugin到在阶段之后和之前以及需要安装/部署签名时verify执行的阶段。packageinstalldeploy

所以你的配置看起来像:

                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-gpg-plugin</artifactId>
                        <version>1.6</version>
                        <executions>
                            <execution>
                                <id>sign-artifacts</id>
                                <phase>verify</phase>
                                <goals>
                                    <goal>sign</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>

您也可以省略<phase>verify</phase>,因为maven-gpg-plugin默认绑定到正确的阶段。

于 2021-01-10T19:38:37.697 回答