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 1
1
plugins {
2
2
id ' java'
3
3
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 '
6
6
id ' jacoco'
7
7
}
8
8
@@ -12,10 +12,10 @@ repositories {
12
12
}
13
13
14
14
dependencies {
15
- testImplementation ' org.junit.jupiter:junit-jupiter:[5.13.1 ,)'
15
+ testImplementation ' org.junit.jupiter:junit-jupiter:[5.13.2 ,)'
16
16
testImplementation ' org.hamcrest:hamcrest-core:[3.0,)'
17
17
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 ,)'
19
19
}
20
20
21
21
test {
Original file line number Diff line number Diff line change 143
143
</execution >
144
144
</executions >
145
145
</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 >
146
176
</plugins >
147
177
</build >
148
178
<dependencies >
Original file line number Diff line number Diff line change 149
149
</execution >
150
150
</executions >
151
151
</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 >
152
182
</plugins >
153
183
</build >
154
184
<dependencies >
You can’t perform that action at this time.
0 commit comments