@@ -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.23 ' // code check, working on byte code
8
+ id ' com.github.spotbugs' version ' 6.0.25 ' // 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
18
18
javaVersion = JavaVersion . VERSION_17
19
19
groovyVersion = " 4.0"
20
20
groovyBinaryVersion = " 4.0.23"
21
- testcontainersVersion = ' 1.20.1 '
21
+ testcontainersVersion = ' 1.20.3 '
22
22
23
23
scriptsLocation = ' gradle' + File . separator + ' scripts' + File . separator // location of script plugins
24
24
}
@@ -70,10 +70,10 @@ dependencies {
70
70
// testing
71
71
testImplementation " org.apache.groovy:groovy:$groovyBinaryVersion "
72
72
73
- testImplementation ' org.junit.jupiter:junit-jupiter:5.11.0 '
73
+ testImplementation ' org.junit.jupiter:junit-jupiter:5.11.3 '
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
- testImplementation ' net.bytebuddy:byte-buddy:1.15.1 ' // Mocks of classes
76
+ testImplementation ' net.bytebuddy:byte-buddy:1.15.7 ' // Mocks of classes
77
77
78
78
// testcontainers (docker framework for testing)
79
79
testImplementation " org.testcontainers:testcontainers:$testcontainersVersion "
@@ -83,14 +83,14 @@ dependencies {
83
83
testImplementation " org.testcontainers:couchbase:$testcontainersVersion "
84
84
85
85
// logging
86
- implementation platform(' org.apache.logging.log4j:log4j-bom:2.24.0 ' )
86
+ implementation platform(' org.apache.logging.log4j:log4j-bom:2.24.1 ' )
87
87
implementation ' org.apache.logging.log4j:log4j-api' // log4j
88
88
implementation ' org.apache.logging.log4j:log4j-core' // log4j
89
89
implementation ' org.apache.logging.log4j:log4j-slf4j-impl' // log4j -> slf4j
90
90
91
91
// Databases
92
92
implementation ' org.influxdb:influxdb-java:2.24'
93
- implementation ' com.couchbase.client:java-client:3.7.3 '
93
+ implementation ' com.couchbase.client:java-client:3.7.4 '
94
94
runtimeOnly ' org.postgresql:postgresql:42.7.4' // postgresql jdbc driver required during runtime
95
95
96
96
implementation ' commons-io:commons-io:2.17.0' // I/O functionalities
0 commit comments