This is an automated email from the ASF dual-hosted git repository. valdar pushed a commit to branch camel-kafka-connector-0.4.4 in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git
commit cf938173a976039e23aec8f8c4d57985f0c80992 Author: Andrea Tarocchi <andrea.taroc...@gmail.com> AuthorDate: Fri Oct 9 15:40:06 2020 +0200 Updated sha generation during releases. --- pom.xml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/pom.xml b/pom.xml index 0e6add0..259834f 100644 --- a/pom.xml +++ b/pom.xml @@ -306,10 +306,10 @@ </execution> </executions> </plugin> + <!-- calculate checksums of source release for Apache dist area --> <plugin> <groupId>net.nicoulaj.maven.plugins</groupId> <artifactId>checksum-maven-plugin</artifactId> - <version>${maven-checksum-maven-plugin.version}</version> <executions> <execution> <id>source-release-checksum</id> @@ -319,21 +319,18 @@ </execution> </executions> <configuration> - <algorithms> - <algorithm>SHA-512</algorithm> - </algorithms> - <csvSummary>false</csvSummary> <fileSets> <fileSet> <directory>${project.build.directory}</directory> <includes> - <include>${project.artifactId}-${project.version}.jar</include> + <include>${project.artifactId}-${project.version}-sources.zip</include> + <include>${project.artifactId}-${project.version}-sources.tar.gz</include> <include>${project.artifactId}-${project.version}-package.zip</include> - <include>${project.artifactId}-${project.version}-package.tar*</include> + <include>${project.artifactId}-${project.version}-package.tar.gz</include> </includes> </fileSet> </fileSets> - <failIfNoFiles>false</failIfNoFiles><!-- usually, no file to do checksum: don't consider error --> + <failIfNoFiles>false</failIfNoFiles> </configuration> </plugin> <plugin>