Skip to content

Commit 0072c43

Browse files
authored
Merge branch 'dev' into jb/#762-sql-grid-datasources
2 parents 802d4d2 + 4dd1c49 commit 0072c43

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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.20' // code check, working on byte code
8+
id 'com.github.spotbugs' version '6.0.23' // 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
@@ -17,7 +17,7 @@ ext {
1717
//version (changing these should be considered thoroughly!)
1818
javaVersion = JavaVersion.VERSION_17
1919
groovyVersion = "4.0"
20-
groovyBinaryVersion = "4.0.22"
20+
groovyBinaryVersion = "4.0.23"
2121
testcontainersVersion = '1.20.1'
2222

2323
scriptsLocation = 'gradle' + File.separator + 'scripts' + File.separator //location of script plugins
@@ -58,11 +58,11 @@ dependencies {
5858
implementation 'tech.units:indriya:2.2'
5959

6060
// JTS Topology Suite for GeoPositions, License: EPL 1.0 / EDL 1.0
61-
implementation ('org.locationtech.jts:jts-core:1.19.0'){
61+
implementation ('org.locationtech.jts:jts-core:1.20.0'){
6262
exclude group: 'junit', module: 'junit'
6363
}
6464

65-
implementation 'org.locationtech.jts.io:jts-io-common:1.19.0'
65+
implementation 'org.locationtech.jts.io:jts-io-common:1.20.0'
6666

6767
// Graphs
6868
implementation 'org.jgrapht:jgrapht-core:1.5.2'
@@ -73,7 +73,7 @@ dependencies {
7373
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.0'
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.0' // Mocks of classes
76+
testImplementation 'net.bytebuddy:byte-buddy:1.15.1' // Mocks of classes
7777

7878
// testcontainers (docker framework for testing)
7979
testImplementation "org.testcontainers:testcontainers:$testcontainersVersion"
@@ -83,17 +83,17 @@ dependencies {
8383
testImplementation "org.testcontainers:couchbase:$testcontainersVersion"
8484

8585
// logging
86-
implementation platform('org.apache.logging.log4j:log4j-bom:2.23.1')
86+
implementation platform('org.apache.logging.log4j:log4j-bom:2.24.0')
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.2'
93+
implementation 'com.couchbase.client:java-client:3.7.3'
9494
runtimeOnly 'org.postgresql:postgresql:42.7.4' // postgresql jdbc driver required during runtime
9595

96-
implementation 'commons-io:commons-io:2.16.1' // I/O functionalities
96+
implementation 'commons-io:commons-io:2.17.0' // I/O functionalities
9797
implementation 'commons-codec:commons-codec:1.17.1' // needed by commons-compress
9898
implementation 'org.apache.commons:commons-compress:1.27.1' // I/O functionalities
9999
}

0 commit comments

Comments
 (0)