mirror of https://github.com/apache/maven.git
[MNG-6478] upgraded parent to 33 for sha512 checksum on release
This commit is contained in:
parent
8bc3c207d0
commit
10388b39ba
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue