@@ -5,7 +5,7 @@ plugins {
55 id ' signing'
66 id ' pmd' // code check, working on source code
77 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
99 id ' de.undercouch.download' version ' 5.6.0'
1010 id ' kr.motd.sphinx' version ' 2.10.1' // documentation generation
1111 id ' jacoco' // java code coverage plugin
1818 javaVersion = JavaVersion . VERSION_17
1919 groovyVersion = " 4.0"
2020 groovyBinaryVersion = " 4.0.23"
21- testcontainersVersion = ' 1.20.1 '
21+ testcontainersVersion = ' 1.20.3 '
2222
2323 scriptsLocation = ' gradle' + File . separator + ' scripts' + File . separator // location of script plugins
2424}
@@ -70,10 +70,10 @@ dependencies {
7070 // testing
7171 testImplementation " org.apache.groovy:groovy:$groovyBinaryVersion "
7272
73- testImplementation ' org.junit.jupiter:junit-jupiter:5.11.0 '
73+ testImplementation ' org.junit.jupiter:junit-jupiter:5.11.3 '
7474 testImplementation " org.spockframework:spock-core:2.3-groovy-$groovyVersion "
7575 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
7777
7878 // testcontainers (docker framework for testing)
7979 testImplementation " org.testcontainers:testcontainers:$testcontainersVersion "
@@ -83,14 +83,14 @@ dependencies {
8383 testImplementation " org.testcontainers:couchbase:$testcontainersVersion "
8484
8585 // 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 ' )
8787 implementation ' org.apache.logging.log4j:log4j-api' // log4j
8888 implementation ' org.apache.logging.log4j:log4j-core' // log4j
8989 implementation ' org.apache.logging.log4j:log4j-slf4j-impl' // log4j -> slf4j
9090
9191 // Databases
9292 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 '
9494 runtimeOnly ' org.postgresql:postgresql:42.7.4' // postgresql jdbc driver required during runtime
9595
9696 implementation ' commons-io:commons-io:2.17.0' // I/O functionalities
0 commit comments