Skip to content

Commit f314f8e

Browse files
committed
[MGPG-97] use gpgverify plugin to check dependencies signatures
1 parent bad6b57 commit f314f8e

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed

pgp-keys-map.list

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
18+
commons-io:commons-io = 0xCD5464315F0B98C77E6E8ECD9DAADC1C9FCC82D0
19+
junit:junit = 0xFF6E2C001948C5F2F38B0CC385911F425EC61B51
20+
org.apache.maven.resolver = 0x522CA055B326A636D833EF6A0551FD3684FCBBB7
21+
org.apache.maven.shared:maven-artifact-transfer = 0x6A814B1F869C2BBEAB7CB7271A2A1C94BDE89688
22+
org.apache.maven.shared:maven-common-artifact-filters = 0xB02137D875D833D9B23392ECAE5A7FB608A0221C
23+
org.apache.maven.shared:maven-invoker = 0x84789D24DF77A32433CE1F079EB80E92EB2135B1
24+
org.apache.maven.shared:maven-shared-utils = 0x82C9EC0E52C47A936A849E0113D979595E6D01E1
25+
org.codehaus.plexus:plexus-classworlds = 0xFB11D4BB7B244678337AAD8BC7BF26D0BB617866
26+
org.codehaus.plexus:plexus-component-annotations = 0xBA926F64CA647B6D853A38672E2010F8A7FF4A41
27+
org.codehaus.plexus:plexus-utils = 0x6A814B1F869C2BBEAB7CB7271A2A1C94BDE89688
28+
org.eclipse.aether:aether-api = 0xBA926F64CA647B6D853A38672E2010F8A7FF4A41
29+
org.eclipse.aether:aether-util = 0xFB11D4BB7B244678337AAD8BC7BF26D0BB617866
30+
org.hamcrest:hamcrest = 0xE3A9F95079E84CE201F7CF60BEDE11EAF1164480
31+
org.hamcrest:hamcrest-core = 0xE3A9F95079E84CE201F7CF60BEDE11EAF1164480
32+
org.slf4j:slf4j-api = 0x475F3B8E59E6E63AA78067482C7B12F2A511E325
33+
org.sonatype.plexus:plexus-cipher = 0x9FFED7A118D45A44E4A1E47130E6F80434A72A7F
34+
org.sonatype.plexus:plexus-sec-dispatcher = 0x2BCBDD0F23EA1CAFCC11D4860374CF2E8DD1BDFD
35+
org.sonatype.sisu = 0xBA926F64CA647B6D853A38672E2010F8A7FF4A41

pom.xml

+19
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,14 @@ under the License.
194194
<artifactId>maven-invoker-plugin</artifactId>
195195
<version>3.5.1</version>
196196
</plugin>
197+
<plugin>
198+
<groupId>org.simplify4u.plugins</groupId>
199+
<artifactId>pgpverify-maven-plugin</artifactId>
200+
<version>1.17.0</version>
201+
<configuration>
202+
<keysMapLocation>${project.basedir}/pgp-keys-map.list</keysMapLocation>
203+
</configuration>
204+
</plugin>
197205
</plugins>
198206
</pluginManagement>
199207
<plugins>
@@ -230,6 +238,17 @@ under the License.
230238
</execution>
231239
</executions>
232240
</plugin>
241+
<plugin>
242+
<groupId>org.simplify4u.plugins</groupId>
243+
<artifactId>pgpverify-maven-plugin</artifactId>
244+
<executions>
245+
<execution>
246+
<goals>
247+
<goal>check</goal>
248+
</goals>
249+
</execution>
250+
</executions>
251+
</plugin>
233252
</plugins>
234253
</build>
235254

0 commit comments

Comments
 (0)