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 53abfef13f9322c7c55239255e31addb8a25de9d Author: Andrea Tarocchi <andrea.taroc...@gmail.com> AuthorDate: Fri Oct 9 15:40:06 2020 +0200 Updated sha generation during releases. --- pom.xml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index 0e6add0..455c232 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}-src.zip</include> + <include>${project.artifactId}-${project.version}-src.tar.gz</include> <include>${project.artifactId}-${project.version}-package.zip</include> <include>${project.artifactId}-${project.version}-package.tar*</include> </includes> </fileSet> </fileSets> - <failIfNoFiles>false</failIfNoFiles><!-- usually, no file to do checksum: don't consider error --> + <failIfNoFiles>false</failIfNoFiles> </configuration> </plugin> <plugin>