21
21
groovyBinaryVersion = " 4.0.27"
22
22
23
23
junitVersion = ' 1.12.0'
24
- testcontainersVersion = ' 1.21.1 '
24
+ testcontainersVersion = ' 1.21.2 '
25
25
26
26
scriptsLocation = ' gradle' + File . separator + ' scripts' + File . separator // location of script plugins
27
27
}
@@ -81,7 +81,7 @@ dependencies {
81
81
testImplementation " org.junit.jupiter:junit-jupiter:$junitVersion "
82
82
testImplementation " org.spockframework:spock-core:2.3-groovy-$groovyVersion "
83
83
testImplementation ' org.objenesis:objenesis:3.4' // Mock creation with constructor parameters
84
- testImplementation ' net.bytebuddy:byte-buddy:1.17.5 ' // Mocks of classes
84
+ testImplementation ' net.bytebuddy:byte-buddy:1.17.6 ' // Mocks of classes
85
85
86
86
// testcontainers (docker framework for testing)
87
87
testImplementation " org.testcontainers:testcontainers:$testcontainersVersion "
@@ -91,15 +91,15 @@ dependencies {
91
91
testImplementation " org.testcontainers:couchbase:$testcontainersVersion "
92
92
93
93
// logging
94
- implementation platform(' org.apache.logging.log4j:log4j-bom:2.24.3 ' )
94
+ implementation platform(' org.apache.logging.log4j:log4j-bom:2.25.0 ' )
95
95
implementation ' org.apache.logging.log4j:log4j-api' // log4j
96
96
implementation ' org.apache.logging.log4j:log4j-core' // log4j
97
97
implementation ' org.apache.logging.log4j:log4j-slf4j-impl' // log4j -> slf4j
98
98
99
99
// Databases
100
100
implementation ' org.influxdb:influxdb-java:2.25'
101
101
implementation ' com.couchbase.client:java-client:3.8.2'
102
- runtimeOnly ' org.postgresql:postgresql:42.7.6 ' // postgresql jdbc driver required during runtime
102
+ runtimeOnly ' org.postgresql:postgresql:42.7.7 ' // postgresql jdbc driver required during runtime
103
103
104
104
implementation ' commons-io:commons-io:2.19.0' // I/O functionalities
105
105
implementation ' commons-codec:commons-codec:1.18.0' // needed by commons-compress
0 commit comments