pgp-keys-map
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.simplify4u</groupId> <artifactId>pgp-keys-map</artifactId> <version>2025.03.15</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2019-2021 Slawomir Jaranowski ~ ~ Licensed 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. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>parent</artifactId> <groupId>org.simplify4u</groupId> <version>2.22.1</version> </parent> <artifactId>pgp-keys-map</artifactId> <version>2025.03.15</version> <packaging>pom</packaging> <name>PGP keys map to maven artifacts</name> <description>This project contains PGP keys map to maven artifacts which should be used to signed</description> <url>https://github.com/s4u/pgp-keys-map</url> <inceptionYear>2019</inceptionYear> <organization> <name>Simplify4U</name> <url>https://www.simplify4u.org</url> </organization> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>sjaranowski</id> <name>Slawomir Jaranowski</name> <email>s.jaranowski@gmail.com</email> <url>https://github.com/slawekjaranowski</url> <timezone>Europe/Warsaw</timezone> </developer> </developers> <modules> <module>org-apache-maven-plugins-test</module> <module>org-codehaus-mojo-test</module> <module>org-springframework-test</module> <module>pgp-keys-map-test1</module> <module>pgp-keys-map-test2</module> </modules> <scm> <connection>scm:git:git@github.com:s4u/pgp-keys-map.git</connection> <developerConnection>${project.scm.connection}</developerConnection> <url>https://github.com/s4u/pgp-keys-map</url> <tag>v2025.03.15</tag> </scm> <properties> <maven.test.skip /> <maven.site.skip>true</maven.site.skip> <scmpublish.skipDeploy>true</scmpublish.skipDeploy> <project.build.outputTimestamp>2025-03-15T14:14:30Z</project.build.outputTimestamp> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>org.simplify4u.plugins</groupId> <artifactId>pgpverify-maven-plugin</artifactId> <version>1.19.1</version> </plugin> <!-- disable some plugins in this project --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <executions> <execution> <id>default-deploy</id> <phase>none</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <executions> <execution> <id>default-install</id> <phase>none</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <phase>none</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <phase>none</phase> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <executions> <execution> <phase>none</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforcer</id> <phase>none</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <phase>none</phase> </execution> </executions> </plugin> <plugin> <!-- disable extension for nexus-staging - we want this only in root module --> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <extensions>false</extensions> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <inherited>false</inherited> <configuration> <descriptors> <descriptor>assembly.xml</descriptor> </descriptors> <appendAssemblyId>false</appendAssemblyId> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> <manifestEntries> <Scm-Url>${project.scm.url}</Scm-Url> </manifestEntries> </archive> </configuration> <executions> <execution> <phase>initialize</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <inherited>false</inherited> <executions> <execution> <phase>verify</phase> </execution> </executions> </plugin> <plugin> <groupId>org.simplify4u.plugins</groupId> <artifactId>pgpverify-maven-plugin</artifactId> <executions> <execution> <phase>verify</phase> <goals> <goal>check</goal> </goals> </execution> </executions> <configuration> <suppressSignatureOkLogging>true</suppressSignatureOkLogging> <keysMapLocation>/pgp-keys-map.list</keysMapLocation> <verifyPlugins>true</verifyPlugins> <verifyPluginDependencies>true</verifyPluginDependencies> <verifyAtypical>true</verifyAtypical> <skip>${maven.test.skip}</skip> </configuration> <dependencies> <dependency> <groupId>org.simplify4u</groupId> <artifactId>pgp-keys-map</artifactId> <version>${project.version}</version> </dependency> </dependencies> </plugin> <!-- execute only in root - inherited = false --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <inherited>false</inherited> <executions> <execution> <id>default-install</id> <phase>install</phase> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <inherited>false</inherited> <executions> <execution> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>