This is an automated email from the ASF dual-hosted git repository. rfscholte pushed a change to branch maven-sign-plugin in repository https://gitbox.apache.org/repos/asf/maven-studies.git.
from 6a2b971 Initial commit new 53a8059 plugin skeleton new 7e87a30 GitHub action new 980b274 Try access to FileTransformer new 319b8d4 First working version new 2d0fee0 Fix after review new b358072 Don't use settings.server for key configuration new 6c31310 next fixes after review new 5ad35f9 add subpacket 33 - issuer key fingerprint to signature new 9c363c2 add maven prefix to mojo params new 88bf212 try maven 3.7.0-SNAPSHOT on GA new b9a020f Test signing big artifact 800MB new 4c5dfbd find mvn binary on GA new 727e8a4 Use Random instead of SecureRandom for generating test file new 1eceb8b Merge pull request #2 from slawekjaranowski/maven-sign-plugin The 15 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .github/workflows/maven.yml | 62 ++++++ .gitignore | 3 + README.md | 17 ++ pom.xml | 169 +++++++++++++++++ src/it/big-artifact/invoker.properties | 23 +++ src/it/big-artifact/pom.xml | 88 +++++++++ src/it/big-artifact/setup.groovy | 32 ++++ src/it/pom-packaging/invoker.properties | 21 ++ src/it/pom-packaging/pom.xml | 56 ++++++ src/it/settings.xml | 55 ++++++ src/it/standard-packaging/invoker.properties | 21 ++ src/it/standard-packaging/pom.xml | 82 ++++++++ src/it/standard-packaging/test.dat | 1 + .../plugins/sign/PGPSecretKeyInfoFromParams.java | 80 ++++++++ .../org/apache/maven/plugins/sign/SignMojo.java | 211 +++++++++++++++++++++ .../maven/plugins/sign/SignMojoException.java | 42 ++++ .../org/apache/maven/plugins/sign/SignResult.java | 66 +++++++ .../maven/plugins/sign/pgp/PGPSecretKeyInfo.java | 47 +++++ .../apache/maven/plugins/sign/pgp/PGPSigner.java | 167 ++++++++++++++++ .../maven/plugins/sign/pgp/PGPSignerException.java | 40 ++++ .../sign/PGPSecretKeyInfoFromParamsTest.java | 73 +++++++ .../maven/plugins/sign/pgp/PGPSignerTest.java | 98 ++++++++++ src/test/resources/pgp-priv-key.asc | 83 ++++++++ src/test/resources/pgp-public-key.asc | 41 ++++ 24 files changed, 1578 insertions(+) create mode 100644 .github/workflows/maven.yml create mode 100644 .gitignore create mode 100644 README.md create mode 100644 pom.xml create mode 100644 src/it/big-artifact/invoker.properties create mode 100644 src/it/big-artifact/pom.xml create mode 100644 src/it/big-artifact/setup.groovy create mode 100644 src/it/pom-packaging/invoker.properties create mode 100644 src/it/pom-packaging/pom.xml create mode 100644 src/it/settings.xml create mode 100644 src/it/standard-packaging/invoker.properties create mode 100644 src/it/standard-packaging/pom.xml create mode 100644 src/it/standard-packaging/test.dat create mode 100644 src/main/java/org/apache/maven/plugins/sign/PGPSecretKeyInfoFromParams.java create mode 100644 src/main/java/org/apache/maven/plugins/sign/SignMojo.java create mode 100644 src/main/java/org/apache/maven/plugins/sign/SignMojoException.java create mode 100644 src/main/java/org/apache/maven/plugins/sign/SignResult.java create mode 100644 src/main/java/org/apache/maven/plugins/sign/pgp/PGPSecretKeyInfo.java create mode 100644 src/main/java/org/apache/maven/plugins/sign/pgp/PGPSigner.java create mode 100644 src/main/java/org/apache/maven/plugins/sign/pgp/PGPSignerException.java create mode 100644 src/test/java/org/apache/maven/plugins/sign/PGPSecretKeyInfoFromParamsTest.java create mode 100644 src/test/java/org/apache/maven/plugins/sign/pgp/PGPSignerTest.java create mode 100644 src/test/resources/pgp-priv-key.asc create mode 100644 src/test/resources/pgp-public-key.asc