Skip to content

Commit 6734e8b

Browse files
authored
Update pom-central21.xml
1 parent 9df4119 commit 6734e8b

File tree

1 file changed

+31
-1
lines changed

1 file changed

+31
-1
lines changed

pom-central21.xml

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.github.javadev</groupId>
55
<artifactId>underscore21</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.70</version>
7+
<version>1.71</version>
88
<name>java 21 port of Underscore.js</name>
99
<description>The java 21 port of Underscore.js</description>
1010
<url>https://github.com/javadev/underscore-java17</url>
@@ -123,6 +123,36 @@
123123
</execution>
124124
</executions>
125125
</plugin>
126+
<plugin>
127+
<groupId>org.apache.maven.plugins</groupId>
128+
<artifactId>maven-antrun-plugin</artifactId>
129+
<version>3.1.0</version>
130+
<executions>
131+
<execution>
132+
<id>generate-checksums</id>
133+
<phase>verify</phase>
134+
<configuration>
135+
<target>
136+
<checksum fileext=".md5" algorithm="MD5">
137+
<fileset dir="${project.build.directory}">
138+
<include name="*.jar"/>
139+
<include name="*.pom"/>
140+
</fileset>
141+
</checksum>
142+
<checksum fileext=".sha1" algorithm="SHA-1">
143+
<fileset dir="${project.build.directory}">
144+
<include name="*.jar"/>
145+
<include name="*.pom"/>
146+
</fileset>
147+
</checksum>
148+
</target>
149+
</configuration>
150+
<goals>
151+
<goal>run</goal>
152+
</goals>
153+
</execution>
154+
</executions>
155+
</plugin>
126156
</plugins>
127157
</build>
128158
<dependencies>

0 commit comments

Comments
 (0)