File tree Expand file tree Collapse file tree 1 file changed +31
-1
lines changed
Expand file tree Collapse file tree 1 file changed +31
-1
lines changed Original file line number Diff line number Diff line change 44 <groupId >com.github.javadev</groupId >
55 <artifactId >underscore17</artifactId >
66 <packaging >jar</packaging >
7- <version >1.70 </version >
7+ <version >1.71 </version >
88 <name >java 17 port of Underscore.js</name >
99 <description >The java 17 port of Underscore.js</description >
1010 <url >https://github.com/javadev/underscore-java17</url >
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 >
You can’t perform that action at this time.
0 commit comments