我有一个Maven项目,其中我使用Maven GPG插件签署了工件。 我想:
我尝试做这样的事情:
<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>
<execution>
<id>sign-artifacts-post</id>
<phase>install</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<excludes>**/*.asc</excludes>
</configuration>
</execution>
</executions>
</plugin>
但是它对生成文件(filename.asc.asc)的asc文件进行了两次签名
一些提示?