Add --verbose and --no-tty args to maven-gpg-plugin

This commit is contained in:
Paul Campbell 2018-06-30 12:32:49 +01:00
parent 311b22aa18
commit 6c9f9ff99e
2 changed files with 8 additions and 0 deletions

View file

@ -1,6 +1,12 @@
CHANGELOG CHANGELOG
========= =========
5.1.1
-----
* Upgrade `maven-javadoc-plugin` to 3.0.1
* Add `--verbose` and `--no-tty` args to `maven-gpg-plugin`
5.1.0 5.1.0
----- -----

View file

@ -93,7 +93,9 @@
<configuration> <configuration>
<passphrase>${gpg.passphrase}</passphrase> <passphrase>${gpg.passphrase}</passphrase>
<gpgArguments> <gpgArguments>
<arg>--verbose</arg>
<arg>--batch</arg> <arg>--batch</arg>
<arg>--no-tty</arg>
<arg>--pinentry-mode</arg> <arg>--pinentry-mode</arg>
<arg>loopback</arg> <arg>loopback</arg>
</gpgArguments> </gpgArguments>