|
1 | 1 | plugins {
|
2 | 2 | id 'java'
|
3 |
| - id 'com.github.spotbugs' version '4.5.1' |
| 3 | + id 'com.github.spotbugs' version '5.0.9' |
4 | 4 | id 'checkstyle'
|
5 | 5 | id 'jacoco'
|
6 |
| - id 'com.github.hierynomus.license' version '0.15.0' |
7 |
| - id 'com.github.johnrengelman.shadow' version '6.1.0' |
| 6 | + id 'com.github.hierynomus.license' version '0.16.1' |
| 7 | + id 'com.github.johnrengelman.shadow' version '7.1.2' |
8 | 8 | id 'org.kordamp.gradle.markdown' version '2.2.0'
|
9 |
| - id "de.undercouch.download" version "5.1.0" |
10 |
| - id "com.github.dkorotych.gradle-maven-exec" version "2.2.1" |
| 9 | + id "de.undercouch.download" version "5.1.1" |
11 | 10 | id 'io.franzbecker.gradle-lombok' version '5.0.0'
|
12 | 11 | id 'java-test-fixtures'
|
13 | 12 | id 'maven-publish'
|
@@ -164,7 +163,7 @@ spotbugsTest {
|
164 | 163 | task checkSpotBugsMainReport {
|
165 | 164 | doLast {
|
166 | 165 | def xmlReport = spotbugsMain.reports.getByName("XML")
|
167 |
| - def slurped = new XmlSlurper().parse(xmlReport.destination) |
| 166 | + def slurped = new groovy.xml.XmlSlurper().parse(xmlReport.destination) |
168 | 167 | def bugsFound = slurped.BugInstance.size()
|
169 | 168 | slurped.BugInstance.each {
|
170 | 169 | println "SpotBugs Error"
|
@@ -212,8 +211,8 @@ jacoco {
|
212 | 211 | }
|
213 | 212 | jacocoTestReport {
|
214 | 213 | reports {
|
215 |
| - html.enabled true |
216 |
| - csv.enabled true |
| 214 | + html.required = true |
| 215 | + csv.required = true |
217 | 216 | }
|
218 | 217 | afterEvaluate {
|
219 | 218 | classDirectories.setFrom(files(classDirectories.files.collect {
|
@@ -323,32 +322,32 @@ dependencies {
|
323 | 322 | implementation group: 'org.apache.commons', name: 'commons-text', version: '1.9'
|
324 | 323 | implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.18.0'
|
325 | 324 | implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.18.0'
|
326 |
| - implementation group: 'org.mongodb', name: 'mongodb-driver-sync', version: '4.5.1' |
| 325 | + implementation group: 'org.mongodb', name: 'mongodb-driver-sync', version: '4.7.1' |
327 | 326 | implementation group: 'com.jcraft', name: 'jsch', version: '0.1.55'
|
328 |
| - implementation group: 'org.apache.calcite', name: 'calcite-core', version: '1.30.0' |
| 327 | + implementation group: 'org.apache.calcite', name: 'calcite-core', version: '1.31.0' |
329 | 328 | implementation group: 'commons-beanutils', name: 'commons-beanutils', version: '1.9.4'
|
330 | 329 | implementation 'io.github.hakky54:sslcontext-kickstart:7.4.5'
|
331 | 330 |
|
332 | 331 | compileOnly group: 'org.immutables', name: 'value', version: '2.9.0'
|
333 |
| - compileOnly group: 'com.puppycrawl.tools', name: 'checkstyle', version: '10.3.1' |
| 332 | + compileOnly group: 'com.puppycrawl.tools', name: 'checkstyle', version: '10.3.2' |
334 | 333 | compileOnly 'org.projectlombok:lombok:1.18.24'
|
335 | 334 | annotationProcessor 'org.projectlombok:lombok:1.18.24'
|
336 | 335 |
|
337 | 336 | testCompileOnly group: 'com.google.code.findbugs', name: 'annotations', version: '3.0.1'
|
338 | 337 | testCompileOnly group: 'com.google.code.findbugs', name: 'annotations', version: '3.0.1'
|
339 | 338 | testCompileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.16'
|
340 | 339 | testAnnotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.16'
|
341 |
| - testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.8.1' |
342 |
| - testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.8.2' |
| 340 | + testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.9.0' |
| 341 | + testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.9.0' |
343 | 342 | testImplementation group: 'org.mockito', name: 'mockito-core', version: '4.6.1'
|
344 | 343 | testRuntimeOnly group: 'de.flapdoodle.embed', name: 'de.flapdoodle.embed.mongo', version: '3.4.6'
|
345 | 344 | testRuntimeOnly 'org.junit.jupiter:junit-jupiter-api:5.8.1'
|
346 | 345 | testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
|
347 |
| - testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.8.2' |
| 346 | + testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.9.0' |
348 | 347 |
|
349 | 348 | spotbugsPlugins 'com.h3xstream.findsecbugs:findsecbugs-plugin:1.12.0'
|
350 | 349 |
|
351 |
| - testFixturesCompileOnly group: 'de.flapdoodle.embed', name: 'de.flapdoodle.embed.mongo', version: '3.4.6' |
| 350 | + testFixturesCompileOnly group: 'de.flapdoodle.embed', name: 'de.flapdoodle.embed.mongo', version: '3.4.8' |
352 | 351 | testFixturesCompileOnly 'org.junit.jupiter:junit-jupiter-api:5.8.1'
|
353 | 352 | testFixturesImplementation group: 'com.google.guava', name: 'guava', version: '29.0-jre'
|
354 | 353 | testFixturesImplementation group: 'org.mongodb', name: 'mongodb-driver-sync', version: '4.5.0'
|
|
0 commit comments