Skip to content

Commit

Permalink
added maven plugin to generate checksum for bundle uber-jar
Browse files Browse the repository at this point in the history
  • Loading branch information
uli-f committed Jan 11, 2023
1 parent 57ca227 commit 837d51a
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,35 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>net.nicoulaj.maven.plugins</groupId>
<artifactId>checksum-maven-plugin</artifactId>
<version>1.11</version>
<configuration>
<algorithms>
<algorithm>SHA-256</algorithm>
<algorithm>SHA-512</algorithm>
<algorithm>SHA3-512</algorithm>
</algorithms>
<csvSummary>false</csvSummary>
<fileSets>
<fileSet>
<directory>${project.build.directory}</directory>
<includes>
<include>cdk-${project.parent.version}.jar</include>
</includes>
</fileSet>
</fileSets>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>artifacts</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
Expand Down

0 comments on commit 837d51a

Please sign in to comment.