This is an automated email from the ASF dual-hosted git repository.
hboutemy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven.git
The following commit(s) were added to refs/heads/master by this push:
new 10388b3 [MNG-6478] upgraded parent to 33 for sha512 checksum on
release
10388b3 is described below
commit 10388b39bab9aa95dc6e288fb476268071b5cc9e
Author: Hervé Boutemy <[email protected]>
AuthorDate: Sat Sep 15 22:11:22 2018 +0200
[MNG-6478] upgraded parent to 33 for sha512 checksum on release
---
apache-maven/pom.xml | 27 +++++++++++++++++++++++++++
pom.xml | 2 +-
2 files changed, 28 insertions(+), 1 deletion(-)
diff --git a/apache-maven/pom.xml b/apache-maven/pom.xml
index d5a41dc..693cb88 100644
--- a/apache-maven/pom.xml
+++ b/apache-maven/pom.xml
@@ -282,6 +282,33 @@ under the License.
</execution>
</executions>
</plugin>
+ <!-- calculate checksums of source release for Apache dist area -->
+ <plugin>
+ <groupId>net.nicoulaj.maven.plugins</groupId>
+ <artifactId>checksum-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>source-release-checksum</id>
+ <goals>
+ <goal>files</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <fileSets>
+ <fileSet>
+ <directory>${project.build.directory}</directory>
+ <includes>
+
<include>${project.artifactId}-${project.version}-src.zip</include>
+
<include>${project.artifactId}-${project.version}-src.tar.gz</include>
+
<include>${project.artifactId}-${project.version}-bin.zip</include>
+
<include>${project.artifactId}-${project.version}-bin.tar.gz</include>
+ </includes>
+ </fileSet>
+ </fileSets>
+ <failIfNoFiles>true</failIfNoFiles>
+ </configuration>
+ </plugin>
</plugins>
</build>
</profile>
diff --git a/pom.xml b/pom.xml
index beced97..4e370c0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,7 +25,7 @@ under the License.
<parent>
<groupId>org.apache.maven</groupId>
<artifactId>maven-parent</artifactId>
- <version>32</version>
+ <version>33</version>
<relativePath>../pom/maven/pom.xml</relativePath>
</parent>