You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2021/03/10 20:31:57 UTC

[maven-artifact-plugin] branch pgpverify updated (0d4193d -> e785a5d)

This is an automated email from the ASF dual-hosted git repository.

hboutemy pushed a change to branch pgpverify
in repository https://gitbox.apache.org/repos/asf/maven-artifact-plugin.git.


 discard 0d4193d  test gpgverify to check dependencies signatures
     new e785a5d  test gpgverify to check dependencies signatures

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (0d4193d)
            \
             N -- N -- N   refs/heads/pgpverify (e785a5d)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 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:
 pgp-keys-map.list | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)


[maven-artifact-plugin] 01/01: test gpgverify to check dependencies signatures

Posted by hb...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

hboutemy pushed a commit to branch pgpverify
in repository https://gitbox.apache.org/repos/asf/maven-artifact-plugin.git

commit e785a5d203d4345d8948e4277c95082de3ea99e9
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Wed Mar 10 21:29:09 2021 +0100

    test gpgverify to check dependencies signatures
---
 pgp-keys-map.list | 21 +++++++++++++++++++++
 pom.xml           | 28 ++++++++++++++++++++++++++++
 2 files changed, 49 insertions(+)

diff --git a/pgp-keys-map.list b/pgp-keys-map.list
new file mode 100644
index 0000000..7b180a6
--- /dev/null
+++ b/pgp-keys-map.list
@@ -0,0 +1,21 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+commons-codec:commons-codec = 0xBC87A3FD0A54480F0BADBEBD21939FF0CA2A6567
+commons-io:commons-io = 0xCD5464315F0B98C77E6E8ECD9DAADC1C9FCC82D0
+org.apache.maven.* = 0xB920D295BF0E61CB4CF0896C33CD6733AF5EC452
+org.codehaus.plexus = 0xFA77DCFEF2EE6EB2DEBEDD2C012579464D01C06A
diff --git a/pom.xml b/pom.xml
index 12eaec5..0bfe87f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -145,6 +145,34 @@
     </dependency-->
   </dependencies>
 
+  <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.simplify4u.plugins</groupId>
+          <artifactId>pgpverify-maven-plugin</artifactId>
+          <version>1.11.0</version>
+           <configuration>
+            <keysMapLocation>${project.basedir}/pgp-keys-map.list</keysMapLocation>
+          </configuration>                        
+        </plugin>
+      </plugins>
+    </pluginManagement>
+    <plugins>
+      <plugin>
+        <groupId>org.simplify4u.plugins</groupId>
+        <artifactId>pgpverify-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>check</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
   <profiles>
     <profile>
       <id>run-its</id>