Hi all!
Struggling to configure maven-gpg-plugin to generate sha512 has sum to deployed
artifacts alongside with asc.
Current config does not work:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<gpgArguments>
<arg>--no-permission-warning</arg>
<arg>--digest-algo=SHA512</arg>
</gpgArguments>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
Documentation is predictably empty.
The final goal — sha512 hash sums for deployed artifacts with deploy goal.
Does anyone know how can this be achieved?
Thanks in advance!
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]