jira-importer commented on issue #456: URL: https://github.com/apache/maven-apache-parent/issues/456#issuecomment-2771730862
**[Robert Scholte](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=rfscholte)** commented The plugin fails when using Maven 3.1.1 and calling `mvn verify -Papache-release` The minimalMavenBuildVersion is 3.1.1, however the plugin net.nicoulaj.maven.plugins:checksum-maven-plugin:1.10 requires Maven version 3.2.5. When using Maven 3.1.1 you cannot skip this plugin. Either the minimum should be lifted to 3.2.5 or (which I prefer) the checksum-maven-plugin should be moved to a profile as done for the maven-artifact-plugin: ```xml <profile> <id>pgpverify</id> <activation> <property> <name>pgpverify.skip</name> <value>!true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.simplify4u.plugins</groupId> <artifactId>pgpverify-maven-plugin</artifactId> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
