Skip to content

Commit

Permalink
Upgrade java dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pujagani committed Nov 26, 2021
1 parent e6dc722 commit 612896f
Show file tree
Hide file tree
Showing 4 changed files with 1,218 additions and 1,172 deletions.
20 changes: 9 additions & 11 deletions java/maven_deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ load("@rules_jvm_external//:defs.bzl", "maven_install")
load("@rules_jvm_external//:specs.bzl", "maven")

def selenium_java_deps():
netty_version = "4.1.69.Final"
opentelemetry_version = "1.9.0"
netty_version = "4.1.70.Final"
opentelemetry_version = "1.9.1"

maven_install(
artifacts = [
Expand All @@ -22,7 +22,7 @@ def selenium_java_deps():
"com.google.auto:auto-common:1.2.1",
"com.google.auto.service:auto-service:1.0.1",
"com.google.auto.service:auto-service-annotations:1.0.1",
"com.graphql-java:graphql-java:17.0",
"com.graphql-java:graphql-java:230521-nf-execution",
"io.grpc:grpc-context:1.42.1",
"io.lettuce:lettuce-core:6.1.5.RELEASE",
"io.netty:netty-buffer:%s" % netty_version,
Expand All @@ -33,10 +33,8 @@ def selenium_java_deps():
"io.netty:netty-handler:%s" % netty_version,
"io.netty:netty-handler-proxy:%s" % netty_version,
"io.netty:netty-transport:%s" % netty_version,
"io.netty:netty-transport-native-epoll:%s" % netty_version,
"io.netty:netty-transport-native-epoll:jar:linux-x86_64:%s" % netty_version,
"io.netty:netty-transport-native-kqueue:%s" % netty_version,
"io.netty:netty-transport-native-kqueue:jar:osx-x86_64:%s" % netty_version,
"io.netty:netty-transport-classes-epoll:%s" % netty_version,
"io.netty:netty-transport-classes-kqueue:%s" % netty_version,
"io.netty:netty-transport-native-unix-common:%s" % netty_version,
"io.opentelemetry:opentelemetry-api:%s" % opentelemetry_version,
"io.opentelemetry:opentelemetry-context:%s" % opentelemetry_version,
Expand All @@ -61,7 +59,7 @@ def selenium_java_deps():
"org.hamcrest:hamcrest-library",
],
),
"net.bytebuddy:byte-buddy:1.12.1",
"net.bytebuddy:byte-buddy:1.12.2",
"net.jodah:failsafe:2.4.4",
"net.sourceforge.htmlunit:htmlunit-core-js:2.55.0",
"org.apache.commons:commons-exec:1.3",
Expand All @@ -70,9 +68,9 @@ def selenium_java_deps():
"org.eclipse.mylyn.github:org.eclipse.egit.github.core:2.1.5",
"org.hamcrest:hamcrest:2.2",
"org.hsqldb:hsqldb:2.6.1",
"org.mockito:mockito-core:4.0.0",
"org.slf4j:slf4j-api:1.7.32",
"org.slf4j:slf4j-jdk14:1.7.32",
"org.mockito:mockito-core:4.1.0",
"org.slf4j:slf4j-api:2.0.0-alpha5",

This comment has been minimized.

Copy link
@valfirst

valfirst Dec 2, 2021

Contributor

@pujagani this version is not compatible with the latest Log4J: https://issues.apache.org/jira/browse/LOG4J2-3139. It makes sense to revert this change

This comment has been minimized.

Copy link
@pujagani

pujagani Dec 2, 2021

Author Contributor

Thank you for bringing this to my notice. I will fix it.

"org.slf4j:slf4j-jdk14:2.0.0-alpha5",
"org.testng:testng:7.4.0",
"org.zeromq:jeromq:0.5.2",
"xyz.rogfam:littleproxy:2.0.5",
Expand Down
Loading

0 comments on commit 612896f

Please sign in to comment.