aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle10
1 files changed, 6 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle
index 36fc2f6df..5f7396dba 100644
--- a/build.gradle
+++ b/build.gradle
@@ -12,8 +12,8 @@ repositories {
ext {
guiceVersion = "5.0.1"
jettyVersion = "10.0.7" // jetty 11 javax to jakarta
- jerseyVersion = "2.35" // jersey 3 javax to jakarta
- jacksonVersion = "2.12.2" // same version as jersey-media-json-jackson dependency
+ jerseyVersion = "2.36" // jersey 3 javax to jakarta
+ jacksonVersion = "2.13.3" // same version as jersey-media-json-jackson dependency
protobufVersion = "3.19.3"
}
@@ -83,7 +83,9 @@ dependencies {
implementation "com.sun.xml.bind:jaxb-impl:3.0.2"
implementation "javax.activation:activation:1.1.1"
implementation "com.amazonaws:aws-java-sdk-sns:1.12.141"
- implementation "com.google.firebase:firebase-admin:9.0.0"
+ implementation ("com.google.firebase:firebase-admin:9.0.0") {
+ exclude group: 'com.google.cloud', module: 'google-cloud-firestore'
+ }
testImplementation "junit:junit:4.13.2"
testImplementation "org.mockito:mockito-core:3.+"
}
@@ -98,7 +100,7 @@ jar {
manifest {
attributes(
"Main-Class": "org.traccar.Main",
- "Implementation-Version": "5.2",
+ "Implementation-Version": "5.3",
"Class-Path": configurations.runtimeClasspath.files.collect { "lib/$it.name" }.join(" "))
}
}