aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorAnton Tananaev <anton@traccar.org>2024-01-14 08:20:49 -0800
committerAnton Tananaev <anton@traccar.org>2024-01-14 08:20:49 -0800
commit093cc360cd1ac64b50b59780b621a58a043e1623 (patch)
tree121d38ecedc991b8cfb4bbf2a73b7f57b2157b5a /build.gradle
parent64b2d09ecc58ba68eea39fdb538f22accf386e72 (diff)
downloadtrackermap-server-093cc360cd1ac64b50b59780b621a58a043e1623.tar.gz
trackermap-server-093cc360cd1ac64b50b59780b621a58a043e1623.tar.bz2
trackermap-server-093cc360cd1ac64b50b59780b621a58a043e1623.zip
Update project dependencies
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle34
1 files changed, 17 insertions, 17 deletions
diff --git a/build.gradle b/build.gradle
index a51ebaff0..9239360bc 100644
--- a/build.gradle
+++ b/build.gradle
@@ -14,7 +14,7 @@ compileJava.options.encoding = "UTF-8"
jar.destinationDirectory = file("$projectDir/target")
checkstyle {
- toolVersion = "10.12.0"
+ toolVersion = "10.12.5"
configFile = "gradle/checkstyle.xml" as File
checkstyleTest.enabled = false
}
@@ -27,11 +27,11 @@ enforce {
ext {
guiceVersion = "7.0.0"
- jettyVersion = "11.0.18"
- jerseyVersion = "3.1.3"
- jacksonVersion = "2.15.2" // same version as jersey-media-json-jackson dependency
- protobufVersion = "3.24.0"
- jxlsVersion = "2.13.0"
+ jettyVersion = "11.0.19"
+ jerseyVersion = "3.1.5"
+ jacksonVersion = "2.15.3" // same version as jersey-media-json-jackson dependency
+ protobufVersion = "3.25.2"
+ jxlsVersion = "2.14.0"
junitVersion = "5.10.1"
}
@@ -45,12 +45,12 @@ dependencies {
implementation "commons-codec:commons-codec:1.16.0"
implementation "com.h2database:h2:2.2.224"
implementation "com.mysql:mysql-connector-j:8.2.0"
- implementation "org.mariadb.jdbc:mariadb-java-client:3.3.0"
- implementation "org.postgresql:postgresql:42.6.0"
+ implementation "org.mariadb.jdbc:mariadb-java-client:3.3.2"
+ implementation "org.postgresql:postgresql:42.7.1"
implementation "com.microsoft.sqlserver:mssql-jdbc:12.4.2.jre11"
implementation "com.zaxxer:HikariCP:5.1.0"
- implementation "io.netty:netty-all:4.1.101.Final"
- implementation "org.slf4j:slf4j-jdk14:2.0.9"
+ implementation "io.netty:netty-all:4.1.104.Final"
+ implementation "org.slf4j:slf4j-jdk14:2.0.11"
implementation "com.google.inject:guice:$guiceVersion"
implementation "com.google.inject.extensions:guice-servlet:$guiceVersion"
implementation "org.owasp.encoder:encoder:1.2.3"
@@ -66,7 +66,7 @@ dependencies {
implementation "org.glassfish.jersey.containers:jersey-container-servlet:$jerseyVersion"
implementation "org.glassfish.jersey.media:jersey-media-json-jackson:$jerseyVersion"
implementation "org.glassfish.jersey.inject:jersey-hk2:$jerseyVersion"
- implementation "org.glassfish.hk2:guice-bridge:3.0.4" // same version as jersey-hk2
+ implementation "org.glassfish.hk2:guice-bridge:3.0.5" // same version as jersey-hk2
implementation "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:$jacksonVersion"
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jakarta-jsonp:$jacksonVersion"
implementation "org.liquibase:liquibase-core:4.23.2" // upgrade has issues
@@ -79,20 +79,20 @@ dependencies {
implementation "org.mnode.ical4j:ical4j:3.2.14"
implementation "org.locationtech.spatial4j:spatial4j:0.8"
implementation "org.locationtech.jts:jts-core:1.19.0"
- implementation "net.java.dev.jna:jna-platform:5.13.0"
+ implementation "net.java.dev.jna:jna-platform:5.14.0"
implementation "com.github.jnr:jnr-posix:3.1.18"
implementation "com.google.protobuf:protobuf-java:$protobufVersion"
- implementation "com.amazonaws:aws-java-sdk-sns:1.12.592"
- implementation "org.apache.kafka:kafka-clients:3.6.0"
+ implementation "com.amazonaws:aws-java-sdk-sns:1.12.636"
+ implementation "org.apache.kafka:kafka-clients:3.6.1"
implementation "com.hivemq:hivemq-mqtt-client:1.3.3"
- implementation "redis.clients:jedis:5.0.2"
+ implementation "redis.clients:jedis:5.1.0"
implementation "com.google.firebase:firebase-admin:9.2.0"
- implementation "com.nimbusds:oauth2-oidc-sdk:11.6"
+ implementation "com.nimbusds:oauth2-oidc-sdk:11.9.1"
implementation "com.rabbitmq:amqp-client:5.20.0"
implementation "com.warrenstrange:googleauth:1.5.0"
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testImplementation "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
- testImplementation "org.mockito:mockito-core:5.7.0"
+ testImplementation "org.mockito:mockito-core:5.8.0"
}
test {