Skip to content

Commit

Permalink
[build] Add checksum maven plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
fpapon committed Sep 16, 2024
1 parent e33e957 commit 7a04ab8
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ under the License.
<plugin>
<groupId>net.nicoulaj.maven.plugins</groupId>
<artifactId>checksum-maven-plugin</artifactId>
<version>1.10</version>
<version>1.11</version>
</plugin>
<plugin>
<groupId>org.honton.chas</groupId>
Expand Down Expand Up @@ -440,6 +440,24 @@ under the License.
</execution>
</executions>
</plugin>
<plugin>
<groupId>net.nicoulaj.maven.plugins</groupId>
<artifactId>checksum-maven-plugin</artifactId>
<executions>
<execution>
<id>source-release-checksum</id>
<goals>
<goal>artifacts</goal>
</goals>
</execution>
</executions>
<configuration>
<algorithms>
<algorithm>SHA-512</algorithm>
</algorithms>
<csvSummary>false</csvSummary>
</configuration>
</plugin>
</plugins>
</build>
</profile>
Expand Down

0 comments on commit 7a04ab8

Please sign in to comment.