Skip to content

Commit

Permalink
updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
supertick committed Dec 10, 2023
1 parent a6d1bac commit cd5ef8d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions src/main/java/org/myrobotlab/service/meta/RuntimeMeta.java
Original file line number Diff line number Diff line change
Expand Up @@ -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");

Expand All @@ -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
Expand All @@ -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");

}

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/myrobotlab/service/meta/VertxMeta.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cd5ef8d

Please sign in to comment.