@@ -4,8 +4,8 @@ plugins {
44 id ' maven-publish'
55 id ' signing'
66 id ' pmd' // code check, working on source code
7- id ' com.diffplug.spotless' version ' 7.0.3 ' // code format
8- id ' com.github.spotbugs' version ' 6.1.12 ' // code check, working on byte code
7+ id ' com.diffplug.spotless' version ' 7.0.4 ' // code format
8+ id ' com.github.spotbugs' version ' 6.2.0 ' // 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
@@ -18,10 +18,10 @@ ext {
1818 // version (changing these should be considered thoroughly!)
1919 javaVersion = JavaVersion . VERSION_17
2020 groovyVersion = " 4.0"
21- groovyBinaryVersion = " 4.0.26 "
21+ groovyBinaryVersion = " 4.0.27 "
2222
2323 junitVersion = ' 1.12.0'
24- testcontainersVersion = ' 1.21.0 '
24+ testcontainersVersion = ' 1.21.2 '
2525
2626 scriptsLocation = ' gradle' + File . separator + ' scripts' + File . separator // location of script plugins
2727}
@@ -81,7 +81,7 @@ dependencies {
8181 testImplementation " org.junit.jupiter:junit-jupiter:$junitVersion "
8282 testImplementation " org.spockframework:spock-core:2.3-groovy-$groovyVersion "
8383 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
8585
8686 // testcontainers (docker framework for testing)
8787 testImplementation " org.testcontainers:testcontainers:$testcontainersVersion "
@@ -91,15 +91,15 @@ dependencies {
9191 testImplementation " org.testcontainers:couchbase:$testcontainersVersion "
9292
9393 // 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 ' )
9595 implementation ' org.apache.logging.log4j:log4j-api' // log4j
9696 implementation ' org.apache.logging.log4j:log4j-core' // log4j
9797 implementation ' org.apache.logging.log4j:log4j-slf4j-impl' // log4j -> slf4j
9898
9999 // Databases
100100 implementation ' org.influxdb:influxdb-java:2.25'
101- implementation ' com.couchbase.client:java-client:3.8.1 '
102- runtimeOnly ' org.postgresql:postgresql:42.7.5 ' // postgresql jdbc driver required during runtime
101+ implementation ' com.couchbase.client:java-client:3.8.2 '
102+ runtimeOnly ' org.postgresql:postgresql:42.7.7 ' // postgresql jdbc driver required during runtime
103103
104104 implementation ' commons-io:commons-io:2.19.0' // I/O functionalities
105105 implementation ' commons-codec:commons-codec:1.18.0' // needed by commons-compress
0 commit comments