Skip to content

Commit

Permalink
Merge pull request #863 from emmartins/WFLY-18956
Browse files Browse the repository at this point in the history
[main] [WFLY-18956] Adds sha1 digest to dist module's zip files
  • Loading branch information
emmartins authored Jan 25, 2024
2 parents 05cd295 + aa05abc commit 9a0c42a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,28 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>generate-sha1</id>
<phase>package</phase>
<configuration>
<target>
<checksum algorithm="SHA-1" fileext=".sha1">
<fileset dir="${basedir}/target">
<include name="*.zip"/>
</fileset>
</checksum>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 9a0c42a

Please sign in to comment.