aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2019-08-24 14:17:44 -0700
committerAnton Tananaev <anton.tananaev@gmail.com>2019-08-24 14:17:44 -0700
commit5f59de8e7f4b5bd10362c215f90c8a52dc78ff1a (patch)
tree4a9ddc5305b2e860e63c340e9bb8c487d5ac05a2 /build.gradle
parent4860e6ede4a174443bce1d5a809b5dfe1ae68543 (diff)
downloadtraccar-server-5f59de8e7f4b5bd10362c215f90c8a52dc78ff1a.tar.gz
traccar-server-5f59de8e7f4b5bd10362c215f90c8a52dc78ff1a.tar.bz2
traccar-server-5f59de8e7f4b5bd10362c215f90c8a52dc78ff1a.zip
Upgrade Java libraries
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle30
1 files changed, 15 insertions, 15 deletions
diff --git a/build.gradle b/build.gradle
index 6d14aeb4e..f744cbf5f 100644
--- a/build.gradle
+++ b/build.gradle
@@ -17,20 +17,20 @@ checkstyle {
ext {
guiceVersion = "4.2.2"
- jettyVersion = "9.4.18.v20190429"
- jerseyVersion = "2.28"
- jacksonVersion = "2.9.8"
+ jettyVersion = "9.4.20.v20190813"
+ jerseyVersion = "2.29"
+ jacksonVersion = "2.9.9" // same version as jersey-media-json-jackson dependency
}
dependencies {
- implementation "commons-codec:commons-codec:1.12"
+ implementation "commons-codec:commons-codec:1.13"
implementation "com.h2database:h2:1.4.199"
- implementation "mysql:mysql-connector-java:8.0.15"
- implementation "org.postgresql:postgresql:42.2.5"
- implementation "com.microsoft.sqlserver:mssql-jdbc:7.2.2.jre8"
+ implementation "mysql:mysql-connector-java:8.0.17"
+ implementation "org.postgresql:postgresql:42.2.6"
+ implementation "com.microsoft.sqlserver:mssql-jdbc:7.4.1.jre8"
implementation "com.zaxxer:HikariCP:3.3.1"
- implementation "io.netty:netty-all:4.1.35.Final"
- implementation "org.slf4j:slf4j-jdk14:1.7.26"
+ implementation "io.netty:netty-all:4.1.39.Final"
+ implementation "org.slf4j:slf4j-jdk14:1.7.28"
implementation "com.google.inject:guice:$guiceVersion"
implementation "com.google.inject.extensions:guice-assistedinject:$guiceVersion"
implementation "org.owasp.encoder:encoder:1.2.2"
@@ -46,19 +46,19 @@ dependencies {
implementation "org.glassfish.jersey.inject:jersey-hk2:$jerseyVersion"
implementation "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:$jacksonVersion"
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr353:$jacksonVersion"
- implementation "org.liquibase:liquibase-core:3.6.3", {
+ implementation "org.liquibase:liquibase-core:3.8.0", {
exclude group: "ch.qos.logback", module: "logback-classic"
}
implementation "com.sun.mail:javax.mail:1.6.2"
- implementation "org.jxls:jxls:2.4.7"
- implementation "org.jxls:jxls-poi:1.0.16"
+ implementation "org.jxls:jxls:2.4.7" // needs upgrade
+ implementation "org.jxls:jxls-poi:1.0.16" // needs upgrade
implementation "org.apache.velocity:velocity:1.7"
implementation "org.apache.velocity:velocity-tools:2.0"
- implementation "org.apache.commons:commons-collections4:4.2"
+ implementation "org.apache.commons:commons-collections4:4.4"
implementation "org.mnode.ical4j:ical4j:2.0.5" // needs upgrade
implementation "com.fizzed:ch-smpp:6.0.0-netty4-beta-3"
- implementation "net.java.dev.jna:jna-platform:5.3.1"
- implementation "com.github.jnr:jnr-posix:3.0.49"
+ implementation "net.java.dev.jna:jna-platform:5.4.0"
+ implementation "com.github.jnr:jnr-posix:3.0.50"
implementation "javax.xml.bind:jaxb-api:2.3.1"
implementation "com.sun.xml.bind:jaxb-core:2.3.0.1"
implementation "com.sun.xml.bind:jaxb-impl:2.3.2"