aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorAnton Tananaev <anton@traccar.org>2023-02-04 14:13:37 -0800
committerAnton Tananaev <anton@traccar.org>2023-02-04 14:13:37 -0800
commit5fb56cc35f0448336100f83008b6a82b051386e6 (patch)
treedc908302c0fcdd06d685757f2993ebc6d249f4b9 /build.gradle
parent1e354ec746635b5773150ac4169ac7468cb227b9 (diff)
downloadtrackermap-server-5fb56cc35f0448336100f83008b6a82b051386e6.tar.gz
trackermap-server-5fb56cc35f0448336100f83008b6a82b051386e6.tar.bz2
trackermap-server-5fb56cc35f0448336100f83008b6a82b051386e6.zip
Update Java dependencies
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle60
1 files changed, 30 insertions, 30 deletions
diff --git a/build.gradle b/build.gradle
index 1a904d661..2b072f0f9 100644
--- a/build.gradle
+++ b/build.gradle
@@ -9,15 +9,6 @@ repositories {
mavenCentral()
}
-ext {
- guiceVersion = "5.1.0"
- jettyVersion = "10.0.12" // jetty 11 javax to jakarta
- jerseyVersion = "2.37" // jersey 3 javax to jakarta
- jacksonVersion = "2.13.4" // same version as jersey-media-json-jackson dependency
- protobufVersion = "3.21.9"
- jxlsVersion = "2.12.0"
-}
-
sourceCompatibility = "11"
compileJava.options.encoding = "UTF-8"
jar.destinationDirectory = file("$projectDir/target")
@@ -28,27 +19,36 @@ checkstyle {
checkstyleTest.enabled = false
}
-protobuf {
- protoc {
- artifact = "com.google.protobuf:protoc:$protobufVersion"
- }
-}
-
enforce {
rule(enforcer.rules.EnforceBytecodeVersion) { r ->
r.maxJdkVersion = "11"
}
}
+ext {
+ guiceVersion = "5.1.0"
+ jettyVersion = "10.0.13" // jetty 11 javax to jakarta
+ jerseyVersion = "2.38" // jersey 3 javax to jakarta
+ jacksonVersion = "2.13.3" // same version as jersey-media-json-jackson dependency
+ protobufVersion = "3.21.12"
+ jxlsVersion = "2.12.0"
+}
+
+protobuf {
+ protoc {
+ artifact = "com.google.protobuf:protoc:$protobufVersion"
+ }
+}
+
dependencies {
implementation "commons-codec:commons-codec:1.15"
implementation "com.h2database:h2:2.1.214"
- implementation "com.mysql:mysql-connector-j:8.0.31"
- implementation "org.postgresql:postgresql:42.5.1"
- implementation "com.microsoft.sqlserver:mssql-jdbc:11.2.1.jre11"
+ implementation "com.mysql:mysql-connector-j:8.0.32"
+ implementation "org.postgresql:postgresql:42.5.3"
+ implementation "com.microsoft.sqlserver:mssql-jdbc:12.2.0.jre11"
implementation "com.zaxxer:HikariCP:5.0.1"
- implementation "io.netty:netty-all:4.1.85.Final"
- implementation "org.slf4j:slf4j-jdk14:2.0.5"
+ implementation "io.netty:netty-all:4.1.87.Final"
+ implementation "org.slf4j:slf4j-jdk14:2.0.6"
implementation "com.google.inject:guice:$guiceVersion"
implementation "com.google.inject.extensions:guice-servlet:$guiceVersion"
implementation "org.owasp.encoder:encoder:1.2.3"
@@ -66,26 +66,26 @@ dependencies {
implementation "org.glassfish.hk2:guice-bridge:2.6.1" // same version as jersey-hk2
implementation "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:$jacksonVersion"
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr353:$jacksonVersion"
- implementation "org.liquibase:liquibase-core:4.17.2"
+ implementation "org.liquibase:liquibase-core:4.19.0"
implementation "com.sun.mail:jakarta.mail:1.6.7"
implementation "org.jxls:jxls:$jxlsVersion"
implementation "org.jxls:jxls-poi:$jxlsVersion"
- implementation 'org.apache.velocity:velocity-engine-core:2.3'
- implementation 'org.apache.velocity.tools:velocity-tools-generic:3.1'
+ implementation "org.apache.velocity:velocity-engine-core:2.3"
+ implementation "org.apache.velocity.tools:velocity-tools-generic:3.1"
implementation "org.apache.commons:commons-collections4:4.4"
- implementation "org.mnode.ical4j:ical4j:3.2.7"
+ implementation "org.mnode.ical4j:ical4j:3.2.8"
implementation "org.locationtech.spatial4j:spatial4j:0.8"
implementation "org.locationtech.jts:jts-core:1.19.0"
- implementation "net.java.dev.jna:jna-platform:5.12.1"
+ implementation "net.java.dev.jna:jna-platform:5.13.0"
implementation "com.github.jnr:jnr-posix:3.1.16"
implementation "com.google.protobuf:protobuf-java:$protobufVersion"
implementation "javax.activation:activation:1.1.1"
- implementation "com.amazonaws:aws-java-sdk-sns:1.12.349"
- implementation "org.apache.kafka:kafka-clients:3.3.1"
- implementation 'com.hivemq:hivemq-mqtt-client:1.3.0'
+ implementation "com.amazonaws:aws-java-sdk-sns:1.12.399"
+ implementation "org.apache.kafka:kafka-clients:3.3.2"
+ implementation "com.hivemq:hivemq-mqtt-client:1.3.0"
implementation("com.google.firebase:firebase-admin:9.1.1") {
- exclude group: 'com.google.cloud', module: 'google-cloud-firestore'
- exclude group: 'com.google.cloud', module: 'google-cloud-storage'
+ exclude group: "com.google.cloud", module: "google-cloud-firestore"
+ exclude group: "com.google.cloud", module: "google-cloud-storage"
}
testImplementation "junit:junit:4.13.2"
testImplementation "org.mockito:mockito-core:4.+"