Skip to content

Commit 69449e5

Browse files
authored
Update pom-central.xml
1 parent 6b7cf63 commit 69449e5

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

pom-central.xml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,36 @@
138138
</execution>
139139
</executions>
140140
</plugin>
141+
<plugin>
142+
<groupId>org.apache.maven.plugins</groupId>
143+
<artifactId>maven-antrun-plugin</artifactId>
144+
<version>3.1.0</version>
145+
<executions>
146+
<execution>
147+
<id>generate-checksums</id>
148+
<phase>verify</phase>
149+
<configuration>
150+
<target>
151+
<checksum fileext=".md5" algorithm="MD5">
152+
<fileset dir="${project.build.directory}">
153+
<include name="*.jar"/>
154+
<include name="*.pom"/>
155+
</fileset>
156+
</checksum>
157+
<checksum fileext=".sha1" algorithm="SHA-1">
158+
<fileset dir="${project.build.directory}">
159+
<include name="*.jar"/>
160+
<include name="*.pom"/>
161+
</fileset>
162+
</checksum>
163+
</target>
164+
</configuration>
165+
<goals>
166+
<goal>run</goal>
167+
</goals>
168+
</execution>
169+
</executions>
170+
</plugin>
141171
</plugins>
142172
</build>
143173
<dependencies>

0 commit comments

Comments
 (0)