File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 138
138
</execution >
139
139
</executions >
140
140
</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 >
141
171
</plugins >
142
172
</build >
143
173
<dependencies >
You can’t perform that action at this time.
0 commit comments