@@ -5,7 +5,7 @@ plugins {
5
5
id ' signing'
6
6
id ' pmd' // code check, working on source code
7
7
id ' com.diffplug.spotless' version ' 6.25.0' // code format
8
- id ' com.github.spotbugs' version ' 6.0.19 ' // code check, working on byte code
8
+ id ' com.github.spotbugs' version ' 6.0.20 ' // code check, working on byte code
9
9
id ' de.undercouch.download' version ' 5.6.0'
10
10
id ' kr.motd.sphinx' version ' 2.10.1' // documentation generation
11
11
id ' jacoco' // java code coverage plugin
@@ -70,7 +70,7 @@ dependencies {
70
70
// testing
71
71
testImplementation " org.apache.groovy:groovy:$groovyBinaryVersion "
72
72
73
- testImplementation ' org.junit.jupiter:junit-jupiter:5.10.3 '
73
+ testImplementation ' org.junit.jupiter:junit-jupiter:5.11.0 '
74
74
testImplementation " org.spockframework:spock-core:2.3-groovy-$groovyVersion "
75
75
testImplementation ' org.objenesis:objenesis:3.4' // Mock creation with constructor parameters
76
76
testImplementation ' net.bytebuddy:byte-buddy:1.14.18' // Mocks of classes
@@ -90,12 +90,12 @@ dependencies {
90
90
91
91
// Databases
92
92
implementation ' org.influxdb:influxdb-java:2.24'
93
- implementation ' com.couchbase.client:java-client:3.7.1 '
93
+ implementation ' com.couchbase.client:java-client:3.7.2 '
94
94
runtimeOnly ' org.postgresql:postgresql:42.7.3' // postgresql jdbc driver required during runtime
95
95
96
96
implementation ' commons-io:commons-io:2.16.1' // I/O functionalities
97
97
implementation ' commons-codec:commons-codec:1.17.1' // needed by commons-compress
98
- implementation ' org.apache.commons:commons-compress:1.26.2 ' // I/O functionalities
98
+ implementation ' org.apache.commons:commons-compress:1.27.0 ' // I/O functionalities
99
99
}
100
100
101
101
tasks. withType(JavaCompile ) {
0 commit comments