diff --git a/src/main/java/org/myrobotlab/service/meta/RuntimeMeta.java b/src/main/java/org/myrobotlab/service/meta/RuntimeMeta.java index f21e872171..087403e44e 100644 --- a/src/main/java/org/myrobotlab/service/meta/RuntimeMeta.java +++ b/src/main/java/org/myrobotlab/service/meta/RuntimeMeta.java @@ -20,10 +20,10 @@ public RuntimeMeta() { // logback gets upset if its in the jar and in the libraries dir // so backend will just be in the libraries dir - addDependency("ch.qos.logback", "logback-classic", "1.2.3"); + addDependency("ch.qos.logback", "logback-classic", "1.2.13"); includeServiceInOneJar(true); - + // for proxy generation addDependency("net.bytebuddy", "byte-buddy", "1.12.16"); @@ -39,7 +39,7 @@ public RuntimeMeta() { // apache 2.0 license - REMOVE in favor of okhttp // FIXME - replace apache with okhttp addDependency("org.apache.httpcomponents", "httpclient", "4.5.13"); - + // apache 2.0 license addDependency("info.picocli", "picocli", "4.4.0"); // all your logging needs @@ -50,9 +50,9 @@ public RuntimeMeta() { // ws best client websockets with Apache license addDependency("com.squareup.okhttp3", "okhttp", "3.9.0"); - + // force correct version of netty - needed for Vertx but not for Runtime ? - addDependency("io.netty", "netty-all", "4.1.82.Final"); + addDependency("io.netty", "netty-all", "4.1.82.Final"); } diff --git a/src/main/java/org/myrobotlab/service/meta/VertxMeta.java b/src/main/java/org/myrobotlab/service/meta/VertxMeta.java index 5df3929a9e..024de412b1 100644 --- a/src/main/java/org/myrobotlab/service/meta/VertxMeta.java +++ b/src/main/java/org/myrobotlab/service/meta/VertxMeta.java @@ -22,10 +22,10 @@ public VertxMeta() { setAvailable(true); // add dependencies if necessary - addDependency("io.vertx", "vertx-core", "4.3.3"); + addDependency("io.vertx", "vertx-core", "4.3.8"); exclude("io.netty", "*"); // it brings in an old version of netty - addDependency("io.vertx", "vertx-web", "4.3.3"); + addDependency("io.vertx", "vertx-web", "4.3.8"); exclude("io.netty", "*"); // it brings in an old version of netty // force correct version of netty