[MNG-6478] upgraded parent to 33 for sha512 checksum on release

This commit is contained in:
Hervé Boutemy 2018-09-15 22:11:22 +02:00
parent 8bc3c207d0
commit 10388b39ba
2 changed files with 28 additions and 1 deletions

View File

@ -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>

View File

@ -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>