From 20a380acb74170591627c2e095cccdefa45b0d99 Mon Sep 17 00:00:00 2001 From: Moritz Kiefer Date: Wed, 17 Nov 2021 18:38:49 +0100 Subject: [PATCH] Drop 2.12 versioned_scala_deps MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I’ve kept the infrastructure for versioned_scala_deps around because I’m optimistic and hope that eventually we’ll do another Scala upgrade. changelog_begin changelog_end --- bazel-java-deps.bzl | 24 +- compiler/repl-service/server/BUILD.bazel | 3 - daml-lf/archive/BUILD.bazel | 3 - daml-lf/encoder/BUILD.bazel | 5 - daml-lf/engine/BUILD.bazel | 3 - daml-lf/interpreter/perf/BUILD.bazel | 12 +- daml-lf/language/BUILD.bazel | 3 - daml-lf/repl/BUILD.bazel | 5 - daml-lf/scenario-interpreter/BUILD.bazel | 1 - daml-lf/transaction/BUILD.bazel | 5 - daml-lf/validation/BUILD.bazel | 5 - daml-script/converter/BUILD.bazel | 3 - daml-script/export/BUILD.bazel | 6 - .../java/bindings-rxjava/BUILD.bazel | 9 - language-support/java/bindings/BUILD.bazel | 3 - language-support/java/codegen/BUILD.bazel | 8 - ledger-service/jwt/BUILD.bazel | 5 - ledger/error/BUILD.bazel | 6 - ledger/error/generator/BUILD.bazel | 3 - ledger/ledger-api-common/BUILD.bazel | 4 +- ledger/metrics/BUILD.bazel | 9 - .../participant-integration-api/BUILD.bazel | 6 - libs-scala/build-info/BUILD.bazel | 3 - libs-scala/contextualized-logging/BUILD.bazel | 3 - libs-scala/flyway-testing/BUILD.bazel | 3 - libs-scala/grpc-reverse-proxy/BUILD.bazel | 3 - .../grpc-server-reflection-client/BUILD.bazel | 3 - libs-scala/grpc-test-utils/BUILD.bazel | 3 - libs-scala/grpc-utils/BUILD.bazel | 3 - libs-scala/oracle-testing/BUILD.bazel | 5 - libs-scala/ports/BUILD.bazel | 6 - libs-scala/postgresql-testing/BUILD.bazel | 5 - maven_install_2.13.json | 934 +++++++++--------- navigator/integration-test/BUILD.bazel | 3 - .../non-repudiation/BUILD.bazel | 3 - scala-protoc-plugins/scala-akka/BUILD.bazel | 3 - 36 files changed, 475 insertions(+), 636 deletions(-) diff --git a/bazel-java-deps.bzl b/bazel-java-deps.bzl index 2502421b4593..353745680281 100644 --- a/bazel-java-deps.bzl +++ b/bazel-java-deps.bzl @@ -19,20 +19,6 @@ load( ) version_specific = { - "2.12": [ - ], - "2.13": [ - "org.scala-lang.modules:scala-parallel-collections_2.13:1.0.0", - # Gatling does not cross-build so this is limited to Scala 2.13. - "io.gatling:gatling-app:3.5.1", - "io.gatling:gatling-core:3.5.1", - "io.gatling:gatling-commons:3.5.1", - "io.gatling:gatling-recorder:3.5.1", - "io.gatling:gatling-charts:3.5.1", - "io.gatling.highcharts:gatling-charts-highcharts:3.5.1", - "io.gatling:gatling-http:3.5.1", - "io.gatling:gatling-http-client:3.5.1", - ], } netty_version = "4.1.67.Final" @@ -46,6 +32,7 @@ netty_version = "4.1.67.Final" netty_tcnative_version = "2.0.40.Final" grpc_version = "1.41.0" akka_version = "2.6.13" +gatling_version = "3.5.1" def install_java_deps(): maven_install( @@ -148,6 +135,14 @@ def install_java_deps(): "com.thesamet.scalapb:scalapb-runtime_{}:{}".format(scala_major_version, scalapb_version), "com.thesamet.scalapb:scalapb-runtime-grpc_{}:{}".format(scala_major_version, scalapb_version), # ---- end of grpc-protobuf-netty block + "io.gatling:gatling-app:{}".format(gatling_version), + "io.gatling:gatling-core:{}".format(gatling_version), + "io.gatling:gatling-commons:{}".format(gatling_version), + "io.gatling:gatling-recorder:{}".format(gatling_version), + "io.gatling:gatling-charts:{}".format(gatling_version), + "io.gatling.highcharts:gatling-charts-highcharts:{}".format(gatling_version), + "io.gatling:gatling-http:{}".format(gatling_version), + "io.gatling:gatling-http-client:{}".format(gatling_version), "io.reactivex.rxjava2:rxjava:2.2.1", "io.spray:spray-json_{}:1.3.5".format(scala_major_version), "javax.annotation:javax.annotation-api:1.2", @@ -181,6 +176,7 @@ def install_java_deps(): "org.scalacheck:scalacheck_{}:1.15.4".format(scala_major_version), "org.scala-lang.modules:scala-collection-compat_{}:2.3.2".format(scala_major_version), "org.scala-lang.modules:scala-java8-compat_{}:0.9.0".format(scala_major_version), + "org.scala-lang.modules:scala-parallel-collections_{}:1.0.0".format(scala_major_version), "org.scalameta:munit_{}:0.7.26".format(scala_major_version), "org.scalactic:scalactic_{}:3.2.9".format(scala_major_version), "org.scalatest:scalatest_{}:3.2.9".format(scala_major_version), diff --git a/compiler/repl-service/server/BUILD.bazel b/compiler/repl-service/server/BUILD.bazel index b47a092e781f..a556548cba1c 100644 --- a/compiler/repl-service/server/BUILD.bazel +++ b/compiler/repl-service/server/BUILD.bazel @@ -29,9 +29,6 @@ da_scala_binary( "@maven//:org_scalaz_scalaz_core", ], scalacopts = repl_scalacopts, - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, runtime_deps = [ "@maven//:ch_qos_logback_logback_classic", ], diff --git a/daml-lf/archive/BUILD.bazel b/daml-lf/archive/BUILD.bazel index 2ac2045522ec..65b49360b7c5 100644 --- a/daml-lf/archive/BUILD.bazel +++ b/daml-lf/archive/BUILD.bazel @@ -151,9 +151,6 @@ da_scala_test_suite( "@maven//:org_scalaz_scalaz_scalacheck_binding", ], scalacopts = lf_scalacopts, - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, deps = [ ":daml_lf_1.11_archive_proto_java", ":daml_lf_1.12_archive_proto_java", diff --git a/daml-lf/encoder/BUILD.bazel b/daml-lf/encoder/BUILD.bazel index d6ad0719a42c..fc7898abd518 100644 --- a/daml-lf/encoder/BUILD.bazel +++ b/daml-lf/encoder/BUILD.bazel @@ -48,11 +48,6 @@ da_scala_test_suite( "@maven//:org_scalaz_scalaz_core", ], scalacopts = lf_scalacopts, - versioned_scala_deps = { - "2.12": [ - "@maven//:org_scala_lang_modules_scala_collection_compat", - ], - }, deps = [ ":encoder", "//bazel_tools/runfiles:scala_runfiles", diff --git a/daml-lf/engine/BUILD.bazel b/daml-lf/engine/BUILD.bazel index 7f967a4cd807..b2085e7769d9 100644 --- a/daml-lf/engine/BUILD.bazel +++ b/daml-lf/engine/BUILD.bazel @@ -19,9 +19,6 @@ da_scala_library( ], scalacopts = lf_scalacopts_stricter, tags = ["maven_coordinates=com.daml:daml-lf-engine:__VERSION__"], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, visibility = ["//visibility:public"], deps = [ "//daml-lf/data", diff --git a/daml-lf/interpreter/perf/BUILD.bazel b/daml-lf/interpreter/perf/BUILD.bazel index 7f3592d9cee0..0495c3f9b547 100644 --- a/daml-lf/interpreter/perf/BUILD.bazel +++ b/daml-lf/interpreter/perf/BUILD.bazel @@ -36,7 +36,9 @@ da_scala_binary( ":JsonParser.dar.pp", ], main_class = "com.daml.lf.speedy.explore.ExploreDar", - versioned_scala_deps = {"2.13": ["@maven//:org_scalaz_scalaz_core"]}, + scala_deps = [ + "@maven//:org_scalaz_scalaz_core" + ], runtime_deps = [ "@maven//:ch_qos_logback_logback_classic", ], @@ -60,10 +62,12 @@ da_scala_binary( ":Examples.dar.pp", ], main_class = "com.daml.lf.speedy.explore.SpeedTestNfib", - versioned_scala_deps = {"2.13": ["@maven//:org_scalaz_scalaz_core"]}, runtime_deps = [ "@maven//:ch_qos_logback_logback_classic", ], + scala_deps = [ +"@maven//:org_scalaz_scalaz_core" + ], deps = [ "//bazel_tools/runfiles:scala_runfiles", "//daml-lf/archive:daml_lf_archive_reader", @@ -89,10 +93,12 @@ da_scala_binary( ":JsonParser.dar.pp", ], main_class = "com.daml.lf.speedy.explore.SpeedTestJsonParser", - versioned_scala_deps = {"2.13": ["@maven//:org_scalaz_scalaz_core"]}, runtime_deps = [ "@maven//:ch_qos_logback_logback_classic", ], + scala_deps = [ + "@maven//:org_scalaz_scalaz_core" + ], deps = [ "//bazel_tools/runfiles:scala_runfiles", "//daml-lf/archive:daml_lf_archive_reader", diff --git a/daml-lf/language/BUILD.bazel b/daml-lf/language/BUILD.bazel index ddb65f9823bd..37e49764013d 100644 --- a/daml-lf/language/BUILD.bazel +++ b/daml-lf/language/BUILD.bazel @@ -35,9 +35,6 @@ da_scala_test( scalacopts = lf_scalacopts + [ "-P:silencer:lineContentFilters=signum", ], - versioned_scala_deps = { - "2.12": ["@maven//:org_scalaz_scalaz_core"], - }, deps = [ ":language", "//daml-lf/data", diff --git a/daml-lf/repl/BUILD.bazel b/daml-lf/repl/BUILD.bazel index 8a18d6067c34..c095684d58ee 100644 --- a/daml-lf/repl/BUILD.bazel +++ b/daml-lf/repl/BUILD.bazel @@ -16,11 +16,6 @@ da_scala_binary( "@maven//:org_scalaz_scalaz_core", ], tags = ["maven_coordinates=com.daml:daml-lf-repl:__VERSION__"], - versioned_scala_deps = { - "2.12": [ - "@maven//:org_scala_lang_modules_scala_collection_compat", - ], - }, visibility = ["//visibility:public"], deps = [ "//daml-lf/archive:daml_lf_archive_reader", diff --git a/daml-lf/scenario-interpreter/BUILD.bazel b/daml-lf/scenario-interpreter/BUILD.bazel index ee0bb1fe8c9b..0ec5fbac8764 100644 --- a/daml-lf/scenario-interpreter/BUILD.bazel +++ b/daml-lf/scenario-interpreter/BUILD.bazel @@ -23,7 +23,6 @@ da_scala_library( scala_deps = ["@maven//:org_typelevel_paiges_core"], scalacopts = lf_scalacopts_stricter, tags = ["maven_coordinates=com.daml:daml-lf-scenario-interpreter:__VERSION__"], - versioned_scala_deps = {"2.12": ["@maven//:org_scalaz_scalaz_core"]}, visibility = [ "//visibility:public", ], diff --git a/daml-lf/transaction/BUILD.bazel b/daml-lf/transaction/BUILD.bazel index 836def64b3e9..433c367ae434 100644 --- a/daml-lf/transaction/BUILD.bazel +++ b/daml-lf/transaction/BUILD.bazel @@ -111,11 +111,6 @@ da_scala_test( silencer_plugin, ], scalacopts = lf_scalacopts, - versioned_scala_deps = { - "2.12": [ - "@maven//:org_scalaz_scalaz_core", - ], - }, deps = [ ":transaction", "//daml-lf/data", diff --git a/daml-lf/validation/BUILD.bazel b/daml-lf/validation/BUILD.bazel index a54344d78ee2..c4fc851eccd1 100644 --- a/daml-lf/validation/BUILD.bazel +++ b/daml-lf/validation/BUILD.bazel @@ -42,11 +42,6 @@ da_scala_test( scalacopts = lf_scalacopts + [ "-P:silencer:lineContentFilters=standardInterpolator", ], - versioned_scala_deps = { - "2.12": [ - "@maven//:org_scalaz_scalaz_core", - ], - }, deps = [ ":validation", "//daml-lf/data", diff --git a/daml-script/converter/BUILD.bazel b/daml-script/converter/BUILD.bazel index df9c4eabd786..c05dddfb7653 100644 --- a/daml-script/converter/BUILD.bazel +++ b/daml-script/converter/BUILD.bazel @@ -18,9 +18,6 @@ da_scala_library( ], scalacopts = script_scalacopts, tags = ["maven_coordinates=com.daml:script-converter:__VERSION__"], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, visibility = ["//visibility:public"], deps = [ "//daml-lf/data", diff --git a/daml-script/export/BUILD.bazel b/daml-script/export/BUILD.bazel index 67204f256970..4e8b80f4da30 100644 --- a/daml-script/export/BUILD.bazel +++ b/daml-script/export/BUILD.bazel @@ -37,12 +37,6 @@ da_scala_binary( "@maven//:io_circe_circe_core", "@maven//:io_circe_circe_yaml", ], - versioned_scala_deps = { - "2.12": [ - "@maven//:org_typelevel_cats_core", - "@maven//:org_typelevel_cats_kernel", - ], - }, visibility = ["//visibility:public"], deps = [ "//daml-lf/archive:daml_lf_archive_reader", diff --git a/language-support/java/bindings-rxjava/BUILD.bazel b/language-support/java/bindings-rxjava/BUILD.bazel index 4d29d8ad9491..17a77bfc6af6 100644 --- a/language-support/java/bindings-rxjava/BUILD.bazel +++ b/language-support/java/bindings-rxjava/BUILD.bazel @@ -67,9 +67,6 @@ da_scala_library( "@maven//:org_scalatest_scalatest_matchers_core", "@maven//:org_scalatest_scalatest_shouldmatchers", ], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, deps = [ ":bindings-rxjava", "//daml-lf/data", @@ -115,9 +112,6 @@ da_scala_test_suite( "@maven//:org_scalatest_scalatest_wordspec", "@maven//:org_scalatestplus_scalacheck_1_15", ], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, deps = [ ":bindings-integration-tests-model-latest.jar", ":bindings-java-tests-lib", @@ -156,9 +150,6 @@ da_scala_test( "@maven//:org_scalatest_scalatest_matchers_core", "@maven//:org_scalatest_scalatest_shouldmatchers", ], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, deps = [ ":bindings-java-tests-lib", ":bindings-rxjava", diff --git a/language-support/java/bindings/BUILD.bazel b/language-support/java/bindings/BUILD.bazel index bb5b06a4db00..53c04590fa63 100644 --- a/language-support/java/bindings/BUILD.bazel +++ b/language-support/java/bindings/BUILD.bazel @@ -90,9 +90,6 @@ da_scala_library( scala_deps = [ "@maven//:org_scalacheck_scalacheck", ], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, visibility = [ "//ledger-service/http-json:__subpackages__", ], diff --git a/language-support/java/codegen/BUILD.bazel b/language-support/java/codegen/BUILD.bazel index 24dfe76eb656..dcd2e287e168 100644 --- a/language-support/java/codegen/BUILD.bazel +++ b/language-support/java/codegen/BUILD.bazel @@ -90,11 +90,6 @@ da_scala_test( "@maven//:org_scalatest_scalatest_shouldmatchers", "@maven//:org_scalaz_scalaz_core", ], - versioned_scala_deps = { - "2.12": [ - "@maven//:org_scala_lang_modules_scala_collection_compat", - ], - }, deps = [ ":lib", "//bazel_tools/runfiles:scala_runfiles", @@ -345,9 +340,6 @@ da_scala_test( "@maven//:org_scalaz_scalaz_core", ], tags = ["exclusive"], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, deps = [ ":ledger-tests-model.jar", "//bazel_tools/runfiles:scala_runfiles", diff --git a/ledger-service/jwt/BUILD.bazel b/ledger-service/jwt/BUILD.bazel index 0c42e1765dd7..587118319216 100644 --- a/ledger-service/jwt/BUILD.bazel +++ b/ledger-service/jwt/BUILD.bazel @@ -19,11 +19,6 @@ da_scala_library( ], scalacopts = lf_scalacopts, tags = ["maven_coordinates=com.daml:jwt:__VERSION__"], - versioned_scala_deps = { - "2.12": [ - "@maven//:org_scala_lang_modules_scala_collection_compat", - ], - }, visibility = ["//visibility:public"], runtime_deps = [ "@maven//:ch_qos_logback_logback_classic", diff --git a/ledger/error/BUILD.bazel b/ledger/error/BUILD.bazel index 976a05788d69..70500ba6308c 100644 --- a/ledger/error/BUILD.bazel +++ b/ledger/error/BUILD.bazel @@ -15,9 +15,6 @@ da_scala_library( "@maven//:io_spray_spray_json", ], tags = ["maven_coordinates=com.daml:error:__VERSION__"], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, visibility = ["//visibility:public"], deps = [ "//daml-lf/archive:daml_lf_archive_reader", @@ -65,9 +62,6 @@ da_scala_test_suite( "@maven//:org_scalatest_scalatest_matchers_core", "@maven//:org_scalatest_scalatest_shouldmatchers", ], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, deps = [ ":error", ":error-test-utils", diff --git a/ledger/error/generator/BUILD.bazel b/ledger/error/generator/BUILD.bazel index 14b534483e6c..ebc52e6f4796 100644 --- a/ledger/error/generator/BUILD.bazel +++ b/ledger/error/generator/BUILD.bazel @@ -33,9 +33,6 @@ da_scala_library( name = "lib", srcs = glob(["lib/src/main/scala/**/*.scala"]), tags = ["maven_coordinates=com.daml:error-generator-lib:__VERSION__"], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, visibility = ["//visibility:public"], deps = [ "//ledger/error", diff --git a/ledger/ledger-api-common/BUILD.bazel b/ledger/ledger-api-common/BUILD.bazel index 844e7e4c33b3..494ae2e66ba2 100644 --- a/ledger/ledger-api-common/BUILD.bazel +++ b/ledger/ledger-api-common/BUILD.bazel @@ -109,13 +109,11 @@ da_scala_test_suite( "@maven//:org_scalatest_scalatest_wordspec", "@maven//:org_scalaz_scalaz_core", "@maven//:org_scala_lang_modules_scala_collection_compat", + "@maven//:org_scala_lang_modules_scala_parallel_collections", ], scalacopts = [ "-P:silencer:lineContentFilters=import scala.collection.parallel.CollectionConverters._", ], - versioned_scala_deps = { - "2.13": ["@maven//:org_scala_lang_modules_scala_parallel_collections"], - }, deps = [ ":ledger-api-common", ":ledger-api-common-scala-tests-lib", diff --git a/ledger/metrics/BUILD.bazel b/ledger/metrics/BUILD.bazel index b351c4e4bdef..dc90aeec9437 100644 --- a/ledger/metrics/BUILD.bazel +++ b/ledger/metrics/BUILD.bazel @@ -18,9 +18,6 @@ da_scala_library( "@maven//:com_github_scopt_scopt", ], tags = ["maven_coordinates=com.daml:metrics:__VERSION__"], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, visibility = [ "//visibility:public", ], @@ -53,9 +50,6 @@ da_scala_library( "@maven//:org_scalatest_scalatest_core", ], tags = ["maven_coordinates=com.daml:metrics-test-lib:__VERSION__"], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, visibility = [ "//visibility:public", ], @@ -83,9 +77,6 @@ da_scala_test_suite( "@maven//:org_scalatest_scalatest_shouldmatchers", "@maven//:org_scalatest_scalatest_wordspec", ], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, deps = [ ":metrics", ":metrics-test-lib", diff --git a/ledger/participant-integration-api/BUILD.bazel b/ledger/participant-integration-api/BUILD.bazel index 43a441256f3d..c4bf36e7e38a 100644 --- a/ledger/participant-integration-api/BUILD.bazel +++ b/ledger/participant-integration-api/BUILD.bazel @@ -438,12 +438,6 @@ da_scala_binary( "@maven//:io_circe_circe_yaml", "@maven//:io_circe_circe_core", ], - versioned_scala_deps = { - "2.12": [ - "@maven//:org_typelevel_cats_core", - "@maven//:org_typelevel_cats_kernel", - ], - }, visibility = ["//visibility:public"], deps = [ ":participant-integration-api", diff --git a/libs-scala/build-info/BUILD.bazel b/libs-scala/build-info/BUILD.bazel index b327c09eeec8..c576000f4542 100644 --- a/libs-scala/build-info/BUILD.bazel +++ b/libs-scala/build-info/BUILD.bazel @@ -13,9 +13,6 @@ da_scala_library( "//:mvn_version_file", ], tags = ["maven_coordinates=com.daml:build-info:__VERSION__"], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, visibility = [ "//:__subpackages__", ], diff --git a/libs-scala/contextualized-logging/BUILD.bazel b/libs-scala/contextualized-logging/BUILD.bazel index f898815e8859..c3f39d3bb8b9 100644 --- a/libs-scala/contextualized-logging/BUILD.bazel +++ b/libs-scala/contextualized-logging/BUILD.bazel @@ -17,9 +17,6 @@ da_scala_library( ], scalacopts = ["-Xsource:2.13"], tags = ["maven_coordinates=com.daml:contextualized-logging:__VERSION__"], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, visibility = [ "//visibility:public", ], diff --git a/libs-scala/flyway-testing/BUILD.bazel b/libs-scala/flyway-testing/BUILD.bazel index 838366c9752d..65c1f8c4b8bb 100644 --- a/libs-scala/flyway-testing/BUILD.bazel +++ b/libs-scala/flyway-testing/BUILD.bazel @@ -14,9 +14,6 @@ da_scala_library( "@maven//:org_scalatest_scalatest_wordspec", ], tags = ["maven_coordinates=com.daml:flyway-testing:__VERSION__"], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, visibility = ["//visibility:public"], deps = [ "@maven//:org_flywaydb_flyway_core", diff --git a/libs-scala/grpc-reverse-proxy/BUILD.bazel b/libs-scala/grpc-reverse-proxy/BUILD.bazel index a52a3926b22c..658ba154ec13 100644 --- a/libs-scala/grpc-reverse-proxy/BUILD.bazel +++ b/libs-scala/grpc-reverse-proxy/BUILD.bazel @@ -30,9 +30,6 @@ da_scala_library( da_scala_test_suite( name = "test", srcs = glob(["src/test/scala/**/*.scala"]), - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, deps = [ ":grpc-reverse-proxy", "//libs-scala/grpc-test-utils", diff --git a/libs-scala/grpc-server-reflection-client/BUILD.bazel b/libs-scala/grpc-server-reflection-client/BUILD.bazel index 502f30155a9b..1dd012ced135 100644 --- a/libs-scala/grpc-server-reflection-client/BUILD.bazel +++ b/libs-scala/grpc-server-reflection-client/BUILD.bazel @@ -11,9 +11,6 @@ da_scala_library( name = "grpc-server-reflection-client", srcs = glob(["src/main/scala/**/*.scala"]), tags = ["maven_coordinates=com.daml:grpc-server-reflection-client:__VERSION__"], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, visibility = [ "//:__subpackages__", ], diff --git a/libs-scala/grpc-test-utils/BUILD.bazel b/libs-scala/grpc-test-utils/BUILD.bazel index 02b32be62500..b6a6609b28cf 100644 --- a/libs-scala/grpc-test-utils/BUILD.bazel +++ b/libs-scala/grpc-test-utils/BUILD.bazel @@ -15,9 +15,6 @@ da_scala_library( "@maven//:org_scalactic_scalactic", ], tags = ["maven_coordinates=com.daml:grpc-test-utils:__VERSION__"], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, visibility = [ "//:__subpackages__", ], diff --git a/libs-scala/grpc-utils/BUILD.bazel b/libs-scala/grpc-utils/BUILD.bazel index 0a3d35a2acc4..bd9ad99919a3 100644 --- a/libs-scala/grpc-utils/BUILD.bazel +++ b/libs-scala/grpc-utils/BUILD.bazel @@ -11,9 +11,6 @@ da_scala_library( name = "grpc-utils", srcs = glob(["src/main/scala/**/*.scala"]), tags = ["maven_coordinates=com.daml:grpc-utils:__VERSION__"], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, visibility = [ "//visibility:public", ], diff --git a/libs-scala/oracle-testing/BUILD.bazel b/libs-scala/oracle-testing/BUILD.bazel index 514f935db583..3de06ade2062 100644 --- a/libs-scala/oracle-testing/BUILD.bazel +++ b/libs-scala/oracle-testing/BUILD.bazel @@ -17,11 +17,6 @@ da_scala_library( "@maven//:org_scalactic_scalactic", "@maven//:org_scalatest_scalatest_core", ], - versioned_scala_deps = { - "2.12": [ - "@maven//:org_scala_lang_modules_scala_collection_compat", - ], - }, visibility = [ "//visibility:public", ], diff --git a/libs-scala/ports/BUILD.bazel b/libs-scala/ports/BUILD.bazel index b1fb1f26604a..2c02044eb8c8 100644 --- a/libs-scala/ports/BUILD.bazel +++ b/libs-scala/ports/BUILD.bazel @@ -19,9 +19,6 @@ da_scala_library( "@maven//:org_scalaz_scalaz_core", ], tags = ["maven_coordinates=com.daml:ports:__VERSION__"], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, visibility = [ "//visibility:public", ], @@ -34,9 +31,6 @@ da_scala_library( "src/main/scala/com/digitalasset/ports/LockedFreePort.scala", ], data = ["@sysctl_nix//:bin/sysctl"] if is_darwin else [], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, visibility = [ "//visibility:public", ], diff --git a/libs-scala/postgresql-testing/BUILD.bazel b/libs-scala/postgresql-testing/BUILD.bazel index c2820309a331..da81846a3036 100644 --- a/libs-scala/postgresql-testing/BUILD.bazel +++ b/libs-scala/postgresql-testing/BUILD.bazel @@ -17,11 +17,6 @@ da_scala_library( "@maven//:org_scalactic_scalactic", "@maven//:org_scalatest_scalatest_core", ], - versioned_scala_deps = { - "2.12": [ - "@maven//:org_scala_lang_modules_scala_collection_compat", - ], - }, visibility = [ "//visibility:public", ], diff --git a/maven_install_2.13.json b/maven_install_2.13.json index 720ccfc0af86..d3ff1f8d51a6 100644 --- a/maven_install_2.13.json +++ b/maven_install_2.13.json @@ -1,6 +1,6 @@ { "dependency_tree": { - "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": 1190112154, + "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": 1030650348, "conflict_resolution": {}, "dependencies": [ { @@ -197,11 +197,11 @@ "commons-codec:commons-codec:1.14", "commons-io:commons-io:2.5", "org.checkerframework:checker-qual:3.5.0", + "com.google.errorprone:error_prone_annotations:2.9.0", "com.fasterxml.jackson.core:jackson-databind:2.12.0", "com.google.guava:failureaccess:1.0.1", "com.google.guava:guava:29.0-jre", - "com.fasterxml.jackson.core:jackson-annotations:2.12.0", - "com.google.errorprone:error_prone_annotations:2.4.0" + "com.fasterxml.jackson.core:jackson-annotations:2.12.0" ], "directDependencies": [ "com.fasterxml.jackson.core:jackson-databind:2.12.0", @@ -227,10 +227,10 @@ "commons-codec:commons-codec:jar:sources:1.14", "com.fasterxml.jackson.core:jackson-core:jar:sources:2.12.0", "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.12.0", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", - "com.google.guava:failureaccess:jar:sources:1.0.1" + "com.google.guava:failureaccess:jar:sources:1.0.1", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0" ], "directDependencies": [ "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", @@ -486,11 +486,11 @@ { "coord": "com.github.ben-manes.caffeine:caffeine:2.8.0", "dependencies": [ - "org.checkerframework:checker-qual:3.5.0", - "com.google.errorprone:error_prone_annotations:2.4.0" + "com.google.errorprone:error_prone_annotations:2.9.0", + "org.checkerframework:checker-qual:3.5.0" ], "directDependencies": [ - "com.google.errorprone:error_prone_annotations:2.4.0", + "com.google.errorprone:error_prone_annotations:2.9.0", "org.checkerframework:checker-qual:3.5.0" ], "file": "v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.0/caffeine-2.8.0.jar", @@ -503,11 +503,11 @@ { "coord": "com.github.ben-manes.caffeine:caffeine:jar:sources:2.8.0", "dependencies": [ - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "org.checkerframework:checker-qual:jar:sources:3.5.0" ], "directDependencies": [ - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "org.checkerframework:checker-qual:jar:sources:3.5.0" ], "file": "v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.0/caffeine-2.8.0-sources.jar", @@ -873,10 +873,13 @@ }, { "coord": "com.google.api.grpc:proto-google-common-protos:2.0.1", - "dependencies": [], - "directDependencies": [], + "dependencies": [ + "com.google.protobuf:protobuf-java:3.17.3" + ], + "directDependencies": [ + "com.google.protobuf:protobuf-java:3.17.3" + ], "exclusions": [ - "com.google.protobuf:protobuf-java", "com.google.api:api-common" ], "file": "v1/https/repo1.maven.org/maven2/com/google/api/grpc/proto-google-common-protos/2.0.1/proto-google-common-protos-2.0.1.jar", @@ -888,10 +891,13 @@ }, { "coord": "com.google.api.grpc:proto-google-common-protos:jar:sources:2.0.1", - "dependencies": [], - "directDependencies": [], + "dependencies": [ + "com.google.protobuf:protobuf-java:jar:sources:3.17.3" + ], + "directDependencies": [ + "com.google.protobuf:protobuf-java:jar:sources:3.17.3" + ], "exclusions": [ - "com.google.protobuf:protobuf-java", "com.google.api:api-common" ], "file": "v1/https/repo1.maven.org/maven2/com/google/api/grpc/proto-google-common-protos/2.0.1/proto-google-common-protos-2.0.1-sources.jar", @@ -946,26 +952,26 @@ "url": "https://repo1.maven.org/maven2/com/google/code/gson/gson/2.8.2/gson-2.8.2-sources.jar" }, { - "coord": "com.google.errorprone:error_prone_annotations:2.4.0", + "coord": "com.google.errorprone:error_prone_annotations:2.9.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/error_prone_annotations-2.4.0.jar", + "file": "v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.9.0/error_prone_annotations-2.9.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/error_prone_annotations-2.4.0.jar" + "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.9.0/error_prone_annotations-2.9.0.jar" ], - "sha256": "5f2a0648230a662e8be049df308d583d7369f13af683e44ddf5829b6d741a228", - "url": "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/error_prone_annotations-2.4.0.jar" + "sha256": "f947bdc33ae27a6b4aa44799e6c21e1944797bd0010ba43eb82d11446e163694", + "url": "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.9.0/error_prone_annotations-2.9.0.jar" }, { - "coord": "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", + "coord": "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/error_prone_annotations-2.4.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.9.0/error_prone_annotations-2.9.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/error_prone_annotations-2.4.0-sources.jar" + "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.9.0/error_prone_annotations-2.9.0-sources.jar" ], - "sha256": "d74a623bd5c8861621c267187c5a4a4f891b4989de91cda6577e243ee2716da5", - "url": "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/error_prone_annotations-2.4.0-sources.jar" + "sha256": "0e41e099f0d4c9be030c34a6991821e67a57e2846dba908f4e9bc9ec60732837", + "url": "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.9.0/error_prone_annotations-2.9.0-sources.jar" }, { "coord": "com.google.guava:failureaccess:1.0.1", @@ -996,16 +1002,16 @@ "com.google.j2objc:j2objc-annotations:1.3", "com.google.code.findbugs:jsr305:3.0.2", "org.checkerframework:checker-qual:3.5.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.errorprone:error_prone_annotations:2.4.0" + "com.google.errorprone:error_prone_annotations:2.9.0", + "com.google.guava:failureaccess:1.0.1" ], "directDependencies": [ "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", "com.google.j2objc:j2objc-annotations:1.3", "com.google.code.findbugs:jsr305:3.0.2", "org.checkerframework:checker-qual:3.5.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.errorprone:error_prone_annotations:2.4.0" + "com.google.errorprone:error_prone_annotations:2.9.0", + "com.google.guava:failureaccess:1.0.1" ], "file": "v1/https/repo1.maven.org/maven2/com/google/guava/guava/29.0-jre/guava-29.0-jre.jar", "mirror_urls": [ @@ -1020,17 +1026,17 @@ "org.checkerframework:checker-qual:jar:sources:3.5.0", "com.google.code.findbugs:jsr305:jar:sources:3.0.2", "com.google.j2objc:j2objc-annotations:jar:sources:1.3", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.guava:failureaccess:jar:sources:1.0.1" + "com.google.guava:failureaccess:jar:sources:1.0.1", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0" ], "directDependencies": [ "org.checkerframework:checker-qual:jar:sources:3.5.0", "com.google.code.findbugs:jsr305:jar:sources:3.0.2", "com.google.j2objc:j2objc-annotations:jar:sources:1.3", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.guava:failureaccess:jar:sources:1.0.1" + "com.google.guava:failureaccess:jar:sources:1.0.1", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0" ], "file": "v1/https/repo1.maven.org/maven2/com/google/guava/guava/29.0-jre/guava-29.0-jre-sources.jar", "mirror_urls": [ @@ -1073,68 +1079,78 @@ "url": "https://repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3-sources.jar" }, { - "coord": "com.google.protobuf:protobuf-java-util:3.12.0", + "coord": "com.google.protobuf:protobuf-java-util:3.17.2", "dependencies": [ - "com.google.protobuf:protobuf-java:3.17.1", + "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", + "com.google.j2objc:j2objc-annotations:1.3", + "com.google.code.findbugs:jsr305:3.0.2", + "org.checkerframework:checker-qual:3.5.0", + "com.google.errorprone:error_prone_annotations:2.9.0", + "com.google.protobuf:protobuf-java:3.17.3", + "com.google.guava:failureaccess:1.0.1", + "com.google.guava:guava:29.0-jre", "com.google.code.gson:gson:2.8.2" ], "directDependencies": [ "com.google.code.gson:gson:2.8.2", - "com.google.protobuf:protobuf-java:3.17.1" - ], - "exclusions": [ - "com.google.guava:guava", - "com.google.errorprone:error_prone_annotations" + "com.google.errorprone:error_prone_annotations:2.9.0", + "com.google.guava:guava:29.0-jre", + "com.google.protobuf:protobuf-java:3.17.3" ], - "file": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.12.0/protobuf-java-util-3.12.0.jar", + "file": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.17.2/protobuf-java-util-3.17.2.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.12.0/protobuf-java-util-3.12.0.jar" + "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.17.2/protobuf-java-util-3.17.2.jar" ], - "sha256": "14b734d5a36af8bb9fa2c620b75b1fa4c701e7c6f35d5ca94f27ae37b42973a6", - "url": "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.12.0/protobuf-java-util-3.12.0.jar" + "sha256": "849925333aac23f46f9a154a52e441117017d5673e04e5636993bcc3cf1924d9", + "url": "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.17.2/protobuf-java-util-3.17.2.jar" }, { - "coord": "com.google.protobuf:protobuf-java-util:jar:sources:3.12.0", + "coord": "com.google.protobuf:protobuf-java-util:jar:sources:3.17.2", "dependencies": [ - "com.google.protobuf:protobuf-java:jar:sources:3.17.1", - "com.google.code.gson:gson:jar:sources:2.8.2" + "com.google.protobuf:protobuf-java:jar:sources:3.17.3", + "org.checkerframework:checker-qual:jar:sources:3.5.0", + "com.google.code.findbugs:jsr305:jar:sources:3.0.2", + "com.google.j2objc:j2objc-annotations:jar:sources:1.3", + "com.google.guava:guava:jar:sources:29.0-jre", + "com.google.code.gson:gson:jar:sources:2.8.2", + "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", + "com.google.guava:failureaccess:jar:sources:1.0.1", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0" ], "directDependencies": [ "com.google.code.gson:gson:jar:sources:2.8.2", - "com.google.protobuf:protobuf-java:jar:sources:3.17.1" - ], - "exclusions": [ - "com.google.guava:guava", - "com.google.errorprone:error_prone_annotations" + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", + "com.google.guava:guava:jar:sources:29.0-jre", + "com.google.protobuf:protobuf-java:jar:sources:3.17.3" ], - "file": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.12.0/protobuf-java-util-3.12.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.17.2/protobuf-java-util-3.17.2-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.12.0/protobuf-java-util-3.12.0-sources.jar" + "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.17.2/protobuf-java-util-3.17.2-sources.jar" ], - "sha256": "326e8ff1ac842125294b2afa8ee5569c7e30e55a47a4cd1e4e1cd0bf18b13bef", - "url": "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.12.0/protobuf-java-util-3.12.0-sources.jar" + "sha256": "bf3b9ba1861619717e433477c76eb5772c24b9f6e18da72a14052bec07e18efb", + "url": "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.17.2/protobuf-java-util-3.17.2-sources.jar" }, { - "coord": "com.google.protobuf:protobuf-java:3.17.1", + "coord": "com.google.protobuf:protobuf-java:3.17.3", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.17.1/protobuf-java-3.17.1.jar", + "file": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.17.3/protobuf-java-3.17.3.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.17.1/protobuf-java-3.17.1.jar" + "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.17.3/protobuf-java-3.17.3.jar" ], - "sha256": "9dcfc5c0b38326660d407375757c685dcd5883d67e06ed770bfc7966c12697dc", - "url": "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.17.1/protobuf-java-3.17.1.jar" + "sha256": "4ac549b192694141958049f060a1c826a33342f619e108ced8c17d9877f5e3ed", + "url": "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.17.3/protobuf-java-3.17.3.jar" }, { - "coord": "com.google.protobuf:protobuf-java:jar:sources:3.17.1", + "coord": "com.google.protobuf:protobuf-java:jar:sources:3.17.3", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.17.1/protobuf-java-3.17.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.17.3/protobuf-java-3.17.3-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.17.1/protobuf-java-3.17.1-sources.jar" + "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.17.3/protobuf-java-3.17.3-sources.jar" ], - "sha256": "66c77ca0f22e5cec406330059c1a943014d2092935f51cc4f592515896b70f74", - "url": "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.17.1/protobuf-java-3.17.1-sources.jar" + "sha256": "204bad0a36827296ed0b6fdbdf1a17028f3e3d289dd20042980331b8f0ef646e", + "url": "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.17.3/protobuf-java-3.17.3-sources.jar" }, { "coord": "com.h2database:h2:1.4.200", @@ -1913,53 +1929,53 @@ "url": "https://repo1.maven.org/maven2/com/tdunning/t-digest/3.1/t-digest-3.1-sources.jar" }, { - "coord": "com.thesamet.scalapb:compilerplugin_2.13:0.11.3", + "coord": "com.thesamet.scalapb:compilerplugin_2.13:0.11.6", "dependencies": [ - "com.thesamet.scalapb:protoc-gen_2.13:0.9.2", - "com.google.protobuf:protobuf-java:3.17.1", - "com.thesamet.scalapb:protoc-bridge_2.13:0.9.2", "org.scala-lang:scala-library:2.13.6", - "dev.dirs:directories:23", - "org.scala-lang.modules:scala-collection-compat_2.13:2.3.2" + "com.google.protobuf:protobuf-java:3.17.3", + "com.thesamet.scalapb:protoc-gen_2.13:0.9.3", + "dev.dirs:directories:26", + "org.scala-lang.modules:scala-collection-compat_2.13:2.3.2", + "com.thesamet.scalapb:protoc-bridge_2.13:0.9.3" ], "directDependencies": [ - "com.google.protobuf:protobuf-java:3.17.1", - "com.thesamet.scalapb:protoc-gen_2.13:0.9.2", + "com.google.protobuf:protobuf-java:3.17.3", + "com.thesamet.scalapb:protoc-gen_2.13:0.9.3", "org.scala-lang:scala-library:2.13.6", "org.scala-lang.modules:scala-collection-compat_2.13:2.3.2" ], - "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.3/compilerplugin_2.13-0.11.3.jar", + "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.6/compilerplugin_2.13-0.11.6.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.3/compilerplugin_2.13-0.11.3.jar" + "https://repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.6/compilerplugin_2.13-0.11.6.jar" ], - "sha256": "fc5b5b39f8b0ea8fc2547be741943355be2e2d5bbc6f9700029445cf3ad04bcc", - "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.3/compilerplugin_2.13-0.11.3.jar" + "sha256": "25aed9ea609c6009c74b58f7759e4461299f7a7f4c814523e4d64fdd8f89c600", + "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.6/compilerplugin_2.13-0.11.6.jar" }, { - "coord": "com.thesamet.scalapb:compilerplugin_2.13:jar:sources:0.11.3", + "coord": "com.thesamet.scalapb:compilerplugin_2.13:jar:sources:0.11.6", "dependencies": [ - "dev.dirs:directories:jar:sources:23", - "com.thesamet.scalapb:protoc-gen_2.13:jar:sources:0.9.2", + "com.google.protobuf:protobuf-java:jar:sources:3.17.3", + "com.thesamet.scalapb:protoc-bridge_2.13:jar:sources:0.9.3", "org.scala-lang:scala-library:jar:sources:2.13.6", + "com.thesamet.scalapb:protoc-gen_2.13:jar:sources:0.9.3", "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.3.2", - "com.google.protobuf:protobuf-java:jar:sources:3.17.1", - "com.thesamet.scalapb:protoc-bridge_2.13:jar:sources:0.9.2" + "dev.dirs:directories:jar:sources:26" ], "directDependencies": [ - "com.google.protobuf:protobuf-java:jar:sources:3.17.1", - "com.thesamet.scalapb:protoc-gen_2.13:jar:sources:0.9.2", + "com.google.protobuf:protobuf-java:jar:sources:3.17.3", + "com.thesamet.scalapb:protoc-gen_2.13:jar:sources:0.9.3", "org.scala-lang:scala-library:jar:sources:2.13.6", "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.3.2" ], - "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.3/compilerplugin_2.13-0.11.3-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.6/compilerplugin_2.13-0.11.6-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.3/compilerplugin_2.13-0.11.3-sources.jar" + "https://repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.6/compilerplugin_2.13-0.11.6-sources.jar" ], - "sha256": "a5103f4a78d5691c302a09c47425230947a1172846f72df529443b461bc9dffb", - "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.3/compilerplugin_2.13-0.11.3-sources.jar" + "sha256": "9d6d4c1492454b73ffb328f487a27bd3c0a2739c5b49086620f3a2efeae8f20e", + "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.6/compilerplugin_2.13-0.11.6-sources.jar" }, { - "coord": "com.thesamet.scalapb:lenses_2.13:0.11.3", + "coord": "com.thesamet.scalapb:lenses_2.13:0.11.6", "dependencies": [ "org.scala-lang.modules:scala-collection-compat_2.13:2.3.2", "org.scala-lang:scala-library:2.13.6" @@ -1968,15 +1984,15 @@ "org.scala-lang:scala-library:2.13.6", "org.scala-lang.modules:scala-collection-compat_2.13:2.3.2" ], - "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.3/lenses_2.13-0.11.3.jar", + "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.6/lenses_2.13-0.11.6.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.3/lenses_2.13-0.11.3.jar" + "https://repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.6/lenses_2.13-0.11.6.jar" ], - "sha256": "8e0f52f94eaa92d9799fa3f2b2c84fa837b3d7cea468c769fc8cdf00c9ee60ac", - "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.3/lenses_2.13-0.11.3.jar" + "sha256": "d1882eebf6deb4b1bb85c3c188790b28985214ac0dcfd79617fd04cc2e6df2de", + "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.6/lenses_2.13-0.11.6.jar" }, { - "coord": "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.3", + "coord": "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.6", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.6", "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.3.2" @@ -1985,198 +2001,196 @@ "org.scala-lang:scala-library:jar:sources:2.13.6", "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.3.2" ], - "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.3/lenses_2.13-0.11.3-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.6/lenses_2.13-0.11.6-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.3/lenses_2.13-0.11.3-sources.jar" + "https://repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.6/lenses_2.13-0.11.6-sources.jar" ], - "sha256": "77d714d8c41431933a3e16d7e610b2dff53bbe41037186ad0b855ea6af6b9280", - "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.3/lenses_2.13-0.11.3-sources.jar" + "sha256": "cec09bb3608cd4b279144d323257d514e4898ce54304c0928d209832dea09b48", + "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.6/lenses_2.13-0.11.6-sources.jar" }, { - "coord": "com.thesamet.scalapb:protoc-bridge_2.13:0.9.2", + "coord": "com.thesamet.scalapb:protoc-bridge_2.13:0.9.3", "dependencies": [ - "org.scala-lang:scala-library:2.13.6", - "dev.dirs:directories:23" + "dev.dirs:directories:26", + "org.scala-lang:scala-library:2.13.6" ], "directDependencies": [ - "dev.dirs:directories:23", + "dev.dirs:directories:26", "org.scala-lang:scala-library:2.13.6" ], - "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/protoc-bridge_2.13/0.9.2/protoc-bridge_2.13-0.9.2.jar", + "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/protoc-bridge_2.13/0.9.3/protoc-bridge_2.13-0.9.3.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/thesamet/scalapb/protoc-bridge_2.13/0.9.2/protoc-bridge_2.13-0.9.2.jar" + "https://repo1.maven.org/maven2/com/thesamet/scalapb/protoc-bridge_2.13/0.9.3/protoc-bridge_2.13-0.9.3.jar" ], - "sha256": "15471021ab5343844a5c9d1ca86f6c8824982843e9e186ad2fc398fe1a33573e", - "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/protoc-bridge_2.13/0.9.2/protoc-bridge_2.13-0.9.2.jar" + "sha256": "3b595b94c21d899b94b84190f87905b5586e0b813f056a85892ec726dec4d581", + "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/protoc-bridge_2.13/0.9.3/protoc-bridge_2.13-0.9.3.jar" }, { - "coord": "com.thesamet.scalapb:protoc-bridge_2.13:jar:sources:0.9.2", + "coord": "com.thesamet.scalapb:protoc-bridge_2.13:jar:sources:0.9.3", "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.6", - "dev.dirs:directories:jar:sources:23" + "dev.dirs:directories:jar:sources:26", + "org.scala-lang:scala-library:jar:sources:2.13.6" ], "directDependencies": [ - "dev.dirs:directories:jar:sources:23", + "dev.dirs:directories:jar:sources:26", "org.scala-lang:scala-library:jar:sources:2.13.6" ], - "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/protoc-bridge_2.13/0.9.2/protoc-bridge_2.13-0.9.2-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/protoc-bridge_2.13/0.9.3/protoc-bridge_2.13-0.9.3-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/thesamet/scalapb/protoc-bridge_2.13/0.9.2/protoc-bridge_2.13-0.9.2-sources.jar" + "https://repo1.maven.org/maven2/com/thesamet/scalapb/protoc-bridge_2.13/0.9.3/protoc-bridge_2.13-0.9.3-sources.jar" ], - "sha256": "c8708746526e9f397b6559bcbff5e054ddecca5a19954de56e167889b2d0bdc4", - "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/protoc-bridge_2.13/0.9.2/protoc-bridge_2.13-0.9.2-sources.jar" + "sha256": "3898e65048bb04213001236209c4cc968acba866d97dd1f57e72deb8ba08cae0", + "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/protoc-bridge_2.13/0.9.3/protoc-bridge_2.13-0.9.3-sources.jar" }, { - "coord": "com.thesamet.scalapb:protoc-gen_2.13:0.9.2", + "coord": "com.thesamet.scalapb:protoc-gen_2.13:0.9.3", "dependencies": [ - "com.thesamet.scalapb:protoc-bridge_2.13:0.9.2", - "org.scala-lang:scala-library:2.13.6", - "dev.dirs:directories:23" + "dev.dirs:directories:26", + "com.thesamet.scalapb:protoc-bridge_2.13:0.9.3", + "org.scala-lang:scala-library:2.13.6" ], "directDependencies": [ - "com.thesamet.scalapb:protoc-bridge_2.13:0.9.2", + "com.thesamet.scalapb:protoc-bridge_2.13:0.9.3", "org.scala-lang:scala-library:2.13.6" ], - "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/protoc-gen_2.13/0.9.2/protoc-gen_2.13-0.9.2.jar", + "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/protoc-gen_2.13/0.9.3/protoc-gen_2.13-0.9.3.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/thesamet/scalapb/protoc-gen_2.13/0.9.2/protoc-gen_2.13-0.9.2.jar" + "https://repo1.maven.org/maven2/com/thesamet/scalapb/protoc-gen_2.13/0.9.3/protoc-gen_2.13-0.9.3.jar" ], - "sha256": "727e0003e163e593bef0fed7844f3a572ec84c89b4bd2a9ffe645aef417e18f3", - "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/protoc-gen_2.13/0.9.2/protoc-gen_2.13-0.9.2.jar" + "sha256": "00257d1ccfb9890bb12382df13175822a24992162d12950dc710db27bf5c9f24", + "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/protoc-gen_2.13/0.9.3/protoc-gen_2.13-0.9.3.jar" }, { - "coord": "com.thesamet.scalapb:protoc-gen_2.13:jar:sources:0.9.2", + "coord": "com.thesamet.scalapb:protoc-gen_2.13:jar:sources:0.9.3", "dependencies": [ + "dev.dirs:directories:jar:sources:26", "org.scala-lang:scala-library:jar:sources:2.13.6", - "com.thesamet.scalapb:protoc-bridge_2.13:jar:sources:0.9.2", - "dev.dirs:directories:jar:sources:23" + "com.thesamet.scalapb:protoc-bridge_2.13:jar:sources:0.9.3" ], "directDependencies": [ - "com.thesamet.scalapb:protoc-bridge_2.13:jar:sources:0.9.2", + "com.thesamet.scalapb:protoc-bridge_2.13:jar:sources:0.9.3", "org.scala-lang:scala-library:jar:sources:2.13.6" ], - "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/protoc-gen_2.13/0.9.2/protoc-gen_2.13-0.9.2-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/protoc-gen_2.13/0.9.3/protoc-gen_2.13-0.9.3-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/thesamet/scalapb/protoc-gen_2.13/0.9.2/protoc-gen_2.13-0.9.2-sources.jar" + "https://repo1.maven.org/maven2/com/thesamet/scalapb/protoc-gen_2.13/0.9.3/protoc-gen_2.13-0.9.3-sources.jar" ], - "sha256": "4de2f2bf31b79f7d48d6b7570493d679465bca98ae08ac8c90c684d18ef78147", - "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/protoc-gen_2.13/0.9.2/protoc-gen_2.13-0.9.2-sources.jar" + "sha256": "5eff909d27bb515ac547ab71c68c45abf6c10b48df17ea2d3793b0cc7fa13052", + "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/protoc-gen_2.13/0.9.3/protoc-gen_2.13-0.9.3-sources.jar" }, { - "coord": "com.thesamet.scalapb:scalapb-runtime-grpc_2.13:0.11.3", + "coord": "com.thesamet.scalapb:scalapb-runtime-grpc_2.13:0.11.6", "dependencies": [ "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.protobuf:protobuf-java:3.17.1", - "io.grpc:grpc-protobuf-lite:1.35.0", "com.google.j2objc:j2objc-annotations:1.3", "com.google.code.findbugs:jsr305:3.0.2", - "org.codehaus.mojo:animal-sniffer-annotations:1.19", "org.scala-lang:scala-library:2.13.6", + "com.thesamet.scalapb:lenses_2.13:0.11.6", + "io.grpc:grpc-stub:1.41.0", "org.checkerframework:checker-qual:3.5.0", - "io.grpc:grpc-api:1.35.0", - "io.grpc:grpc-context:1.35.0", - "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.3", + "com.google.errorprone:error_prone_annotations:2.9.0", + "com.google.protobuf:protobuf-java:3.17.3", + "io.grpc:grpc-api:1.41.0", "com.google.guava:failureaccess:1.0.1", - "io.grpc:grpc-stub:1.35.0", - "com.thesamet.scalapb:lenses_2.13:0.11.3", + "io.grpc:grpc-protobuf:1.41.0", "com.google.guava:guava:29.0-jre", + "io.grpc:grpc-context:1.41.0", + "io.grpc:grpc-protobuf-lite:1.41.0", "com.google.api.grpc:proto-google-common-protos:2.0.1", - "io.grpc:grpc-protobuf:1.35.0", - "org.scala-lang.modules:scala-collection-compat_2.13:2.3.2", - "com.google.errorprone:error_prone_annotations:2.4.0" + "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.6", + "org.scala-lang.modules:scala-collection-compat_2.13:2.3.2" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.6", - "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.3", - "io.grpc:grpc-stub:1.35.0", - "io.grpc:grpc-protobuf:1.35.0", + "io.grpc:grpc-stub:1.41.0", + "io.grpc:grpc-protobuf:1.41.0", + "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.6", "org.scala-lang.modules:scala-collection-compat_2.13:2.3.2" ], - "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.3/scalapb-runtime-grpc_2.13-0.11.3.jar", + "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.6/scalapb-runtime-grpc_2.13-0.11.6.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.3/scalapb-runtime-grpc_2.13-0.11.3.jar" + "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.6/scalapb-runtime-grpc_2.13-0.11.6.jar" ], - "sha256": "b51b68ba840106de317b8488c1feee1a2e00b7586cea15d0a58c87e5914901bc", - "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.3/scalapb-runtime-grpc_2.13-0.11.3.jar" + "sha256": "79e67e4473c51f39711f7ee2ac00271a44fc82c8c7dac6b0c84883ce4ac38a47", + "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.6/scalapb-runtime-grpc_2.13-0.11.6.jar" }, { - "coord": "com.thesamet.scalapb:scalapb-runtime-grpc_2.13:jar:sources:0.11.3", + "coord": "com.thesamet.scalapb:scalapb-runtime-grpc_2.13:jar:sources:0.11.6", "dependencies": [ + "com.google.protobuf:protobuf-java:jar:sources:3.17.3", "org.checkerframework:checker-qual:jar:sources:3.5.0", "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "io.grpc:grpc-context:jar:sources:1.35.0", + "io.grpc:grpc-api:jar:sources:1.41.0", "org.scala-lang:scala-library:jar:sources:2.13.6", - "io.grpc:grpc-stub:jar:sources:1.35.0", "com.google.j2objc:j2objc-annotations:jar:sources:1.3", "com.google.guava:guava:jar:sources:29.0-jre", - "io.grpc:grpc-protobuf:jar:sources:1.35.0", + "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.6", + "io.grpc:grpc-protobuf-lite:jar:sources:1.41.0", "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.3.2", - "io.grpc:grpc-protobuf-lite:jar:sources:1.35.0", - "io.grpc:grpc-api:jar:sources:1.35.0", - "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.3", - "com.google.protobuf:protobuf-java:jar:sources:3.17.1", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", + "io.grpc:grpc-context:jar:sources:1.41.0", + "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.6", + "io.grpc:grpc-protobuf:jar:sources:1.41.0", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "com.google.api.grpc:proto-google-common-protos:jar:sources:2.0.1", "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.3", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.19" + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", + "io.grpc:grpc-stub:jar:sources:1.41.0" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.6", - "io.grpc:grpc-stub:jar:sources:1.35.0", - "io.grpc:grpc-protobuf:jar:sources:1.35.0", + "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.6", "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.3.2", - "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.3" + "io.grpc:grpc-protobuf:jar:sources:1.41.0", + "io.grpc:grpc-stub:jar:sources:1.41.0" ], - "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.3/scalapb-runtime-grpc_2.13-0.11.3-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.6/scalapb-runtime-grpc_2.13-0.11.6-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.3/scalapb-runtime-grpc_2.13-0.11.3-sources.jar" + "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.6/scalapb-runtime-grpc_2.13-0.11.6-sources.jar" ], - "sha256": "78865685c1b326f558b1892bcc4d2cbe5462a53c31a2091e755ea451966f90b1", - "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.3/scalapb-runtime-grpc_2.13-0.11.3-sources.jar" + "sha256": "d6e578c7278ffabdb91ead1c9e85387c7d02f1c8b0ed469368a813c04fa02700", + "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.6/scalapb-runtime-grpc_2.13-0.11.6-sources.jar" }, { - "coord": "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.3", + "coord": "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.6", "dependencies": [ - "com.thesamet.scalapb:lenses_2.13:0.11.3", "org.scala-lang.modules:scala-collection-compat_2.13:2.3.2", - "com.google.protobuf:protobuf-java:3.17.1", + "com.thesamet.scalapb:lenses_2.13:0.11.6", + "com.google.protobuf:protobuf-java:3.17.3", "org.scala-lang:scala-library:2.13.6" ], "directDependencies": [ - "com.google.protobuf:protobuf-java:3.17.1", - "com.thesamet.scalapb:lenses_2.13:0.11.3", + "com.google.protobuf:protobuf-java:3.17.3", + "com.thesamet.scalapb:lenses_2.13:0.11.6", "org.scala-lang:scala-library:2.13.6", "org.scala-lang.modules:scala-collection-compat_2.13:2.3.2" ], - "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.3/scalapb-runtime_2.13-0.11.3.jar", + "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.6/scalapb-runtime_2.13-0.11.6.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.3/scalapb-runtime_2.13-0.11.3.jar" + "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.6/scalapb-runtime_2.13-0.11.6.jar" ], - "sha256": "10a4cd85d9f7eb5eca646f198da35bbd87639fbb55ef44a2fe272d40123e1f5b", - "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.3/scalapb-runtime_2.13-0.11.3.jar" + "sha256": "439b613f40b9ac43db4d68de5bef36befc56393d9c9cd002e2b965ce94f6f793", + "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.6/scalapb-runtime_2.13-0.11.6.jar" }, { - "coord": "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.3", + "coord": "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.6", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.6", - "com.google.protobuf:protobuf-java:jar:sources:3.17.1", "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.3.2", - "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.3" + "com.google.protobuf:protobuf-java:jar:sources:3.17.3", + "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.6" ], "directDependencies": [ - "com.google.protobuf:protobuf-java:jar:sources:3.17.1", - "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.3", + "com.google.protobuf:protobuf-java:jar:sources:3.17.3", + "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.6", "org.scala-lang:scala-library:jar:sources:2.13.6", "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.3.2" ], - "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.3/scalapb-runtime_2.13-0.11.3-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.6/scalapb-runtime_2.13-0.11.6-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.3/scalapb-runtime_2.13-0.11.3-sources.jar" + "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.6/scalapb-runtime_2.13-0.11.6-sources.jar" ], - "sha256": "fe285f803bc37893a3f94865bf193b39928a062a42e14de5f57c68b9515501c9", - "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.3/scalapb-runtime_2.13-0.11.3-sources.jar" + "sha256": "ecafc3a1ebbc0aff8ade4e1b309d9de545d45d58988f6d1191d5ca5352ab20d7", + "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.6/scalapb-runtime_2.13-0.11.6-sources.jar" }, { "coord": "com.thoughtworks.paranamer:paranamer:2.8", @@ -2937,26 +2951,26 @@ "url": "https://repo1.maven.org/maven2/commons-net/commons-net/3.6/commons-net-3.6-sources.jar" }, { - "coord": "dev.dirs:directories:23", + "coord": "dev.dirs:directories:26", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/dev/dirs/directories/23/directories-23.jar", + "file": "v1/https/repo1.maven.org/maven2/dev/dirs/directories/26/directories-26.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/dev/dirs/directories/23/directories-23.jar" + "https://repo1.maven.org/maven2/dev/dirs/directories/26/directories-26.jar" ], - "sha256": "4c624b1731efe4a053f6e6cbb67b4c8ae2eaf8d0ae4fa164067b1a36b9259ba7", - "url": "https://repo1.maven.org/maven2/dev/dirs/directories/23/directories-23.jar" + "sha256": "6d18fe25aa30b7e08b908cd21151d8f96e22965c640acd7751add9bbfe6137d4", + "url": "https://repo1.maven.org/maven2/dev/dirs/directories/26/directories-26.jar" }, { - "coord": "dev.dirs:directories:jar:sources:23", + "coord": "dev.dirs:directories:jar:sources:26", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/dev/dirs/directories/23/directories-23-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/dev/dirs/directories/26/directories-26-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/dev/dirs/directories/23/directories-23-sources.jar" + "https://repo1.maven.org/maven2/dev/dirs/directories/26/directories-26-sources.jar" ], - "sha256": "dddc21258f68285899a2fb620ecb46a989ee68418043dd094dca70b24c006f8e", - "url": "https://repo1.maven.org/maven2/dev/dirs/directories/23/directories-23-sources.jar" + "sha256": "192050e3a2a0eba7f22745765aaaf567ce6d515fe6a992688b4e262e9f14947b", + "url": "https://repo1.maven.org/maven2/dev/dirs/directories/26/directories-26-sources.jar" }, { "coord": "eu.rekawek.toxiproxy:toxiproxy-java:2.1.3", @@ -3494,6 +3508,7 @@ "io.burt:jmespath-core:0.5.0", "io.gatling:gatling-app:3.5.1", "io.gatling:gatling-netty-util:3.5.1", + "com.google.errorprone:error_prone_annotations:2.9.0", "javax.jms:javax.jms-api:2.0.1", "com.softwaremill.quicklens:quicklens_2.13:1.6.1", "com.fasterxml.jackson.core:jackson-databind:2.12.0", @@ -3512,8 +3527,7 @@ "com.github.ben-manes.caffeine:caffeine:2.8.0", "org.apache.commons:commons-pool2:2.8.0", "org.bouncycastle:bcpkix-jdk15on:1.68", - "io.gatling:gatling-http:3.5.1", - "com.google.errorprone:error_prone_annotations:2.4.0" + "io.gatling:gatling-http:3.5.1" ], "directDependencies": [ "io.gatling:gatling-app:3.5.1", @@ -3575,7 +3589,6 @@ "io.netty:netty-codec-dns:jar:sources:4.1.58.Final", "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", "org.scala-lang:scala-reflect:jar:sources:2.13.6", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "org.jodd:jodd-lagarto:jar:sources:6.0.3", "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", "io.gatling:gatling-recorder:jar:sources:3.5.1", @@ -3584,6 +3597,7 @@ "io.gatling:gatling-commons-shared:jar:sources:3.5.1", "org.bouncycastle:bcprov-jdk15on:jar:sources:1.68", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.13", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "io.gatling:gatling-commons-shared-unstable:jar:sources:3.5.1", "io.netty:netty-transport:jar:sources:4.1.67.Final", "io.gatling:gatling-charts:jar:sources:3.5.1", @@ -3661,6 +3675,7 @@ "io.gatling:gatling-charts:3.5.1", "io.burt:jmespath-core:0.5.0", "io.gatling:gatling-netty-util:3.5.1", + "com.google.errorprone:error_prone_annotations:2.9.0", "javax.jms:javax.jms-api:2.0.1", "com.softwaremill.quicklens:quicklens_2.13:1.6.1", "com.fasterxml.jackson.core:jackson-databind:2.12.0", @@ -3677,8 +3692,7 @@ "io.netty:netty-codec-http2:4.1.67.Final", "com.github.ben-manes.caffeine:caffeine:2.8.0", "org.apache.commons:commons-pool2:2.8.0", - "io.gatling:gatling-http:3.5.1", - "com.google.errorprone:error_prone_annotations:2.4.0" + "io.gatling:gatling-http:3.5.1" ], "directDependencies": [ "io.gatling:gatling-jms:3.5.1", @@ -3744,13 +3758,13 @@ "io.netty:netty-codec-dns:jar:sources:4.1.58.Final", "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", "org.scala-lang:scala-reflect:jar:sources:2.13.6", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "org.jodd:jodd-lagarto:jar:sources:6.0.3", "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", "io.netty:netty-codec-socks:jar:sources:4.1.67.Final", "net.sf.saxon:Saxon-HE:jar:sources:10.3", "io.gatling:gatling-commons-shared:jar:sources:3.5.1", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.13", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "io.gatling:gatling-commons-shared-unstable:jar:sources:3.5.1", "io.netty:netty-transport:jar:sources:4.1.67.Final", "io.gatling:gatling-charts:jar:sources:3.5.1", @@ -3820,6 +3834,7 @@ "io.burt:jmespath-jackson:0.5.0", "io.burt:jmespath-core:0.5.0", "io.gatling:gatling-netty-util:3.5.1", + "com.google.errorprone:error_prone_annotations:2.9.0", "com.softwaremill.quicklens:quicklens_2.13:1.6.1", "com.fasterxml.jackson.core:jackson-databind:2.12.0", "io.gatling:gatling-core:3.5.1", @@ -3828,8 +3843,7 @@ "org.jodd:jodd-lagarto:6.0.3", "com.fasterxml.jackson.core:jackson-annotations:2.12.0", "ch.qos.logback:logback-core:1.2.3", - "com.github.ben-manes.caffeine:caffeine:2.8.0", - "com.google.errorprone:error_prone_annotations:2.4.0" + "com.github.ben-manes.caffeine:caffeine:2.8.0" ], "directDependencies": [ "com.tdunning:t-digest:3.1", @@ -3880,12 +3894,12 @@ "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.12.0", "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", "org.scala-lang:scala-reflect:jar:sources:2.13.6", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "org.jodd:jodd-lagarto:jar:sources:6.0.3", "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", "net.sf.saxon:Saxon-HE:jar:sources:10.3", "io.gatling:gatling-commons-shared:jar:sources:3.5.1", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.13", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "io.gatling:gatling-commons-shared-unstable:jar:sources:3.5.1", "io.netty:netty-transport:jar:sources:4.1.67.Final", "org.typelevel:spire-macros_2.13:jar:sources:0.17.0", @@ -4125,6 +4139,7 @@ "io.burt:jmespath-jackson:0.5.0", "io.burt:jmespath-core:0.5.0", "io.gatling:gatling-netty-util:3.5.1", + "com.google.errorprone:error_prone_annotations:2.9.0", "com.softwaremill.quicklens:quicklens_2.13:1.6.1", "com.fasterxml.jackson.core:jackson-databind:2.12.0", "org.jodd:jodd-util:6.0.0", @@ -4132,8 +4147,7 @@ "org.jodd:jodd-lagarto:6.0.3", "com.fasterxml.jackson.core:jackson-annotations:2.12.0", "ch.qos.logback:logback-core:1.2.3", - "com.github.ben-manes.caffeine:caffeine:2.8.0", - "com.google.errorprone:error_prone_annotations:2.4.0" + "com.github.ben-manes.caffeine:caffeine:2.8.0" ], "directDependencies": [ "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", @@ -4196,12 +4210,12 @@ "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.12.0", "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", "org.scala-lang:scala-reflect:jar:sources:2.13.6", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "org.jodd:jodd-lagarto:jar:sources:6.0.3", "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", "net.sf.saxon:Saxon-HE:jar:sources:10.3", "io.gatling:gatling-commons-shared:jar:sources:3.5.1", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.13", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "io.gatling:gatling-commons-shared-unstable:jar:sources:3.5.1", "io.netty:netty-transport:jar:sources:4.1.67.Final", "org.typelevel:spire-macros_2.13:jar:sources:0.17.0", @@ -4269,6 +4283,7 @@ "io.burt:jmespath-jackson:0.5.0", "io.burt:jmespath-core:0.5.0", "io.gatling:gatling-netty-util:3.5.1", + "com.google.errorprone:error_prone_annotations:2.9.0", "com.softwaremill.quicklens:quicklens_2.13:1.6.1", "com.fasterxml.jackson.core:jackson-databind:2.12.0", "io.gatling:gatling-core:3.5.1", @@ -4278,8 +4293,7 @@ "com.fasterxml.jackson.core:jackson-annotations:2.12.0", "ch.qos.logback:logback-core:1.2.3", "org.hdrhistogram:HdrHistogram:2.1.12", - "com.github.ben-manes.caffeine:caffeine:2.8.0", - "com.google.errorprone:error_prone_annotations:2.4.0" + "com.github.ben-manes.caffeine:caffeine:2.8.0" ], "directDependencies": [ "io.gatling:gatling-core:3.5.1", @@ -4330,12 +4344,12 @@ "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.12.0", "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", "org.scala-lang:scala-reflect:jar:sources:2.13.6", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "org.jodd:jodd-lagarto:jar:sources:6.0.3", "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", "net.sf.saxon:Saxon-HE:jar:sources:10.3", "io.gatling:gatling-commons-shared:jar:sources:3.5.1", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.13", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "io.gatling:gatling-commons-shared-unstable:jar:sources:3.5.1", "io.netty:netty-transport:jar:sources:4.1.67.Final", "org.typelevel:spire-macros_2.13:jar:sources:0.17.0", @@ -4493,6 +4507,7 @@ "io.burt:jmespath-jackson:0.5.0", "io.burt:jmespath-core:0.5.0", "io.gatling:gatling-netty-util:3.5.1", + "com.google.errorprone:error_prone_annotations:2.9.0", "com.softwaremill.quicklens:quicklens_2.13:1.6.1", "com.fasterxml.jackson.core:jackson-databind:2.12.0", "io.gatling:gatling-core:3.5.1", @@ -4503,8 +4518,7 @@ "io.netty:netty-codec-dns:4.1.58.Final", "ch.qos.logback:logback-core:1.2.3", "io.netty:netty-codec-http2:4.1.67.Final", - "com.github.ben-manes.caffeine:caffeine:2.8.0", - "com.google.errorprone:error_prone_annotations:2.4.0" + "com.github.ben-manes.caffeine:caffeine:2.8.0" ], "directDependencies": [ "io.gatling:gatling-core:3.5.1", @@ -4558,13 +4572,13 @@ "io.netty:netty-codec-dns:jar:sources:4.1.58.Final", "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", "org.scala-lang:scala-reflect:jar:sources:2.13.6", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "org.jodd:jodd-lagarto:jar:sources:6.0.3", "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", "io.netty:netty-codec-socks:jar:sources:4.1.67.Final", "net.sf.saxon:Saxon-HE:jar:sources:10.3", "io.gatling:gatling-commons-shared:jar:sources:3.5.1", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.13", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "io.gatling:gatling-commons-shared-unstable:jar:sources:3.5.1", "io.netty:netty-transport:jar:sources:4.1.67.Final", "io.netty:netty-handler-proxy:jar:sources:4.1.67.Final", @@ -4625,6 +4639,7 @@ "io.burt:jmespath-jackson:0.5.0", "io.burt:jmespath-core:0.5.0", "io.gatling:gatling-netty-util:3.5.1", + "com.google.errorprone:error_prone_annotations:2.9.0", "com.softwaremill.quicklens:quicklens_2.13:1.6.1", "com.fasterxml.jackson.core:jackson-databind:2.12.0", "io.gatling:gatling-core:3.5.1", @@ -4633,8 +4648,7 @@ "org.jodd:jodd-lagarto:6.0.3", "com.fasterxml.jackson.core:jackson-annotations:2.12.0", "ch.qos.logback:logback-core:1.2.3", - "com.github.ben-manes.caffeine:caffeine:2.8.0", - "com.google.errorprone:error_prone_annotations:2.4.0" + "com.github.ben-manes.caffeine:caffeine:2.8.0" ], "directDependencies": [ "io.gatling:gatling-core:3.5.1", @@ -4683,12 +4697,12 @@ "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.12.0", "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", "org.scala-lang:scala-reflect:jar:sources:2.13.6", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "org.jodd:jodd-lagarto:jar:sources:6.0.3", "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", "net.sf.saxon:Saxon-HE:jar:sources:10.3", "io.gatling:gatling-commons-shared:jar:sources:3.5.1", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.13", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "io.gatling:gatling-commons-shared-unstable:jar:sources:3.5.1", "io.netty:netty-transport:jar:sources:4.1.67.Final", "org.typelevel:spire-macros_2.13:jar:sources:0.17.0", @@ -4744,6 +4758,7 @@ "io.burt:jmespath-jackson:0.5.0", "io.burt:jmespath-core:0.5.0", "io.gatling:gatling-netty-util:3.5.1", + "com.google.errorprone:error_prone_annotations:2.9.0", "javax.jms:javax.jms-api:2.0.1", "com.softwaremill.quicklens:quicklens_2.13:1.6.1", "com.fasterxml.jackson.core:jackson-databind:2.12.0", @@ -4753,8 +4768,7 @@ "org.jodd:jodd-lagarto:6.0.3", "com.fasterxml.jackson.core:jackson-annotations:2.12.0", "ch.qos.logback:logback-core:1.2.3", - "com.github.ben-manes.caffeine:caffeine:2.8.0", - "com.google.errorprone:error_prone_annotations:2.4.0" + "com.github.ben-manes.caffeine:caffeine:2.8.0" ], "directDependencies": [ "com.eatthepath:fast-uuid:0.1", @@ -4806,12 +4820,12 @@ "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.12.0", "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", "org.scala-lang:scala-reflect:jar:sources:2.13.6", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "org.jodd:jodd-lagarto:jar:sources:6.0.3", "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", "net.sf.saxon:Saxon-HE:jar:sources:10.3", "io.gatling:gatling-commons-shared:jar:sources:3.5.1", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.13", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "io.gatling:gatling-commons-shared-unstable:jar:sources:3.5.1", "io.netty:netty-transport:jar:sources:4.1.67.Final", "org.typelevel:spire-macros_2.13:jar:sources:0.17.0", @@ -4964,6 +4978,7 @@ "io.burt:jmespath-jackson:0.5.0", "io.burt:jmespath-core:0.5.0", "io.gatling:gatling-netty-util:3.5.1", + "com.google.errorprone:error_prone_annotations:2.9.0", "com.softwaremill.quicklens:quicklens_2.13:1.6.1", "com.fasterxml.jackson.core:jackson-databind:2.12.0", "io.gatling:gatling-core:3.5.1", @@ -4977,8 +4992,7 @@ "io.netty:netty-codec-http2:4.1.67.Final", "com.github.ben-manes.caffeine:caffeine:2.8.0", "org.bouncycastle:bcpkix-jdk15on:1.68", - "io.gatling:gatling-http:3.5.1", - "com.google.errorprone:error_prone_annotations:2.4.0" + "io.gatling:gatling-http:3.5.1" ], "directDependencies": [ "io.netty:netty-codec-http:4.1.67.Final", @@ -5037,7 +5051,6 @@ "io.netty:netty-codec-dns:jar:sources:4.1.58.Final", "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", "org.scala-lang:scala-reflect:jar:sources:2.13.6", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "org.jodd:jodd-lagarto:jar:sources:6.0.3", "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", "io.netty:netty-codec-socks:jar:sources:4.1.67.Final", @@ -5045,6 +5058,7 @@ "io.gatling:gatling-commons-shared:jar:sources:3.5.1", "org.bouncycastle:bcprov-jdk15on:jar:sources:1.68", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.13", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "io.gatling:gatling-commons-shared-unstable:jar:sources:3.5.1", "io.netty:netty-transport:jar:sources:4.1.67.Final", "org.bouncycastle:bcpkix-jdk15on:jar:sources:1.68", @@ -5112,6 +5126,7 @@ "io.burt:jmespath-jackson:0.5.0", "io.burt:jmespath-core:0.5.0", "io.gatling:gatling-netty-util:3.5.1", + "com.google.errorprone:error_prone_annotations:2.9.0", "com.softwaremill.quicklens:quicklens_2.13:1.6.1", "com.fasterxml.jackson.core:jackson-databind:2.12.0", "io.gatling:gatling-core:3.5.1", @@ -5121,8 +5136,7 @@ "com.fasterxml.jackson.core:jackson-annotations:2.12.0", "ch.qos.logback:logback-core:1.2.3", "com.github.ben-manes.caffeine:caffeine:2.8.0", - "org.apache.commons:commons-pool2:2.8.0", - "com.google.errorprone:error_prone_annotations:2.4.0" + "org.apache.commons:commons-pool2:2.8.0" ], "directDependencies": [ "io.gatling:gatling-core:3.5.1", @@ -5174,12 +5188,12 @@ "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.12.0", "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", "org.scala-lang:scala-reflect:jar:sources:2.13.6", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "org.jodd:jodd-lagarto:jar:sources:6.0.3", "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", "net.sf.saxon:Saxon-HE:jar:sources:10.3", "io.gatling:gatling-commons-shared:jar:sources:3.5.1", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.13", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "io.gatling:gatling-commons-shared-unstable:jar:sources:3.5.1", "io.netty:netty-transport:jar:sources:4.1.67.Final", "org.typelevel:spire-macros_2.13:jar:sources:0.17.0", @@ -5199,83 +5213,79 @@ "url": "https://repo1.maven.org/maven2/io/gatling/gatling-redis/3.5.1/gatling-redis-3.5.1-sources.jar" }, { - "coord": "io.grpc:grpc-api:1.35.0", + "coord": "io.grpc:grpc-api:1.41.0", "dependencies": [ "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", "com.google.j2objc:j2objc-annotations:1.3", "com.google.code.findbugs:jsr305:3.0.2", - "org.codehaus.mojo:animal-sniffer-annotations:1.19", "org.checkerframework:checker-qual:3.5.0", - "io.grpc:grpc-context:1.35.0", + "com.google.errorprone:error_prone_annotations:2.9.0", "com.google.guava:failureaccess:1.0.1", "com.google.guava:guava:29.0-jre", - "com.google.errorprone:error_prone_annotations:2.4.0" + "io.grpc:grpc-context:1.41.0" ], "directDependencies": [ "com.google.code.findbugs:jsr305:3.0.2", - "org.codehaus.mojo:animal-sniffer-annotations:1.19", - "io.grpc:grpc-context:1.35.0", + "com.google.errorprone:error_prone_annotations:2.9.0", "com.google.guava:guava:29.0-jre", - "com.google.errorprone:error_prone_annotations:2.4.0" + "io.grpc:grpc-context:1.41.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-api/1.35.0/grpc-api-1.35.0.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-api/1.41.0/grpc-api-1.41.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-api/1.35.0/grpc-api-1.35.0.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-api/1.41.0/grpc-api-1.41.0.jar" ], - "sha256": "954173d37cbdcbdf4ef1f5d77debc19c93517447c3ad04042d1a8299583fd627", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-api/1.35.0/grpc-api-1.35.0.jar" + "sha256": "68206a19ac4eb026114aa3e76bacfae1319c58bbe087354d2b90657ba6eb7748", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-api/1.41.0/grpc-api-1.41.0.jar" }, { - "coord": "io.grpc:grpc-api:jar:sources:1.35.0", + "coord": "io.grpc:grpc-api:jar:sources:1.41.0", "dependencies": [ "org.checkerframework:checker-qual:jar:sources:3.5.0", "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "io.grpc:grpc-context:jar:sources:1.35.0", "com.google.j2objc:j2objc-annotations:jar:sources:1.3", "com.google.guava:guava:jar:sources:29.0-jre", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", + "io.grpc:grpc-context:jar:sources:1.41.0", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "com.google.guava:failureaccess:jar:sources:1.0.1", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.19" + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0" ], "directDependencies": [ "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "io.grpc:grpc-context:jar:sources:1.35.0", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "com.google.guava:guava:jar:sources:29.0-jre", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.19" + "io.grpc:grpc-context:jar:sources:1.41.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-api/1.35.0/grpc-api-1.35.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-api/1.41.0/grpc-api-1.41.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-api/1.35.0/grpc-api-1.35.0-sources.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-api/1.41.0/grpc-api-1.41.0-sources.jar" ], - "sha256": "fd82e941968c00d1ef7c766ffe877f4cb5d2c15760913936fc576da74f224d1c", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-api/1.35.0/grpc-api-1.35.0-sources.jar" + "sha256": "2e92ab04554410716a0b940890d2a21254e9429e97d27eacd8f2171899a56910", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-api/1.41.0/grpc-api-1.41.0-sources.jar" }, { - "coord": "io.grpc:grpc-context:1.35.0", + "coord": "io.grpc:grpc-context:1.41.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-context/1.35.0/grpc-context-1.35.0.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-context/1.41.0/grpc-context-1.41.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-context/1.35.0/grpc-context-1.35.0.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-context/1.41.0/grpc-context-1.41.0.jar" ], - "sha256": "f60be77a035a9cd00ae2356a1637f831e85cccaba888806ed167857854f14e38", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-context/1.35.0/grpc-context-1.35.0.jar" + "sha256": "0e35553051e1abed56df748f2022f07580739cb53250669e352c4b05d4eef624", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-context/1.41.0/grpc-context-1.41.0.jar" }, { - "coord": "io.grpc:grpc-context:jar:sources:1.35.0", + "coord": "io.grpc:grpc-context:jar:sources:1.41.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-context/1.35.0/grpc-context-1.35.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-context/1.41.0/grpc-context-1.41.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-context/1.35.0/grpc-context-1.35.0-sources.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-context/1.41.0/grpc-context-1.41.0-sources.jar" ], - "sha256": "f8371caad6b3f3e8321a75b5eb9602c5cf670779d870cea693d7a88553d92ab5", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-context/1.35.0/grpc-context-1.35.0-sources.jar" + "sha256": "776dbf512c65a0c85e36e758182ab2291f48318937f878d6c3fcc37065b0ef15", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-context/1.41.0/grpc-context-1.41.0-sources.jar" }, { - "coord": "io.grpc:grpc-core:1.35.0", + "coord": "io.grpc:grpc-core:1.41.0", "dependencies": [ "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", "com.google.j2objc:j2objc-annotations:1.3", @@ -5284,66 +5294,64 @@ "org.codehaus.mojo:animal-sniffer-annotations:1.19", "io.perfmark:perfmark-api:0.23.0", "org.checkerframework:checker-qual:3.5.0", - "io.grpc:grpc-api:1.35.0", - "io.grpc:grpc-context:1.35.0", + "com.google.errorprone:error_prone_annotations:2.9.0", + "io.grpc:grpc-api:1.41.0", "com.google.guava:failureaccess:1.0.1", "com.google.guava:guava:29.0-jre", - "com.google.code.gson:gson:2.8.2", - "com.google.errorprone:error_prone_annotations:2.4.0" + "io.grpc:grpc-context:1.41.0", + "com.google.code.gson:gson:2.8.2" ], "directDependencies": [ - "com.google.code.findbugs:jsr305:3.0.2", "com.google.android:annotations:4.1.1.4", "org.codehaus.mojo:animal-sniffer-annotations:1.19", "io.perfmark:perfmark-api:0.23.0", - "io.grpc:grpc-api:1.35.0", + "com.google.errorprone:error_prone_annotations:2.9.0", + "io.grpc:grpc-api:1.41.0", "com.google.guava:guava:29.0-jre", - "com.google.code.gson:gson:2.8.2", - "com.google.errorprone:error_prone_annotations:2.4.0" + "com.google.code.gson:gson:2.8.2" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-core/1.35.0/grpc-core-1.35.0.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-core/1.41.0/grpc-core-1.41.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-core/1.35.0/grpc-core-1.35.0.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-core/1.41.0/grpc-core-1.41.0.jar" ], - "sha256": "2466511bfa0d71391312e69e410569bfa5c263a63755fe9f52946752a62e8ff0", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-core/1.35.0/grpc-core-1.35.0.jar" + "sha256": "0ca13525b1bd8fe8a70777d578046889fbe9b852c89f986990c626407496d212", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-core/1.41.0/grpc-core-1.41.0.jar" }, { - "coord": "io.grpc:grpc-core:jar:sources:1.35.0", + "coord": "io.grpc:grpc-core:jar:sources:1.41.0", "dependencies": [ "org.checkerframework:checker-qual:jar:sources:3.5.0", "com.google.code.findbugs:jsr305:jar:sources:3.0.2", "com.google.android:annotations:jar:sources:4.1.1.4", - "io.grpc:grpc-context:jar:sources:1.35.0", + "io.grpc:grpc-api:jar:sources:1.41.0", "com.google.j2objc:j2objc-annotations:jar:sources:1.3", "com.google.guava:guava:jar:sources:29.0-jre", "com.google.code.gson:gson:jar:sources:2.8.2", - "io.grpc:grpc-api:jar:sources:1.35.0", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", + "io.grpc:grpc-context:jar:sources:1.41.0", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "com.google.guava:failureaccess:jar:sources:1.0.1", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "io.perfmark:perfmark-api:jar:sources:0.23.0", "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.19" ], "directDependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", "com.google.android:annotations:jar:sources:4.1.1.4", + "io.grpc:grpc-api:jar:sources:1.41.0", "com.google.guava:guava:jar:sources:29.0-jre", "com.google.code.gson:gson:jar:sources:2.8.2", - "io.grpc:grpc-api:jar:sources:1.35.0", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "io.perfmark:perfmark-api:jar:sources:0.23.0", "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.19" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-core/1.35.0/grpc-core-1.35.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-core/1.41.0/grpc-core-1.41.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-core/1.35.0/grpc-core-1.35.0-sources.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-core/1.41.0/grpc-core-1.41.0-sources.jar" ], - "sha256": "90b79074070b53769380709ee52fd1e9a5aff40deeba66274a32de4c90be463a", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-core/1.35.0/grpc-core-1.35.0-sources.jar" + "sha256": "5e344b2ad3e32f107d4a8e7f1354eebc88d7fe4cb5e2cdfab651c5f7663bcb6f", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-core/1.41.0/grpc-core-1.41.0-sources.jar" }, { - "coord": "io.grpc:grpc-netty:1.35.0", + "coord": "io.grpc:grpc-netty:1.41.0", "dependencies": [ "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", "io.netty:netty-transport:4.1.67.Final", @@ -5354,7 +5362,6 @@ "io.netty:netty-handler:4.1.67.Final", "com.google.j2objc:j2objc-annotations:1.3", "com.google.code.findbugs:jsr305:3.0.2", - "io.grpc:grpc-core:1.35.0", "com.google.android:annotations:4.1.1.4", "org.codehaus.mojo:animal-sniffer-annotations:1.19", "io.perfmark:perfmark-api:0.23.0", @@ -5362,53 +5369,52 @@ "io.netty:netty-handler-proxy:4.1.67.Final", "io.netty:netty-codec-socks:4.1.67.Final", "org.checkerframework:checker-qual:3.5.0", - "io.grpc:grpc-api:1.35.0", - "io.grpc:grpc-context:1.35.0", + "com.google.errorprone:error_prone_annotations:2.9.0", + "io.grpc:grpc-api:1.41.0", "com.google.guava:failureaccess:1.0.1", "com.google.guava:guava:29.0-jre", + "io.grpc:grpc-context:1.41.0", + "io.grpc:grpc-core:1.41.0", "io.netty:netty-codec-http2:4.1.67.Final", - "com.google.code.gson:gson:2.8.2", - "com.google.errorprone:error_prone_annotations:2.4.0" + "com.google.code.gson:gson:2.8.2" ], "directDependencies": [ - "com.google.code.findbugs:jsr305:3.0.2", - "io.grpc:grpc-core:1.35.0", - "org.codehaus.mojo:animal-sniffer-annotations:1.19", "io.perfmark:perfmark-api:0.23.0", "io.netty:netty-handler-proxy:4.1.67.Final", + "com.google.errorprone:error_prone_annotations:2.9.0", "com.google.guava:guava:29.0-jre", - "io.netty:netty-codec-http2:4.1.67.Final", - "com.google.errorprone:error_prone_annotations:2.4.0" + "io.grpc:grpc-core:1.41.0", + "io.netty:netty-codec-http2:4.1.67.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-netty/1.35.0/grpc-netty-1.35.0.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-netty/1.41.0/grpc-netty-1.41.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-netty/1.35.0/grpc-netty-1.35.0.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-netty/1.41.0/grpc-netty-1.41.0.jar" ], - "sha256": "45bbdac0c59d327c12194bbcde4758f855ef16c37b38ddba0dcf3c161b88bf76", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-netty/1.35.0/grpc-netty-1.35.0.jar" + "sha256": "16e90c32bb27b9f71292aefa58048fd226d4aa94b0d05ad5da409cf83d763c9a", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-netty/1.41.0/grpc-netty-1.41.0.jar" }, { - "coord": "io.grpc:grpc-netty:jar:sources:1.35.0", + "coord": "io.grpc:grpc-netty:jar:sources:1.41.0", "dependencies": [ "org.checkerframework:checker-qual:jar:sources:3.5.0", "com.google.code.findbugs:jsr305:jar:sources:3.0.2", "io.netty:netty-resolver:jar:sources:4.1.67.Final", "com.google.android:annotations:jar:sources:4.1.1.4", "io.netty:netty-handler:jar:sources:4.1.67.Final", - "io.grpc:grpc-context:jar:sources:1.35.0", + "io.grpc:grpc-api:jar:sources:1.41.0", "com.google.j2objc:j2objc-annotations:jar:sources:1.3", "io.netty:netty-buffer:jar:sources:4.1.67.Final", "com.google.guava:guava:jar:sources:29.0-jre", "io.netty:netty-codec:jar:sources:4.1.67.Final", - "io.grpc:grpc-core:jar:sources:1.35.0", "io.netty:netty-codec-http2:jar:sources:4.1.67.Final", "io.netty:netty-common:jar:sources:4.1.67.Final", "com.google.code.gson:gson:jar:sources:2.8.2", - "io.grpc:grpc-api:jar:sources:1.35.0", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", + "io.grpc:grpc-core:jar:sources:1.41.0", + "io.grpc:grpc-context:jar:sources:1.41.0", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "io.netty:netty-codec-socks:jar:sources:4.1.67.Final", "com.google.guava:failureaccess:jar:sources:1.0.1", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "io.netty:netty-transport:jar:sources:4.1.67.Final", "io.perfmark:perfmark-api:jar:sources:0.23.0", "io.netty:netty-handler-proxy:jar:sources:4.1.67.Final", @@ -5416,289 +5422,265 @@ "io.netty:netty-codec-http:jar:sources:4.1.67.Final" ], "directDependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", "com.google.guava:guava:jar:sources:29.0-jre", - "io.grpc:grpc-core:jar:sources:1.35.0", "io.netty:netty-codec-http2:jar:sources:4.1.67.Final", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", + "io.grpc:grpc-core:jar:sources:1.41.0", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "io.perfmark:perfmark-api:jar:sources:0.23.0", - "io.netty:netty-handler-proxy:jar:sources:4.1.67.Final", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.19" + "io.netty:netty-handler-proxy:jar:sources:4.1.67.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-netty/1.35.0/grpc-netty-1.35.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-netty/1.41.0/grpc-netty-1.41.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-netty/1.35.0/grpc-netty-1.35.0-sources.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-netty/1.41.0/grpc-netty-1.41.0-sources.jar" ], - "sha256": "54e6aa14e151459e4a1c809c65546b6a2826b2b0fc178cc493f6394d04658e53", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-netty/1.35.0/grpc-netty-1.35.0-sources.jar" + "sha256": "cda9e8c49ed23eaaf23f98b0b6989b47e8b87955a5da67837547611f4de57386", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-netty/1.41.0/grpc-netty-1.41.0-sources.jar" }, { - "coord": "io.grpc:grpc-protobuf-lite:1.35.0", + "coord": "io.grpc:grpc-protobuf-lite:1.41.0", "dependencies": [ "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", "com.google.j2objc:j2objc-annotations:1.3", "com.google.code.findbugs:jsr305:3.0.2", - "org.codehaus.mojo:animal-sniffer-annotations:1.19", "org.checkerframework:checker-qual:3.5.0", - "io.grpc:grpc-api:1.35.0", - "io.grpc:grpc-context:1.35.0", + "com.google.errorprone:error_prone_annotations:2.9.0", + "io.grpc:grpc-api:1.41.0", "com.google.guava:failureaccess:1.0.1", "com.google.guava:guava:29.0-jre", - "com.google.errorprone:error_prone_annotations:2.4.0" + "io.grpc:grpc-context:1.41.0" ], "directDependencies": [ "com.google.code.findbugs:jsr305:3.0.2", - "org.codehaus.mojo:animal-sniffer-annotations:1.19", - "io.grpc:grpc-api:1.35.0", "com.google.guava:guava:29.0-jre", - "com.google.errorprone:error_prone_annotations:2.4.0" + "io.grpc:grpc-api:1.41.0" ], "exclusions": [ "com.google.protobuf:protobuf-javalite" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.35.0/grpc-protobuf-lite-1.35.0.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.41.0/grpc-protobuf-lite-1.41.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.35.0/grpc-protobuf-lite-1.35.0.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.41.0/grpc-protobuf-lite-1.41.0.jar" ], - "sha256": "ab28ad7696a2f37e7d2e09f6bad7a3d657277a4bff2f5e77b23da5dc793d0143", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.35.0/grpc-protobuf-lite-1.35.0.jar" + "sha256": "04e5c672c692dc7c7625331d6f2253a2e058154fe67134f3e9b5e0bf42895a76", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.41.0/grpc-protobuf-lite-1.41.0.jar" }, { - "coord": "io.grpc:grpc-protobuf-lite:jar:sources:1.35.0", + "coord": "io.grpc:grpc-protobuf-lite:jar:sources:1.41.0", "dependencies": [ "org.checkerframework:checker-qual:jar:sources:3.5.0", "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "io.grpc:grpc-context:jar:sources:1.35.0", + "io.grpc:grpc-api:jar:sources:1.41.0", "com.google.j2objc:j2objc-annotations:jar:sources:1.3", "com.google.guava:guava:jar:sources:29.0-jre", - "io.grpc:grpc-api:jar:sources:1.35.0", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", + "io.grpc:grpc-context:jar:sources:1.41.0", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "com.google.guava:failureaccess:jar:sources:1.0.1", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.19" + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0" ], "directDependencies": [ "com.google.code.findbugs:jsr305:jar:sources:3.0.2", "com.google.guava:guava:jar:sources:29.0-jre", - "io.grpc:grpc-api:jar:sources:1.35.0", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.19" + "io.grpc:grpc-api:jar:sources:1.41.0" ], "exclusions": [ "com.google.protobuf:protobuf-javalite" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.35.0/grpc-protobuf-lite-1.35.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.41.0/grpc-protobuf-lite-1.41.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.35.0/grpc-protobuf-lite-1.35.0-sources.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.41.0/grpc-protobuf-lite-1.41.0-sources.jar" ], - "sha256": "b6ff8ec8e409e1e7587ccc0df4a113cde2626ca31ec43540dd4b81c18705c7da", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.35.0/grpc-protobuf-lite-1.35.0-sources.jar" + "sha256": "d6b898f8fe596cb7ac6dd9da221709b9214ac181756db203b1dffec9cfe6c039", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.41.0/grpc-protobuf-lite-1.41.0-sources.jar" }, { - "coord": "io.grpc:grpc-protobuf:1.35.0", + "coord": "io.grpc:grpc-protobuf:1.41.0", "dependencies": [ "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.protobuf:protobuf-java:3.17.1", - "io.grpc:grpc-protobuf-lite:1.35.0", "com.google.j2objc:j2objc-annotations:1.3", "com.google.code.findbugs:jsr305:3.0.2", - "org.codehaus.mojo:animal-sniffer-annotations:1.19", "org.checkerframework:checker-qual:3.5.0", - "io.grpc:grpc-api:1.35.0", - "io.grpc:grpc-context:1.35.0", + "com.google.errorprone:error_prone_annotations:2.9.0", + "com.google.protobuf:protobuf-java:3.17.3", + "io.grpc:grpc-api:1.41.0", "com.google.guava:failureaccess:1.0.1", "com.google.guava:guava:29.0-jre", - "com.google.api.grpc:proto-google-common-protos:2.0.1", - "com.google.errorprone:error_prone_annotations:2.4.0" + "io.grpc:grpc-context:1.41.0", + "io.grpc:grpc-protobuf-lite:1.41.0", + "com.google.api.grpc:proto-google-common-protos:2.0.1" ], "directDependencies": [ - "com.google.protobuf:protobuf-java:3.17.1", - "io.grpc:grpc-protobuf-lite:1.35.0", "com.google.code.findbugs:jsr305:3.0.2", - "org.codehaus.mojo:animal-sniffer-annotations:1.19", - "io.grpc:grpc-api:1.35.0", + "com.google.protobuf:protobuf-java:3.17.3", + "io.grpc:grpc-api:1.41.0", "com.google.guava:guava:29.0-jre", - "com.google.api.grpc:proto-google-common-protos:2.0.1", - "com.google.errorprone:error_prone_annotations:2.4.0" + "io.grpc:grpc-protobuf-lite:1.41.0", + "com.google.api.grpc:proto-google-common-protos:2.0.1" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.35.0/grpc-protobuf-1.35.0.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.41.0/grpc-protobuf-1.41.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.35.0/grpc-protobuf-1.35.0.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.41.0/grpc-protobuf-1.41.0.jar" ], - "sha256": "1eca35a1bf3453bc69f2de23e82c4bcb9df1a4c312a6647400a11680c85d8b20", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.35.0/grpc-protobuf-1.35.0.jar" + "sha256": "4383fce000596980220327e1f6c07e2f855b7108d1b9a602779e3de584677996", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.41.0/grpc-protobuf-1.41.0.jar" }, { - "coord": "io.grpc:grpc-protobuf:jar:sources:1.35.0", + "coord": "io.grpc:grpc-protobuf:jar:sources:1.41.0", "dependencies": [ + "com.google.protobuf:protobuf-java:jar:sources:3.17.3", "org.checkerframework:checker-qual:jar:sources:3.5.0", "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "io.grpc:grpc-context:jar:sources:1.35.0", + "io.grpc:grpc-api:jar:sources:1.41.0", "com.google.j2objc:j2objc-annotations:jar:sources:1.3", "com.google.guava:guava:jar:sources:29.0-jre", - "io.grpc:grpc-protobuf-lite:jar:sources:1.35.0", - "io.grpc:grpc-api:jar:sources:1.35.0", - "com.google.protobuf:protobuf-java:jar:sources:3.17.1", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", + "io.grpc:grpc-protobuf-lite:jar:sources:1.41.0", + "io.grpc:grpc-context:jar:sources:1.41.0", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "com.google.api.grpc:proto-google-common-protos:jar:sources:2.0.1", "com.google.guava:failureaccess:jar:sources:1.0.1", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.19" + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0" ], "directDependencies": [ + "com.google.protobuf:protobuf-java:jar:sources:3.17.3", "com.google.code.findbugs:jsr305:jar:sources:3.0.2", + "io.grpc:grpc-api:jar:sources:1.41.0", "com.google.guava:guava:jar:sources:29.0-jre", - "io.grpc:grpc-protobuf-lite:jar:sources:1.35.0", - "io.grpc:grpc-api:jar:sources:1.35.0", - "com.google.protobuf:protobuf-java:jar:sources:3.17.1", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", - "com.google.api.grpc:proto-google-common-protos:jar:sources:2.0.1", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.19" + "io.grpc:grpc-protobuf-lite:jar:sources:1.41.0", + "com.google.api.grpc:proto-google-common-protos:jar:sources:2.0.1" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.35.0/grpc-protobuf-1.35.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.41.0/grpc-protobuf-1.41.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.35.0/grpc-protobuf-1.35.0-sources.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.41.0/grpc-protobuf-1.41.0-sources.jar" ], - "sha256": "7560a9610dc7ee17c8294b4437fa570b2003dc5cd1262cdf5557ef4396c3c040", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.35.0/grpc-protobuf-1.35.0-sources.jar" + "sha256": "bccc3b349d28607079bdc2f57cd8a8075e52e38df39c8e1431dcae90fb67864c", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.41.0/grpc-protobuf-1.41.0-sources.jar" }, { - "coord": "io.grpc:grpc-services:1.35.0", + "coord": "io.grpc:grpc-services:1.41.0", "dependencies": [ "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.protobuf:protobuf-java:3.17.1", - "io.grpc:grpc-protobuf-lite:1.35.0", "com.google.j2objc:j2objc-annotations:1.3", "com.google.code.findbugs:jsr305:3.0.2", - "io.grpc:grpc-core:1.35.0", "com.google.android:annotations:4.1.1.4", "org.codehaus.mojo:animal-sniffer-annotations:1.19", "io.perfmark:perfmark-api:0.23.0", + "io.grpc:grpc-stub:1.41.0", "org.checkerframework:checker-qual:3.5.0", - "io.grpc:grpc-api:1.35.0", - "io.grpc:grpc-context:1.35.0", + "com.google.errorprone:error_prone_annotations:2.9.0", + "com.google.protobuf:protobuf-java:3.17.3", + "io.grpc:grpc-api:1.41.0", "com.google.guava:failureaccess:1.0.1", - "io.grpc:grpc-stub:1.35.0", + "io.grpc:grpc-protobuf:1.41.0", "com.google.guava:guava:29.0-jre", + "io.grpc:grpc-context:1.41.0", + "io.grpc:grpc-protobuf-lite:1.41.0", + "io.grpc:grpc-core:1.41.0", "com.google.api.grpc:proto-google-common-protos:2.0.1", - "io.grpc:grpc-protobuf:1.35.0", "com.google.code.gson:gson:2.8.2", - "com.google.protobuf:protobuf-java-util:3.12.0", - "com.google.errorprone:error_prone_annotations:2.4.0" + "com.google.protobuf:protobuf-java-util:3.17.2" ], "directDependencies": [ - "com.google.code.findbugs:jsr305:3.0.2", - "io.grpc:grpc-core:1.35.0", - "org.codehaus.mojo:animal-sniffer-annotations:1.19", - "io.grpc:grpc-stub:1.35.0", + "io.grpc:grpc-stub:1.41.0", + "com.google.errorprone:error_prone_annotations:2.9.0", + "io.grpc:grpc-protobuf:1.41.0", "com.google.guava:guava:29.0-jre", - "io.grpc:grpc-protobuf:1.35.0", - "com.google.protobuf:protobuf-java-util:3.12.0", - "com.google.errorprone:error_prone_annotations:2.4.0" + "io.grpc:grpc-core:1.41.0", + "com.google.protobuf:protobuf-java-util:3.17.2" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-services/1.35.0/grpc-services-1.35.0.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-services/1.41.0/grpc-services-1.41.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-services/1.35.0/grpc-services-1.35.0.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-services/1.41.0/grpc-services-1.41.0.jar" ], - "sha256": "e6ed3b4d85d1e395575f3d725f3b11bb0add8f3952d5efbeaf507573674b3f7e", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-services/1.35.0/grpc-services-1.35.0.jar" + "sha256": "c94c9f5c14aff60450d9182473e5a432b976d5248981a13ab2553c0b88c0b097", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-services/1.41.0/grpc-services-1.41.0.jar" }, { - "coord": "io.grpc:grpc-services:jar:sources:1.35.0", + "coord": "io.grpc:grpc-services:jar:sources:1.41.0", "dependencies": [ + "com.google.protobuf:protobuf-java:jar:sources:3.17.3", "org.checkerframework:checker-qual:jar:sources:3.5.0", "com.google.code.findbugs:jsr305:jar:sources:3.0.2", "com.google.android:annotations:jar:sources:4.1.1.4", - "io.grpc:grpc-context:jar:sources:1.35.0", - "io.grpc:grpc-stub:jar:sources:1.35.0", + "io.grpc:grpc-api:jar:sources:1.41.0", "com.google.j2objc:j2objc-annotations:jar:sources:1.3", "com.google.guava:guava:jar:sources:29.0-jre", - "io.grpc:grpc-protobuf:jar:sources:1.35.0", - "io.grpc:grpc-core:jar:sources:1.35.0", - "io.grpc:grpc-protobuf-lite:jar:sources:1.35.0", + "io.grpc:grpc-protobuf-lite:jar:sources:1.41.0", "com.google.code.gson:gson:jar:sources:2.8.2", - "io.grpc:grpc-api:jar:sources:1.35.0", - "com.google.protobuf:protobuf-java:jar:sources:3.17.1", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", + "io.grpc:grpc-core:jar:sources:1.41.0", + "io.grpc:grpc-context:jar:sources:1.41.0", + "com.google.protobuf:protobuf-java-util:jar:sources:3.17.2", + "io.grpc:grpc-protobuf:jar:sources:1.41.0", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "com.google.api.grpc:proto-google-common-protos:jar:sources:2.0.1", "com.google.guava:failureaccess:jar:sources:1.0.1", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "io.perfmark:perfmark-api:jar:sources:0.23.0", "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.19", - "com.google.protobuf:protobuf-java-util:jar:sources:3.12.0" + "io.grpc:grpc-stub:jar:sources:1.41.0" ], "directDependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "io.grpc:grpc-stub:jar:sources:1.35.0", "com.google.guava:guava:jar:sources:29.0-jre", - "io.grpc:grpc-protobuf:jar:sources:1.35.0", - "io.grpc:grpc-core:jar:sources:1.35.0", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.19", - "com.google.protobuf:protobuf-java-util:jar:sources:3.12.0" + "io.grpc:grpc-core:jar:sources:1.41.0", + "com.google.protobuf:protobuf-java-util:jar:sources:3.17.2", + "io.grpc:grpc-protobuf:jar:sources:1.41.0", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", + "io.grpc:grpc-stub:jar:sources:1.41.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-services/1.35.0/grpc-services-1.35.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-services/1.41.0/grpc-services-1.41.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-services/1.35.0/grpc-services-1.35.0-sources.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-services/1.41.0/grpc-services-1.41.0-sources.jar" ], - "sha256": "a7cc38cb3093ed62c64b903f725c1043b29c551f683907efa0d1903e7f9cc075", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-services/1.35.0/grpc-services-1.35.0-sources.jar" + "sha256": "1639801ec14feb23055755d427f7676659a73bbacb007a036d617112b77e99c7", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-services/1.41.0/grpc-services-1.41.0-sources.jar" }, { - "coord": "io.grpc:grpc-stub:1.35.0", + "coord": "io.grpc:grpc-stub:1.41.0", "dependencies": [ "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", "com.google.j2objc:j2objc-annotations:1.3", "com.google.code.findbugs:jsr305:3.0.2", - "org.codehaus.mojo:animal-sniffer-annotations:1.19", "org.checkerframework:checker-qual:3.5.0", - "io.grpc:grpc-api:1.35.0", - "io.grpc:grpc-context:1.35.0", + "com.google.errorprone:error_prone_annotations:2.9.0", + "io.grpc:grpc-api:1.41.0", "com.google.guava:failureaccess:1.0.1", "com.google.guava:guava:29.0-jre", - "com.google.errorprone:error_prone_annotations:2.4.0" + "io.grpc:grpc-context:1.41.0" ], "directDependencies": [ - "com.google.code.findbugs:jsr305:3.0.2", - "org.codehaus.mojo:animal-sniffer-annotations:1.19", - "io.grpc:grpc-api:1.35.0", + "com.google.errorprone:error_prone_annotations:2.9.0", "com.google.guava:guava:29.0-jre", - "com.google.errorprone:error_prone_annotations:2.4.0" + "io.grpc:grpc-api:1.41.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-stub/1.35.0/grpc-stub-1.35.0.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-stub/1.41.0/grpc-stub-1.41.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-stub/1.35.0/grpc-stub-1.35.0.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-stub/1.41.0/grpc-stub-1.41.0.jar" ], - "sha256": "0cb8cf2c56211fd62141fe37b1473bf598511fa86b35de4be21ef5aa2b20fa33", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-stub/1.35.0/grpc-stub-1.35.0.jar" + "sha256": "14153d6c3a63230075af0adf04b60a4c58dc4013242e5979cbf3f5ef13beb8b5", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-stub/1.41.0/grpc-stub-1.41.0.jar" }, { - "coord": "io.grpc:grpc-stub:jar:sources:1.35.0", + "coord": "io.grpc:grpc-stub:jar:sources:1.41.0", "dependencies": [ "org.checkerframework:checker-qual:jar:sources:3.5.0", "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "io.grpc:grpc-context:jar:sources:1.35.0", + "io.grpc:grpc-api:jar:sources:1.41.0", "com.google.j2objc:j2objc-annotations:jar:sources:1.3", "com.google.guava:guava:jar:sources:29.0-jre", - "io.grpc:grpc-api:jar:sources:1.35.0", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", + "io.grpc:grpc-context:jar:sources:1.41.0", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "com.google.guava:failureaccess:jar:sources:1.0.1", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.19" + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0" ], "directDependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "com.google.guava:guava:jar:sources:29.0-jre", - "io.grpc:grpc-api:jar:sources:1.35.0", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.19" + "io.grpc:grpc-api:jar:sources:1.41.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-stub/1.35.0/grpc-stub-1.35.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-stub/1.41.0/grpc-stub-1.41.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-stub/1.35.0/grpc-stub-1.35.0-sources.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-stub/1.41.0/grpc-stub-1.41.0-sources.jar" ], - "sha256": "292f1dcdde5e25c7271d484d9133460e9280ef538eac96eab05876827b3ffe22", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-stub/1.35.0/grpc-stub-1.35.0-sources.jar" + "sha256": "0f7113bfe301c38c244d6f1c9aa402cffd45a776e2e0660e047b3fa77fd7cf89", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-stub/1.41.0/grpc-stub-1.41.0-sources.jar" }, { "coord": "io.netty:netty-buffer:4.1.67.Final", @@ -6674,9 +6656,6 @@ "coord": "io.perfmark:perfmark-api:0.23.0", "dependencies": [], "directDependencies": [], - "exclusions": [ - "com.google.errorprone:error_prone_annotations" - ], "file": "v1/https/repo1.maven.org/maven2/io/perfmark/perfmark-api/0.23.0/perfmark-api-0.23.0.jar", "mirror_urls": [ "https://repo1.maven.org/maven2/io/perfmark/perfmark-api/0.23.0/perfmark-api-0.23.0.jar" @@ -6688,9 +6667,6 @@ "coord": "io.perfmark:perfmark-api:jar:sources:0.23.0", "dependencies": [], "directDependencies": [], - "exclusions": [ - "com.google.errorprone:error_prone_annotations" - ], "file": "v1/https/repo1.maven.org/maven2/io/perfmark/perfmark-api/0.23.0/perfmark-api-0.23.0-sources.jar", "mirror_urls": [ "https://repo1.maven.org/maven2/io/perfmark/perfmark-api/0.23.0/perfmark-api-0.23.0-sources.jar" @@ -10950,6 +10926,7 @@ "xerces:xercesImpl:2.12.0", "org.apache.httpcomponents:httpclient:4.5.12", "org.eclipse.jetty:jetty-xml:9.4.27.v20200227", + "com.google.errorprone:error_prone_annotations:2.9.0", "org.eclipse.jetty.websocket:websocket-client:9.4.27.v20200227", "org.eclipse.jetty.websocket:websocket-common:9.4.27.v20200227", "net.sourceforge.htmlunit:neko-htmlunit:2.39.0", @@ -10971,8 +10948,7 @@ "org.apache.commons:commons-lang3:3.9", "org.apache.commons:commons-exec:1.3", "org.seleniumhq.selenium:htmlunit-driver:2.39.0", - "xml-apis:xml-apis:1.4.01", - "com.google.errorprone:error_prone_annotations:2.4.0" + "xml-apis:xml-apis:1.4.01" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.6", @@ -11032,7 +11008,6 @@ "org.seleniumhq.selenium:selenium-safari-driver:jar:sources:3.12.0", "org.brotli:dec:jar:sources:0.1.2", "org.scala-lang:scala-reflect:jar:sources:2.13.6", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", @@ -11040,6 +11015,7 @@ "org.eclipse.jetty:jetty-http:jar:sources:9.4.27.v20200227", "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.3.0", "com.google.guava:failureaccess:jar:sources:1.0.1", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "org.seleniumhq.selenium:selenium-java:jar:sources:3.12.0", "xml-apis:xml-apis:jar:sources:1.4.01", "org.scalactic:scalactic_2.13:jar:sources:3.2.9", @@ -11362,6 +11338,7 @@ "xerces:xercesImpl:2.12.0", "org.apache.httpcomponents:httpclient:4.5.12", "org.eclipse.jetty:jetty-xml:9.4.27.v20200227", + "com.google.errorprone:error_prone_annotations:2.9.0", "org.eclipse.jetty.websocket:websocket-client:9.4.27.v20200227", "org.eclipse.jetty.websocket:websocket-common:9.4.27.v20200227", "net.sourceforge.htmlunit:neko-htmlunit:2.39.0", @@ -11376,8 +11353,7 @@ "org.seleniumhq.selenium:selenium-support:3.141.59", "org.apache.commons:commons-lang3:3.9", "org.apache.commons:commons-exec:1.3", - "xml-apis:xml-apis:1.4.01", - "com.google.errorprone:error_prone_annotations:2.4.0" + "xml-apis:xml-apis:1.4.01" ], "directDependencies": [ "net.sourceforge.htmlunit:htmlunit:2.39.0", @@ -11425,12 +11401,12 @@ "xalan:xalan:jar:sources:2.7.2", "org.eclipse.jetty:jetty-xml:jar:sources:9.4.27.v20200227", "org.brotli:dec:jar:sources:0.1.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", "org.eclipse.jetty:jetty-http:jar:sources:9.4.27.v20200227", "com.google.guava:failureaccess:jar:sources:1.0.1", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "xml-apis:xml-apis:jar:sources:1.4.01", "com.squareup.okio:okio:jar:sources:1.14.0", "org.apache.httpcomponents:httpmime:jar:sources:4.5.12" @@ -11483,13 +11459,13 @@ "org.apache.httpcomponents:httpcore:4.4.13", "org.checkerframework:checker-qual:3.5.0", "org.apache.httpcomponents:httpclient:4.5.12", + "com.google.errorprone:error_prone_annotations:2.9.0", "net.bytebuddy:byte-buddy:1.10.18", "com.squareup.okhttp3:okhttp:3.11.0", "com.google.guava:failureaccess:1.0.1", "com.google.guava:guava:29.0-jre", "com.google.code.gson:gson:2.8.2", - "org.apache.commons:commons-exec:1.3", - "com.google.errorprone:error_prone_annotations:2.4.0" + "org.apache.commons:commons-exec:1.3" ], "directDependencies": [ "com.squareup.okio:okio:1.14.0", @@ -11527,11 +11503,11 @@ "com.google.code.gson:gson:jar:sources:2.8.2", "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", "commons-codec:commons-codec:jar:sources:1.14", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", "com.google.guava:failureaccess:jar:sources:1.0.1", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "com.squareup.okio:okio:jar:sources:1.14.0" ], "directDependencies": [ @@ -11569,13 +11545,13 @@ "org.apache.httpcomponents:httpcore:4.4.13", "org.checkerframework:checker-qual:3.5.0", "org.apache.httpcomponents:httpclient:4.5.12", + "com.google.errorprone:error_prone_annotations:2.9.0", "net.bytebuddy:byte-buddy:1.10.18", "com.squareup.okhttp3:okhttp:3.11.0", "com.google.guava:failureaccess:1.0.1", "com.google.guava:guava:29.0-jre", "com.google.code.gson:gson:2.8.2", - "org.apache.commons:commons-exec:1.3", - "com.google.errorprone:error_prone_annotations:2.4.0" + "org.apache.commons:commons-exec:1.3" ], "directDependencies": [ "com.squareup.okio:okio:1.14.0", @@ -11613,11 +11589,11 @@ "com.google.code.gson:gson:jar:sources:2.8.2", "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", "commons-codec:commons-codec:jar:sources:1.14", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", "com.google.guava:failureaccess:jar:sources:1.0.1", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "com.squareup.okio:okio:jar:sources:1.14.0" ], "directDependencies": [ @@ -11655,13 +11631,13 @@ "org.apache.httpcomponents:httpcore:4.4.13", "org.checkerframework:checker-qual:3.5.0", "org.apache.httpcomponents:httpclient:4.5.12", + "com.google.errorprone:error_prone_annotations:2.9.0", "net.bytebuddy:byte-buddy:1.10.18", "com.squareup.okhttp3:okhttp:3.11.0", "com.google.guava:failureaccess:1.0.1", "com.google.guava:guava:29.0-jre", "com.google.code.gson:gson:2.8.2", - "org.apache.commons:commons-exec:1.3", - "com.google.errorprone:error_prone_annotations:2.4.0" + "org.apache.commons:commons-exec:1.3" ], "directDependencies": [ "com.squareup.okio:okio:1.14.0", @@ -11699,11 +11675,11 @@ "com.google.code.gson:gson:jar:sources:2.8.2", "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", "commons-codec:commons-codec:jar:sources:1.14", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", "com.google.guava:failureaccess:jar:sources:1.0.1", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "com.squareup.okio:okio:jar:sources:1.14.0" ], "directDependencies": [ @@ -11741,13 +11717,13 @@ "org.apache.httpcomponents:httpcore:4.4.13", "org.checkerframework:checker-qual:3.5.0", "org.apache.httpcomponents:httpclient:4.5.12", + "com.google.errorprone:error_prone_annotations:2.9.0", "net.bytebuddy:byte-buddy:1.10.18", "com.squareup.okhttp3:okhttp:3.11.0", "com.google.guava:failureaccess:1.0.1", "com.google.guava:guava:29.0-jre", "com.google.code.gson:gson:2.8.2", - "org.apache.commons:commons-exec:1.3", - "com.google.errorprone:error_prone_annotations:2.4.0" + "org.apache.commons:commons-exec:1.3" ], "directDependencies": [ "com.squareup.okio:okio:1.14.0", @@ -11785,11 +11761,11 @@ "com.google.code.gson:gson:jar:sources:2.8.2", "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", "commons-codec:commons-codec:jar:sources:1.14", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", "com.google.guava:failureaccess:jar:sources:1.0.1", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "com.squareup.okio:okio:jar:sources:1.14.0" ], "directDependencies": [ @@ -11830,6 +11806,7 @@ "org.checkerframework:checker-qual:3.5.0", "org.seleniumhq.selenium:selenium-edge-driver:3.12.0", "org.apache.httpcomponents:httpclient:4.5.12", + "com.google.errorprone:error_prone_annotations:2.9.0", "org.seleniumhq.selenium:selenium-ie-driver:3.12.0", "net.bytebuddy:byte-buddy:1.10.18", "com.squareup.okhttp3:okhttp:3.11.0", @@ -11839,8 +11816,7 @@ "org.seleniumhq.selenium:selenium-safari-driver:3.12.0", "com.google.code.gson:gson:2.8.2", "org.seleniumhq.selenium:selenium-support:3.141.59", - "org.apache.commons:commons-exec:1.3", - "com.google.errorprone:error_prone_annotations:2.4.0" + "org.apache.commons:commons-exec:1.3" ], "directDependencies": [ "com.squareup.okio:okio:1.14.0", @@ -11891,12 +11867,12 @@ "commons-codec:commons-codec:jar:sources:1.14", "org.seleniumhq.selenium:selenium-chrome-driver:jar:sources:3.12.0", "org.seleniumhq.selenium:selenium-safari-driver:jar:sources:3.12.0", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", "org.seleniumhq.selenium:selenium-opera-driver:jar:sources:3.12.0", "com.google.guava:failureaccess:jar:sources:1.0.1", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "com.squareup.okio:okio:jar:sources:1.14.0" ], "directDependencies": [ @@ -11941,13 +11917,13 @@ "org.apache.httpcomponents:httpcore:4.4.13", "org.checkerframework:checker-qual:3.5.0", "org.apache.httpcomponents:httpclient:4.5.12", + "com.google.errorprone:error_prone_annotations:2.9.0", "net.bytebuddy:byte-buddy:1.10.18", "com.squareup.okhttp3:okhttp:3.11.0", "com.google.guava:failureaccess:1.0.1", "com.google.guava:guava:29.0-jre", "com.google.code.gson:gson:2.8.2", - "org.apache.commons:commons-exec:1.3", - "com.google.errorprone:error_prone_annotations:2.4.0" + "org.apache.commons:commons-exec:1.3" ], "directDependencies": [ "com.squareup.okio:okio:1.14.0", @@ -11985,11 +11961,11 @@ "com.google.code.gson:gson:jar:sources:2.8.2", "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", "commons-codec:commons-codec:jar:sources:1.14", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", "com.google.guava:failureaccess:jar:sources:1.0.1", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "com.squareup.okio:okio:jar:sources:1.14.0" ], "directDependencies": [ @@ -12022,12 +11998,12 @@ "com.google.code.findbugs:jsr305:3.0.2", "org.seleniumhq.selenium:selenium-api:3.141.59", "org.checkerframework:checker-qual:3.5.0", + "com.google.errorprone:error_prone_annotations:2.9.0", "net.bytebuddy:byte-buddy:1.10.18", "com.squareup.okhttp3:okhttp:3.11.0", "com.google.guava:failureaccess:1.0.1", "com.google.guava:guava:29.0-jre", - "org.apache.commons:commons-exec:1.3", - "com.google.errorprone:error_prone_annotations:2.4.0" + "org.apache.commons:commons-exec:1.3" ], "directDependencies": [ "com.squareup.okio:okio:1.14.0", @@ -12055,9 +12031,9 @@ "net.bytebuddy:byte-buddy:jar:sources:1.10.18", "org.apache.commons:commons-exec:jar:sources:1.3", "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "com.google.guava:failureaccess:jar:sources:1.0.1", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "com.squareup.okio:okio:jar:sources:1.14.0" ], "directDependencies": [ @@ -12089,13 +12065,13 @@ "org.apache.httpcomponents:httpcore:4.4.13", "org.checkerframework:checker-qual:3.5.0", "org.apache.httpcomponents:httpclient:4.5.12", + "com.google.errorprone:error_prone_annotations:2.9.0", "net.bytebuddy:byte-buddy:1.10.18", "com.squareup.okhttp3:okhttp:3.11.0", "com.google.guava:failureaccess:1.0.1", "com.google.guava:guava:29.0-jre", "com.google.code.gson:gson:2.8.2", - "org.apache.commons:commons-exec:1.3", - "com.google.errorprone:error_prone_annotations:2.4.0" + "org.apache.commons:commons-exec:1.3" ], "directDependencies": [ "com.squareup.okio:okio:1.14.0", @@ -12133,11 +12109,11 @@ "com.google.code.gson:gson:jar:sources:2.8.2", "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", "commons-codec:commons-codec:jar:sources:1.14", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", "com.google.guava:failureaccess:jar:sources:1.0.1", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "com.squareup.okio:okio:jar:sources:1.14.0" ], "directDependencies": [ @@ -12171,12 +12147,12 @@ "com.google.code.findbugs:jsr305:3.0.2", "org.seleniumhq.selenium:selenium-api:3.141.59", "org.checkerframework:checker-qual:3.5.0", + "com.google.errorprone:error_prone_annotations:2.9.0", "net.bytebuddy:byte-buddy:1.10.18", "com.squareup.okhttp3:okhttp:3.11.0", "com.google.guava:failureaccess:1.0.1", "com.google.guava:guava:29.0-jre", - "org.apache.commons:commons-exec:1.3", - "com.google.errorprone:error_prone_annotations:2.4.0" + "org.apache.commons:commons-exec:1.3" ], "directDependencies": [ "com.squareup.okio:okio:1.14.0", @@ -12205,10 +12181,10 @@ "net.bytebuddy:byte-buddy:jar:sources:1.10.18", "org.apache.commons:commons-exec:jar:sources:1.3", "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", - "com.google.errorprone:error_prone_annotations:jar:sources:2.4.0", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", "com.google.guava:failureaccess:jar:sources:1.0.1", + "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", "com.squareup.okio:okio:jar:sources:1.14.0" ], "directDependencies": [ diff --git a/navigator/integration-test/BUILD.bazel b/navigator/integration-test/BUILD.bazel index db57d01b9a5c..3cd828e9989c 100644 --- a/navigator/integration-test/BUILD.bazel +++ b/navigator/integration-test/BUILD.bazel @@ -31,9 +31,6 @@ da_scala_binary( "@maven//:org_typelevel_cats_core", "@maven//:org_typelevel_cats_kernel", ], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, visibility = ["//visibility:public"], runtime_deps = [ "//ledger/sandbox-classic", diff --git a/runtime-components/non-repudiation/BUILD.bazel b/runtime-components/non-repudiation/BUILD.bazel index 97849db337be..ede9d0ebd8e6 100644 --- a/runtime-components/non-repudiation/BUILD.bazel +++ b/runtime-components/non-repudiation/BUILD.bazel @@ -34,9 +34,6 @@ da_scala_test( "src/test/resources/logback-test.xml", "//ledger/test-common:dar-files", ], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, runtime_deps = [ "@maven//:ch_qos_logback_logback_classic", ], diff --git a/scala-protoc-plugins/scala-akka/BUILD.bazel b/scala-protoc-plugins/scala-akka/BUILD.bazel index 1828e0d1cd6c..1b1d1e5a97a4 100644 --- a/scala-protoc-plugins/scala-akka/BUILD.bazel +++ b/scala-protoc-plugins/scala-akka/BUILD.bazel @@ -12,9 +12,6 @@ da_scala_binary( "@maven//:com_thesamet_scalapb_protoc_bridge", "@maven//:com_thesamet_scalapb_protoc_gen", ], - versioned_scala_deps = { - "2.12": ["@maven//:org_scala_lang_modules_scala_collection_compat"], - }, visibility = ["//visibility:public"], deps = [ "@maven//:com_google_protobuf_protobuf_java",