File tree Expand file tree Collapse file tree 3 files changed +64
-4
lines changed Expand file tree Collapse file tree 3 files changed +64
-4
lines changed Original file line number Diff line number Diff line change 11plugins {
22 id ' java'
33 id ' maven-publish'
4- id ' com.diffplug.spotless' version ' 6.25.0 '
5- id ' org.sonarqube' version ' 5.1 .0.4882 '
4+ id ' com.diffplug.spotless' version ' 7.0.4 '
5+ id ' org.sonarqube' version ' 6.2 .0.5505 '
66 id ' jacoco'
77}
88
@@ -12,10 +12,10 @@ repositories {
1212}
1313
1414dependencies {
15- testImplementation ' org.junit.jupiter:junit-jupiter:[5.13.1 ,)'
15+ testImplementation ' org.junit.jupiter:junit-jupiter:[5.13.2 ,)'
1616 testImplementation ' org.hamcrest:hamcrest-core:[3.0,)'
1717 testImplementation ' org.zapodot:embedded-db-junit-jupiter:2.2.2'
18- testRuntimeOnly ' org.junit.platform:junit-platform-launcher:[1.13.1 ,)'
18+ testRuntimeOnly ' org.junit.platform:junit-platform-launcher:[1.13.2 ,)'
1919}
2020
2121test {
Original file line number Diff line number Diff line change 143143 </execution >
144144 </executions >
145145 </plugin >
146+ <plugin >
147+ <groupId >org.apache.maven.plugins</groupId >
148+ <artifactId >maven-antrun-plugin</artifactId >
149+ <version >3.1.0</version >
150+ <executions >
151+ <execution >
152+ <id >generate-checksums</id >
153+ <phase >verify</phase >
154+ <configuration >
155+ <target >
156+ <checksum fileext =" .md5" algorithm =" MD5" >
157+ <fileset dir =" ${project.build.directory}" >
158+ <include name =" *.jar" />
159+ <include name =" *.pom" />
160+ </fileset >
161+ </checksum >
162+ <checksum fileext =" .sha1" algorithm =" SHA-1" >
163+ <fileset dir =" ${project.build.directory}" >
164+ <include name =" *.jar" />
165+ <include name =" *.pom" />
166+ </fileset >
167+ </checksum >
168+ </target >
169+ </configuration >
170+ <goals >
171+ <goal >run</goal >
172+ </goals >
173+ </execution >
174+ </executions >
175+ </plugin >
146176 </plugins >
147177 </build >
148178 <dependencies >
Original file line number Diff line number Diff line change 149149 </execution >
150150 </executions >
151151 </plugin >
152+ <plugin >
153+ <groupId >org.apache.maven.plugins</groupId >
154+ <artifactId >maven-antrun-plugin</artifactId >
155+ <version >3.1.0</version >
156+ <executions >
157+ <execution >
158+ <id >generate-checksums</id >
159+ <phase >verify</phase >
160+ <configuration >
161+ <target >
162+ <checksum fileext =" .md5" algorithm =" MD5" >
163+ <fileset dir =" ${project.build.directory}" >
164+ <include name =" *.jar" />
165+ <include name =" *.pom" />
166+ </fileset >
167+ </checksum >
168+ <checksum fileext =" .sha1" algorithm =" SHA-1" >
169+ <fileset dir =" ${project.build.directory}" >
170+ <include name =" *.jar" />
171+ <include name =" *.pom" />
172+ </fileset >
173+ </checksum >
174+ </target >
175+ </configuration >
176+ <goals >
177+ <goal >run</goal >
178+ </goals >
179+ </execution >
180+ </executions >
181+ </plugin >
152182 </plugins >
153183 </build >
154184 <dependencies >
You can’t perform that action at this time.
0 commit comments