diff --git a/WORKSPACE b/WORKSPACE index 29392d6a3c70..44d759af417d 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -641,7 +641,7 @@ proto_library( visibility = ["//visibility:public"], ) """, - sha256 = "f965f0a06aec9ce8c8a9f596025d90bf8cf08f99c5d81b705079f0c932171a52", + sha256 = "2ddce4c5927fa8dd80069fba2fb60199f5b2b95e81e8da69b132665fae6c638c", strip_prefix = "ScalaPB-{}".format(scalapb_version), urls = ["https://github.com/scalapb/ScalaPB/archive/refs/tags/v{}.tar.gz".format(scalapb_version)], ) diff --git a/bazel-java-deps.bzl b/bazel-java-deps.bzl index eda47d7cbfde..223203145409 100644 --- a/bazel-java-deps.bzl +++ b/bazel-java-deps.bzl @@ -45,14 +45,14 @@ version_specific = { # This effectively means all io.grpc:*, io.netty:*, and `com.google.protobuf:protobuf-java # need to be updated with careful consideration. -netty_tcnative_version = "2.0.54.Final" -netty_version = "4.1.79.Final" -grpc_version = "1.50.0" -protobuf_version = "3.21.7" +netty_tcnative_version = "2.0.46.Final" +netty_version = "4.1.72.Final" +grpc_version = "1.44.0" +protobuf_version = "3.19.3" akka_version = "2.6.18" akka_http_version = "10.2.8" -gatling_version = "3.8.4" -guava_version = "31.1-jre" +gatling_version = "3.5.1" +guava_version = "31.0.1-jre" # observability libs # cannot update to 4.2.x because of https://github.com/dropwizard/metrics/issues/2920 @@ -63,34 +63,33 @@ prometheus_version = "0.14.1" def install_java_deps(): maven_install( artifacts = version_specific.get(scala_major_version, []) + [ - "ch.qos.logback:logback-classic:1.2.11", - "ch.qos.logback:logback-core:1.2.11", - "com.auth0:java-jwt:4.1.0", - "com.auth0:jwks-rsa:0.21.2", + "ch.qos.logback:logback-classic:1.2.8", + "ch.qos.logback:logback-core:1.2.8", + "com.auth0:java-jwt:3.10.3", + "com.auth0:jwks-rsa:0.11.0", "com.chuusai:shapeless_{}:2.3.3".format(scala_major_version), - "com.github.ben-manes.caffeine:caffeine:3.1.1", - "com.github.pureconfig:pureconfig_{}:0.17.1".format(scala_major_version), - "com.github.pureconfig:pureconfig-core_{}:0.17.1".format(scala_major_version), - "com.github.pureconfig:pureconfig-generic_{}:0.17.1".format(scala_major_version), - "com.github.pureconfig:pureconfig-generic-base_{}:0.17.1".format(scala_major_version), - maven.artifact("com.github.pureconfig", "pureconfig-macros_2.12", "0.14.1", neverlink = True), - "com.github.scopt:scopt_{}:4.1.0".format(scala_major_version), + "com.github.ben-manes.caffeine:caffeine:3.0.5", + "com.github.pureconfig:pureconfig_{}:0.14.0".format(scala_major_version), + "com.github.pureconfig:pureconfig-core_{}:0.14.0".format(scala_major_version), + "com.github.pureconfig:pureconfig-generic_{}:0.14.0".format(scala_major_version), + maven.artifact("com.github.pureconfig", "pureconfig-macros_2.12", "0.14.0", neverlink = True), + "com.github.scopt:scopt_{}:4.0.0".format(scala_major_version), "com.google.code.findbugs:jsr305:3.0.2", - "com.google.code.gson:gson:2.9.1", + "com.google.code.gson:gson:2.9.0", "com.google.guava:guava:{}".format(guava_version), "com.h2database:h2:2.1.210", - "com.github.pathikrit:better-files_{}:3.9.1".format(scala_major_version), + "com.github.pathikrit:better-files_{}:3.8.0".format(scala_major_version), "com.github.tototoshi:scala-csv_{}:1.3.10".format(scala_major_version), - "com.lihaoyi:sourcecode_{}:0.3.0".format(scala_major_version), - "com.lihaoyi:pprint_{}:0.8.0".format(scala_major_version), + "com.lihaoyi:sourcecode_{}:0.2.7".format(scala_major_version), + "com.lihaoyi:pprint_{}:0.7.1".format(scala_major_version), "com.lihaoyi:sjsonnet_{}:0.3.0".format(scala_major_version), - "commons-io:commons-io:2.11.0", + "commons-io:commons-io:2.5", "com.oracle.database.jdbc:ojdbc8:19.14.0.0", - "com.sparkjava:spark-core:2.9.4", + "com.sparkjava:spark-core:2.9.1", "com.oracle.database.jdbc.debug:ojdbc8_g:19.14.0.0", - "com.squareup:javapoet:1.13.0", - "com.storm-enroute:scalameter_{}:0.21".format(scala_major_version), - "com.storm-enroute:scalameter-core_{}:0.21".format(scala_major_version), + "com.squareup:javapoet:1.11.1", + "com.storm-enroute:scalameter_{}:0.19".format(scala_major_version), + "com.storm-enroute:scalameter-core_{}:0.19".format(scala_major_version), "com.typesafe.akka:akka-actor_{}:{}".format(scala_major_version, akka_version), "com.typesafe.akka:akka-actor-testkit-typed_{}:{}".format(scala_major_version, akka_version), "com.typesafe.akka:akka-actor-typed_{}:{}".format(scala_major_version, akka_version), @@ -101,16 +100,16 @@ def install_java_deps(): "com.typesafe.akka:akka-stream_{}:{}".format(scala_major_version, akka_version), "com.typesafe.akka:akka-stream-testkit_{}:{}".format(scala_major_version, akka_version), "com.typesafe.akka:akka-testkit_{}:{}".format(scala_major_version, akka_version), - "org.playframework.anorm:anorm_{}:2.7.0".format(scala_major_version), - "org.playframework.anorm:anorm-akka_{}:2.7.0".format(scala_major_version), - "com.typesafe.scala-logging:scala-logging_{}:3.9.5".format(scala_major_version), - "com.zaxxer:HikariCP:3.4.5", - "eu.rekawek.toxiproxy:toxiproxy-java:2.1.7", - "io.circe:circe-core_{}:0.14.3".format(scala_major_version), - "io.circe:circe-generic_{}:0.14.3".format(scala_major_version), - "io.circe:circe-generic-extras_{}:0.14.2".format(scala_major_version), - "io.circe:circe-parser_{}:0.14.3".format(scala_major_version), - "io.circe:circe-yaml_{}:0.14.1".format(scala_major_version), + "org.playframework.anorm:anorm_{}:2.6.8".format(scala_major_version), + "org.playframework.anorm:anorm-akka_{}:2.6.8".format(scala_major_version), + "com.typesafe.scala-logging:scala-logging_{}:3.9.2".format(scala_major_version), + "com.zaxxer:HikariCP:3.2.0", + "eu.rekawek.toxiproxy:toxiproxy-java:2.1.3", + "io.circe:circe-core_{}:0.13.0".format(scala_major_version), + "io.circe:circe-generic_{}:0.13.0".format(scala_major_version), + "io.circe:circe-generic-extras_{}:0.13.0".format(scala_major_version), + "io.circe:circe-parser_{}:0.13.0".format(scala_major_version), + "io.circe:circe-yaml_{}:0.13.0".format(scala_major_version), "io.dropwizard.metrics:metrics-core:{}".format(dropwizard_version), maven.artifact("io.dropwizard.metrics", "metrics-graphite", dropwizard_version, exclusions = ["com.rabbitmq:amqp-client"]), "io.dropwizard.metrics:metrics-jmx:{}".format(dropwizard_version), @@ -119,7 +118,7 @@ def install_java_deps(): "io.opentelemetry:opentelemetry-context:{}".format(opentelemetry_version), "io.opentelemetry:opentelemetry-sdk-testing:{}".format(opentelemetry_version), "io.opentelemetry:opentelemetry-sdk-trace:{}".format(opentelemetry_version), - "io.opentelemetry:opentelemetry-semconv:{}-alpha".format(opentelemetry_version), + "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha", "io.prometheus:simpleclient:{}".format(prometheus_version), "io.prometheus:simpleclient_dropwizard:{}".format(prometheus_version), "io.prometheus:simpleclient_httpserver:{}".format(prometheus_version), @@ -146,82 +145,74 @@ def install_java_deps(): "com.thesamet.scalapb:protoc-gen_{}:{}".format(scala_major_version, scalapb_protoc_version), "com.thesamet.scalapb:scalapb-runtime_{}:{}".format(scala_major_version, scalapb_version), "com.thesamet.scalapb:scalapb-runtime-grpc_{}:{}".format(scala_major_version, scalapb_version), - "com.thesamet.scalapb:scalapb-json4s_{}:0.12.0".format(scala_major_version, scalapb_version), + "com.thesamet.scalapb:scalapb-json4s_{}:0.11.1".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-commons-shared:{}".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.21", - "io.spray:spray-json_{}:1.3.6".format(scala_major_version), - "io.github.paoloboni:spray-json-derived-codecs_{}:2.3.9".format(scala_major_version), - "javax.annotation:javax.annotation-api:1.3.2", - "javax.ws.rs:javax.ws.rs-api:2.1.1", - "junit:junit:4.13.2", - "junit:junit-dep:4.11", - "net.logstash.logback:logstash-logback-encoder:7.2", + "io.reactivex.rxjava2:rxjava:2.2.1", + "io.spray:spray-json_{}:1.3.5".format(scala_major_version), + "io.github.paoloboni:spray-json-derived-codecs_{}:2.3.4".format(scala_major_version), + "javax.annotation:javax.annotation-api:1.2", + "javax.ws.rs:javax.ws.rs-api:2.1", + "junit:junit:4.12", + "junit:junit-dep:4.10", + "net.logstash.logback:logstash-logback-encoder:6.6", "org.bouncycastle:bcpkix-jdk15on:1.70", "org.bouncycastle:bcprov-jdk15on:1.70", - "org.codehaus.janino:janino:3.1.8", - "org.apache.commons:commons-lang3:3.12.0", - "org.apache.commons:commons-text:1.10.0", - "org.awaitility:awaitility:4.2.0", - "org.checkerframework:checker:3.26.0", - "org.checkerframework:checker-qual:3.26.0", + "org.codehaus.janino:janino:3.1.4", + "org.apache.commons:commons-lang3:3.9", + "org.apache.commons:commons-text:1.4", + "org.awaitility:awaitility:3.1.6", + "org.checkerframework:checker:2.5.4", "org.flywaydb:flyway-core:8.4.1", - "org.freemarker:freemarker-gae:2.3.31", - "org.jline:jline:3.21.0", - "org.jline:jline-reader:3.21.0", - "org.junit.jupiter:junit-jupiter-api:5.9.1", - "org.junit.jupiter:junit-jupiter-engine:5.9.1", - "org.junit.platform:junit-platform-engine:1.9.1", - "org.junit.platform:junit-platform-runner:1.9.1", - # mockito-* dependencies need to be compatible with mockito-scala - # see https://github.com/mockito/mockito-scala/blob/release/1.x/project/Dependencies.scala - "org.mockito:mockito-core:4.6.1", - "org.mockito:mockito-inline:4.6.1", - "org.mockito:mockito-scala_{}:1.17.12".format(scala_major_version), - "org.pcollections:pcollections:3.2.0", - "org.postgresql:postgresql:42.5.0", - "org.reactivestreams:reactive-streams:1.0.4", - "org.reactivestreams:reactive-streams-tck:1.0.4", - "org.reflections:reflections:0.10.2", - "org.sangria-graphql:sangria-ast_{}:3.4.0".format(scala_major_version), - "org.sangria-graphql:sangria-core_{}:3.4.0".format(scala_major_version), - "org.sangria-graphql:sangria-derivation_{}:3.4.0".format(scala_major_version), - "org.sangria-graphql:sangria-parser_{}:3.4.0".format(scala_major_version), - "org.sangria-graphql:sangria-spray-json_{}:1.0.3".format(scala_major_version), + "org.freemarker:freemarker-gae:2.3.28", + "org.jline:jline:3.7.1", + "org.jline:jline-reader:3.7.1", + "org.junit.jupiter:junit-jupiter-api:5.0.0", + "org.junit.jupiter:junit-jupiter-engine:5.0.0", + "org.junit.platform:junit-platform-engine:1.0.0", + "org.junit.platform:junit-platform-runner:1.0.0", + "org.mockito:mockito-core:3.6.28", + "org.mockito:mockito-inline:3.6.28", + "org.mockito:mockito-scala_{}:1.16.3".format(scala_major_version), + "org.pcollections:pcollections:2.1.3", + "org.postgresql:postgresql:42.2.25", + "org.reactivestreams:reactive-streams:1.0.2", + "org.reactivestreams:reactive-streams-tck:1.0.2", + "org.reflections:reflections:0.9.12", + "org.sangria-graphql:sangria_{}:2.0.1".format(scala_major_version), + "org.sangria-graphql:sangria-spray-json_{}:1.0.2".format(scala_major_version), "org.scalacheck:scalacheck_{}:1.15.4".format(scala_major_version), - "org.scala-lang.modules:scala-parallel-collections_{}:1.0.4".format(scala_major_version), - "org.scalameta:munit_{}:0.7.29".format(scala_major_version), - "org.scalactic:scalactic_{}:3.2.10".format(scala_major_version), - "org.scalatest:scalatest_{}:3.2.10".format(scala_major_version), - "org.scalatestplus:scalacheck-1-15_{}:3.2.10.0".format(scala_major_version), - "org.scalatestplus:selenium-3-141_{}:3.2.10.0".format(scala_major_version), - "org.scalatestplus:testng-6-7_{}:3.2.10.0".format(scala_major_version), - "org.testng:testng:6.7", - "org.scalaz:scalaz-core_{}:7.2.34".format(scala_major_version), - "org.scalaz:scalaz-scalacheck-binding_{}:7.2.34-scalacheck-1.15".format(scala_major_version), - "org.seleniumhq.selenium:selenium-java:4.5.0", - "org.slf4j:slf4j-api:1.7.36", - "org.slf4j:slf4j-simple:1.7.36", - "org.typelevel:cats-core_{}:2.8.0".format(scala_major_version), - "org.typelevel:cats-kernel_{}:2.8.0".format(scala_major_version), - "org.typelevel:cats-laws_{}:2.8.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), + "org.scalatestplus:scalacheck-1-15_{}:3.2.9.0".format(scala_major_version), + "org.scalatestplus:selenium-3-141_{}:3.2.9.0".format(scala_major_version), + "org.scalatestplus:testng-6-7_{}:3.2.9.0".format(scala_major_version), + "org.scalaz:scalaz-core_{}:7.2.33".format(scala_major_version), + "org.scalaz:scalaz-scalacheck-binding_{}:7.2.33-scalacheck-1.15".format(scala_major_version), + "org.seleniumhq.selenium:selenium-java:3.12.0", + "org.slf4j:slf4j-api:1.7.26", + "org.slf4j:slf4j-simple:1.7.26", + "org.typelevel:cats-core_{}:2.6.1".format(scala_major_version), + "org.typelevel:cats-kernel_{}:2.6.1".format(scala_major_version), + "org.typelevel:cats-laws_{}:2.6.1".format(scala_major_version), "org.typelevel:kind-projector_{}:0.13.2".format(scala_version), "org.tpolecat:doobie-core_{}:0.13.4".format(scala_major_version), "org.tpolecat:doobie-hikari_{}:0.13.4".format(scala_major_version), "org.tpolecat:doobie-postgres_{}:0.13.4".format(scala_major_version), - "org.typelevel:paiges-core_{}:0.4.2".format(scala_major_version), - "org.wartremover:wartremover_{}:3.0.6".format(scala_version), - "org.xerial:sqlite-jdbc:3.39.3.0", - "com.fasterxml.jackson.core:jackson-core:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:2.13.4", + "org.typelevel:paiges-core_{}:0.3.2".format(scala_major_version), + "org.wartremover:wartremover_{}:2.4.16".format(scala_version), + "org.xerial:sqlite-jdbc:3.36.0.1", + "com.fasterxml.jackson.core:jackson-core:2.12.0", + "com.fasterxml.jackson.core:jackson-databind:2.12.0", "org.scala-lang:scala-library:{}".format(scala_version), ], fetch_sources = True, diff --git a/bazel_tools/scalapb.bzl b/bazel_tools/scalapb.bzl index b71a7402f482..e7d9505df867 100644 --- a/bazel_tools/scalapb.bzl +++ b/bazel_tools/scalapb.bzl @@ -1,5 +1,5 @@ # Copyright (c) 2022 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved. # SPDX-License-Identifier: Apache-2.0 -scalapb_version = "0.11.11" +scalapb_version = "0.11.8" scalapb_protoc_version = "0.9.5" diff --git a/language-support/codegen-common/src/test/scala/com/digitalasset/daml/lf/codegen/conf/CodegenConfigReaderSpec.scala b/language-support/codegen-common/src/test/scala/com/digitalasset/daml/lf/codegen/conf/CodegenConfigReaderSpec.scala index cbf2ebe76e65..d2c84e1334a5 100644 --- a/language-support/codegen-common/src/test/scala/com/digitalasset/daml/lf/codegen/conf/CodegenConfigReaderSpec.scala +++ b/language-support/codegen-common/src/test/scala/com/digitalasset/daml/lf/codegen/conf/CodegenConfigReaderSpec.scala @@ -133,7 +133,7 @@ class CodegenConfigReaderSpec extends AnyFlatSpec with Matchers with ScalaCheckP |version: 1.2.3""".stripMargin codegenConf(badConfigStr, Java) shouldBe Left( - ConfigParseError("Missing required field: DownField(codegen)") + ConfigParseError("Attempt to decode value on failed cursor: DownField(codegen)") ) } @@ -145,7 +145,7 @@ class CodegenConfigReaderSpec extends AnyFlatSpec with Matchers with ScalaCheckP codegenConf(badConfigStr, Java) shouldBe Left( ConfigParseError( - "Missing required field: DownField(java),DownField(codegen)" + "[A]Option[A]: DownField(java),DownField(codegen)" ) ) } @@ -231,7 +231,7 @@ class CodegenConfigReaderSpec extends AnyFlatSpec with Matchers with ScalaCheckP | a: a""".stripMargin codegenConf(badConfigStr, Java) shouldBe Left( - ConfigParseError("Couldn't decode key.: DownField(a),DownField(module-prefixes)") + ConfigParseError("[K, V]Map[K, V]: DownField(a),DownField(module-prefixes)") ) } @@ -248,7 +248,7 @@ class CodegenConfigReaderSpec extends AnyFlatSpec with Matchers with ScalaCheckP | a-: a""".stripMargin codegenConf(badConfigStr, Java) shouldBe Left( - ConfigParseError("Couldn't decode key.: DownField(a-),DownField(module-prefixes)") + ConfigParseError("[K, V]Map[K, V]: DownField(a-),DownField(module-prefixes)") ) } @@ -265,7 +265,7 @@ class CodegenConfigReaderSpec extends AnyFlatSpec with Matchers with ScalaCheckP | -1.2.3: a""".stripMargin codegenConf(badConfigStr, Java) shouldBe Left( - ConfigParseError("Couldn't decode key.: DownField(-1.2.3),DownField(module-prefixes)") + ConfigParseError("[K, V]Map[K, V]: DownField(-1.2.3),DownField(module-prefixes)") ) } @@ -282,7 +282,7 @@ class CodegenConfigReaderSpec extends AnyFlatSpec with Matchers with ScalaCheckP | -: a""".stripMargin codegenConf(badConfigStr, Java) shouldBe Left( - ConfigParseError("Couldn't decode key.: DownField(-),DownField(module-prefixes)") + ConfigParseError("[K, V]Map[K, V]: DownField(-),DownField(module-prefixes)") ) } diff --git a/language-support/java/bindings-rxjava/BUILD.bazel b/language-support/java/bindings-rxjava/BUILD.bazel index fe27861ea25c..521ad6809c79 100644 --- a/language-support/java/bindings-rxjava/BUILD.bazel +++ b/language-support/java/bindings-rxjava/BUILD.bazel @@ -47,7 +47,7 @@ da_java_library( "@maven//:io_grpc_grpc_stub", "@maven//:io_netty_netty_handler", "@maven//:io_reactivex_rxjava2_rxjava", - "@maven//:org_checkerframework_checker_qual", + "@maven//:org_checkerframework_checker", "@maven//:org_pcollections_pcollections", "@maven//:org_slf4j_slf4j_api", ], diff --git a/language-support/java/bindings/BUILD.bazel b/language-support/java/bindings/BUILD.bazel index 088296aa73b8..779dcfac1ffd 100644 --- a/language-support/java/bindings/BUILD.bazel +++ b/language-support/java/bindings/BUILD.bazel @@ -77,7 +77,7 @@ da_java_library( "@maven//:io_grpc_grpc_protobuf", "@maven//:io_grpc_grpc_stub", "@maven//:javax_annotation_javax_annotation_api", - "@maven//:org_checkerframework_checker_qual", + "@maven//:org_checkerframework_checker", ], ) diff --git a/ledger-api/perf-testing/src/main/scala/com/digitalasset/ledger/api/perf/util/PerformanceTest.scala b/ledger-api/perf-testing/src/main/scala/com/digitalasset/ledger/api/perf/util/PerformanceTest.scala index 58b18cfdc0c2..a2682d79db10 100644 --- a/ledger-api/perf-testing/src/main/scala/com/digitalasset/ledger/api/perf/util/PerformanceTest.scala +++ b/ledger-api/perf-testing/src/main/scala/com/digitalasset/ledger/api/perf/util/PerformanceTest.scala @@ -4,7 +4,6 @@ package com.daml.ledger.api.perf.util import com.daml.ledger.api.perf.util.reporter.JMeterReporter -import org.scalameter.KeyValue import org.scalameter.api._ import org.scalameter.execution.{LocalExecutor, SeparateJvmsExecutor} import org.scalameter.picklers.Implicits._ @@ -52,11 +51,11 @@ abstract class PerformanceTest extends Bench[Double] { protected def daConfig: Seq[org.scalameter.KeyValue] = Seq[org.scalameter.KeyValue]( - KeyValue(exec.independentSamples -> 1), - KeyValue(exec.minWarmupRuns -> 5), - KeyValue(exec.benchRuns -> 20), - KeyValue(exec.jvmflags -> List("-Xmx4096m", "-Xms4096m")), - KeyValue(verbose -> true), + exec.independentSamples -> 1, + exec.minWarmupRuns -> 5, + exec.benchRuns -> 20, + exec.jvmflags -> List("-Xmx4096m", "-Xms4096m"), + verbose -> true, ) protected def await[T](f: => Future[T]): T = { diff --git a/ledger-service/http-json-cli/BUILD.bazel b/ledger-service/http-json-cli/BUILD.bazel index bb70ec1c9244..5e615fdcf3eb 100644 --- a/ledger-service/http-json-cli/BUILD.bazel +++ b/ledger-service/http-json-cli/BUILD.bazel @@ -13,7 +13,6 @@ da_scala_library( "@maven//:com_chuusai_shapeless", "@maven//:com_github_pureconfig_pureconfig_core", "@maven//:com_github_pureconfig_pureconfig_generic", - "@maven//:com_github_pureconfig_pureconfig_generic_base", "@maven//:com_github_scopt_scopt", "@maven//:org_scalaz_scalaz_core", "@maven//:com_typesafe_akka_akka_stream", diff --git a/ledger-service/http-json-perf/src/main/scala/com/daml/http/perf/scenario/AsyncQueryConstantAcs.scala b/ledger-service/http-json-perf/src/main/scala/com/daml/http/perf/scenario/AsyncQueryConstantAcs.scala index 8091a8440439..ea276cbc3392 100644 --- a/ledger-service/http-json-perf/src/main/scala/com/daml/http/perf/scenario/AsyncQueryConstantAcs.scala +++ b/ledger-service/http-json-perf/src/main/scala/com/daml/http/perf/scenario/AsyncQueryConstantAcs.scala @@ -5,7 +5,7 @@ package com.daml.http.perf.scenario import io.gatling.core.Predef._ import io.gatling.http.Predef._ -import io.gatling.http.check.ws.WsFrameCheck +import io.gatling.http.check.ws.WsTextFrameCheck import scala.concurrent.duration._ @@ -25,7 +25,7 @@ class AsyncQueryConstantAcs private val queryRequest = """{"templateIds": ["Iou:Iou"], "query": {"amount": {"%gt": 1.0}}}""" - val messageCheck: WsFrameCheck.Text = ws + val messageCheck: WsTextFrameCheck = ws .checkTextMessage("messageCheck") .check(jsonPath("$.offset").find.notExists) .check(jsonPath("$.events[*].created").findAll) diff --git a/ledger-service/http-json-perf/src/main/scala/com/daml/http/perf/scenario/Checks.scala b/ledger-service/http-json-perf/src/main/scala/com/daml/http/perf/scenario/Checks.scala index 5e2906ad7a8f..052f64cbc86b 100644 --- a/ledger-service/http-json-perf/src/main/scala/com/daml/http/perf/scenario/Checks.scala +++ b/ledger-service/http-json-perf/src/main/scala/com/daml/http/perf/scenario/Checks.scala @@ -4,16 +4,25 @@ package com.daml.http.perf.scenario import io.gatling.commons.validation +import io.gatling.core.Predef._ import io.gatling.core.check.{Check, CheckResult} object Checks { - /* Useful for debugging */ - def printResponseCheck[R]: Check[R] = Check.Simple[R]( - f = (response, _, _) => { + def printResponseCheck[R]: Check[R] = new PrintResponseCheck[R] + + /** Useful for debugging. + * + * @tparam R response type + */ + private class PrintResponseCheck[R] extends Check[R] { + override def check( + response: R, + session: Session, + preparedCache: java.util.Map[Any, Any], + ): validation.Validation[CheckResult] = { println(s"Response: $response") validation.Success(CheckResult(None, None)) - }, - condition = None, - ) + } + } } diff --git a/ledger-service/http-json/BUILD.bazel b/ledger-service/http-json/BUILD.bazel index 113e4b0c3d51..b2e3c0e8193d 100644 --- a/ledger-service/http-json/BUILD.bazel +++ b/ledger-service/http-json/BUILD.bazel @@ -555,7 +555,7 @@ test_suite( "//libs-scala/resources-grpc", "//libs-scala/scala-utils", "//libs-scala/timer-utils", - "@maven//:eu_rekawek_toxiproxy_toxiproxy_java_2_1_7", + "@maven//:eu_rekawek_toxiproxy_toxiproxy_java_2_1_3", "@maven//:org_scalatest_scalatest_compatible", ], ) @@ -627,7 +627,7 @@ test_suite( "//libs-scala/resources", "//libs-scala/scala-utils", "//libs-scala/timer-utils", - "@maven//:eu_rekawek_toxiproxy_toxiproxy_java_2_1_7", + "@maven//:eu_rekawek_toxiproxy_toxiproxy_java_2_1_3", "@maven//:io_dropwizard_metrics_metrics_core", "@maven//:org_scalatest_scalatest_compatible", ], diff --git a/ledger-service/pureconfig-utils/BUILD.bazel b/ledger-service/pureconfig-utils/BUILD.bazel index 4038a687d945..4b831ab6dca3 100644 --- a/ledger-service/pureconfig-utils/BUILD.bazel +++ b/ledger-service/pureconfig-utils/BUILD.bazel @@ -15,7 +15,6 @@ da_scala_library( "@maven//:com_chuusai_shapeless", "@maven//:com_github_pureconfig_pureconfig_core", "@maven//:com_github_pureconfig_pureconfig_generic", - "@maven//:com_github_pureconfig_pureconfig_generic_base", "@maven//:com_typesafe_akka_akka_http_core", "@maven//:com_typesafe_akka_akka_parsing", "@maven//:com_typesafe_scala_logging_scala_logging", @@ -48,7 +47,6 @@ da_scala_test( "@maven//:com_chuusai_shapeless", "@maven//:com_github_pureconfig_pureconfig_core", "@maven//:com_github_pureconfig_pureconfig_generic", - "@maven//:com_github_pureconfig_pureconfig_generic_base", "@maven//:org_scalatest_scalatest_core", "@maven//:org_scalatest_scalatest_matchers_core", "@maven//:org_scalatest_scalatest_shouldmatchers", diff --git a/ledger/ledger-api-common/src/test/suite/scala/com/digitalasset/platform/akkastreams/dispatcher/SignalDispatcherTest.scala b/ledger/ledger-api-common/src/test/suite/scala/com/digitalasset/platform/akkastreams/dispatcher/SignalDispatcherTest.scala index b9988b9ffa5e..d6b08abce87e 100644 --- a/ledger/ledger-api-common/src/test/suite/scala/com/digitalasset/platform/akkastreams/dispatcher/SignalDispatcherTest.scala +++ b/ledger/ledger-api-common/src/test/suite/scala/com/digitalasset/platform/akkastreams/dispatcher/SignalDispatcherTest.scala @@ -7,7 +7,7 @@ import akka.stream.scaladsl.Sink import akka.stream.testkit.scaladsl.TestSink import com.daml.ledger.api.testing.utils.AkkaBeforeAndAfterAll import org.awaitility.Awaitility.await -import org.awaitility.Durations +import org.awaitility.Duration import org.scalatest.FutureOutcome import org.scalatest.concurrent.{AsyncTimeLimitedTests, ScaledTimeSpans} import org.scalatest.matchers.should.Matchers @@ -58,7 +58,7 @@ class SignalDispatcherTest sut.getRunningState should have size 1L s.cancel() await("Cancellation handling") - .atMost(Durations.TEN_SECONDS) + .atMost(Duration.TEN_SECONDS) .until(() => lang.Boolean.valueOf(sut.getRunningState.isEmpty)) sut.getRunningState shouldBe empty } diff --git a/ledger/ledger-runner-common/BUILD.bazel b/ledger/ledger-runner-common/BUILD.bazel index 666228ed430b..455b48e929d1 100644 --- a/ledger/ledger-runner-common/BUILD.bazel +++ b/ledger/ledger-runner-common/BUILD.bazel @@ -15,7 +15,6 @@ da_scala_library( "@maven//:com_github_scopt_scopt", "@maven//:com_github_pureconfig_pureconfig_core", "@maven//:com_github_pureconfig_pureconfig_generic", - "@maven//:com_github_pureconfig_pureconfig_generic_base", "@maven//:com_chuusai_shapeless", ], tags = ["maven_coordinates=com.daml:ledger-runner-common:__VERSION__"], @@ -85,7 +84,6 @@ da_scala_test_suite( "@maven//:org_scalatest_scalatest_shouldmatchers", "@maven//:com_github_pureconfig_pureconfig_core", "@maven//:com_github_pureconfig_pureconfig_generic", - "@maven//:com_github_pureconfig_pureconfig_generic_base", "@maven//:org_scalacheck_scalacheck", "@maven//:org_scalatestplus_scalacheck_1_15", "@maven//:com_chuusai_shapeless", diff --git a/ledger/ledger-runner-common/src/main/scala/com/daml/ledger/runner/common/ConfigLoader.scala b/ledger/ledger-runner-common/src/main/scala/com/daml/ledger/runner/common/ConfigLoader.scala index cec8240ccab9..869c028e235f 100644 --- a/ledger/ledger-runner-common/src/main/scala/com/daml/ledger/runner/common/ConfigLoader.scala +++ b/ledger/ledger-runner-common/src/main/scala/com/daml/ledger/runner/common/ConfigLoader.scala @@ -3,7 +3,7 @@ package com.daml.ledger.runner.common -import pureconfig.{ConfigReader, ConfigSource} +import pureconfig.{ConfigReader, ConfigSource, Derivation} import com.typesafe.config.{ConfigFactory, Config => TypesafeConfig} import pureconfig.error.ConfigReaderFailures @@ -25,7 +25,7 @@ trait ConfigLoader { } def loadConfig[T](config: TypesafeConfig)(implicit - reader: ConfigReader[T] + reader: Derivation[ConfigReader[T]] ): Either[String, T] = ConfigSource.fromConfig(config).load[T].left.map(toError) diff --git a/ledger/participant-integration-api/src/test/lib/scala/platform/indexer/ha/IndexerStabilityTestFixture.scala b/ledger/participant-integration-api/src/test/lib/scala/platform/indexer/ha/IndexerStabilityTestFixture.scala index 58c74ca521ff..869f6fd52561 100644 --- a/ledger/participant-integration-api/src/test/lib/scala/platform/indexer/ha/IndexerStabilityTestFixture.scala +++ b/ledger/participant-integration-api/src/test/lib/scala/platform/indexer/ha/IndexerStabilityTestFixture.scala @@ -4,8 +4,8 @@ package com.daml.platform.indexer.ha import java.util.concurrent.Executors + import akka.stream.Materializer -import com.codahale.metrics.MetricRegistry import com.daml.ledger.api.health.ReportsHealth import com.daml.ledger.resources.{Resource, ResourceContext, ResourceOwner} import com.daml.logging.ContextualizedLogger @@ -79,6 +79,7 @@ object IndexerStabilityTestFixture { // Start N indexers that all compete for the same database _ = logger.info(s"Starting $indexerCount indexers for database $jdbcUrl") + metrics = Metrics.ForTesting indexers <- Resource .sequence( (1 to indexerCount).toList @@ -93,10 +94,6 @@ object IndexerStabilityTestFixture { } ) .acquire() - // create a new MetricRegistry for each indexer, so they don't step on each other toes: - // Gauges can only be registered once. A subsequent attempt results in an exception for the - // call MetricRegistry#register or MetricRegistry#registerGauge - metrics = new Metrics(new MetricRegistry) (inMemoryState, inMemoryStateUpdaterFlow) <- LedgerApiServer .createInMemoryStateAndUpdater( diff --git a/ledger/participant-integration-api/src/test/suite/scala/platform/store/dao/BufferedTransactionByIdReaderSpec.scala b/ledger/participant-integration-api/src/test/suite/scala/platform/store/dao/BufferedTransactionByIdReaderSpec.scala index 1b752990489b..3a34df84d5d1 100644 --- a/ledger/participant-integration-api/src/test/suite/scala/platform/store/dao/BufferedTransactionByIdReaderSpec.scala +++ b/ledger/participant-integration-api/src/test/suite/scala/platform/store/dao/BufferedTransactionByIdReaderSpec.scala @@ -35,43 +35,38 @@ class BufferedTransactionByIdReaderSpec extends AsyncFlatSpec with MockitoSugar private val bufferedTransaction1 = tx(bufferedTransactionId1) private val bufferedTransaction2 = tx(bufferedTransactionId2) - class Fixture { - val inMemoryFanout = mock[InMemoryFanoutBuffer] - when(inMemoryFanout.lookup(bufferedTransactionId1)).thenReturn(Some(bufferedTransaction1)) - when(inMemoryFanout.lookup(bufferedTransactionId2)).thenReturn(Some(bufferedTransaction2)) - when(inMemoryFanout.lookup(notBufferedTransactionId)).thenReturn(None) - when(inMemoryFanout.lookup(unknownTransactionId)).thenReturn(None) - - val toApiResponse = mock[ToApiResponse[String]] - when(toApiResponse.apply(bufferedTransaction1, requestingParties, loggingContext)) - .thenReturn(Future.successful(Some(bufferedTransactionId1))) - when(toApiResponse.apply(bufferedTransaction2, requestingParties, loggingContext)) - .thenReturn(Future.successful(None)) - - val fetchFromPersistence = new FetchTransactionByIdFromPersistence[String] { - override def apply( - transactionId: String, - requestingParties: Set[Party], - loggingContext: LoggingContext, - ): Future[Option[String]] = - transactionId match { - case `notBufferedTransactionId` => Future.successful(Some(notBufferedTransactionId)) - case `unknownTransactionId` => Future.successful(None) - case other => fail(s"Unexpected $other transactionId") - } - } - - val bufferedTransactionByIdReader = new BufferedTransactionByIdReader[String]( - inMemoryFanoutBuffer = inMemoryFanout, - fetchFromPersistence = fetchFromPersistence, - toApiResponse = toApiResponse, - ) + private val inMemoryFanout = mock[InMemoryFanoutBuffer] + when(inMemoryFanout.lookup(bufferedTransactionId1)).thenReturn(Some(bufferedTransaction1)) + when(inMemoryFanout.lookup(bufferedTransactionId2)).thenReturn(Some(bufferedTransaction2)) + when(inMemoryFanout.lookup(notBufferedTransactionId)).thenReturn(None) + when(inMemoryFanout.lookup(unknownTransactionId)).thenReturn(None) + + private val toApiResponse = mock[ToApiResponse[String]] + when(toApiResponse.apply(bufferedTransaction1, requestingParties, loggingContext)) + .thenReturn(Future.successful(Some(bufferedTransactionId1))) + when(toApiResponse.apply(bufferedTransaction2, requestingParties, loggingContext)) + .thenReturn(Future.successful(None)) + + private val fetchFromPersistence = new FetchTransactionByIdFromPersistence[String] { + override def apply( + transactionId: String, + requestingParties: Set[Party], + loggingContext: LoggingContext, + ): Future[Option[String]] = + transactionId match { + case `notBufferedTransactionId` => Future.successful(Some(notBufferedTransactionId)) + case `unknownTransactionId` => Future.successful(None) + case other => fail(s"Unexpected $other transactionId") + } } - s"$className.fetch" should "convert to API response and return if transaction buffered" in { - val fixture = new Fixture - import fixture._ + private val bufferedTransactionByIdReader = new BufferedTransactionByIdReader[String]( + inMemoryFanoutBuffer = inMemoryFanout, + fetchFromPersistence = fetchFromPersistence, + toApiResponse = toApiResponse, + ) + s"$className.fetch" should "convert to API response and return if transaction buffered" in { for { response1 <- bufferedTransactionByIdReader.fetch(bufferedTransactionId1, requestingParties) response2 <- bufferedTransactionByIdReader.fetch(bufferedTransactionId2, requestingParties) @@ -85,9 +80,6 @@ class BufferedTransactionByIdReaderSpec extends AsyncFlatSpec with MockitoSugar } s"$className.fetch" should "delegate to persistence fetch if transaction not buffered" in { - val fixture = new Fixture - import fixture._ - for { response1 <- bufferedTransactionByIdReader.fetch(notBufferedTransactionId, requestingParties) response2 <- bufferedTransactionByIdReader.fetch(unknownTransactionId, requestingParties) diff --git a/ledger/sandbox-on-x/BUILD.bazel b/ledger/sandbox-on-x/BUILD.bazel index 7f825674c1a8..0d208cf19dc3 100644 --- a/ledger/sandbox-on-x/BUILD.bazel +++ b/ledger/sandbox-on-x/BUILD.bazel @@ -21,7 +21,6 @@ da_scala_library( "@maven//:com_typesafe_akka_akka_stream", "@maven//:com_github_pureconfig_pureconfig_core", "@maven//:com_github_pureconfig_pureconfig_generic", - "@maven//:com_github_pureconfig_pureconfig_generic_base", "@maven//:com_chuusai_shapeless", "@maven//:org_typelevel_cats_core", ], diff --git a/libs-scala/gatling-utils/BUILD.bazel b/libs-scala/gatling-utils/BUILD.bazel index 53963bc782bd..66b6ea10f0d0 100644 --- a/libs-scala/gatling-utils/BUILD.bazel +++ b/libs-scala/gatling-utils/BUILD.bazel @@ -35,7 +35,6 @@ da_scala_library( deps = [ "//libs-scala/scala-utils", "@maven//:io_gatling_gatling_app", - "@maven//:io_gatling_gatling_commons_shared", "@maven//:io_gatling_gatling_core", "@maven//:io_netty_netty_common", "@maven//:io_netty_netty_transport", diff --git a/libs-scala/gatling-utils/src/main/scala/io/gatling/app/CustomRunner.scala b/libs-scala/gatling-utils/src/main/scala/io/gatling/app/CustomRunner.scala index fb7451530513..4c332b58c5ad 100644 --- a/libs-scala/gatling-utils/src/main/scala/io/gatling/app/CustomRunner.scala +++ b/libs-scala/gatling-utils/src/main/scala/io/gatling/app/CustomRunner.scala @@ -4,13 +4,12 @@ package io.gatling.app import java.nio.file.{FileSystems, Path} + import akka.actor.ActorSystem import com.daml.scalautil.Statement.discard import com.typesafe.scalalogging.StrictLogging -import io.gatling.app.ConfigOverrides -import io.gatling.app.Runner -import io.gatling.commons.util.DefaultClock import io.gatling.core.config.GatlingConfiguration +import io.gatling.core.scenario.Simulation import io.netty.channel.EventLoopGroup import scala.util.Try @@ -24,7 +23,7 @@ object CustomRunner extends StrictLogging { system: ActorSystem, eventLoop: EventLoopGroup, overrides: ConfigOverrides, - mbSimulation: Option[SimulationClass] = None, + mbSimulation: Option[Class[Simulation]] = None, ): Try[(Int, Path)] = { logger.trace("Starting") @@ -35,7 +34,7 @@ object CustomRunner extends StrictLogging { logger.trace("Configuration loaded") val runResult = Try { - new Runner(system, eventLoop, new DefaultClock, configuration).run(mbSimulation) + Runner(system, eventLoop, configuration).run(mbSimulation) } runResult map { res => diff --git a/maven_install_2.13.json b/maven_install_2.13.json index fa1221292323..e33dbb11a516 100644 --- a/maven_install_2.13.json +++ b/maven_install_2.13.json @@ -1,23 +1,23 @@ { "dependency_tree": { "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": -144959881, - "__RESOLVED_ARTIFACTS_HASH": 733685628, + "__INPUT_ARTIFACTS_HASH": -42024869, + "__RESOLVED_ARTIFACTS_HASH": 2030062946, "conflict_resolution": {}, "dependencies": [ { - "coord": "ch.qos.logback:logback-classic:1.2.11", + "coord": "ch.qos.logback:logback-classic:1.2.8", "dependencies": [ - "ch.qos.logback:logback-core:1.2.11", - "org.slf4j:slf4j-api:1.7.36" + "ch.qos.logback:logback-core:1.2.8", + "org.slf4j:slf4j-api:1.7.26" ], "directDependencies": [ - "ch.qos.logback:logback-core:1.2.11", - "org.slf4j:slf4j-api:1.7.36" + "ch.qos.logback:logback-core:1.2.8", + "org.slf4j:slf4j-api:1.7.26" ], - "file": "v1/https/repo1.maven.org/maven2/ch/qos/logback/logback-classic/1.2.11/logback-classic-1.2.11.jar", + "file": "v1/https/repo1.maven.org/maven2/ch/qos/logback/logback-classic/1.2.8/logback-classic-1.2.8.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/ch/qos/logback/logback-classic/1.2.11/logback-classic-1.2.11.jar" + "https://repo1.maven.org/maven2/ch/qos/logback/logback-classic/1.2.8/logback-classic-1.2.8.jar" ], "packages": [ "ch.qos.logback.classic", @@ -25,6 +25,7 @@ "ch.qos.logback.classic.db.names", "ch.qos.logback.classic.encoder", "ch.qos.logback.classic.filter", + "ch.qos.logback.classic.gaffer", "ch.qos.logback.classic.helpers", "ch.qos.logback.classic.html", "ch.qos.logback.classic.jmx", @@ -46,34 +47,34 @@ "ch.qos.logback.classic.util", "org.slf4j.impl" ], - "sha256": "4d8e899621a3006c2f66e19feab002b11e6cfc5cb1854fc41f01532c00deb2aa", - "url": "https://repo1.maven.org/maven2/ch/qos/logback/logback-classic/1.2.11/logback-classic-1.2.11.jar" + "sha256": "707d0f8ccacb080c8178b9b045414bb62503d403f003505a443df659e3831735", + "url": "https://repo1.maven.org/maven2/ch/qos/logback/logback-classic/1.2.8/logback-classic-1.2.8.jar" }, { - "coord": "ch.qos.logback:logback-classic:jar:sources:1.2.11", + "coord": "ch.qos.logback:logback-classic:jar:sources:1.2.8", "dependencies": [ - "ch.qos.logback:logback-core:jar:sources:1.2.11", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "ch.qos.logback:logback-core:jar:sources:1.2.8", + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], "directDependencies": [ - "ch.qos.logback:logback-core:jar:sources:1.2.11", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "ch.qos.logback:logback-core:jar:sources:1.2.8", + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], - "file": "v1/https/repo1.maven.org/maven2/ch/qos/logback/logback-classic/1.2.11/logback-classic-1.2.11-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/ch/qos/logback/logback-classic/1.2.8/logback-classic-1.2.8-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/ch/qos/logback/logback-classic/1.2.11/logback-classic-1.2.11-sources.jar" + "https://repo1.maven.org/maven2/ch/qos/logback/logback-classic/1.2.8/logback-classic-1.2.8-sources.jar" ], "packages": [], - "sha256": "b14b5c95e258ae63ec83c5c6fddebfdd4aa8d54f10c4646d4a06b919408c0548", - "url": "https://repo1.maven.org/maven2/ch/qos/logback/logback-classic/1.2.11/logback-classic-1.2.11-sources.jar" + "sha256": "699dd28a6cf079002d09eb89513cfdcb9db487ae6f07dccd785bf3cbd0aae69d", + "url": "https://repo1.maven.org/maven2/ch/qos/logback/logback-classic/1.2.8/logback-classic-1.2.8-sources.jar" }, { - "coord": "ch.qos.logback:logback-core:1.2.11", + "coord": "ch.qos.logback:logback-core:1.2.8", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/ch/qos/logback/logback-core/1.2.11/logback-core-1.2.11.jar", + "file": "v1/https/repo1.maven.org/maven2/ch/qos/logback/logback-core/1.2.8/logback-core-1.2.8.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/ch/qos/logback/logback-core/1.2.11/logback-core-1.2.11.jar" + "https://repo1.maven.org/maven2/ch/qos/logback/logback-core/1.2.8/logback-core-1.2.8.jar" ], "packages": [ "ch.qos.logback.core", @@ -111,33 +112,35 @@ "ch.qos.logback.core.subst", "ch.qos.logback.core.util" ], - "sha256": "6ce1e9397be8298a2e99029f55f955c6fa3cef255171c554d0b9c201cffd0159", - "url": "https://repo1.maven.org/maven2/ch/qos/logback/logback-core/1.2.11/logback-core-1.2.11.jar" + "sha256": "799fc59faec20f5043ab50bd03e3c9f83381adf1818eae3307257923afd1e44d", + "url": "https://repo1.maven.org/maven2/ch/qos/logback/logback-core/1.2.8/logback-core-1.2.8.jar" }, { - "coord": "ch.qos.logback:logback-core:jar:sources:1.2.11", + "coord": "ch.qos.logback:logback-core:jar:sources:1.2.8", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/ch/qos/logback/logback-core/1.2.11/logback-core-1.2.11-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/ch/qos/logback/logback-core/1.2.8/logback-core-1.2.8-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/ch/qos/logback/logback-core/1.2.11/logback-core-1.2.11-sources.jar" + "https://repo1.maven.org/maven2/ch/qos/logback/logback-core/1.2.8/logback-core-1.2.8-sources.jar" ], "packages": [], - "sha256": "15500a0b93c270dd6a6615669d61611f4dfd17da87cb2cce9594088a4cdb18d6", - "url": "https://repo1.maven.org/maven2/ch/qos/logback/logback-core/1.2.11/logback-core-1.2.11-sources.jar" + "sha256": "fae09f7bd7099f8728cecaf0a3b12bf28419a32c5e98c3fdcd8a1b0b22fdd928", + "url": "https://repo1.maven.org/maven2/ch/qos/logback/logback-core/1.2.8/logback-core-1.2.8-sources.jar" }, { "coord": "co.fs2:fs2-core_2.13:2.5.6", "dependencies": [ "org.scala-lang:scala-library:2.13.8", "org.scodec:scodec-bits_2.13:1.1.27", - "org.typelevel:cats-core_2.13:2.8.0", - "org.typelevel:cats-effect_2.13:2.5.1" + "org.typelevel:cats-core_2.13:2.6.1", + "org.typelevel:cats-effect_2.13:2.5.1", + "org.typelevel:cats-kernel_2.13:2.6.1", + "org.typelevel:simulacrum-scalafix-annotations_2.13:0.5.4" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", "org.scodec:scodec-bits_2.13:1.1.27", - "org.typelevel:cats-core_2.13:2.8.0", + "org.typelevel:cats-core_2.13:2.6.1", "org.typelevel:cats-effect_2.13:2.5.1" ], "file": "v1/https/repo1.maven.org/maven2/co/fs2/fs2-core_2.13/2.5.6/fs2-core_2.13-2.5.6.jar", @@ -157,13 +160,15 @@ "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scodec:scodec-bits_2.13:jar:sources:1.1.27", - "org.typelevel:cats-core_2.13:jar:sources:2.8.0", - "org.typelevel:cats-effect_2.13:jar:sources:2.5.1" + "org.typelevel:cats-core_2.13:jar:sources:2.6.1", + "org.typelevel:cats-effect_2.13:jar:sources:2.5.1", + "org.typelevel:cats-kernel_2.13:jar:sources:2.6.1", + "org.typelevel:simulacrum-scalafix-annotations_2.13:jar:sources:0.5.4" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scodec:scodec-bits_2.13:jar:sources:1.1.27", - "org.typelevel:cats-core_2.13:jar:sources:2.8.0", + "org.typelevel:cats-core_2.13:jar:sources:2.6.1", "org.typelevel:cats-effect_2.13:jar:sources:2.5.1" ], "file": "v1/https/repo1.maven.org/maven2/co/fs2/fs2-core_2.13/2.5.6/fs2-core_2.13-2.5.6-sources.jar", @@ -180,8 +185,10 @@ "co.fs2:fs2-core_2.13:2.5.6", "org.scala-lang:scala-library:2.13.8", "org.scodec:scodec-bits_2.13:1.1.27", - "org.typelevel:cats-core_2.13:2.8.0", - "org.typelevel:cats-effect_2.13:2.5.1" + "org.typelevel:cats-core_2.13:2.6.1", + "org.typelevel:cats-effect_2.13:2.5.1", + "org.typelevel:cats-kernel_2.13:2.6.1", + "org.typelevel:simulacrum-scalafix-annotations_2.13:0.5.4" ], "directDependencies": [ "co.fs2:fs2-core_2.13:2.5.6", @@ -207,8 +214,10 @@ "co.fs2:fs2-core_2.13:jar:sources:2.5.6", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scodec:scodec-bits_2.13:jar:sources:1.1.27", - "org.typelevel:cats-core_2.13:jar:sources:2.8.0", - "org.typelevel:cats-effect_2.13:jar:sources:2.5.1" + "org.typelevel:cats-core_2.13:jar:sources:2.6.1", + "org.typelevel:cats-effect_2.13:jar:sources:2.5.1", + "org.typelevel:cats-kernel_2.13:jar:sources:2.6.1", + "org.typelevel:simulacrum-scalafix-annotations_2.13:jar:sources:0.5.4" ], "directDependencies": [ "co.fs2:fs2-core_2.13:jar:sources:2.5.6", @@ -223,136 +232,18 @@ "url": "https://repo1.maven.org/maven2/co/fs2/fs2-io_2.13/2.5.6/fs2-io_2.13-2.5.6-sources.jar" }, { - "coord": "com.aayushatharva.brotli4j:brotli4j:1.8.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/aayushatharva/brotli4j/brotli4j/1.8.0/brotli4j-1.8.0.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/com/aayushatharva/brotli4j/brotli4j/1.8.0/brotli4j-1.8.0.jar" - ], - "packages": [ - "com.aayushatharva.brotli4j", - "com.aayushatharva.brotli4j.common", - "com.aayushatharva.brotli4j.common.annotations", - "com.aayushatharva.brotli4j.decoder", - "com.aayushatharva.brotli4j.encoder" - ], - "sha256": "cbe0688bc3f0dba1b30b89327deb9480b8f5d10a9faadb58ce212bcdf11d0a3b", - "url": "https://repo1.maven.org/maven2/com/aayushatharva/brotli4j/brotli4j/1.8.0/brotli4j-1.8.0.jar" - }, - { - "coord": "com.aayushatharva.brotli4j:brotli4j:jar:sources:1.8.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/aayushatharva/brotli4j/brotli4j/1.8.0/brotli4j-1.8.0-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/com/aayushatharva/brotli4j/brotli4j/1.8.0/brotli4j-1.8.0-sources.jar" - ], - "packages": [], - "sha256": "aaedb27d5884fef73914afc756fc922c2dcb948a43ed120542d7b9355a9cb0c4", - "url": "https://repo1.maven.org/maven2/com/aayushatharva/brotli4j/brotli4j/1.8.0/brotli4j-1.8.0-sources.jar" - }, - { - "coord": "com.aayushatharva.brotli4j:native-linux-aarch64:1.8.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/aayushatharva/brotli4j/native-linux-aarch64/1.8.0/native-linux-aarch64-1.8.0.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/com/aayushatharva/brotli4j/native-linux-aarch64/1.8.0/native-linux-aarch64-1.8.0.jar" - ], - "packages": [], - "sha256": "9a2d739e327a83721065461adcb644d8791af2390b6b9517101635503503c1e7", - "url": "https://repo1.maven.org/maven2/com/aayushatharva/brotli4j/native-linux-aarch64/1.8.0/native-linux-aarch64-1.8.0.jar" - }, - { - "coord": "com.aayushatharva.brotli4j:native-linux-aarch64:jar:sources:1.8.0", - "dependencies": [], - "directDependencies": [], - "file": null - }, - { - "coord": "com.aayushatharva.brotli4j:native-linux-x86_64:1.8.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/aayushatharva/brotli4j/native-linux-x86_64/1.8.0/native-linux-x86_64-1.8.0.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/com/aayushatharva/brotli4j/native-linux-x86_64/1.8.0/native-linux-x86_64-1.8.0.jar" - ], - "packages": [], - "sha256": "d6d1a825bd805a19338dfdf6c533cd589b2a89e6155cee8e55f7bffb40b4a1d5", - "url": "https://repo1.maven.org/maven2/com/aayushatharva/brotli4j/native-linux-x86_64/1.8.0/native-linux-x86_64-1.8.0.jar" - }, - { - "coord": "com.aayushatharva.brotli4j:native-linux-x86_64:jar:sources:1.8.0", - "dependencies": [], - "directDependencies": [], - "file": null - }, - { - "coord": "com.aayushatharva.brotli4j:native-osx-aarch64:1.8.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/aayushatharva/brotli4j/native-osx-aarch64/1.8.0/native-osx-aarch64-1.8.0.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/com/aayushatharva/brotli4j/native-osx-aarch64/1.8.0/native-osx-aarch64-1.8.0.jar" - ], - "packages": [], - "sha256": "ff10507ba45fe09a26c0d9061b76ff9bfd9a3be30f60d94b3afb9a6d1c74755d", - "url": "https://repo1.maven.org/maven2/com/aayushatharva/brotli4j/native-osx-aarch64/1.8.0/native-osx-aarch64-1.8.0.jar" - }, - { - "coord": "com.aayushatharva.brotli4j:native-osx-aarch64:jar:sources:1.8.0", - "dependencies": [], - "directDependencies": [], - "file": null - }, - { - "coord": "com.aayushatharva.brotli4j:native-osx-x86_64:1.8.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/aayushatharva/brotli4j/native-osx-x86_64/1.8.0/native-osx-x86_64-1.8.0.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/com/aayushatharva/brotli4j/native-osx-x86_64/1.8.0/native-osx-x86_64-1.8.0.jar" - ], - "packages": [], - "sha256": "367f4ceab9c5e031110c6b9bc1fb2304354d5cb1bd86bf185ed1881882bed2c2", - "url": "https://repo1.maven.org/maven2/com/aayushatharva/brotli4j/native-osx-x86_64/1.8.0/native-osx-x86_64-1.8.0.jar" - }, - { - "coord": "com.aayushatharva.brotli4j:native-osx-x86_64:jar:sources:1.8.0", - "dependencies": [], - "directDependencies": [], - "file": null - }, - { - "coord": "com.aayushatharva.brotli4j:native-windows-x86_64:1.8.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/aayushatharva/brotli4j/native-windows-x86_64/1.8.0/native-windows-x86_64-1.8.0.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/com/aayushatharva/brotli4j/native-windows-x86_64/1.8.0/native-windows-x86_64-1.8.0.jar" - ], - "packages": [], - "sha256": "6e8e96f00a015ae00657511312baf6c98d228ffff37a5a658cd1d5f848f5f287", - "url": "https://repo1.maven.org/maven2/com/aayushatharva/brotli4j/native-windows-x86_64/1.8.0/native-windows-x86_64-1.8.0.jar" - }, - { - "coord": "com.aayushatharva.brotli4j:native-windows-x86_64:jar:sources:1.8.0", - "dependencies": [], - "directDependencies": [], - "file": null - }, - { - "coord": "com.auth0:java-jwt:4.1.0", + "coord": "com.auth0:java-jwt:3.10.3", "dependencies": [ - "com.fasterxml.jackson.core:jackson-databind:2.13.4" + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "commons-codec:commons-codec:1.14" ], "directDependencies": [ - "com.fasterxml.jackson.core:jackson-databind:2.13.4" + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "commons-codec:commons-codec:1.14" ], - "file": "v1/https/repo1.maven.org/maven2/com/auth0/java-jwt/4.1.0/java-jwt-4.1.0.jar", + "file": "v1/https/repo1.maven.org/maven2/com/auth0/java-jwt/3.10.3/java-jwt-3.10.3.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/auth0/java-jwt/4.1.0/java-jwt-4.1.0.jar" + "https://repo1.maven.org/maven2/com/auth0/java-jwt/3.10.3/java-jwt-3.10.3.jar" ], "packages": [ "com.auth0.jwt", @@ -361,94 +252,101 @@ "com.auth0.jwt.impl", "com.auth0.jwt.interfaces" ], - "sha256": "03c8ac82589b55724c8ca656dc548864bf5473638539fee413fa9543507e660b", - "url": "https://repo1.maven.org/maven2/com/auth0/java-jwt/4.1.0/java-jwt-4.1.0.jar" + "sha256": "c5901a5dadf420867cd6cb598f7ae09b0cde7f7e46b7e1a70b56be8d5a5c64a6", + "url": "https://repo1.maven.org/maven2/com/auth0/java-jwt/3.10.3/java-jwt-3.10.3.jar" }, { - "coord": "com.auth0:java-jwt:jar:sources:4.1.0", + "coord": "com.auth0:java-jwt:jar:sources:3.10.3", "dependencies": [ - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4" + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "commons-codec:commons-codec:jar:sources:1.14" ], "directDependencies": [ - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4" + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "commons-codec:commons-codec:jar:sources:1.14" ], - "file": "v1/https/repo1.maven.org/maven2/com/auth0/java-jwt/4.1.0/java-jwt-4.1.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/auth0/java-jwt/3.10.3/java-jwt-3.10.3-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/auth0/java-jwt/4.1.0/java-jwt-4.1.0-sources.jar" + "https://repo1.maven.org/maven2/com/auth0/java-jwt/3.10.3/java-jwt-3.10.3-sources.jar" ], "packages": [], - "sha256": "12eaf152d4d51c661fb9092ceaa182cff0e805e7aacf20354b17ab330994be83", - "url": "https://repo1.maven.org/maven2/com/auth0/java-jwt/4.1.0/java-jwt-4.1.0-sources.jar" + "sha256": "e77d1f379b9fb91a99c3b487ca239a1a2404349b0e6cfae7e2a2fe96a3b67672", + "url": "https://repo1.maven.org/maven2/com/auth0/java-jwt/3.10.3/java-jwt-3.10.3-sources.jar" }, { - "coord": "com.auth0:jwks-rsa:0.21.2", + "coord": "com.auth0:jwks-rsa:0.11.0", "dependencies": [ - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.google.guava:guava:31.1-jre" + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "com.google.guava:guava:31.0.1-jre", + "commons-codec:commons-codec:1.14", + "commons-io:commons-io:2.5" ], "directDependencies": [ - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.google.guava:guava:31.1-jre" + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "com.google.guava:guava:31.0.1-jre", + "commons-codec:commons-codec:1.14", + "commons-io:commons-io:2.5" ], - "file": "v1/https/repo1.maven.org/maven2/com/auth0/jwks-rsa/0.21.2/jwks-rsa-0.21.2.jar", + "file": "v1/https/repo1.maven.org/maven2/com/auth0/jwks-rsa/0.11.0/jwks-rsa-0.11.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/auth0/jwks-rsa/0.21.2/jwks-rsa-0.21.2.jar" + "https://repo1.maven.org/maven2/com/auth0/jwks-rsa/0.11.0/jwks-rsa-0.11.0.jar" ], "packages": [ "com.auth0.jwk" ], - "sha256": "ba65c408f7b71c2f8ec0d0712896fdf94c3d5756a3a7fbe7b3a6974899672292", - "url": "https://repo1.maven.org/maven2/com/auth0/jwks-rsa/0.21.2/jwks-rsa-0.21.2.jar" + "sha256": "978574e2c9f60409225cd4acc891e14e1e714d802844cf7dc2e74f261ba617d0", + "url": "https://repo1.maven.org/maven2/com/auth0/jwks-rsa/0.11.0/jwks-rsa-0.11.0.jar" }, { - "coord": "com.auth0:jwks-rsa:jar:sources:0.21.2", + "coord": "com.auth0:jwks-rsa:jar:sources:0.11.0", "dependencies": [ - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.google.guava:guava:jar:sources:31.1-jre" + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "commons-codec:commons-codec:jar:sources:1.14", + "commons-io:commons-io:jar:sources:2.5" ], "directDependencies": [ - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.google.guava:guava:jar:sources:31.1-jre" + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "commons-codec:commons-codec:jar:sources:1.14", + "commons-io:commons-io:jar:sources:2.5" ], - "file": "v1/https/repo1.maven.org/maven2/com/auth0/jwks-rsa/0.21.2/jwks-rsa-0.21.2-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/auth0/jwks-rsa/0.11.0/jwks-rsa-0.11.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/auth0/jwks-rsa/0.21.2/jwks-rsa-0.21.2-sources.jar" + "https://repo1.maven.org/maven2/com/auth0/jwks-rsa/0.11.0/jwks-rsa-0.11.0-sources.jar" ], "packages": [], - "sha256": "76a8e3811888cac5912eaa7bcdb91e8fd04ec0e74ffadc62372c1daff207ad24", - "url": "https://repo1.maven.org/maven2/com/auth0/jwks-rsa/0.21.2/jwks-rsa-0.21.2-sources.jar" + "sha256": "07b7eab0b38ae7e357017b0c2bad2b154bad6b4605bc0126020756a02516ed0b", + "url": "https://repo1.maven.org/maven2/com/auth0/jwks-rsa/0.11.0/jwks-rsa-0.11.0-sources.jar" }, { - "coord": "com.beust:jcommander:1.82", + "coord": "com.beust:jcommander:1.12", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/beust/jcommander/1.82/jcommander-1.82.jar", + "file": "v1/https/repo1.maven.org/maven2/com/beust/jcommander/1.12/jcommander-1.12.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/beust/jcommander/1.82/jcommander-1.82.jar" + "https://repo1.maven.org/maven2/com/beust/jcommander/1.12/jcommander-1.12.jar" ], "packages": [ - "com.beust.ah", "com.beust.jcommander", "com.beust.jcommander.converters", "com.beust.jcommander.defaultprovider", - "com.beust.jcommander.internal", - "com.beust.jcommander.parser", - "com.beust.jcommander.validators" + "com.beust.jcommander.internal" ], - "sha256": "deeac157c8de6822878d85d0c7bc8467a19cc8484d37788f7804f039dde280b1", - "url": "https://repo1.maven.org/maven2/com/beust/jcommander/1.82/jcommander-1.82.jar" + "sha256": "47544b2ce3a16d88bcfdc2144200de5d1a9f26dcf21a929095ae62d889c6614b", + "url": "https://repo1.maven.org/maven2/com/beust/jcommander/1.12/jcommander-1.12.jar" }, { - "coord": "com.beust:jcommander:jar:sources:1.82", + "coord": "com.beust:jcommander:jar:sources:1.12", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/beust/jcommander/1.82/jcommander-1.82-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/beust/jcommander/1.12/jcommander-1.12-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/beust/jcommander/1.82/jcommander-1.82-sources.jar" + "https://repo1.maven.org/maven2/com/beust/jcommander/1.12/jcommander-1.12-sources.jar" ], "packages": [], - "sha256": "cc39d22f3cf29c2033fb526e5600ae8fec36e316274b0c07fa14c1a4a38eca3b", - "url": "https://repo1.maven.org/maven2/com/beust/jcommander/1.82/jcommander-1.82-sources.jar" + "sha256": "fccb2dda4d87781535459f840af24bdbfda920b6dcac815595bb821c01f213ab", + "url": "https://repo1.maven.org/maven2/com/beust/jcommander/1.12/jcommander-1.12-sources.jar" }, { "coord": "com.chuusai:shapeless_2.13:2.3.3", @@ -490,64 +388,64 @@ "url": "https://repo1.maven.org/maven2/com/chuusai/shapeless_2.13/2.3.3/shapeless_2.13-2.3.3-sources.jar" }, { - "coord": "com.eatthepath:fast-uuid:0.2.0", + "coord": "com.eatthepath:fast-uuid:0.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/eatthepath/fast-uuid/0.2.0/fast-uuid-0.2.0.jar", + "file": "v1/https/repo1.maven.org/maven2/com/eatthepath/fast-uuid/0.1/fast-uuid-0.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/eatthepath/fast-uuid/0.2.0/fast-uuid-0.2.0.jar" + "https://repo1.maven.org/maven2/com/eatthepath/fast-uuid/0.1/fast-uuid-0.1.jar" ], "packages": [ "com.eatthepath.uuid" ], - "sha256": "8668a0aa07025f4ee10155e45092de52132f2176e6099c17671e431ca741febf", - "url": "https://repo1.maven.org/maven2/com/eatthepath/fast-uuid/0.2.0/fast-uuid-0.2.0.jar" + "sha256": "670976cae3f41609128f647388791f43af361f3e7403ef0e3f0529c23fa1bccc", + "url": "https://repo1.maven.org/maven2/com/eatthepath/fast-uuid/0.1/fast-uuid-0.1.jar" }, { - "coord": "com.eatthepath:fast-uuid:jar:sources:0.2.0", + "coord": "com.eatthepath:fast-uuid:jar:sources:0.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/eatthepath/fast-uuid/0.2.0/fast-uuid-0.2.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/eatthepath/fast-uuid/0.1/fast-uuid-0.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/eatthepath/fast-uuid/0.2.0/fast-uuid-0.2.0-sources.jar" + "https://repo1.maven.org/maven2/com/eatthepath/fast-uuid/0.1/fast-uuid-0.1-sources.jar" ], "packages": [], - "sha256": "2e93f2fe93ac3517f31a903614493ede301454b8030c8ac4d374f28fbda34e6e", - "url": "https://repo1.maven.org/maven2/com/eatthepath/fast-uuid/0.2.0/fast-uuid-0.2.0-sources.jar" + "sha256": "a064183f9fa11409ce988482b5eb04c2001da3520335540a5805d10552ed98cb", + "url": "https://repo1.maven.org/maven2/com/eatthepath/fast-uuid/0.1/fast-uuid-0.1-sources.jar" }, { - "coord": "com.fasterxml.jackson.core:jackson-annotations:2.13.4", + "coord": "com.fasterxml.jackson.core:jackson-annotations:2.12.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.13.4/jackson-annotations-2.13.4.jar", + "file": "v1/https/repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.0/jackson-annotations-2.12.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.13.4/jackson-annotations-2.13.4.jar" + "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.0/jackson-annotations-2.12.0.jar" ], "packages": [ "com.fasterxml.jackson.annotation" ], - "sha256": "ac5b27a634942391ca113850ee7db01df1499a240174021263501c05fc653b44", - "url": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.13.4/jackson-annotations-2.13.4.jar" + "sha256": "c28fbe62e7be1e29df75953fa8a887ff875d4482291fbfddb1aec5c91191ecda", + "url": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.0/jackson-annotations-2.12.0.jar" }, { - "coord": "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", + "coord": "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.12.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.13.4/jackson-annotations-2.13.4-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.0/jackson-annotations-2.12.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.13.4/jackson-annotations-2.13.4-sources.jar" + "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.0/jackson-annotations-2.12.0-sources.jar" ], "packages": [], - "sha256": "f7957cd469e2c80f2a313d57816c9834135a5218e02eaa4d70d1a81fb49ca437", - "url": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.13.4/jackson-annotations-2.13.4-sources.jar" + "sha256": "4e348e45142b4fbff4affc18d8fd89afa1d966e8e140a4b48f1c1bd8f2a7ae77", + "url": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.0/jackson-annotations-2.12.0-sources.jar" }, { - "coord": "com.fasterxml.jackson.core:jackson-core:2.13.4", + "coord": "com.fasterxml.jackson.core:jackson-core:2.12.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.13.4/jackson-core-2.13.4.jar", + "file": "v1/https/repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.0/jackson-core-2.12.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.13.4/jackson-core-2.13.4.jar" + "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.0/jackson-core-2.12.0.jar" ], "packages": [ "com.fasterxml.jackson.core", @@ -563,34 +461,34 @@ "com.fasterxml.jackson.core.type", "com.fasterxml.jackson.core.util" ], - "sha256": "4c2e043200edd9ee7ba6fc378bd5c17784a5bf2388e152d208068b51fd0839cf", - "url": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.13.4/jackson-core-2.13.4.jar" + "sha256": "8acab5ef6e4f332bbb331b3fcd24d716598770d13a47e7215aa5ee625d1fd9c9", + "url": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.0/jackson-core-2.12.0.jar" }, { - "coord": "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4", + "coord": "com.fasterxml.jackson.core:jackson-core:jar:sources:2.12.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.13.4/jackson-core-2.13.4-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.0/jackson-core-2.12.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.13.4/jackson-core-2.13.4-sources.jar" + "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.0/jackson-core-2.12.0-sources.jar" ], "packages": [], - "sha256": "6abd09c8116e11fc2b51b577161208e6364b0aaf454bc7b2004bd981e32b4868", - "url": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.13.4/jackson-core-2.13.4-sources.jar" + "sha256": "748b744deec0e41a43c9f31589baab8eba83f3d97f5779efc39de03f3f12ab65", + "url": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.0/jackson-core-2.12.0-sources.jar" }, { - "coord": "com.fasterxml.jackson.core:jackson-databind:2.13.4", + "coord": "com.fasterxml.jackson.core:jackson-databind:2.12.0", "dependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:2.13.4", - "com.fasterxml.jackson.core:jackson-core:2.13.4" + "com.fasterxml.jackson.core:jackson-annotations:2.12.0", + "com.fasterxml.jackson.core:jackson-core:2.12.0" ], "directDependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:2.13.4", - "com.fasterxml.jackson.core:jackson-core:2.13.4" + "com.fasterxml.jackson.core:jackson-annotations:2.12.0", + "com.fasterxml.jackson.core:jackson-core:2.12.0" ], - "file": "v1/https/repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.13.4/jackson-databind-2.13.4.jar", + "file": "v1/https/repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.0/jackson-databind-2.12.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.13.4/jackson-databind-2.13.4.jar" + "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.0/jackson-databind-2.12.0.jar" ], "packages": [ "com.fasterxml.jackson.databind", @@ -616,86 +514,86 @@ "com.fasterxml.jackson.databind.type", "com.fasterxml.jackson.databind.util" ], - "sha256": "c9faff420d9e2c7e1e4711dbeebec2506a32c9942027211c5c293d8d87807eb6", - "url": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.13.4/jackson-databind-2.13.4.jar" + "sha256": "75d470eda0dd559e43f2ad08209fa09ecd268833492ba93fa46f6f3607acbab7", + "url": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.0/jackson-databind-2.12.0.jar" }, { - "coord": "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", + "coord": "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", "dependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4" + "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.12.0", + "com.fasterxml.jackson.core:jackson-core:jar:sources:2.12.0" ], "directDependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4" + "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.12.0", + "com.fasterxml.jackson.core:jackson-core:jar:sources:2.12.0" ], - "file": "v1/https/repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.13.4/jackson-databind-2.13.4-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.0/jackson-databind-2.12.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.13.4/jackson-databind-2.13.4-sources.jar" + "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.0/jackson-databind-2.12.0-sources.jar" ], "packages": [], - "sha256": "c1ab9263cb99f83f25cc6f7c5a1ae08cd9006946493b02e4574cdcb4da793cef", - "url": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.13.4/jackson-databind-2.13.4-sources.jar" + "sha256": "f612b034a81d910fa9f8d6e58c4d5bdb007717f7faee447db823ed479a15bd3a", + "url": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.0/jackson-databind-2.12.0-sources.jar" }, { - "coord": "com.fasterxml.jackson.module:jackson-module-paranamer:2.11.3", + "coord": "com.fasterxml.jackson.module:jackson-module-paranamer:2.9.9", "dependencies": [ - "com.fasterxml.jackson.core:jackson-databind:2.13.4", + "com.fasterxml.jackson.core:jackson-databind:2.12.0", "com.thoughtworks.paranamer:paranamer:2.8" ], "directDependencies": [ - "com.fasterxml.jackson.core:jackson-databind:2.13.4", + "com.fasterxml.jackson.core:jackson-databind:2.12.0", "com.thoughtworks.paranamer:paranamer:2.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-paranamer/2.11.3/jackson-module-paranamer-2.11.3.jar", + "file": "v1/https/repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-paranamer/2.9.9/jackson-module-paranamer-2.9.9.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-paranamer/2.11.3/jackson-module-paranamer-2.11.3.jar" + "https://repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-paranamer/2.9.9/jackson-module-paranamer-2.9.9.jar" ], "packages": [ "com.fasterxml.jackson.module.paranamer", "com.fasterxml.jackson.module.paranamer.shaded" ], - "sha256": "1a77977f4ac239fa158f92934b3ee8c1cdaec8dde6fe001a3e672b9397f8e8d5", - "url": "https://repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-paranamer/2.11.3/jackson-module-paranamer-2.11.3.jar" + "sha256": "6f57a6df1b99cf84cb12e117fa06e134015ae896c0e27b9494136fabc3a1f508", + "url": "https://repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-paranamer/2.9.9/jackson-module-paranamer-2.9.9.jar" }, { - "coord": "com.fasterxml.jackson.module:jackson-module-paranamer:jar:sources:2.11.3", + "coord": "com.fasterxml.jackson.module:jackson-module-paranamer:jar:sources:2.9.9", "dependencies": [ - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", "com.thoughtworks.paranamer:paranamer:jar:sources:2.8" ], "directDependencies": [ - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", "com.thoughtworks.paranamer:paranamer:jar:sources:2.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-paranamer/2.11.3/jackson-module-paranamer-2.11.3-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-paranamer/2.9.9/jackson-module-paranamer-2.9.9-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-paranamer/2.11.3/jackson-module-paranamer-2.11.3-sources.jar" + "https://repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-paranamer/2.9.9/jackson-module-paranamer-2.9.9-sources.jar" ], "packages": [], - "sha256": "c9b6a76ec08c0a02b8201bccc22e3cd6416acf635b72f085baaf9bd3a85e3b12", - "url": "https://repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-paranamer/2.11.3/jackson-module-paranamer-2.11.3-sources.jar" + "sha256": "fbaa6779d8fa55de5a26910f92b57ffe346e2fb02860dc56dd963fcea58801b4", + "url": "https://repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-paranamer/2.9.9/jackson-module-paranamer-2.9.9-sources.jar" }, { - "coord": "com.fasterxml.jackson.module:jackson-module-scala_2.13:2.11.3", + "coord": "com.fasterxml.jackson.module:jackson-module-scala_2.13:2.9.9", "dependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:2.13.4", - "com.fasterxml.jackson.core:jackson-core:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.fasterxml.jackson.module:jackson-module-paranamer:2.11.3", + "com.fasterxml.jackson.core:jackson-annotations:2.12.0", + "com.fasterxml.jackson.core:jackson-core:2.12.0", + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "com.fasterxml.jackson.module:jackson-module-paranamer:2.9.9", "com.thoughtworks.paranamer:paranamer:2.8", "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:2.13.4", - "com.fasterxml.jackson.core:jackson-core:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.fasterxml.jackson.module:jackson-module-paranamer:2.11.3", + "com.fasterxml.jackson.core:jackson-annotations:2.12.0", + "com.fasterxml.jackson.core:jackson-core:2.12.0", + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "com.fasterxml.jackson.module:jackson-module-paranamer:2.9.9", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-scala_2.13/2.11.3/jackson-module-scala_2.13-2.11.3.jar", + "file": "v1/https/repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-scala_2.13/2.9.9/jackson-module-scala_2.13-2.9.9.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-scala_2.13/2.11.3/jackson-module-scala_2.13-2.11.3.jar" + "https://repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-scala_2.13/2.9.9/jackson-module-scala_2.13-2.9.9.jar" ], "packages": [ "com.fasterxml.jackson.module.scala", @@ -706,352 +604,399 @@ "com.fasterxml.jackson.module.scala.ser", "com.fasterxml.jackson.module.scala.util" ], - "sha256": "84aaea244f66575a33323b295c92c33ec2d694a059ad9f04cbb28f3d3f2f8743", - "url": "https://repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-scala_2.13/2.11.3/jackson-module-scala_2.13-2.11.3.jar" + "sha256": "2d6d322f62ff856b6bc5aca3d630703fd4fd610f67971acf11f695c4cafedfdb", + "url": "https://repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-scala_2.13/2.9.9/jackson-module-scala_2.13-2.9.9.jar" }, { - "coord": "com.fasterxml.jackson.module:jackson-module-scala_2.13:jar:sources:2.11.3", + "coord": "com.fasterxml.jackson.module:jackson-module-scala_2.13:jar:sources:2.9.9", "dependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.fasterxml.jackson.module:jackson-module-paranamer:jar:sources:2.11.3", + "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.12.0", + "com.fasterxml.jackson.core:jackson-core:jar:sources:2.12.0", + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "com.fasterxml.jackson.module:jackson-module-paranamer:jar:sources:2.9.9", "com.thoughtworks.paranamer:paranamer:jar:sources:2.8", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.fasterxml.jackson.module:jackson-module-paranamer:jar:sources:2.11.3", + "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.12.0", + "com.fasterxml.jackson.core:jackson-core:jar:sources:2.12.0", + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "com.fasterxml.jackson.module:jackson-module-paranamer:jar:sources:2.9.9", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-scala_2.13/2.11.3/jackson-module-scala_2.13-2.11.3-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-scala_2.13/2.9.9/jackson-module-scala_2.13-2.9.9-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-scala_2.13/2.11.3/jackson-module-scala_2.13-2.11.3-sources.jar" + "https://repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-scala_2.13/2.9.9/jackson-module-scala_2.13-2.9.9-sources.jar" ], "packages": [], - "sha256": "8871c773230521aa9e1b13cf71d0c053cf30686b5cf75311daa7fb755f2522f0", - "url": "https://repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-scala_2.13/2.11.3/jackson-module-scala_2.13-2.11.3-sources.jar" + "sha256": "2004e86f38a6fdd223ed48ce6b4caeebe0e9c86717036dccc0e07ee91fba0c8e", + "url": "https://repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-scala_2.13/2.9.9/jackson-module-scala_2.13-2.9.9-sources.jar" }, { - "coord": "com.github.ben-manes.caffeine:caffeine:3.1.1", + "coord": "com.github.ben-manes.caffeine:caffeine:3.0.5", "dependencies": [ - "com.google.errorprone:error_prone_annotations:2.14.0", - "org.checkerframework:checker-qual:3.26.0" + "com.google.errorprone:error_prone_annotations:2.10.0", + "org.checkerframework:checker-qual:3.19.0" ], "directDependencies": [ - "com.google.errorprone:error_prone_annotations:2.14.0", - "org.checkerframework:checker-qual:3.26.0" + "com.google.errorprone:error_prone_annotations:2.10.0", + "org.checkerframework:checker-qual:3.19.0" ], - "file": "v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/3.1.1/caffeine-3.1.1.jar", + "file": "v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/3.0.5/caffeine-3.0.5.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/3.1.1/caffeine-3.1.1.jar" + "https://repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/3.0.5/caffeine-3.0.5.jar" ], "packages": [ "com.github.benmanes.caffeine.cache", "com.github.benmanes.caffeine.cache.stats" ], - "sha256": "abc0622a6f3ffc60e34a06bccd334b70cfa96b7be7824e73423944464df8ccf6", - "url": "https://repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/3.1.1/caffeine-3.1.1.jar" + "sha256": "8a9b54d3506a3b92ee46b217bcee79196b21ca6d52dc2967c686a205fb2f9c15", + "url": "https://repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/3.0.5/caffeine-3.0.5.jar" }, { - "coord": "com.github.ben-manes.caffeine:caffeine:jar:sources:3.1.1", + "coord": "com.github.ben-manes.caffeine:caffeine:jar:sources:3.0.5", "dependencies": [ - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "org.checkerframework:checker-qual:jar:sources:3.26.0" + "com.google.errorprone:error_prone_annotations:jar:sources:2.10.0", + "org.checkerframework:checker-qual:jar:sources:3.19.0" ], "directDependencies": [ - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "org.checkerframework:checker-qual:jar:sources:3.26.0" + "com.google.errorprone:error_prone_annotations:jar:sources:2.10.0", + "org.checkerframework:checker-qual:jar:sources:3.19.0" ], - "file": "v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/3.1.1/caffeine-3.1.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/3.0.5/caffeine-3.0.5-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/3.1.1/caffeine-3.1.1-sources.jar" + "https://repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/3.0.5/caffeine-3.0.5-sources.jar" ], "packages": [], - "sha256": "556721ba39db04bf813f72631f4df834bf92dd53d17602c8f47f766a58699f7f", - "url": "https://repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/3.1.1/caffeine-3.1.1-sources.jar" + "sha256": "2cca8d1cdfdf33c1d0eec0214cdc6d93ff8a95136bf798465b10a5924a69bc65", + "url": "https://repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/3.0.5/caffeine-3.0.5-sources.jar" }, { - "coord": "com.github.pathikrit:better-files_2.13:3.9.1", + "coord": "com.github.pathikrit:better-files_2.13:3.8.0", "dependencies": [ "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/github/pathikrit/better-files_2.13/3.9.1/better-files_2.13-3.9.1.jar", + "file": "v1/https/repo1.maven.org/maven2/com/github/pathikrit/better-files_2.13/3.8.0/better-files_2.13-3.8.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/github/pathikrit/better-files_2.13/3.9.1/better-files_2.13-3.9.1.jar" + "https://repo1.maven.org/maven2/com/github/pathikrit/better-files_2.13/3.8.0/better-files_2.13-3.8.0.jar" ], "packages": [ "better.files" ], - "sha256": "5fa00f74c4b86a698dab3b9ac6868cc553f337ad1fe2f6dc07521bacfa61841b", - "url": "https://repo1.maven.org/maven2/com/github/pathikrit/better-files_2.13/3.9.1/better-files_2.13-3.9.1.jar" + "sha256": "335d41fa7a212771d9c65fb5e1a40fdbaefa9939eef22080a1af0982f24da698", + "url": "https://repo1.maven.org/maven2/com/github/pathikrit/better-files_2.13/3.8.0/better-files_2.13-3.8.0.jar" }, { - "coord": "com.github.pathikrit:better-files_2.13:jar:sources:3.9.1", + "coord": "com.github.pathikrit:better-files_2.13:jar:sources:3.8.0", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/github/pathikrit/better-files_2.13/3.9.1/better-files_2.13-3.9.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/github/pathikrit/better-files_2.13/3.8.0/better-files_2.13-3.8.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/github/pathikrit/better-files_2.13/3.9.1/better-files_2.13-3.9.1-sources.jar" + "https://repo1.maven.org/maven2/com/github/pathikrit/better-files_2.13/3.8.0/better-files_2.13-3.8.0-sources.jar" ], "packages": [], - "sha256": "f19a87a7c2aca64968e67229b47293152a3acd9a9f365217381abc1feb5d37d6", - "url": "https://repo1.maven.org/maven2/com/github/pathikrit/better-files_2.13/3.9.1/better-files_2.13-3.9.1-sources.jar" + "sha256": "55c6cf379400d4ba8829a5fbd397efab93400cbb8f4fd9436e4fbd4d19b82d5f", + "url": "https://repo1.maven.org/maven2/com/github/pathikrit/better-files_2.13/3.8.0/better-files_2.13-3.8.0-sources.jar" }, { - "coord": "com.github.pureconfig:pureconfig-core_2.13:0.17.1", + "coord": "com.github.pureconfig:pureconfig-core_2.13:0.14.0", "dependencies": [ - "com.typesafe:config:1.4.2", + "com.github.pureconfig:pureconfig-macros_2.13:0.14.0", + "com.typesafe:config:1.4.1", "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ - "com.typesafe:config:1.4.2", + "com.github.pureconfig:pureconfig-macros_2.13:0.14.0", + "com.typesafe:config:1.4.1", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/github/pureconfig/pureconfig-core_2.13/0.17.1/pureconfig-core_2.13-0.17.1.jar", + "file": "v1/https/repo1.maven.org/maven2/com/github/pureconfig/pureconfig-core_2.13/0.14.0/pureconfig-core_2.13-0.14.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-core_2.13/0.17.1/pureconfig-core_2.13-0.17.1.jar" + "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-core_2.13/0.14.0/pureconfig-core_2.13-0.14.0.jar" ], "packages": [ "pureconfig", "pureconfig.backend", "pureconfig.configurable", + "pureconfig.derivation", "pureconfig.error", "pureconfig.syntax" ], - "sha256": "42cb5649589023a0702a1ae19989f585465155c0524e7e662dc1a39b6f0f9621", - "url": "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-core_2.13/0.17.1/pureconfig-core_2.13-0.17.1.jar" + "sha256": "5b0496c8abd27c5a700954494ac78e38b6cb8f0c7acf36aadfed9513cd890269", + "url": "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-core_2.13/0.14.0/pureconfig-core_2.13-0.14.0.jar" }, { - "coord": "com.github.pureconfig:pureconfig-core_2.13:jar:sources:0.17.1", + "coord": "com.github.pureconfig:pureconfig-core_2.13:jar:sources:0.14.0", "dependencies": [ - "com.typesafe:config:jar:sources:1.4.2", + "com.github.pureconfig:pureconfig-macros_2.13:jar:sources:0.14.0", + "com.typesafe:config:jar:sources:1.4.1", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ - "com.typesafe:config:jar:sources:1.4.2", + "com.github.pureconfig:pureconfig-macros_2.13:jar:sources:0.14.0", + "com.typesafe:config:jar:sources:1.4.1", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/github/pureconfig/pureconfig-core_2.13/0.17.1/pureconfig-core_2.13-0.17.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/github/pureconfig/pureconfig-core_2.13/0.14.0/pureconfig-core_2.13-0.14.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-core_2.13/0.17.1/pureconfig-core_2.13-0.17.1-sources.jar" + "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-core_2.13/0.14.0/pureconfig-core_2.13-0.14.0-sources.jar" ], "packages": [], - "sha256": "e4b8cd6cccf1c7807355066943fe613909bac3c3a7886a888999c80c36196be8", - "url": "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-core_2.13/0.17.1/pureconfig-core_2.13-0.17.1-sources.jar" + "sha256": "4f9652c3434144b567e89100d30a679a0a3d8aeb2bf7000837beafa0eeb63784", + "url": "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-core_2.13/0.14.0/pureconfig-core_2.13-0.14.0-sources.jar" }, { - "coord": "com.github.pureconfig:pureconfig-generic-base_2.13:0.17.1", + "coord": "com.github.pureconfig:pureconfig-generic-base_2.13:0.14.0", "dependencies": [ - "com.github.pureconfig:pureconfig-core_2.13:0.17.1", - "com.typesafe:config:1.4.2", + "com.github.pureconfig:pureconfig-core_2.13:0.14.0", + "com.github.pureconfig:pureconfig-macros_2.13:0.14.0", + "com.typesafe:config:1.4.1", "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ - "com.github.pureconfig:pureconfig-core_2.13:0.17.1", + "com.github.pureconfig:pureconfig-core_2.13:0.14.0", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic-base_2.13/0.17.1/pureconfig-generic-base_2.13-0.17.1.jar", + "file": "v1/https/repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic-base_2.13/0.14.0/pureconfig-generic-base_2.13-0.14.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic-base_2.13/0.17.1/pureconfig-generic-base_2.13-0.17.1.jar" + "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic-base_2.13/0.14.0/pureconfig-generic-base_2.13-0.14.0.jar" ], "packages": [ "pureconfig.generic", "pureconfig.generic.error" ], - "sha256": "ed2fe388628bc34045f5a9a76025c4dc87dec10c4222080813b00435166957b1", - "url": "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic-base_2.13/0.17.1/pureconfig-generic-base_2.13-0.17.1.jar" + "sha256": "a18f5cfb8e719d98721816fa36bcc592ed18738f1e248536732d4f22ba8c1947", + "url": "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic-base_2.13/0.14.0/pureconfig-generic-base_2.13-0.14.0.jar" }, { - "coord": "com.github.pureconfig:pureconfig-generic-base_2.13:jar:sources:0.17.1", + "coord": "com.github.pureconfig:pureconfig-generic-base_2.13:jar:sources:0.14.0", "dependencies": [ - "com.github.pureconfig:pureconfig-core_2.13:jar:sources:0.17.1", - "com.typesafe:config:jar:sources:1.4.2", + "com.github.pureconfig:pureconfig-core_2.13:jar:sources:0.14.0", + "com.github.pureconfig:pureconfig-macros_2.13:jar:sources:0.14.0", + "com.typesafe:config:jar:sources:1.4.1", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ - "com.github.pureconfig:pureconfig-core_2.13:jar:sources:0.17.1", + "com.github.pureconfig:pureconfig-core_2.13:jar:sources:0.14.0", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic-base_2.13/0.17.1/pureconfig-generic-base_2.13-0.17.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic-base_2.13/0.14.0/pureconfig-generic-base_2.13-0.14.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic-base_2.13/0.17.1/pureconfig-generic-base_2.13-0.17.1-sources.jar" + "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic-base_2.13/0.14.0/pureconfig-generic-base_2.13-0.14.0-sources.jar" ], "packages": [], - "sha256": "331ec05e8d9fff273767ee088e0c2df94db01cd3764feb9edeea96c661b56783", - "url": "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic-base_2.13/0.17.1/pureconfig-generic-base_2.13-0.17.1-sources.jar" + "sha256": "af4f35463f558293a0516c838ea2ec1ec08a6db19ccbb4013e506886beb9d441", + "url": "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic-base_2.13/0.14.0/pureconfig-generic-base_2.13-0.14.0-sources.jar" }, { - "coord": "com.github.pureconfig:pureconfig-generic_2.13:0.17.1", + "coord": "com.github.pureconfig:pureconfig-generic_2.13:0.14.0", "dependencies": [ "com.chuusai:shapeless_2.13:2.3.3", - "com.github.pureconfig:pureconfig-core_2.13:0.17.1", - "com.github.pureconfig:pureconfig-generic-base_2.13:0.17.1", - "com.typesafe:config:1.4.2", + "com.github.pureconfig:pureconfig-core_2.13:0.14.0", + "com.github.pureconfig:pureconfig-generic-base_2.13:0.14.0", + "com.github.pureconfig:pureconfig-macros_2.13:0.14.0", + "com.typesafe:config:1.4.1", "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ "com.chuusai:shapeless_2.13:2.3.3", - "com.github.pureconfig:pureconfig-core_2.13:0.17.1", - "com.github.pureconfig:pureconfig-generic-base_2.13:0.17.1", + "com.github.pureconfig:pureconfig-core_2.13:0.14.0", + "com.github.pureconfig:pureconfig-generic-base_2.13:0.14.0", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic_2.13/0.17.1/pureconfig-generic_2.13-0.17.1.jar", + "file": "v1/https/repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic_2.13/0.14.0/pureconfig-generic_2.13-0.14.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic_2.13/0.17.1/pureconfig-generic_2.13-0.17.1.jar" + "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic_2.13/0.14.0/pureconfig-generic_2.13-0.14.0.jar" ], "packages": [ - "pureconfig.generic" + "pureconfig.generic", + "pureconfig.generic.error" ], - "sha256": "a0b4e105c66605da6bfccb7f271d310bb16581dd7bbb7a035461d89961a49b2a", - "url": "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic_2.13/0.17.1/pureconfig-generic_2.13-0.17.1.jar" + "sha256": "780c9ddb4c6daa96c71c1bc52070ac4b77831a3a240b8027ab29a7ff31c5e7d9", + "url": "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic_2.13/0.14.0/pureconfig-generic_2.13-0.14.0.jar" }, { - "coord": "com.github.pureconfig:pureconfig-generic_2.13:jar:sources:0.17.1", + "coord": "com.github.pureconfig:pureconfig-generic_2.13:jar:sources:0.14.0", "dependencies": [ "com.chuusai:shapeless_2.13:jar:sources:2.3.3", - "com.github.pureconfig:pureconfig-core_2.13:jar:sources:0.17.1", - "com.github.pureconfig:pureconfig-generic-base_2.13:jar:sources:0.17.1", - "com.typesafe:config:jar:sources:1.4.2", + "com.github.pureconfig:pureconfig-core_2.13:jar:sources:0.14.0", + "com.github.pureconfig:pureconfig-generic-base_2.13:jar:sources:0.14.0", + "com.github.pureconfig:pureconfig-macros_2.13:jar:sources:0.14.0", + "com.typesafe:config:jar:sources:1.4.1", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ "com.chuusai:shapeless_2.13:jar:sources:2.3.3", - "com.github.pureconfig:pureconfig-core_2.13:jar:sources:0.17.1", - "com.github.pureconfig:pureconfig-generic-base_2.13:jar:sources:0.17.1", + "com.github.pureconfig:pureconfig-core_2.13:jar:sources:0.14.0", + "com.github.pureconfig:pureconfig-generic-base_2.13:jar:sources:0.14.0", + "org.scala-lang:scala-library:jar:sources:2.13.8" + ], + "file": "v1/https/repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic_2.13/0.14.0/pureconfig-generic_2.13-0.14.0-sources.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic_2.13/0.14.0/pureconfig-generic_2.13-0.14.0-sources.jar" + ], + "packages": [], + "sha256": "7e4ac0c0c348c6760b31299a637ff0c50e0d1664277c9ee362dd4a4084f09407", + "url": "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic_2.13/0.14.0/pureconfig-generic_2.13-0.14.0-sources.jar" + }, + { + "coord": "com.github.pureconfig:pureconfig-macros_2.12:0.14.0", + "dependencies": [ + "org.scala-lang:scala-library:2.13.8" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.8" + ], + "file": "v1/https/repo1.maven.org/maven2/com/github/pureconfig/pureconfig-macros_2.12/0.14.0/pureconfig-macros_2.12-0.14.0.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-macros_2.12/0.14.0/pureconfig-macros_2.12-0.14.0.jar" + ], + "packages": [ + "pureconfig", + "pureconfig.derivation" + ], + "sha256": "a40065ad4b9902b8d5d898a0fa6e20123afb9ee7bb3d086199088b4cf14cd19d", + "url": "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-macros_2.12/0.14.0/pureconfig-macros_2.12-0.14.0.jar" + }, + { + "coord": "com.github.pureconfig:pureconfig-macros_2.12:jar:sources:0.14.0", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.8" + ], + "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic_2.13/0.17.1/pureconfig-generic_2.13-0.17.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/github/pureconfig/pureconfig-macros_2.12/0.14.0/pureconfig-macros_2.12-0.14.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic_2.13/0.17.1/pureconfig-generic_2.13-0.17.1-sources.jar" + "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-macros_2.12/0.14.0/pureconfig-macros_2.12-0.14.0-sources.jar" ], "packages": [], - "sha256": "dddf6bcda46e9776bb6ea5de4185da1fc310f8ec67cad9d8e951bcab47ff9c22", - "url": "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-generic_2.13/0.17.1/pureconfig-generic_2.13-0.17.1-sources.jar" + "sha256": "ba82688a0db2885f07865ef0575f2cc3b1c67c84f051bd8d1fa3af86188fdda5", + "url": "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-macros_2.12/0.14.0/pureconfig-macros_2.12-0.14.0-sources.jar" }, { - "coord": "com.github.pureconfig:pureconfig-macros_2.12:0.14.1", + "coord": "com.github.pureconfig:pureconfig-macros_2.13:0.14.0", "dependencies": [ "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/github/pureconfig/pureconfig-macros_2.12/0.14.1/pureconfig-macros_2.12-0.14.1.jar", + "file": "v1/https/repo1.maven.org/maven2/com/github/pureconfig/pureconfig-macros_2.13/0.14.0/pureconfig-macros_2.13-0.14.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-macros_2.12/0.14.1/pureconfig-macros_2.12-0.14.1.jar" + "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-macros_2.13/0.14.0/pureconfig-macros_2.13-0.14.0.jar" ], "packages": [ "pureconfig", "pureconfig.derivation" ], - "sha256": "9ebfbd5728094f0e92b09a16146866f45908743f71446de0e3ac249ca1ab52f3", - "url": "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-macros_2.12/0.14.1/pureconfig-macros_2.12-0.14.1.jar" + "sha256": "1be643febb527ace8a5ad711f9f572691e67f8e1825def739c465da9b9cdb4bd", + "url": "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-macros_2.13/0.14.0/pureconfig-macros_2.13-0.14.0.jar" }, { - "coord": "com.github.pureconfig:pureconfig-macros_2.12:jar:sources:0.14.1", + "coord": "com.github.pureconfig:pureconfig-macros_2.13:jar:sources:0.14.0", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/github/pureconfig/pureconfig-macros_2.12/0.14.1/pureconfig-macros_2.12-0.14.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/github/pureconfig/pureconfig-macros_2.13/0.14.0/pureconfig-macros_2.13-0.14.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-macros_2.12/0.14.1/pureconfig-macros_2.12-0.14.1-sources.jar" + "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-macros_2.13/0.14.0/pureconfig-macros_2.13-0.14.0-sources.jar" ], "packages": [], - "sha256": "5f9a1fb55b7c4071ecd85fca50669eacb5aaca9f15875382a355e5fe9f9f653f", - "url": "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-macros_2.12/0.14.1/pureconfig-macros_2.12-0.14.1-sources.jar" + "sha256": "86d55df5ed0bf329c500f7b7af5d64bba09f270fa26145f1461eee1ca865de0c", + "url": "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig-macros_2.13/0.14.0/pureconfig-macros_2.13-0.14.0-sources.jar" }, { - "coord": "com.github.pureconfig:pureconfig_2.13:0.17.1", + "coord": "com.github.pureconfig:pureconfig_2.13:0.14.0", "dependencies": [ "com.chuusai:shapeless_2.13:2.3.3", - "com.github.pureconfig:pureconfig-core_2.13:0.17.1", - "com.github.pureconfig:pureconfig-generic-base_2.13:0.17.1", - "com.github.pureconfig:pureconfig-generic_2.13:0.17.1", - "com.typesafe:config:1.4.2", + "com.github.pureconfig:pureconfig-core_2.13:0.14.0", + "com.github.pureconfig:pureconfig-generic-base_2.13:0.14.0", + "com.github.pureconfig:pureconfig-generic_2.13:0.14.0", + "com.github.pureconfig:pureconfig-macros_2.13:0.14.0", + "com.typesafe:config:1.4.1", "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ - "com.github.pureconfig:pureconfig-core_2.13:0.17.1", - "com.github.pureconfig:pureconfig-generic_2.13:0.17.1", + "com.github.pureconfig:pureconfig-core_2.13:0.14.0", + "com.github.pureconfig:pureconfig-generic_2.13:0.14.0", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/github/pureconfig/pureconfig_2.13/0.17.1/pureconfig_2.13-0.17.1.jar", + "file": "v1/https/repo1.maven.org/maven2/com/github/pureconfig/pureconfig_2.13/0.14.0/pureconfig_2.13-0.14.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig_2.13/0.17.1/pureconfig_2.13-0.17.1.jar" + "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig_2.13/0.14.0/pureconfig_2.13-0.14.0.jar" ], "packages": [], - "sha256": "d3624470c6f3b7b2c820a983a5d6e4be8a0f9eaabca9c589f3e365e8fafd482d", - "url": "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig_2.13/0.17.1/pureconfig_2.13-0.17.1.jar" + "sha256": "a76ebb105d3ac82d1a5d0f0142035416d4f50d252728a05cac2717a458911d21", + "url": "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig_2.13/0.14.0/pureconfig_2.13-0.14.0.jar" }, { - "coord": "com.github.pureconfig:pureconfig_2.13:jar:sources:0.17.1", + "coord": "com.github.pureconfig:pureconfig_2.13:jar:sources:0.14.0", "dependencies": [ "com.chuusai:shapeless_2.13:jar:sources:2.3.3", - "com.github.pureconfig:pureconfig-core_2.13:jar:sources:0.17.1", - "com.github.pureconfig:pureconfig-generic-base_2.13:jar:sources:0.17.1", - "com.github.pureconfig:pureconfig-generic_2.13:jar:sources:0.17.1", - "com.typesafe:config:jar:sources:1.4.2", + "com.github.pureconfig:pureconfig-core_2.13:jar:sources:0.14.0", + "com.github.pureconfig:pureconfig-generic-base_2.13:jar:sources:0.14.0", + "com.github.pureconfig:pureconfig-generic_2.13:jar:sources:0.14.0", + "com.github.pureconfig:pureconfig-macros_2.13:jar:sources:0.14.0", + "com.typesafe:config:jar:sources:1.4.1", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ - "com.github.pureconfig:pureconfig-core_2.13:jar:sources:0.17.1", - "com.github.pureconfig:pureconfig-generic_2.13:jar:sources:0.17.1", + "com.github.pureconfig:pureconfig-core_2.13:jar:sources:0.14.0", + "com.github.pureconfig:pureconfig-generic_2.13:jar:sources:0.14.0", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/github/pureconfig/pureconfig_2.13/0.17.1/pureconfig_2.13-0.17.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/github/pureconfig/pureconfig_2.13/0.14.0/pureconfig_2.13-0.14.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig_2.13/0.17.1/pureconfig_2.13-0.17.1-sources.jar" + "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig_2.13/0.14.0/pureconfig_2.13-0.14.0-sources.jar" ], "packages": [], - "sha256": "03e7ca340d0ac4d5d003ca84bb11558696adb9c266183b4afba67aea5f4b633f", - "url": "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig_2.13/0.17.1/pureconfig_2.13-0.17.1-sources.jar" + "sha256": "ccc717887dabc66c03b4b887738c962d5ceb75fcd140b81913a3ce228941d170", + "url": "https://repo1.maven.org/maven2/com/github/pureconfig/pureconfig_2.13/0.14.0/pureconfig_2.13-0.14.0-sources.jar" }, { - "coord": "com.github.scopt:scopt_2.13:4.1.0", + "coord": "com.github.scopt:scopt_2.13:4.0.0", "dependencies": [ "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/github/scopt/scopt_2.13/4.1.0/scopt_2.13-4.1.0.jar", + "file": "v1/https/repo1.maven.org/maven2/com/github/scopt/scopt_2.13/4.0.0/scopt_2.13-4.0.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/github/scopt/scopt_2.13/4.1.0/scopt_2.13-4.1.0.jar" + "https://repo1.maven.org/maven2/com/github/scopt/scopt_2.13/4.0.0/scopt_2.13-4.0.0.jar" ], "packages": [ "scopt" ], - "sha256": "2e5037bda974630b046794274e344273919abf4727acfcd86352617dce68f82b", - "url": "https://repo1.maven.org/maven2/com/github/scopt/scopt_2.13/4.1.0/scopt_2.13-4.1.0.jar" + "sha256": "4ea2f3482e52e32d5331074a35f83d3899c0e80edfebfa1d9c18430b5fe5a4bb", + "url": "https://repo1.maven.org/maven2/com/github/scopt/scopt_2.13/4.0.0/scopt_2.13-4.0.0.jar" }, { - "coord": "com.github.scopt:scopt_2.13:jar:sources:4.1.0", + "coord": "com.github.scopt:scopt_2.13:jar:sources:4.0.0", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/github/scopt/scopt_2.13/4.1.0/scopt_2.13-4.1.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/github/scopt/scopt_2.13/4.0.0/scopt_2.13-4.0.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/github/scopt/scopt_2.13/4.1.0/scopt_2.13-4.1.0-sources.jar" + "https://repo1.maven.org/maven2/com/github/scopt/scopt_2.13/4.0.0/scopt_2.13-4.0.0-sources.jar" ], "packages": [], - "sha256": "846454a216c4c90420adae519864a70f70a17fac0d531ab24250755aabed0a36", - "url": "https://repo1.maven.org/maven2/com/github/scopt/scopt_2.13/4.1.0/scopt_2.13-4.1.0-sources.jar" + "sha256": "815aa6a53612d0b2f09e52fb86c7eddf062334395eb18ac577749e6a0f768a3c", + "url": "https://repo1.maven.org/maven2/com/github/scopt/scopt_2.13/4.0.0/scopt_2.13-4.0.0-sources.jar" }, { "coord": "com.github.tototoshi:scala-csv_2.13:1.3.10", @@ -1114,25 +1059,23 @@ "url": "https://repo1.maven.org/maven2/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4-sources.jar" }, { - "coord": "com.google.api.grpc:proto-google-common-protos:2.9.0", + "coord": "com.google.api.grpc:proto-google-common-protos:2.0.1", "dependencies": [ - "com.google.protobuf:protobuf-java:3.21.7" + "com.google.protobuf:protobuf-java:3.19.3" ], "directDependencies": [ - "com.google.protobuf:protobuf-java:3.21.7" + "com.google.protobuf:protobuf-java:3.19.3" ], "exclusions": [ "com.google.api:api-common" ], - "file": "v1/https/repo1.maven.org/maven2/com/google/api/grpc/proto-google-common-protos/2.9.0/proto-google-common-protos-2.9.0.jar", + "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", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/api/grpc/proto-google-common-protos/2.9.0/proto-google-common-protos-2.9.0.jar" + "https://repo1.maven.org/maven2/com/google/api/grpc/proto-google-common-protos/2.0.1/proto-google-common-protos-2.0.1.jar" ], "packages": [ "com.google.api", - "com.google.cloud", "com.google.cloud.audit", - "com.google.cloud.location", "com.google.geo.type", "com.google.logging.type", "com.google.longrunning", @@ -1140,129 +1083,27 @@ "com.google.rpc.context", "com.google.type" ], - "sha256": "0d830380ec66bd7e25eee63aa0a5a08578e46ad187fb72d99b44d9ba22827f91", - "url": "https://repo1.maven.org/maven2/com/google/api/grpc/proto-google-common-protos/2.9.0/proto-google-common-protos-2.9.0.jar" + "sha256": "5ce71656118618731e34a5d4c61aa3a031be23446dc7de8b5a5e77b66ebcd6ef", + "url": "https://repo1.maven.org/maven2/com/google/api/grpc/proto-google-common-protos/2.0.1/proto-google-common-protos-2.0.1.jar" }, { - "coord": "com.google.api.grpc:proto-google-common-protos:jar:sources:2.9.0", + "coord": "com.google.api.grpc:proto-google-common-protos:jar:sources:2.0.1", "dependencies": [ - "com.google.protobuf:protobuf-java:jar:sources:3.21.7" + "com.google.protobuf:protobuf-java:jar:sources:3.19.3" ], "directDependencies": [ - "com.google.protobuf:protobuf-java:jar:sources:3.21.7" + "com.google.protobuf:protobuf-java:jar:sources:3.19.3" ], "exclusions": [ "com.google.api:api-common" ], - "file": "v1/https/repo1.maven.org/maven2/com/google/api/grpc/proto-google-common-protos/2.9.0/proto-google-common-protos-2.9.0-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/api/grpc/proto-google-common-protos/2.9.0/proto-google-common-protos-2.9.0-sources.jar" - ], - "packages": [], - "sha256": "ea54fe7b9585f69f819c63dec60d8334654ece38e331fa8d6ed11e11a6affba2", - "url": "https://repo1.maven.org/maven2/com/google/api/grpc/proto-google-common-protos/2.9.0/proto-google-common-protos-2.9.0-sources.jar" - }, - { - "coord": "com.google.auto.service:auto-service-annotations:1.0.1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/google/auto/service/auto-service-annotations/1.0.1/auto-service-annotations-1.0.1.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/auto/service/auto-service-annotations/1.0.1/auto-service-annotations-1.0.1.jar" - ], - "packages": [ - "com.google.auto.service" - ], - "sha256": "c7bec54b7b5588b5967e870341091c5691181d954cf2039f1bf0a6eeb837473b", - "url": "https://repo1.maven.org/maven2/com/google/auto/service/auto-service-annotations/1.0.1/auto-service-annotations-1.0.1.jar" - }, - { - "coord": "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/google/auto/service/auto-service-annotations/1.0.1/auto-service-annotations-1.0.1-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/auto/service/auto-service-annotations/1.0.1/auto-service-annotations-1.0.1-sources.jar" - ], - "packages": [], - "sha256": "b013ca159b0fea3a0041d3d5fbb3b7e49a819da80a172a01fb17dd28fd98e72b", - "url": "https://repo1.maven.org/maven2/com/google/auto/service/auto-service-annotations/1.0.1/auto-service-annotations-1.0.1-sources.jar" - }, - { - "coord": "com.google.auto.service:auto-service:1.0.1", - "dependencies": [ - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto:auto-common:1.2", - "com.google.guava:guava:31.1-jre" - ], - "directDependencies": [ - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto:auto-common:1.2", - "com.google.guava:guava:31.1-jre" - ], - "file": "v1/https/repo1.maven.org/maven2/com/google/auto/service/auto-service/1.0.1/auto-service-1.0.1.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/auto/service/auto-service/1.0.1/auto-service-1.0.1.jar" - ], - "packages": [ - "com.google.auto.service.processor" - ], - "sha256": "88d469a5392dc2a292dfa20432591a584c29fae417cfd88b72620f35ec795acf", - "url": "https://repo1.maven.org/maven2/com/google/auto/service/auto-service/1.0.1/auto-service-1.0.1.jar" - }, - { - "coord": "com.google.auto.service:auto-service:jar:sources:1.0.1", - "dependencies": [ - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto:auto-common:jar:sources:1.2", - "com.google.guava:guava:jar:sources:31.1-jre" - ], - "directDependencies": [ - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto:auto-common:jar:sources:1.2", - "com.google.guava:guava:jar:sources:31.1-jre" - ], - "file": "v1/https/repo1.maven.org/maven2/com/google/auto/service/auto-service/1.0.1/auto-service-1.0.1-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/auto/service/auto-service/1.0.1/auto-service-1.0.1-sources.jar" - ], - "packages": [], - "sha256": "704a261cdd500ac47636d09b92a3a2b75f3b9484a3ce8fc3b08f66574fc1fbb2", - "url": "https://repo1.maven.org/maven2/com/google/auto/service/auto-service/1.0.1/auto-service-1.0.1-sources.jar" - }, - { - "coord": "com.google.auto:auto-common:1.2", - "dependencies": [ - "com.google.guava:guava:31.1-jre" - ], - "directDependencies": [ - "com.google.guava:guava:31.1-jre" - ], - "file": "v1/https/repo1.maven.org/maven2/com/google/auto/auto-common/1.2/auto-common-1.2.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/auto/auto-common/1.2/auto-common-1.2.jar" - ], - "packages": [ - "com.google.auto.common" - ], - "sha256": "326d674b411ea67505273f9ade5311c15bca50644b5211a6c309c9aee590a20a", - "url": "https://repo1.maven.org/maven2/com/google/auto/auto-common/1.2/auto-common-1.2.jar" - }, - { - "coord": "com.google.auto:auto-common:jar:sources:1.2", - "dependencies": [ - "com.google.guava:guava:jar:sources:31.1-jre" - ], - "directDependencies": [ - "com.google.guava:guava:jar:sources:31.1-jre" - ], - "file": "v1/https/repo1.maven.org/maven2/com/google/auto/auto-common/1.2/auto-common-1.2-sources.jar", + "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", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/auto/auto-common/1.2/auto-common-1.2-sources.jar" + "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" ], "packages": [], - "sha256": "5ed509e12f9bf2c90dc5c26e4e94eb97a7e747c59ad527b018b9567b398b56b1", - "url": "https://repo1.maven.org/maven2/com/google/auto/auto-common/1.2/auto-common-1.2-sources.jar" + "sha256": "e5caddf23bcb7224ade6d3809e073f02715b76779540db58c5a76b994b7a07e7", + "url": "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" }, { "coord": "com.google.code.findbugs:jsr305:3.0.2", @@ -1293,12 +1134,12 @@ "url": "https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2-sources.jar" }, { - "coord": "com.google.code.gson:gson:2.9.1", + "coord": "com.google.code.gson:gson:2.9.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/google/code/gson/gson/2.9.1/gson-2.9.1.jar", + "file": "v1/https/repo1.maven.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/code/gson/gson/2.9.1/gson-2.9.1.jar" + "https://repo1.maven.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar" ], "packages": [ "com.google.gson", @@ -1311,47 +1152,53 @@ "com.google.gson.reflect", "com.google.gson.stream" ], - "sha256": "378534e339e6e6d50b1736fb3abb76f1c15d1be3f4c13cec6d536412e23da603", - "url": "https://repo1.maven.org/maven2/com/google/code/gson/gson/2.9.1/gson-2.9.1.jar" + "sha256": "c96d60551331a196dac54b745aa642cd078ef89b6f267146b705f2c2cbef052d", + "url": "https://repo1.maven.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar" }, { - "coord": "com.google.code.gson:gson:jar:sources:2.9.1", + "coord": "com.google.code.gson:gson:jar:sources:2.9.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/google/code/gson/gson/2.9.1/gson-2.9.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/code/gson/gson/2.9.1/gson-2.9.1-sources.jar" + "https://repo1.maven.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0-sources.jar" ], "packages": [], - "sha256": "2a5e4bc49e34643467e9a595f32d8982408c9825f2959af2ae2bf79b57ba306c", - "url": "https://repo1.maven.org/maven2/com/google/code/gson/gson/2.9.1/gson-2.9.1-sources.jar" + "sha256": "75429446e9d9e90c5b6a84aa06d8d27783f29c70b3de65a6c2d50d27cece64dc", + "url": "https://repo1.maven.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0-sources.jar" }, { - "coord": "com.google.errorprone:error_prone_annotations:2.14.0", + "coord": "com.google.errorprone:error_prone_annotations:2.10.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.14.0/error_prone_annotations-2.14.0.jar", + "exclusions": [ + "org.hamcrest:hamcrest-core" + ], + "file": "v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.14.0/error_prone_annotations-2.14.0.jar" + "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar" ], "packages": [ "com.google.errorprone.annotations", "com.google.errorprone.annotations.concurrent" ], - "sha256": "1494e24e7bd5496e7d6f705169dddd46081cefb882ea4fc60b4a58ca50767f34", - "url": "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.14.0/error_prone_annotations-2.14.0.jar" + "sha256": "a249d4d25dfb86d41e6c82fc335df580189f0c9feeabdc53233fc1e5060724a1", + "url": "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar" }, { - "coord": "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", + "coord": "com.google.errorprone:error_prone_annotations:jar:sources:2.10.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.14.0/error_prone_annotations-2.14.0-sources.jar", + "exclusions": [ + "org.hamcrest:hamcrest-core" + ], + "file": "v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.14.0/error_prone_annotations-2.14.0-sources.jar" + "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0-sources.jar" ], "packages": [], - "sha256": "cd3098cda0bb04ffd029582ff6edb9f4ce3fecc371dd8253a1be121f2292aea8", - "url": "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.14.0/error_prone_annotations-2.14.0-sources.jar" + "sha256": "4984c3dc4a90409bbd43f1c04b3790c17fc8352574656041211f38506895f7ce", + "url": "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0-sources.jar" }, { "coord": "com.google.guava:failureaccess:1.0.1", @@ -1380,26 +1227,26 @@ "url": "https://repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1-sources.jar" }, { - "coord": "com.google.guava:guava:31.1-jre", + "coord": "com.google.guava:guava:31.0.1-jre", "dependencies": [ "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.14.0", + "com.google.errorprone:error_prone_annotations:2.10.0", "com.google.guava:failureaccess:1.0.1", "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", "com.google.j2objc:j2objc-annotations:1.3", - "org.checkerframework:checker-qual:3.26.0" + "org.checkerframework:checker-qual:3.19.0" ], "directDependencies": [ "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.14.0", + "com.google.errorprone:error_prone_annotations:2.10.0", "com.google.guava:failureaccess:1.0.1", "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", "com.google.j2objc:j2objc-annotations:1.3", - "org.checkerframework:checker-qual:3.26.0" + "org.checkerframework:checker-qual:3.19.0" ], - "file": "v1/https/repo1.maven.org/maven2/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar", + "file": "v1/https/repo1.maven.org/maven2/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar" + "https://repo1.maven.org/maven2/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar" ], "packages": [ "com.google.common.annotations", @@ -1421,34 +1268,34 @@ "com.google.common.xml", "com.google.thirdparty.publicsuffix" ], - "sha256": "a42edc9cab792e39fe39bb94f3fca655ed157ff87a8af78e1d6ba5b07c4a00ab", - "url": "https://repo1.maven.org/maven2/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar" + "sha256": "d5be94d65e87bd219fb3193ad1517baa55a3b88fc91d21cf735826ab5af087b9", + "url": "https://repo1.maven.org/maven2/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar" }, { - "coord": "com.google.guava:guava:jar:sources:31.1-jre", + "coord": "com.google.guava:guava:jar:sources:31.0.1-jre", "dependencies": [ "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", + "com.google.errorprone:error_prone_annotations:jar:sources:2.10.0", "com.google.guava:failureaccess:jar:sources:1.0.1", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "com.google.j2objc:j2objc-annotations:jar:sources:1.3", - "org.checkerframework:checker-qual:jar:sources:3.26.0" + "org.checkerframework:checker-qual:jar:sources:3.19.0" ], "directDependencies": [ "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", + "com.google.errorprone:error_prone_annotations:jar:sources:2.10.0", "com.google.guava:failureaccess:jar:sources:1.0.1", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "com.google.j2objc:j2objc-annotations:jar:sources:1.3", - "org.checkerframework:checker-qual:jar:sources:3.26.0" + "org.checkerframework:checker-qual:jar:sources:3.19.0" ], - "file": "v1/https/repo1.maven.org/maven2/com/google/guava/guava/31.1-jre/guava-31.1-jre-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/guava/guava/31.1-jre/guava-31.1-jre-sources.jar" + "https://repo1.maven.org/maven2/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre-sources.jar" ], "packages": [], - "sha256": "8ab1853cdaf936ec88be80c17302b7c20abafbd4f54d4fb54d7011c529e3a44a", - "url": "https://repo1.maven.org/maven2/com/google/guava/guava/31.1-jre/guava-31.1-jre-sources.jar" + "sha256": "fc0fb66f315f10b8713fc43354936d3649a8ad63f789d42fd7c3e55ecf72e092", + "url": "https://repo1.maven.org/maven2/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre-sources.jar" }, { "coord": "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", @@ -1495,85 +1342,85 @@ "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.21.7", + "coord": "com.google.protobuf:protobuf-java-util:3.19.2", "dependencies": [ "com.google.code.findbugs:jsr305:3.0.2", - "com.google.code.gson:gson:2.9.1", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:guava:31.1-jre", + "com.google.code.gson:gson:2.9.0", + "com.google.errorprone:error_prone_annotations:2.10.0", + "com.google.guava:guava:31.0.1-jre", "com.google.j2objc:j2objc-annotations:1.3", - "com.google.protobuf:protobuf-java:3.21.7" + "com.google.protobuf:protobuf-java:3.19.3" ], "directDependencies": [ "com.google.code.findbugs:jsr305:3.0.2", - "com.google.code.gson:gson:2.9.1", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:guava:31.1-jre", + "com.google.code.gson:gson:2.9.0", + "com.google.errorprone:error_prone_annotations:2.10.0", + "com.google.guava:guava:31.0.1-jre", "com.google.j2objc:j2objc-annotations:1.3", - "com.google.protobuf:protobuf-java:3.21.7" + "com.google.protobuf:protobuf-java:3.19.3" ], - "file": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.21.7/protobuf-java-util-3.21.7.jar", + "file": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.19.2/protobuf-java-util-3.19.2.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.21.7/protobuf-java-util-3.21.7.jar" + "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.19.2/protobuf-java-util-3.19.2.jar" ], "packages": [ "com.google.protobuf.util" ], - "sha256": "9b98a2a4eb9ebc6103b14ab81badb82e32c8fe1d751aa4055830424974b7e142", - "url": "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.21.7/protobuf-java-util-3.21.7.jar" + "sha256": "9588d67db391b19cffb4ec658d9365ac5362b2089661c157fd27f21380cdd1e8", + "url": "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.19.2/protobuf-java-util-3.19.2.jar" }, { - "coord": "com.google.protobuf:protobuf-java-util:jar:sources:3.21.7", + "coord": "com.google.protobuf:protobuf-java-util:jar:sources:3.19.2", "dependencies": [ "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.code.gson:gson:jar:sources:2.9.1", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:guava:jar:sources:31.1-jre", + "com.google.code.gson:gson:jar:sources:2.9.0", + "com.google.errorprone:error_prone_annotations:jar:sources:2.10.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", "com.google.j2objc:j2objc-annotations:jar:sources:1.3", - "com.google.protobuf:protobuf-java:jar:sources:3.21.7" + "com.google.protobuf:protobuf-java:jar:sources:3.19.3" ], "directDependencies": [ "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.code.gson:gson:jar:sources:2.9.1", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:guava:jar:sources:31.1-jre", + "com.google.code.gson:gson:jar:sources:2.9.0", + "com.google.errorprone:error_prone_annotations:jar:sources:2.10.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", "com.google.j2objc:j2objc-annotations:jar:sources:1.3", - "com.google.protobuf:protobuf-java:jar:sources:3.21.7" + "com.google.protobuf:protobuf-java:jar:sources:3.19.3" ], - "file": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.21.7/protobuf-java-util-3.21.7-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.19.2/protobuf-java-util-3.19.2-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.21.7/protobuf-java-util-3.21.7-sources.jar" + "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.19.2/protobuf-java-util-3.19.2-sources.jar" ], "packages": [], - "sha256": "43b9188848b01cec71d34326868e25c102b2a344c6ef1072d54c3681559c5f57", - "url": "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.21.7/protobuf-java-util-3.21.7-sources.jar" + "sha256": "1733265b9938f062042cb70a3f330617885351097bddc1dd3e22eed9d803530f", + "url": "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.19.2/protobuf-java-util-3.19.2-sources.jar" }, { - "coord": "com.google.protobuf:protobuf-java:3.21.7", + "coord": "com.google.protobuf:protobuf-java:3.19.3", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.21.7/protobuf-java-3.21.7.jar", + "file": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.19.3/protobuf-java-3.19.3.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.21.7/protobuf-java-3.21.7.jar" + "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.19.3/protobuf-java-3.19.3.jar" ], "packages": [ "com.google.protobuf", "com.google.protobuf.compiler" ], - "sha256": "a204ec68748a7b26351ae37a311e8de468f248d1916d5f8dbe812c1289d0a0ff", - "url": "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.21.7/protobuf-java-3.21.7.jar" + "sha256": "440642e3b526663d1c15b4a2071c2696f2a25f031332ac3eb43f63969d819b3d", + "url": "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.19.3/protobuf-java-3.19.3.jar" }, { - "coord": "com.google.protobuf:protobuf-java:jar:sources:3.21.7", + "coord": "com.google.protobuf:protobuf-java:jar:sources:3.19.3", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.21.7/protobuf-java-3.21.7-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.19.3/protobuf-java-3.19.3-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.21.7/protobuf-java-3.21.7-sources.jar" + "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.19.3/protobuf-java-3.19.3-sources.jar" ], "packages": [], - "sha256": "c664e12e6e3fea801477edf95014980a8a96528d3904d2add90c68b5d047a6c2", - "url": "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.21.7/protobuf-java-3.21.7-sources.jar" + "sha256": "5ea4993336a2dc4f28140c365e2841f07f61275d899a01a5fc54de1ef853f895", + "url": "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.19.3/protobuf-java-3.19.3-sources.jar" }, { "coord": "com.h2database:h2:2.1.210", @@ -1659,52 +1506,48 @@ "url": "https://repo1.maven.org/maven2/com/h2database/h2/2.1.210/h2-2.1.210-sources.jar" }, { - "coord": "com.lihaoyi:fansi_2.13:0.4.0", + "coord": "com.lihaoyi:fansi_2.13:0.3.0", "dependencies": [ - "com.lihaoyi:sourcecode_2.13:0.3.0", - "org.scala-lang:scala-library:2.13.8" + "com.lihaoyi:sourcecode_2.13:0.2.7" ], "directDependencies": [ - "com.lihaoyi:sourcecode_2.13:0.3.0", - "org.scala-lang:scala-library:2.13.8" + "com.lihaoyi:sourcecode_2.13:0.2.7" ], - "file": "v1/https/repo1.maven.org/maven2/com/lihaoyi/fansi_2.13/0.4.0/fansi_2.13-0.4.0.jar", + "file": "v1/https/repo1.maven.org/maven2/com/lihaoyi/fansi_2.13/0.3.0/fansi_2.13-0.3.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/lihaoyi/fansi_2.13/0.4.0/fansi_2.13-0.4.0.jar" + "https://repo1.maven.org/maven2/com/lihaoyi/fansi_2.13/0.3.0/fansi_2.13-0.3.0.jar" ], "packages": [ "fansi" ], - "sha256": "0eb11a2a905d608033ec1642b0a9f0d8444daa4ad465f684b50bdc7e7a41bf53", - "url": "https://repo1.maven.org/maven2/com/lihaoyi/fansi_2.13/0.4.0/fansi_2.13-0.4.0.jar" + "sha256": "2f1d4cdd8971ef2cca8c37da8a04cb0ecf94bc89e59c6383185e88cde21f2e86", + "url": "https://repo1.maven.org/maven2/com/lihaoyi/fansi_2.13/0.3.0/fansi_2.13-0.3.0.jar" }, { - "coord": "com.lihaoyi:fansi_2.13:jar:sources:0.4.0", + "coord": "com.lihaoyi:fansi_2.13:jar:sources:0.3.0", "dependencies": [ - "com.lihaoyi:sourcecode_2.13:jar:sources:0.3.0", - "org.scala-lang:scala-library:jar:sources:2.13.8" + "com.lihaoyi:sourcecode_2.13:jar:sources:0.2.7" ], "directDependencies": [ - "com.lihaoyi:sourcecode_2.13:jar:sources:0.3.0", - "org.scala-lang:scala-library:jar:sources:2.13.8" + "com.lihaoyi:sourcecode_2.13:jar:sources:0.2.7" ], - "file": "v1/https/repo1.maven.org/maven2/com/lihaoyi/fansi_2.13/0.4.0/fansi_2.13-0.4.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/lihaoyi/fansi_2.13/0.3.0/fansi_2.13-0.3.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/lihaoyi/fansi_2.13/0.4.0/fansi_2.13-0.4.0-sources.jar" + "https://repo1.maven.org/maven2/com/lihaoyi/fansi_2.13/0.3.0/fansi_2.13-0.3.0-sources.jar" ], "packages": [], - "sha256": "3f35ad0b089ba6fe655cc9e75374eb9740ec599a4cde5a50e3dc1a9edf2ccc34", - "url": "https://repo1.maven.org/maven2/com/lihaoyi/fansi_2.13/0.4.0/fansi_2.13-0.4.0-sources.jar" + "sha256": "9c3bc0d9cf55541edfffcfbce818fdda20bf60238d279327bb47d80767e0bea3", + "url": "https://repo1.maven.org/maven2/com/lihaoyi/fansi_2.13/0.3.0/fansi_2.13-0.3.0-sources.jar" }, { "coord": "com.lihaoyi:fastparse_2.13:2.3.0", "dependencies": [ "com.lihaoyi:geny_2.13:0.6.2", - "com.lihaoyi:sourcecode_2.13:0.3.0" + "com.lihaoyi:sourcecode_2.13:0.2.7" ], "directDependencies": [ "com.lihaoyi:geny_2.13:0.6.2", - "com.lihaoyi:sourcecode_2.13:0.3.0" + "com.lihaoyi:sourcecode_2.13:0.2.7" ], "file": "v1/https/repo1.maven.org/maven2/com/lihaoyi/fastparse_2.13/2.3.0/fastparse_2.13-2.3.0.jar", "mirror_urls": [ @@ -1721,11 +1564,11 @@ "coord": "com.lihaoyi:fastparse_2.13:jar:sources:2.3.0", "dependencies": [ "com.lihaoyi:geny_2.13:jar:sources:0.6.2", - "com.lihaoyi:sourcecode_2.13:jar:sources:0.3.0" + "com.lihaoyi:sourcecode_2.13:jar:sources:0.2.7" ], "directDependencies": [ "com.lihaoyi:geny_2.13:jar:sources:0.6.2", - "com.lihaoyi:sourcecode_2.13:jar:sources:0.3.0" + "com.lihaoyi:sourcecode_2.13:jar:sources:0.2.7" ], "file": "v1/https/repo1.maven.org/maven2/com/lihaoyi/fastparse_2.13/2.3.0/fastparse_2.13-2.3.0-sources.jar", "mirror_urls": [ @@ -1796,56 +1639,52 @@ "url": "https://repo1.maven.org/maven2/com/lihaoyi/os-lib_2.13/0.7.1/os-lib_2.13-0.7.1-sources.jar" }, { - "coord": "com.lihaoyi:pprint_2.13:0.8.0", + "coord": "com.lihaoyi:pprint_2.13:0.7.1", "dependencies": [ - "com.lihaoyi:fansi_2.13:0.4.0", - "com.lihaoyi:sourcecode_2.13:0.3.0", - "org.scala-lang:scala-library:2.13.8" + "com.lihaoyi:fansi_2.13:0.3.0", + "com.lihaoyi:sourcecode_2.13:0.2.7" ], "directDependencies": [ - "com.lihaoyi:fansi_2.13:0.4.0", - "com.lihaoyi:sourcecode_2.13:0.3.0", - "org.scala-lang:scala-library:2.13.8" + "com.lihaoyi:fansi_2.13:0.3.0", + "com.lihaoyi:sourcecode_2.13:0.2.7" ], - "file": "v1/https/repo1.maven.org/maven2/com/lihaoyi/pprint_2.13/0.8.0/pprint_2.13-0.8.0.jar", + "file": "v1/https/repo1.maven.org/maven2/com/lihaoyi/pprint_2.13/0.7.1/pprint_2.13-0.7.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/lihaoyi/pprint_2.13/0.8.0/pprint_2.13-0.8.0.jar" + "https://repo1.maven.org/maven2/com/lihaoyi/pprint_2.13/0.7.1/pprint_2.13-0.7.1.jar" ], "packages": [ "pprint" ], - "sha256": "6e90139626f5ec64699c6f649a9b13081c2fe81003356839ad4749fa0d706468", - "url": "https://repo1.maven.org/maven2/com/lihaoyi/pprint_2.13/0.8.0/pprint_2.13-0.8.0.jar" + "sha256": "261fd6fc54b5962e26295d37093100deae9d1fd6b4824326fcc439e17f9222a2", + "url": "https://repo1.maven.org/maven2/com/lihaoyi/pprint_2.13/0.7.1/pprint_2.13-0.7.1.jar" }, { - "coord": "com.lihaoyi:pprint_2.13:jar:sources:0.8.0", + "coord": "com.lihaoyi:pprint_2.13:jar:sources:0.7.1", "dependencies": [ - "com.lihaoyi:fansi_2.13:jar:sources:0.4.0", - "com.lihaoyi:sourcecode_2.13:jar:sources:0.3.0", - "org.scala-lang:scala-library:jar:sources:2.13.8" + "com.lihaoyi:fansi_2.13:jar:sources:0.3.0", + "com.lihaoyi:sourcecode_2.13:jar:sources:0.2.7" ], "directDependencies": [ - "com.lihaoyi:fansi_2.13:jar:sources:0.4.0", - "com.lihaoyi:sourcecode_2.13:jar:sources:0.3.0", - "org.scala-lang:scala-library:jar:sources:2.13.8" + "com.lihaoyi:fansi_2.13:jar:sources:0.3.0", + "com.lihaoyi:sourcecode_2.13:jar:sources:0.2.7" ], - "file": "v1/https/repo1.maven.org/maven2/com/lihaoyi/pprint_2.13/0.8.0/pprint_2.13-0.8.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/lihaoyi/pprint_2.13/0.7.1/pprint_2.13-0.7.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/lihaoyi/pprint_2.13/0.8.0/pprint_2.13-0.8.0-sources.jar" + "https://repo1.maven.org/maven2/com/lihaoyi/pprint_2.13/0.7.1/pprint_2.13-0.7.1-sources.jar" ], "packages": [], - "sha256": "8ee2ff02fbe95eebdd3110c0f69cb2b8a8f765401777e1749886154e35463e59", - "url": "https://repo1.maven.org/maven2/com/lihaoyi/pprint_2.13/0.8.0/pprint_2.13-0.8.0-sources.jar" + "sha256": "f5e9ff1ddb3708e39d93993b216309b61be6f59ce64f933dde01c2f66192e4ee", + "url": "https://repo1.maven.org/maven2/com/lihaoyi/pprint_2.13/0.7.1/pprint_2.13-0.7.1-sources.jar" }, { "coord": "com.lihaoyi:scalatags_2.13:0.9.1", "dependencies": [ "com.lihaoyi:geny_2.13:0.6.2", - "com.lihaoyi:sourcecode_2.13:0.3.0" + "com.lihaoyi:sourcecode_2.13:0.2.7" ], "directDependencies": [ "com.lihaoyi:geny_2.13:0.6.2", - "com.lihaoyi:sourcecode_2.13:0.3.0" + "com.lihaoyi:sourcecode_2.13:0.2.7" ], "file": "v1/https/repo1.maven.org/maven2/com/lihaoyi/scalatags_2.13/0.9.1/scalatags_2.13-0.9.1.jar", "mirror_urls": [ @@ -1865,11 +1704,11 @@ "coord": "com.lihaoyi:scalatags_2.13:jar:sources:0.9.1", "dependencies": [ "com.lihaoyi:geny_2.13:jar:sources:0.6.2", - "com.lihaoyi:sourcecode_2.13:jar:sources:0.3.0" + "com.lihaoyi:sourcecode_2.13:jar:sources:0.2.7" ], "directDependencies": [ "com.lihaoyi:geny_2.13:jar:sources:0.6.2", - "com.lihaoyi:sourcecode_2.13:jar:sources:0.3.0" + "com.lihaoyi:sourcecode_2.13:jar:sources:0.2.7" ], "file": "v1/https/repo1.maven.org/maven2/com/lihaoyi/scalatags_2.13/0.9.1/scalatags_2.13-0.9.1-sources.jar", "mirror_urls": [ @@ -1882,26 +1721,26 @@ { "coord": "com.lihaoyi:sjsonnet_2.13:0.3.0", "dependencies": [ - "com.github.scopt:scopt_2.13:4.1.0", + "com.github.scopt:scopt_2.13:4.0.0", "com.lihaoyi:fastparse_2.13:2.3.0", "com.lihaoyi:geny_2.13:0.6.2", "com.lihaoyi:os-lib_2.13:0.7.1", - "com.lihaoyi:pprint_2.13:0.8.0", + "com.lihaoyi:pprint_2.13:0.7.1", "com.lihaoyi:scalatags_2.13:0.9.1", - "com.lihaoyi:sourcecode_2.13:0.3.0", + "com.lihaoyi:sourcecode_2.13:0.2.7", "com.lihaoyi:ujson_2.13:1.2.0", "com.lihaoyi:upickle-core_2.13:1.2.0", - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", "org.tukaani:xz:1.8" ], "directDependencies": [ - "com.github.scopt:scopt_2.13:4.1.0", + "com.github.scopt:scopt_2.13:4.0.0", "com.lihaoyi:fastparse_2.13:2.3.0", "com.lihaoyi:os-lib_2.13:0.7.1", - "com.lihaoyi:pprint_2.13:0.8.0", + "com.lihaoyi:pprint_2.13:0.7.1", "com.lihaoyi:scalatags_2.13:0.9.1", "com.lihaoyi:ujson_2.13:1.2.0", - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", "org.tukaani:xz:1.8" ], "file": "v1/https/repo1.maven.org/maven2/com/lihaoyi/sjsonnet_2.13/0.3.0/sjsonnet_2.13-0.3.0.jar", @@ -1917,26 +1756,26 @@ { "coord": "com.lihaoyi:sjsonnet_2.13:jar:sources:0.3.0", "dependencies": [ - "com.github.scopt:scopt_2.13:jar:sources:4.1.0", + "com.github.scopt:scopt_2.13:jar:sources:4.0.0", "com.lihaoyi:fastparse_2.13:jar:sources:2.3.0", "com.lihaoyi:geny_2.13:jar:sources:0.6.2", "com.lihaoyi:os-lib_2.13:jar:sources:0.7.1", - "com.lihaoyi:pprint_2.13:jar:sources:0.8.0", + "com.lihaoyi:pprint_2.13:jar:sources:0.7.1", "com.lihaoyi:scalatags_2.13:jar:sources:0.9.1", - "com.lihaoyi:sourcecode_2.13:jar:sources:0.3.0", + "com.lihaoyi:sourcecode_2.13:jar:sources:0.2.7", "com.lihaoyi:ujson_2.13:jar:sources:1.2.0", "com.lihaoyi:upickle-core_2.13:jar:sources:1.2.0", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", "org.tukaani:xz:jar:sources:1.8" ], "directDependencies": [ - "com.github.scopt:scopt_2.13:jar:sources:4.1.0", + "com.github.scopt:scopt_2.13:jar:sources:4.0.0", "com.lihaoyi:fastparse_2.13:jar:sources:2.3.0", "com.lihaoyi:os-lib_2.13:jar:sources:0.7.1", - "com.lihaoyi:pprint_2.13:jar:sources:0.8.0", + "com.lihaoyi:pprint_2.13:jar:sources:0.7.1", "com.lihaoyi:scalatags_2.13:jar:sources:0.9.1", "com.lihaoyi:ujson_2.13:jar:sources:1.2.0", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", "org.tukaani:xz:jar:sources:1.8" ], "file": "v1/https/repo1.maven.org/maven2/com/lihaoyi/sjsonnet_2.13/0.3.0/sjsonnet_2.13-0.3.0-sources.jar", @@ -1948,45 +1787,37 @@ "url": "https://repo1.maven.org/maven2/com/lihaoyi/sjsonnet_2.13/0.3.0/sjsonnet_2.13-0.3.0-sources.jar" }, { - "coord": "com.lihaoyi:sourcecode_2.13:0.3.0", - "dependencies": [ - "org.scala-lang:scala-library:2.13.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.13.8" - ], - "file": "v1/https/repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.13/0.3.0/sourcecode_2.13-0.3.0.jar", + "coord": "com.lihaoyi:sourcecode_2.13:0.2.7", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.13/0.2.7/sourcecode_2.13-0.2.7.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.13/0.3.0/sourcecode_2.13-0.3.0.jar" + "https://repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.13/0.2.7/sourcecode_2.13-0.2.7.jar" ], "packages": [ "sourcecode" ], - "sha256": "6e5b2d55e942b450a222bfd3ebc23e99ca03716e42da25af1b2c8cde038100f5", - "url": "https://repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.13/0.3.0/sourcecode_2.13-0.3.0.jar" + "sha256": "a639a90e2d21bbafd8a5e213c65442aad200ee086951605cbda8835bc6ef11d3", + "url": "https://repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.13/0.2.7/sourcecode_2.13-0.2.7.jar" }, { - "coord": "com.lihaoyi:sourcecode_2.13:jar:sources:0.3.0", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.8" - ], - "file": "v1/https/repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.13/0.3.0/sourcecode_2.13-0.3.0-sources.jar", + "coord": "com.lihaoyi:sourcecode_2.13:jar:sources:0.2.7", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.13/0.2.7/sourcecode_2.13-0.2.7-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.13/0.3.0/sourcecode_2.13-0.3.0-sources.jar" + "https://repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.13/0.2.7/sourcecode_2.13-0.2.7-sources.jar" ], "packages": [], - "sha256": "cc84a3a8bff5412e444131014cc0e23428b6fb65d2a5791d339f4be808f230da", - "url": "https://repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.13/0.3.0/sourcecode_2.13-0.3.0-sources.jar" + "sha256": "e4cae365cd26b19ffb1491472cbc91ed853bb2a1cbbcc8176d0187affebd8bbe", + "url": "https://repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.13/0.2.7/sourcecode_2.13-0.2.7-sources.jar" }, { "coord": "com.lihaoyi:ujson_2.13:1.2.0", "dependencies": [ "com.lihaoyi:geny_2.13:0.6.2", "com.lihaoyi:upickle-core_2.13:1.2.0", - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0" + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0" ], "directDependencies": [ "com.lihaoyi:upickle-core_2.13:1.2.0" @@ -2007,7 +1838,7 @@ "dependencies": [ "com.lihaoyi:geny_2.13:jar:sources:0.6.2", "com.lihaoyi:upickle-core_2.13:jar:sources:1.2.0", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0" + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0" ], "directDependencies": [ "com.lihaoyi:upickle-core_2.13:jar:sources:1.2.0" @@ -2024,11 +1855,11 @@ "coord": "com.lihaoyi:upickle-core_2.13:1.2.0", "dependencies": [ "com.lihaoyi:geny_2.13:0.6.2", - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0" + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0" ], "directDependencies": [ "com.lihaoyi:geny_2.13:0.6.2", - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0" + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0" ], "file": "v1/https/repo1.maven.org/maven2/com/lihaoyi/upickle-core_2.13/1.2.0/upickle-core_2.13-1.2.0.jar", "mirror_urls": [ @@ -2044,11 +1875,11 @@ "coord": "com.lihaoyi:upickle-core_2.13:jar:sources:1.2.0", "dependencies": [ "com.lihaoyi:geny_2.13:jar:sources:0.6.2", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0" + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0" ], "directDependencies": [ "com.lihaoyi:geny_2.13:jar:sources:0.6.2", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0" + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0" ], "file": "v1/https/repo1.maven.org/maven2/com/lihaoyi/upickle-core_2.13/1.2.0/upickle-core_2.13-1.2.0-sources.jar", "mirror_urls": [ @@ -2197,102 +2028,69 @@ "url": "https://repo1.maven.org/maven2/com/oracle/database/jdbc/ojdbc8/19.14.0.0/ojdbc8-19.14.0.0-sources.jar" }, { - "coord": "com.shapesecurity:salvation:2.7.1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/shapesecurity/salvation/2.7.1/salvation-2.7.1.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/com/shapesecurity/salvation/2.7.1/salvation-2.7.1.jar" - ], - "packages": [ - "com.shapesecurity.salvation", - "com.shapesecurity.salvation.data", - "com.shapesecurity.salvation.directiveValues", - "com.shapesecurity.salvation.directives", - "com.shapesecurity.salvation.interfaces", - "com.shapesecurity.salvation.tokens" - ], - "sha256": "9239b74e280ad4bbaefc67892ae2ba55158fa83bb88e3ac9ea06d2fdb9a58878", - "url": "https://repo1.maven.org/maven2/com/shapesecurity/salvation/2.7.1/salvation-2.7.1.jar" - }, - { - "coord": "com.shapesecurity:salvation:jar:sources:2.7.1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/shapesecurity/salvation/2.7.1/salvation-2.7.1-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/com/shapesecurity/salvation/2.7.1/salvation-2.7.1-sources.jar" - ], - "packages": [], - "sha256": "834aa31ef704dacd2f40464e26a3f780e02ce640de892af4cf0a2ffc988ca56f", - "url": "https://repo1.maven.org/maven2/com/shapesecurity/salvation/2.7.1/salvation-2.7.1-sources.jar" - }, - { - "coord": "com.softwaremill.quicklens:quicklens_2.13:1.9.0", + "coord": "com.softwaremill.quicklens:quicklens_2.13:1.6.1", "dependencies": [ "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/softwaremill/quicklens/quicklens_2.13/1.9.0/quicklens_2.13-1.9.0.jar", + "file": "v1/https/repo1.maven.org/maven2/com/softwaremill/quicklens/quicklens_2.13/1.6.1/quicklens_2.13-1.6.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/softwaremill/quicklens/quicklens_2.13/1.9.0/quicklens_2.13-1.9.0.jar" + "https://repo1.maven.org/maven2/com/softwaremill/quicklens/quicklens_2.13/1.6.1/quicklens_2.13-1.6.1.jar" ], "packages": [ - "com.softwaremill", "com.softwaremill.quicklens" ], - "sha256": "837a5ca3a32fc2667121e94f07b6f1461009e144245e894252cfcafd1c4d5a91", - "url": "https://repo1.maven.org/maven2/com/softwaremill/quicklens/quicklens_2.13/1.9.0/quicklens_2.13-1.9.0.jar" + "sha256": "6b9053eae124c367745a68381abde5c54570ac1c9d97a1add55a6ae85221ad77", + "url": "https://repo1.maven.org/maven2/com/softwaremill/quicklens/quicklens_2.13/1.6.1/quicklens_2.13-1.6.1.jar" }, { - "coord": "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.9.0", + "coord": "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.6.1", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/softwaremill/quicklens/quicklens_2.13/1.9.0/quicklens_2.13-1.9.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/softwaremill/quicklens/quicklens_2.13/1.6.1/quicklens_2.13-1.6.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/softwaremill/quicklens/quicklens_2.13/1.9.0/quicklens_2.13-1.9.0-sources.jar" + "https://repo1.maven.org/maven2/com/softwaremill/quicklens/quicklens_2.13/1.6.1/quicklens_2.13-1.6.1-sources.jar" ], "packages": [], - "sha256": "afd52c067027bd788694f25b8a9cb369fef1359ad29a2c8cf6505856d34acffa", - "url": "https://repo1.maven.org/maven2/com/softwaremill/quicklens/quicklens_2.13/1.9.0/quicklens_2.13-1.9.0-sources.jar" + "sha256": "60205b3c03dd5723c425ee7a592446d20ba906018959afdee01f0e60a535efae", + "url": "https://repo1.maven.org/maven2/com/softwaremill/quicklens/quicklens_2.13/1.6.1/quicklens_2.13-1.6.1-sources.jar" }, { - "coord": "com.sparkjava:spark-core:2.9.4", + "coord": "com.sparkjava:spark-core:2.9.1", "dependencies": [ "javax.servlet:javax.servlet-api:3.1.0", - "org.eclipse.jetty.websocket:websocket-api:9.4.48.v20220622", - "org.eclipse.jetty.websocket:websocket-client:9.4.48.v20220622", - "org.eclipse.jetty.websocket:websocket-common:9.4.48.v20220622", - "org.eclipse.jetty.websocket:websocket-server:9.4.48.v20220622", - "org.eclipse.jetty.websocket:websocket-servlet:9.4.48.v20220622", - "org.eclipse.jetty:jetty-client:9.4.48.v20220622", - "org.eclipse.jetty:jetty-http:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:9.4.48.v20220622", - "org.eclipse.jetty:jetty-security:9.4.48.v20220622", - "org.eclipse.jetty:jetty-server:9.4.48.v20220622", - "org.eclipse.jetty:jetty-servlet:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util-ajax:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:9.4.48.v20220622", - "org.eclipse.jetty:jetty-webapp:9.4.48.v20220622", - "org.eclipse.jetty:jetty-xml:9.4.48.v20220622", - "org.slf4j:slf4j-api:1.7.36" - ], - "directDependencies": [ - "org.eclipse.jetty.websocket:websocket-server:9.4.48.v20220622", - "org.eclipse.jetty.websocket:websocket-servlet:9.4.48.v20220622", - "org.eclipse.jetty:jetty-server:9.4.48.v20220622", - "org.eclipse.jetty:jetty-webapp:9.4.48.v20220622", - "org.slf4j:slf4j-api:1.7.36" - ], - "file": "v1/https/repo1.maven.org/maven2/com/sparkjava/spark-core/2.9.4/spark-core-2.9.4.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/com/sparkjava/spark-core/2.9.4/spark-core-2.9.4.jar" + "org.eclipse.jetty.websocket:websocket-api:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-client:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-common:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-server:9.4.18.v20190429", + "org.eclipse.jetty.websocket:websocket-servlet:9.4.18.v20190429", + "org.eclipse.jetty:jetty-client:9.4.27.v20200227", + "org.eclipse.jetty:jetty-http:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:9.4.27.v20200227", + "org.eclipse.jetty:jetty-security:9.4.18.v20190429", + "org.eclipse.jetty:jetty-server:9.4.18.v20190429", + "org.eclipse.jetty:jetty-servlet:9.4.18.v20190429", + "org.eclipse.jetty:jetty-util:9.4.27.v20200227", + "org.eclipse.jetty:jetty-webapp:9.4.18.v20190429", + "org.eclipse.jetty:jetty-xml:9.4.27.v20200227", + "org.slf4j:slf4j-api:1.7.26" + ], + "directDependencies": [ + "org.eclipse.jetty.websocket:websocket-server:9.4.18.v20190429", + "org.eclipse.jetty.websocket:websocket-servlet:9.4.18.v20190429", + "org.eclipse.jetty:jetty-server:9.4.18.v20190429", + "org.eclipse.jetty:jetty-webapp:9.4.18.v20190429", + "org.slf4j:slf4j-api:1.7.26" + ], + "file": "v1/https/repo1.maven.org/maven2/com/sparkjava/spark-core/2.9.1/spark-core-2.9.1.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/com/sparkjava/spark-core/2.9.1/spark-core-2.9.1.jar" ], "packages": [ "spark", @@ -2311,98 +2109,167 @@ "spark.utils", "spark.utils.urldecoding" ], - "sha256": "99f4717695184e29ace24735bc539a7497775452b381b8080335adae3a985c3a", - "url": "https://repo1.maven.org/maven2/com/sparkjava/spark-core/2.9.4/spark-core-2.9.4.jar" + "sha256": "57e80740b3f88650aeeba16d5334f2875539a842dce6f2b171b843bccd00f374", + "url": "https://repo1.maven.org/maven2/com/sparkjava/spark-core/2.9.1/spark-core-2.9.1.jar" }, { - "coord": "com.sparkjava:spark-core:jar:sources:2.9.4", + "coord": "com.sparkjava:spark-core:jar:sources:2.9.1", "dependencies": [ "javax.servlet:javax.servlet-api:jar:sources:3.1.0", - "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty.websocket:websocket-server:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty.websocket:websocket-servlet:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-client:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-http:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-security:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-server:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-servlet:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util-ajax:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-webapp:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-xml:jar:sources:9.4.48.v20220622", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-server:jar:sources:9.4.18.v20190429", + "org.eclipse.jetty.websocket:websocket-servlet:jar:sources:9.4.18.v20190429", + "org.eclipse.jetty:jetty-client:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-http:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-security:jar:sources:9.4.18.v20190429", + "org.eclipse.jetty:jetty-server:jar:sources:9.4.18.v20190429", + "org.eclipse.jetty:jetty-servlet:jar:sources:9.4.18.v20190429", + "org.eclipse.jetty:jetty-util:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-webapp:jar:sources:9.4.18.v20190429", + "org.eclipse.jetty:jetty-xml:jar:sources:9.4.27.v20200227", + "org.slf4j:slf4j-api:jar:sources:1.7.26" + ], + "directDependencies": [ + "org.eclipse.jetty.websocket:websocket-server:jar:sources:9.4.18.v20190429", + "org.eclipse.jetty.websocket:websocket-servlet:jar:sources:9.4.18.v20190429", + "org.eclipse.jetty:jetty-server:jar:sources:9.4.18.v20190429", + "org.eclipse.jetty:jetty-webapp:jar:sources:9.4.18.v20190429", + "org.slf4j:slf4j-api:jar:sources:1.7.26" + ], + "file": "v1/https/repo1.maven.org/maven2/com/sparkjava/spark-core/2.9.1/spark-core-2.9.1-sources.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/com/sparkjava/spark-core/2.9.1/spark-core-2.9.1-sources.jar" + ], + "packages": [], + "sha256": "665116b599af90fd3108757c042a1d699207e27e4e47e5fba304080cfc5e9cdd", + "url": "https://repo1.maven.org/maven2/com/sparkjava/spark-core/2.9.1/spark-core-2.9.1-sources.jar" + }, + { + "coord": "com.squareup.okhttp3:okhttp:3.11.0", + "dependencies": [ + "com.squareup.okio:okio:1.14.0" + ], + "directDependencies": [ + "com.squareup.okio:okio:1.14.0" + ], + "file": "v1/https/repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0.jar" + ], + "packages": [ + "okhttp3", + "okhttp3.internal", + "okhttp3.internal.cache", + "okhttp3.internal.cache2", + "okhttp3.internal.connection", + "okhttp3.internal.http", + "okhttp3.internal.http1", + "okhttp3.internal.http2", + "okhttp3.internal.io", + "okhttp3.internal.platform", + "okhttp3.internal.publicsuffix", + "okhttp3.internal.tls", + "okhttp3.internal.ws" + ], + "sha256": "e27c7742448f816da1cac72b4ca283b0d7920749e09f5dd0ac017e40714a2efe", + "url": "https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0.jar" + }, + { + "coord": "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", + "dependencies": [ + "com.squareup.okio:okio:jar:sources:1.14.0" ], "directDependencies": [ - "org.eclipse.jetty.websocket:websocket-server:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty.websocket:websocket-servlet:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-server:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-webapp:jar:sources:9.4.48.v20220622", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "com.squareup.okio:okio:jar:sources:1.14.0" + ], + "file": "v1/https/repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0-sources.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0-sources.jar" + ], + "packages": [], + "sha256": "2dade1d534496d68302adba898eafd7b019cd60c91afb763a50f5bde02ca3f68", + "url": "https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0-sources.jar" + }, + { + "coord": "com.squareup.okio:okio:1.14.0", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo1.maven.org/maven2/com/squareup/okio/okio/1.14.0/okio-1.14.0.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/com/squareup/okio/okio/1.14.0/okio-1.14.0.jar" + ], + "packages": [ + "okio" ], - "file": "v1/https/repo1.maven.org/maven2/com/sparkjava/spark-core/2.9.4/spark-core-2.9.4-sources.jar", + "sha256": "4633c331f50642ebe795dc089d6a5928aff43071c9d17e7840a009eea2fe95a3", + "url": "https://repo1.maven.org/maven2/com/squareup/okio/okio/1.14.0/okio-1.14.0.jar" + }, + { + "coord": "com.squareup.okio:okio:jar:sources:1.14.0", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo1.maven.org/maven2/com/squareup/okio/okio/1.14.0/okio-1.14.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/sparkjava/spark-core/2.9.4/spark-core-2.9.4-sources.jar" + "https://repo1.maven.org/maven2/com/squareup/okio/okio/1.14.0/okio-1.14.0-sources.jar" ], "packages": [], - "sha256": "f344d2a42e1f6412cfbec392d474ba64dccfe8ab5f1f92afc72ce97529c7425b", - "url": "https://repo1.maven.org/maven2/com/sparkjava/spark-core/2.9.4/spark-core-2.9.4-sources.jar" + "sha256": "ccc34a4ef40021db61ce5c3ee796cca1a3fcc869ea292bb1ce4b5e7708034158", + "url": "https://repo1.maven.org/maven2/com/squareup/okio/okio/1.14.0/okio-1.14.0-sources.jar" }, { - "coord": "com.squareup:javapoet:1.13.0", + "coord": "com.squareup:javapoet:1.11.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/squareup/javapoet/1.13.0/javapoet-1.13.0.jar", + "file": "v1/https/repo1.maven.org/maven2/com/squareup/javapoet/1.11.1/javapoet-1.11.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/squareup/javapoet/1.13.0/javapoet-1.13.0.jar" + "https://repo1.maven.org/maven2/com/squareup/javapoet/1.11.1/javapoet-1.11.1.jar" ], "packages": [ "com.squareup.javapoet" ], - "sha256": "4c7517e848a71b36d069d12bb3bf46a70fd4cda3105d822b0ed2e19c00b69291", - "url": "https://repo1.maven.org/maven2/com/squareup/javapoet/1.13.0/javapoet-1.13.0.jar" + "sha256": "9cbf2107be499ec6e95afd36b58e3ca122a24166cdd375732e51267d64058e90", + "url": "https://repo1.maven.org/maven2/com/squareup/javapoet/1.11.1/javapoet-1.11.1.jar" }, { - "coord": "com.squareup:javapoet:jar:sources:1.13.0", + "coord": "com.squareup:javapoet:jar:sources:1.11.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/squareup/javapoet/1.13.0/javapoet-1.13.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/squareup/javapoet/1.11.1/javapoet-1.11.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/squareup/javapoet/1.13.0/javapoet-1.13.0-sources.jar" + "https://repo1.maven.org/maven2/com/squareup/javapoet/1.11.1/javapoet-1.11.1-sources.jar" ], "packages": [], - "sha256": "d1699067787846453fdcc104aeba3946f070fb2c167cfb3445838e4c86bb1f11", - "url": "https://repo1.maven.org/maven2/com/squareup/javapoet/1.13.0/javapoet-1.13.0-sources.jar" + "sha256": "63d3187d924582b1afe9eb171e725d27a7e15603513890de0f8804a7fc07e9ac", + "url": "https://repo1.maven.org/maven2/com/squareup/javapoet/1.11.1/javapoet-1.11.1-sources.jar" }, { - "coord": "com.storm-enroute:scalameter-core_2.13:0.21", + "coord": "com.storm-enroute:scalameter-core_2.13:0.19", "dependencies": [ - "io.github.classgraph:classgraph:4.8.78", - "org.apache.commons:commons-lang3:3.12.0", + "org.apache.commons:commons-lang3:3.9", "org.apache.commons:commons-math3:3.2", - "org.jline:jline:3.21.0", + "org.jline:jline:3.7.1", "org.ow2.asm:asm:5.0.4", - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang.modules:scala-xml_2.13:1.3.0", "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ - "io.github.classgraph:classgraph:4.8.78", - "org.apache.commons:commons-lang3:3.12.0", + "org.apache.commons:commons-lang3:3.9", "org.apache.commons:commons-math3:3.2", - "org.jline:jline:3.21.0", + "org.jline:jline:3.7.1", "org.ow2.asm:asm:5.0.4", - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang.modules:scala-xml_2.13:1.3.0", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/storm-enroute/scalameter-core_2.13/0.21/scalameter-core_2.13-0.21.jar", + "file": "v1/https/repo1.maven.org/maven2/com/storm-enroute/scalameter-core_2.13/0.19/scalameter-core_2.13-0.19.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/storm-enroute/scalameter-core_2.13/0.21/scalameter-core_2.13-0.21.jar" + "https://repo1.maven.org/maven2/com/storm-enroute/scalameter-core_2.13/0.19/scalameter-core_2.13-0.19.jar" ], "packages": [ "org.scalameter", @@ -2411,79 +2278,76 @@ "org.scalameter.picklers", "org.scalameter.utils" ], - "sha256": "5f8443d0c6b8539b30d97d2743b15d28c9cbb852aae88d1417f4832aa3cfd235", - "url": "https://repo1.maven.org/maven2/com/storm-enroute/scalameter-core_2.13/0.21/scalameter-core_2.13-0.21.jar" + "sha256": "92b3e681318df435bf07d5b6c68543ef39c8b416aae5f0b1c677cde8a1ad31ac", + "url": "https://repo1.maven.org/maven2/com/storm-enroute/scalameter-core_2.13/0.19/scalameter-core_2.13-0.19.jar" }, { - "coord": "com.storm-enroute:scalameter-core_2.13:jar:sources:0.21", + "coord": "com.storm-enroute:scalameter-core_2.13:jar:sources:0.19", "dependencies": [ - "io.github.classgraph:classgraph:jar:sources:4.8.78", - "org.apache.commons:commons-lang3:jar:sources:3.12.0", + "org.apache.commons:commons-lang3:jar:sources:3.9", "org.apache.commons:commons-math3:jar:sources:3.2", - "org.jline:jline:jar:sources:3.21.0", + "org.jline:jline:jar:sources:3.7.1", "org.ow2.asm:asm:jar:sources:5.0.4", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.3.0", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ - "io.github.classgraph:classgraph:jar:sources:4.8.78", - "org.apache.commons:commons-lang3:jar:sources:3.12.0", + "org.apache.commons:commons-lang3:jar:sources:3.9", "org.apache.commons:commons-math3:jar:sources:3.2", - "org.jline:jline:jar:sources:3.21.0", + "org.jline:jline:jar:sources:3.7.1", "org.ow2.asm:asm:jar:sources:5.0.4", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.3.0", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/storm-enroute/scalameter-core_2.13/0.21/scalameter-core_2.13-0.21-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/storm-enroute/scalameter-core_2.13/0.19/scalameter-core_2.13-0.19-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/storm-enroute/scalameter-core_2.13/0.21/scalameter-core_2.13-0.21-sources.jar" + "https://repo1.maven.org/maven2/com/storm-enroute/scalameter-core_2.13/0.19/scalameter-core_2.13-0.19-sources.jar" ], "packages": [], - "sha256": "f67e33ff7eca7e85229e0da4edf2f3d8c3506585a2b0ea2f3c5f8960b1198f7b", - "url": "https://repo1.maven.org/maven2/com/storm-enroute/scalameter-core_2.13/0.21/scalameter-core_2.13-0.21-sources.jar" + "sha256": "e3e3aab51d0d54e34e01e9cc6277ea1c7ae52051c38d306fd1272dc7c37686dd", + "url": "https://repo1.maven.org/maven2/com/storm-enroute/scalameter-core_2.13/0.19/scalameter-core_2.13-0.19-sources.jar" }, { - "coord": "com.storm-enroute:scalameter_2.13:0.21", + "coord": "com.storm-enroute:scalameter_2.13:0.19", "dependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:2.13.4", - "com.fasterxml.jackson.core:jackson-core:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.fasterxml.jackson.module:jackson-module-paranamer:2.11.3", - "com.fasterxml.jackson.module:jackson-module-scala_2.13:2.11.3", - "com.storm-enroute:scalameter-core_2.13:0.21", + "com.fasterxml.jackson.core:jackson-annotations:2.12.0", + "com.fasterxml.jackson.core:jackson-core:2.12.0", + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "com.fasterxml.jackson.module:jackson-module-paranamer:2.9.9", + "com.fasterxml.jackson.module:jackson-module-scala_2.13:2.9.9", + "com.storm-enroute:scalameter-core_2.13:0.19", "com.thoughtworks.paranamer:paranamer:2.8", - "commons-io:commons-io:2.11.0", - "io.github.classgraph:classgraph:4.8.78", - "io.spray:spray-json_2.13:1.3.6", - "org.apache.commons:commons-lang3:3.12.0", + "commons-io:commons-io:2.5", + "io.spray:spray-json_2.13:1.3.5", + "org.apache.commons:commons-lang3:3.9", "org.apache.commons:commons-math3:3.2", - "org.jline:jline:3.21.0", + "org.jline:jline:3.7.1", "org.ow2.asm:asm:5.0.4", - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang.modules:scala-xml_2.13:1.3.0", "org.scala-lang:scala-library:2.13.8", "org.scala-sbt:test-interface:1.0" ], "directDependencies": [ - "com.fasterxml.jackson.module:jackson-module-scala_2.13:2.11.3", - "com.storm-enroute:scalameter-core_2.13:0.21", - "commons-io:commons-io:2.11.0", - "io.spray:spray-json_2.13:1.3.6", + "com.fasterxml.jackson.module:jackson-module-scala_2.13:2.9.9", + "com.storm-enroute:scalameter-core_2.13:0.19", + "commons-io:commons-io:2.5", + "io.spray:spray-json_2.13:1.3.5", "org.apache.commons:commons-math3:3.2", - "org.jline:jline:3.21.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", + "org.jline:jline:3.7.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang.modules:scala-xml_2.13:1.3.0", "org.scala-lang:scala-library:2.13.8", "org.scala-sbt:test-interface:1.0" ], - "file": "v1/https/repo1.maven.org/maven2/com/storm-enroute/scalameter_2.13/0.21/scalameter_2.13-0.21.jar", + "file": "v1/https/repo1.maven.org/maven2/com/storm-enroute/scalameter_2.13/0.19/scalameter_2.13-0.19.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/storm-enroute/scalameter_2.13/0.21/scalameter_2.13-0.21.jar" + "https://repo1.maven.org/maven2/com/storm-enroute/scalameter_2.13/0.19/scalameter_2.13-0.19.jar" ], "packages": [ "org.scalameter", @@ -2495,125 +2359,96 @@ "org.scalameter.reporting", "org.scalameter.utils" ], - "sha256": "484dc227cefc333da7881e33d70213ddfeee5608e8bd41a8210aa631548e8580", - "url": "https://repo1.maven.org/maven2/com/storm-enroute/scalameter_2.13/0.21/scalameter_2.13-0.21.jar" + "sha256": "a10866ee508e316b890b9fc2a7ca1847ff1bde28a1acbc4238bec32ff3e74cd3", + "url": "https://repo1.maven.org/maven2/com/storm-enroute/scalameter_2.13/0.19/scalameter_2.13-0.19.jar" }, { - "coord": "com.storm-enroute:scalameter_2.13:jar:sources:0.21", + "coord": "com.storm-enroute:scalameter_2.13:jar:sources:0.19", "dependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.fasterxml.jackson.module:jackson-module-paranamer:jar:sources:2.11.3", - "com.fasterxml.jackson.module:jackson-module-scala_2.13:jar:sources:2.11.3", - "com.storm-enroute:scalameter-core_2.13:jar:sources:0.21", + "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.12.0", + "com.fasterxml.jackson.core:jackson-core:jar:sources:2.12.0", + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "com.fasterxml.jackson.module:jackson-module-paranamer:jar:sources:2.9.9", + "com.fasterxml.jackson.module:jackson-module-scala_2.13:jar:sources:2.9.9", + "com.storm-enroute:scalameter-core_2.13:jar:sources:0.19", "com.thoughtworks.paranamer:paranamer:jar:sources:2.8", - "commons-io:commons-io:jar:sources:2.11.0", - "io.github.classgraph:classgraph:jar:sources:4.8.78", - "io.spray:spray-json_2.13:jar:sources:1.3.6", - "org.apache.commons:commons-lang3:jar:sources:3.12.0", + "commons-io:commons-io:jar:sources:2.5", + "io.spray:spray-json_2.13:jar:sources:1.3.5", + "org.apache.commons:commons-lang3:jar:sources:3.9", "org.apache.commons:commons-math3:jar:sources:3.2", - "org.jline:jline:jar:sources:3.21.0", + "org.jline:jline:jar:sources:3.7.1", "org.ow2.asm:asm:jar:sources:5.0.4", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.3.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-sbt:test-interface:jar:sources:1.0" ], "directDependencies": [ - "com.fasterxml.jackson.module:jackson-module-scala_2.13:jar:sources:2.11.3", - "com.storm-enroute:scalameter-core_2.13:jar:sources:0.21", - "commons-io:commons-io:jar:sources:2.11.0", - "io.spray:spray-json_2.13:jar:sources:1.3.6", + "com.fasterxml.jackson.module:jackson-module-scala_2.13:jar:sources:2.9.9", + "com.storm-enroute:scalameter-core_2.13:jar:sources:0.19", + "commons-io:commons-io:jar:sources:2.5", + "io.spray:spray-json_2.13:jar:sources:1.3.5", "org.apache.commons:commons-math3:jar:sources:3.2", - "org.jline:jline:jar:sources:3.21.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "org.jline:jline:jar:sources:3.7.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.3.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-sbt:test-interface:jar:sources:1.0" ], - "file": "v1/https/repo1.maven.org/maven2/com/storm-enroute/scalameter_2.13/0.21/scalameter_2.13-0.21-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/storm-enroute/scalameter_2.13/0.19/scalameter_2.13-0.19-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/storm-enroute/scalameter_2.13/0.21/scalameter_2.13-0.21-sources.jar" + "https://repo1.maven.org/maven2/com/storm-enroute/scalameter_2.13/0.19/scalameter_2.13-0.19-sources.jar" ], "packages": [], - "sha256": "78d43e058fb666e88bad6c01ebe901235a5c64ac819f7a325c65715b8e6cf656", - "url": "https://repo1.maven.org/maven2/com/storm-enroute/scalameter_2.13/0.21/scalameter_2.13-0.21-sources.jar" + "sha256": "7caa60c68032fb31316c6359e3cd4b2a51bdb28a34521f5737b78cdb1c4ade50", + "url": "https://repo1.maven.org/maven2/com/storm-enroute/scalameter_2.13/0.19/scalameter_2.13-0.19-sources.jar" }, { - "coord": "com.sun.activation:jakarta.activation:1.2.2", + "coord": "com.tdunning:t-digest:3.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/sun/activation/jakarta.activation/1.2.2/jakarta.activation-1.2.2.jar", + "file": "v1/https/repo1.maven.org/maven2/com/tdunning/t-digest/3.1/t-digest-3.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/sun/activation/jakarta.activation/1.2.2/jakarta.activation-1.2.2.jar" + "https://repo1.maven.org/maven2/com/tdunning/t-digest/3.1/t-digest-3.1.jar" ], "packages": [ - "com.sun.activation.registries", - "com.sun.activation.viewers", - "javax.activation" + "com.tdunning.math.stats" ], - "sha256": "02156773e4ae9d048d14a56ad35d644bee9f1052a791d072df3ded3c656e6e1a", - "url": "https://repo1.maven.org/maven2/com/sun/activation/jakarta.activation/1.2.2/jakarta.activation-1.2.2.jar" + "sha256": "271f3a5a4bc79d7554c9e9e557669af83bcbda0db871e0b8c969d56e51c123a9", + "url": "https://repo1.maven.org/maven2/com/tdunning/t-digest/3.1/t-digest-3.1.jar" }, { - "coord": "com.sun.activation:jakarta.activation:jar:sources:1.2.2", + "coord": "com.tdunning:t-digest:jar:sources:3.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/sun/activation/jakarta.activation/1.2.2/jakarta.activation-1.2.2-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/tdunning/t-digest/3.1/t-digest-3.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/sun/activation/jakarta.activation/1.2.2/jakarta.activation-1.2.2-sources.jar" + "https://repo1.maven.org/maven2/com/tdunning/t-digest/3.1/t-digest-3.1-sources.jar" ], "packages": [], - "sha256": "f8f52ce9df5d5d29c1778183d48214624caa36be202a7eff2cef5a0519f2aa53", - "url": "https://repo1.maven.org/maven2/com/sun/activation/jakarta.activation/1.2.2/jakarta.activation-1.2.2-sources.jar" + "sha256": "d0973dacfbfb7c1b98e3e042fe9cd7df8ca3f7b628a297f662bb0b1114f2fc43", + "url": "https://repo1.maven.org/maven2/com/tdunning/t-digest/3.1/t-digest-3.1-sources.jar" }, { - "coord": "com.tdunning:t-digest:3.1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/tdunning/t-digest/3.1/t-digest-3.1.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/com/tdunning/t-digest/3.1/t-digest-3.1.jar" - ], - "packages": [ - "com.tdunning.math.stats" - ], - "sha256": "271f3a5a4bc79d7554c9e9e557669af83bcbda0db871e0b8c969d56e51c123a9", - "url": "https://repo1.maven.org/maven2/com/tdunning/t-digest/3.1/t-digest-3.1.jar" - }, - { - "coord": "com.tdunning:t-digest:jar:sources:3.1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/tdunning/t-digest/3.1/t-digest-3.1-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/com/tdunning/t-digest/3.1/t-digest-3.1-sources.jar" - ], - "packages": [], - "sha256": "d0973dacfbfb7c1b98e3e042fe9cd7df8ca3f7b628a297f662bb0b1114f2fc43", - "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.11", + "coord": "com.thesamet.scalapb:compilerplugin_2.13:0.11.8", "dependencies": [ - "com.google.protobuf:protobuf-java:3.21.7", + "com.google.protobuf:protobuf-java:3.19.3", "com.thesamet.scalapb:protoc-bridge_2.13:0.9.5", "com.thesamet.scalapb:protoc-gen_2.13:0.9.5", "dev.dirs:directories:26", - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ - "com.google.protobuf:protobuf-java:3.21.7", + "com.google.protobuf:protobuf-java:3.19.3", "com.thesamet.scalapb:protoc-gen_2.13:0.9.5", - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.11/compilerplugin_2.13-0.11.11.jar", + "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.8/compilerplugin_2.13-0.11.8.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.11/compilerplugin_2.13-0.11.11.jar" + "https://repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.8/compilerplugin_2.13-0.11.8.jar" ], "packages": [ "scalapb", @@ -2622,70 +2457,70 @@ "scalapb.options", "scalapb.options.compiler" ], - "sha256": "79861d3cafd985bab992c63defc8c3b76edc43d1fa138a7b0b5b959174d9d427", - "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.11/compilerplugin_2.13-0.11.11.jar" + "sha256": "bfbe6e7a284ba6f84deea724454c251aeefc1b2d59e221a3afba129b6812e38f", + "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.8/compilerplugin_2.13-0.11.8.jar" }, { - "coord": "com.thesamet.scalapb:compilerplugin_2.13:jar:sources:0.11.11", + "coord": "com.thesamet.scalapb:compilerplugin_2.13:jar:sources:0.11.8", "dependencies": [ - "com.google.protobuf:protobuf-java:jar:sources:3.21.7", + "com.google.protobuf:protobuf-java:jar:sources:3.19.3", "com.thesamet.scalapb:protoc-bridge_2.13:jar:sources:0.9.5", "com.thesamet.scalapb:protoc-gen_2.13:jar:sources:0.9.5", "dev.dirs:directories:jar:sources:26", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ - "com.google.protobuf:protobuf-java:jar:sources:3.21.7", + "com.google.protobuf:protobuf-java:jar:sources:3.19.3", "com.thesamet.scalapb:protoc-gen_2.13:jar:sources:0.9.5", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.11/compilerplugin_2.13-0.11.11-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.8/compilerplugin_2.13-0.11.8-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.11/compilerplugin_2.13-0.11.11-sources.jar" + "https://repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.8/compilerplugin_2.13-0.11.8-sources.jar" ], "packages": [], - "sha256": "f70522a54a3d6d1928cbbb3f0fb258648cbfddb03958ffc4f1aed9d941f9c2d3", - "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.11/compilerplugin_2.13-0.11.11-sources.jar" + "sha256": "19c931dec589de197aa1b9d0d327006da9a548836dbd3f77c3f6fefdbd03bde3", + "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.8/compilerplugin_2.13-0.11.8-sources.jar" }, { - "coord": "com.thesamet.scalapb:lenses_2.13:0.11.11", + "coord": "com.thesamet.scalapb:lenses_2.13:0.11.8", "dependencies": [ - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.11/lenses_2.13-0.11.11.jar", + "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.8/lenses_2.13-0.11.8.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.11/lenses_2.13-0.11.11.jar" + "https://repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.8/lenses_2.13-0.11.8.jar" ], "packages": [ "scalapb.lenses" ], - "sha256": "3da04a4ffd7b537ec90beb0d2fa456198a7c6844cc39a16be5aad3961ee59e5c", - "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.11/lenses_2.13-0.11.11.jar" + "sha256": "a76673c7a43056837154be6d0f4cfd7239a21c6b708d3b5753a88876f4033d0e", + "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.8/lenses_2.13-0.11.8.jar" }, { - "coord": "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.11", + "coord": "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.8", "dependencies": [ - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.11/lenses_2.13-0.11.11-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.8/lenses_2.13-0.11.8-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.11/lenses_2.13-0.11.11-sources.jar" + "https://repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.8/lenses_2.13-0.11.8-sources.jar" ], "packages": [], - "sha256": "76f7266150b35caaef282a7c9e83a6e768df42faf071e6830a463e3d47b5c9ea", - "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.11/lenses_2.13-0.11.11-sources.jar" + "sha256": "7015971965d16cc3a785725508125531d4a08827909ab64ab072ddb9c8425905", + "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.8/lenses_2.13-0.11.8-sources.jar" }, { "coord": "com.thesamet.scalapb:protoc-bridge_2.13:0.9.5", @@ -2768,122 +2603,132 @@ "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/protoc-gen_2.13/0.9.5/protoc-gen_2.13-0.9.5-sources.jar" }, { - "coord": "com.thesamet.scalapb:scalapb-json4s_2.13:0.12.0", + "coord": "com.thesamet.scalapb:scalapb-json4s_2.13:0.11.1", "dependencies": [ - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.11", - "org.json4s:json4s-ast_2.13:4.0.1", - "org.json4s:json4s-jackson-core_2.13:4.0.1", + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.8", + "com.thoughtworks.paranamer:paranamer:2.8", + "org.json4s:json4s-ast_2.13:3.6.11", + "org.json4s:json4s-core_2.13:3.6.11", + "org.json4s:json4s-jackson_2.13:3.6.11", + "org.json4s:json4s-scalap_2.13:3.6.11", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ - "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.11", - "org.json4s:json4s-jackson-core_2.13:4.0.1", + "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.8", + "org.json4s:json4s-jackson_2.13:3.6.11", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-json4s_2.13/0.12.0/scalapb-json4s_2.13-0.12.0.jar", + "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-json4s_2.13/0.11.1/scalapb-json4s_2.13-0.11.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-json4s_2.13/0.12.0/scalapb-json4s_2.13-0.12.0.jar" + "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-json4s_2.13/0.11.1/scalapb-json4s_2.13-0.11.1.jar" ], "packages": [ "scalapb.json4s" ], - "sha256": "040f66ae73b694c7c74348c48c4f54510a5421e963489905d81ed6c95de6913a", - "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-json4s_2.13/0.12.0/scalapb-json4s_2.13-0.12.0.jar" + "sha256": "fed8c2febfdc74e8989ef68c6b1ac5e5d26b0cda250b6644e83334b0c17bc5cf", + "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-json4s_2.13/0.11.1/scalapb-json4s_2.13-0.11.1.jar" }, { - "coord": "com.thesamet.scalapb:scalapb-json4s_2.13:jar:sources:0.12.0", + "coord": "com.thesamet.scalapb:scalapb-json4s_2.13:jar:sources:0.11.1", "dependencies": [ - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.11", - "org.json4s:json4s-ast_2.13:jar:sources:4.0.1", - "org.json4s:json4s-jackson-core_2.13:jar:sources:4.0.1", + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.8", + "com.thoughtworks.paranamer:paranamer:jar:sources:2.8", + "org.json4s:json4s-ast_2.13:jar:sources:3.6.11", + "org.json4s:json4s-core_2.13:jar:sources:3.6.11", + "org.json4s:json4s-jackson_2.13:jar:sources:3.6.11", + "org.json4s:json4s-scalap_2.13:jar:sources:3.6.11", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ - "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.11", - "org.json4s:json4s-jackson-core_2.13:jar:sources:4.0.1", + "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.8", + "org.json4s:json4s-jackson_2.13:jar:sources:3.6.11", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-json4s_2.13/0.12.0/scalapb-json4s_2.13-0.12.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-json4s_2.13/0.11.1/scalapb-json4s_2.13-0.11.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-json4s_2.13/0.12.0/scalapb-json4s_2.13-0.12.0-sources.jar" + "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-json4s_2.13/0.11.1/scalapb-json4s_2.13-0.11.1-sources.jar" ], "packages": [], - "sha256": "31afc887ceb7b4fb048eb028020c2ac67379fb0298ca1f53caa3ac7bb6924c77", - "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-json4s_2.13/0.12.0/scalapb-json4s_2.13-0.12.0-sources.jar" + "sha256": "14cf73e3e63cd077fa9f39ec101f3a17fd1899bb45a4a3ba9b92c99f45b778b1", + "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-json4s_2.13/0.11.1/scalapb-json4s_2.13-0.11.1-sources.jar" }, { - "coord": "com.thesamet.scalapb:scalapb-runtime-grpc_2.13:0.11.11", + "coord": "com.thesamet.scalapb:scalapb-runtime-grpc_2.13:0.11.8", "dependencies": [ - "com.google.protobuf:protobuf-java:3.21.7", - "com.thesamet.scalapb:lenses_2.13:0.11.11", - "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.11", - "io.grpc:grpc-protobuf:1.50.0", - "io.grpc:grpc-stub:1.50.0", - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0", + "com.google.protobuf:protobuf-java:3.19.3", + "com.thesamet.scalapb:lenses_2.13:0.11.8", + "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.8", + "io.grpc:grpc-protobuf:1.44.0", + "io.grpc:grpc-stub:1.44.0", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ - "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.11", - "io.grpc:grpc-protobuf:1.50.0", - "io.grpc:grpc-stub:1.50.0", - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0", + "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.8", + "io.grpc:grpc-protobuf:1.44.0", + "io.grpc:grpc-stub:1.44.0", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.11/scalapb-runtime-grpc_2.13-0.11.11.jar", + "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.8/scalapb-runtime-grpc_2.13-0.11.8.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.11/scalapb-runtime-grpc_2.13-0.11.11.jar" + "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.8/scalapb-runtime-grpc_2.13-0.11.8.jar" ], "packages": [ "scalapb.grpc" ], - "sha256": "e76ed66614aad68a151c1018c746392b9fdd7bba64c2faf53c99c7a0ade4d32c", - "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.11/scalapb-runtime-grpc_2.13-0.11.11.jar" + "sha256": "fa445e73a5076c545b695d45cae6a1da0326399822c75073e47cf13114a3926f", + "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.8/scalapb-runtime-grpc_2.13-0.11.8.jar" }, { - "coord": "com.thesamet.scalapb:scalapb-runtime-grpc_2.13:jar:sources:0.11.11", + "coord": "com.thesamet.scalapb:scalapb-runtime-grpc_2.13:jar:sources:0.11.8", "dependencies": [ - "com.google.protobuf:protobuf-java:jar:sources:3.21.7", - "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.11", - "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.11", - "io.grpc:grpc-protobuf:jar:sources:1.50.0", - "io.grpc:grpc-stub:jar:sources:1.50.0", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0", + "com.google.protobuf:protobuf-java:jar:sources:3.19.3", + "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.8", + "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.8", + "io.grpc:grpc-protobuf:jar:sources:1.44.0", + "io.grpc:grpc-stub:jar:sources:1.44.0", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ - "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.11", - "io.grpc:grpc-protobuf:jar:sources:1.50.0", - "io.grpc:grpc-stub:jar:sources:1.50.0", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0", + "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.8", + "io.grpc:grpc-protobuf:jar:sources:1.44.0", + "io.grpc:grpc-stub:jar:sources:1.44.0", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.11/scalapb-runtime-grpc_2.13-0.11.11-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.8/scalapb-runtime-grpc_2.13-0.11.8-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.11/scalapb-runtime-grpc_2.13-0.11.11-sources.jar" + "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.8/scalapb-runtime-grpc_2.13-0.11.8-sources.jar" ], "packages": [], - "sha256": "2e5338856aa29e559ea083e532ed498267c096e418d35c917bccd752f6bec6f3", - "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.11/scalapb-runtime-grpc_2.13-0.11.11-sources.jar" + "sha256": "a7ea5b2e833c0e67929cc1ff87de87d458aaef7a415bfa7b5c72ad32b5f5e19f", + "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime-grpc_2.13/0.11.8/scalapb-runtime-grpc_2.13-0.11.8-sources.jar" }, { - "coord": "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.11", + "coord": "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.8", "dependencies": [ - "com.google.protobuf:protobuf-java:3.21.7", - "com.thesamet.scalapb:lenses_2.13:0.11.11", - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0", + "com.google.protobuf:protobuf-java:3.19.3", + "com.thesamet.scalapb:lenses_2.13:0.11.8", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ - "com.google.protobuf:protobuf-java:3.21.7", - "com.thesamet.scalapb:lenses_2.13:0.11.11", - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0", + "com.google.protobuf:protobuf-java:3.19.3", + "com.thesamet.scalapb:lenses_2.13:0.11.8", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.11/scalapb-runtime_2.13-0.11.11.jar", + "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.8/scalapb-runtime_2.13-0.11.8.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.11/scalapb-runtime_2.13-0.11.11.jar" + "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.8/scalapb-runtime_2.13-0.11.8.jar" ], "packages": [ "com.google.protobuf.any", @@ -2904,30 +2749,30 @@ "scalapb.options", "scalapb.textformat" ], - "sha256": "11415623de89db09d64902a38ada91c037714d10f01e2337bb1b9afc3a4072b6", - "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.11/scalapb-runtime_2.13-0.11.11.jar" + "sha256": "d7a9ae13949a1112307b0f6a2e7a094c0542aa40363ebe9d70a6ed723b07708c", + "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.8/scalapb-runtime_2.13-0.11.8.jar" }, { - "coord": "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.11", + "coord": "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.8", "dependencies": [ - "com.google.protobuf:protobuf-java:jar:sources:3.21.7", - "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.11", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0", + "com.google.protobuf:protobuf-java:jar:sources:3.19.3", + "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.8", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ - "com.google.protobuf:protobuf-java:jar:sources:3.21.7", - "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.11", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0", + "com.google.protobuf:protobuf-java:jar:sources:3.19.3", + "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.8", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.11/scalapb-runtime_2.13-0.11.11-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.8/scalapb-runtime_2.13-0.11.8-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.11/scalapb-runtime_2.13-0.11.11-sources.jar" + "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.8/scalapb-runtime_2.13-0.11.8-sources.jar" ], "packages": [], - "sha256": "7a90c9e2b38c7b4a3578b0c7f5e82e8ec4370722143651a4f840eb7b2559d939", - "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.11/scalapb-runtime_2.13-0.11.11-sources.jar" + "sha256": "2a181e71798fb6704ef043cf075448ae39552cc8506c7c4a5385d6d5fb7f3949", + "url": "https://repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.8/scalapb-runtime_2.13-0.11.8-sources.jar" }, { "coord": "com.thoughtworks.paranamer:paranamer:2.8", @@ -2962,10 +2807,10 @@ "com.typesafe.akka:akka-actor_2.13:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:2.6.18", "com.typesafe.akka:akka-testkit_2.13:2.6.18", - "com.typesafe:config:1.4.2", + "com.typesafe:config:1.4.1", "org.scala-lang.modules:scala-java8-compat_2.13:1.0.0", "org.scala-lang:scala-library:2.13.8", - "org.slf4j:slf4j-api:1.7.36" + "org.slf4j:slf4j-api:1.7.26" ], "directDependencies": [ "com.typesafe.akka:akka-actor-typed_2.13:2.6.18", @@ -2993,10 +2838,10 @@ "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.18", "com.typesafe.akka:akka-testkit_2.13:jar:sources:2.6.18", - "com.typesafe:config:jar:sources:1.4.2", + "com.typesafe:config:jar:sources:1.4.1", "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources:1.0.0", "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], "directDependencies": [ "com.typesafe.akka:akka-actor-typed_2.13:jar:sources:2.6.18", @@ -3017,16 +2862,16 @@ "dependencies": [ "com.typesafe.akka:akka-actor_2.13:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:2.6.18", - "com.typesafe:config:1.4.2", + "com.typesafe:config:1.4.1", "org.scala-lang.modules:scala-java8-compat_2.13:1.0.0", "org.scala-lang:scala-library:2.13.8", - "org.slf4j:slf4j-api:1.7.36" + "org.slf4j:slf4j-api:1.7.26" ], "directDependencies": [ "com.typesafe.akka:akka-actor_2.13:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:2.6.18", "org.scala-lang:scala-library:2.13.8", - "org.slf4j:slf4j-api:1.7.36" + "org.slf4j:slf4j-api:1.7.26" ], "file": "v1/https/repo1.maven.org/maven2/com/typesafe/akka/akka-actor-typed_2.13/2.6.18/akka-actor-typed_2.13-2.6.18.jar", "mirror_urls": [ @@ -3057,16 +2902,16 @@ "dependencies": [ "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.18", - "com.typesafe:config:jar:sources:1.4.2", + "com.typesafe:config:jar:sources:1.4.1", "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources:1.0.0", "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], "directDependencies": [ "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.18", "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], "file": "v1/https/repo1.maven.org/maven2/com/typesafe/akka/akka-actor-typed_2.13/2.6.18/akka-actor-typed_2.13-2.6.18-sources.jar", "mirror_urls": [ @@ -3079,12 +2924,12 @@ { "coord": "com.typesafe.akka:akka-actor_2.13:2.6.18", "dependencies": [ - "com.typesafe:config:1.4.2", + "com.typesafe:config:1.4.1", "org.scala-lang.modules:scala-java8-compat_2.13:1.0.0", "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ - "com.typesafe:config:1.4.2", + "com.typesafe:config:1.4.1", "org.scala-lang.modules:scala-java8-compat_2.13:1.0.0", "org.scala-lang:scala-library:2.13.8" ], @@ -3127,12 +2972,12 @@ { "coord": "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", "dependencies": [ - "com.typesafe:config:jar:sources:1.4.2", + "com.typesafe:config:jar:sources:1.4.1", "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources:1.0.0", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ - "com.typesafe:config:jar:sources:1.4.2", + "com.typesafe:config:jar:sources:1.4.1", "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources:1.0.0", "org.scala-lang:scala-library:jar:sources:2.13.8" ], @@ -3221,12 +3066,12 @@ "com.typesafe.akka:akka-http-core_2.13:10.2.8", "com.typesafe.akka:akka-http_2.13:10.2.8", "com.typesafe.akka:akka-parsing_2.13:10.2.8", - "io.spray:spray-json_2.13:1.3.6", + "io.spray:spray-json_2.13:1.3.5", "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ "com.typesafe.akka:akka-http_2.13:10.2.8", - "io.spray:spray-json_2.13:1.3.6", + "io.spray:spray-json_2.13:1.3.5", "org.scala-lang:scala-library:2.13.8" ], "file": "v1/https/repo1.maven.org/maven2/com/typesafe/akka/akka-http-spray-json_2.13/10.2.8/akka-http-spray-json_2.13-10.2.8.jar", @@ -3245,12 +3090,12 @@ "com.typesafe.akka:akka-http-core_2.13:jar:sources:10.2.8", "com.typesafe.akka:akka-http_2.13:jar:sources:10.2.8", "com.typesafe.akka:akka-parsing_2.13:jar:sources:10.2.8", - "io.spray:spray-json_2.13:jar:sources:1.3.6", + "io.spray:spray-json_2.13:jar:sources:1.3.5", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ "com.typesafe.akka:akka-http_2.13:jar:sources:10.2.8", - "io.spray:spray-json_2.13:jar:sources:1.3.6", + "io.spray:spray-json_2.13:jar:sources:1.3.5", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "file": "v1/https/repo1.maven.org/maven2/com/typesafe/akka/akka-http-spray-json_2.13/10.2.8/akka-http-spray-json_2.13-10.2.8-sources.jar", @@ -3436,15 +3281,15 @@ "coord": "com.typesafe.akka:akka-slf4j_2.13:2.6.18", "dependencies": [ "com.typesafe.akka:akka-actor_2.13:2.6.18", - "com.typesafe:config:1.4.2", + "com.typesafe:config:1.4.1", "org.scala-lang.modules:scala-java8-compat_2.13:1.0.0", "org.scala-lang:scala-library:2.13.8", - "org.slf4j:slf4j-api:1.7.36" + "org.slf4j:slf4j-api:1.7.26" ], "directDependencies": [ "com.typesafe.akka:akka-actor_2.13:2.6.18", "org.scala-lang:scala-library:2.13.8", - "org.slf4j:slf4j-api:1.7.36" + "org.slf4j:slf4j-api:1.7.26" ], "file": "v1/https/repo1.maven.org/maven2/com/typesafe/akka/akka-slf4j_2.13/2.6.18/akka-slf4j_2.13-2.6.18.jar", "mirror_urls": [ @@ -3460,15 +3305,15 @@ "coord": "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.18", "dependencies": [ "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", - "com.typesafe:config:jar:sources:1.4.2", + "com.typesafe:config:jar:sources:1.4.1", "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources:1.0.0", "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], "directDependencies": [ "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], "file": "v1/https/repo1.maven.org/maven2/com/typesafe/akka/akka-slf4j_2.13/2.6.18/akka-slf4j_2.13-2.6.18-sources.jar", "mirror_urls": [ @@ -3485,11 +3330,11 @@ "com.typesafe.akka:akka-protobuf-v3_2.13:2.6.18", "com.typesafe.akka:akka-stream_2.13:2.6.18", "com.typesafe.akka:akka-testkit_2.13:2.6.18", - "com.typesafe:config:1.4.2", + "com.typesafe:config:1.4.1", "com.typesafe:ssl-config-core_2.13:0.4.2", - "org.reactivestreams:reactive-streams:1.0.4", + "org.reactivestreams:reactive-streams:1.0.2", "org.scala-lang.modules:scala-java8-compat_2.13:1.0.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ @@ -3516,11 +3361,11 @@ "com.typesafe.akka:akka-protobuf-v3_2.13:jar:sources:2.6.18", "com.typesafe.akka:akka-stream_2.13:jar:sources:2.6.18", "com.typesafe.akka:akka-testkit_2.13:jar:sources:2.6.18", - "com.typesafe:config:jar:sources:1.4.2", + "com.typesafe:config:jar:sources:1.4.1", "com.typesafe:ssl-config-core_2.13:jar:sources:0.4.2", - "org.reactivestreams:reactive-streams:jar:sources:1.0.4", + "org.reactivestreams:reactive-streams:jar:sources:1.0.2", "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources:1.0.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ @@ -3541,18 +3386,18 @@ "dependencies": [ "com.typesafe.akka:akka-actor_2.13:2.6.18", "com.typesafe.akka:akka-protobuf-v3_2.13:2.6.18", - "com.typesafe:config:1.4.2", + "com.typesafe:config:1.4.1", "com.typesafe:ssl-config-core_2.13:0.4.2", - "org.reactivestreams:reactive-streams:1.0.4", + "org.reactivestreams:reactive-streams:1.0.2", "org.scala-lang.modules:scala-java8-compat_2.13:1.0.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ "com.typesafe.akka:akka-actor_2.13:2.6.18", "com.typesafe.akka:akka-protobuf-v3_2.13:2.6.18", "com.typesafe:ssl-config-core_2.13:0.4.2", - "org.reactivestreams:reactive-streams:1.0.4", + "org.reactivestreams:reactive-streams:1.0.2", "org.scala-lang:scala-library:2.13.8" ], "file": "v1/https/repo1.maven.org/maven2/com/typesafe/akka/akka-stream_2.13/2.6.18/akka-stream_2.13-2.6.18.jar", @@ -3582,18 +3427,18 @@ "dependencies": [ "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", "com.typesafe.akka:akka-protobuf-v3_2.13:jar:sources:2.6.18", - "com.typesafe:config:jar:sources:1.4.2", + "com.typesafe:config:jar:sources:1.4.1", "com.typesafe:ssl-config-core_2.13:jar:sources:0.4.2", - "org.reactivestreams:reactive-streams:jar:sources:1.0.4", + "org.reactivestreams:reactive-streams:jar:sources:1.0.2", "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources:1.0.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", "com.typesafe.akka:akka-protobuf-v3_2.13:jar:sources:2.6.18", "com.typesafe:ssl-config-core_2.13:jar:sources:0.4.2", - "org.reactivestreams:reactive-streams:jar:sources:1.0.4", + "org.reactivestreams:reactive-streams:jar:sources:1.0.2", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "file": "v1/https/repo1.maven.org/maven2/com/typesafe/akka/akka-stream_2.13/2.6.18/akka-stream_2.13-2.6.18-sources.jar", @@ -3608,7 +3453,7 @@ "coord": "com.typesafe.akka:akka-testkit_2.13:2.6.18", "dependencies": [ "com.typesafe.akka:akka-actor_2.13:2.6.18", - "com.typesafe:config:1.4.2", + "com.typesafe:config:1.4.1", "org.scala-lang.modules:scala-java8-compat_2.13:1.0.0", "org.scala-lang:scala-library:2.13.8" ], @@ -3631,7 +3476,7 @@ "coord": "com.typesafe.akka:akka-testkit_2.13:jar:sources:2.6.18", "dependencies": [ "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", - "com.typesafe:config:jar:sources:1.4.2", + "com.typesafe:config:jar:sources:1.4.1", "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources:1.0.0", "org.scala-lang:scala-library:jar:sources:2.13.8" ], @@ -3648,123 +3493,85 @@ "url": "https://repo1.maven.org/maven2/com/typesafe/akka/akka-testkit_2.13/2.6.18/akka-testkit_2.13-2.6.18-sources.jar" }, { - "coord": "com.typesafe.netty:netty-reactive-streams:2.0.4", - "dependencies": [ - "io.netty:netty-handler:4.1.79.Final", - "org.reactivestreams:reactive-streams:1.0.4" - ], - "directDependencies": [ - "io.netty:netty-handler:4.1.79.Final", - "org.reactivestreams:reactive-streams:1.0.4" - ], - "file": "v1/https/repo1.maven.org/maven2/com/typesafe/netty/netty-reactive-streams/2.0.4/netty-reactive-streams-2.0.4.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/com/typesafe/netty/netty-reactive-streams/2.0.4/netty-reactive-streams-2.0.4.jar" - ], - "packages": [ - "com.typesafe.netty" - ], - "sha256": "eafc52d500b49e891db095ee7baac0420aea8a97015ab7671ba1f1ccabf799d2", - "url": "https://repo1.maven.org/maven2/com/typesafe/netty/netty-reactive-streams/2.0.4/netty-reactive-streams-2.0.4.jar" - }, - { - "coord": "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.4", - "dependencies": [ - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "org.reactivestreams:reactive-streams:jar:sources:1.0.4" - ], - "directDependencies": [ - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "org.reactivestreams:reactive-streams:jar:sources:1.0.4" - ], - "file": "v1/https/repo1.maven.org/maven2/com/typesafe/netty/netty-reactive-streams/2.0.4/netty-reactive-streams-2.0.4-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/com/typesafe/netty/netty-reactive-streams/2.0.4/netty-reactive-streams-2.0.4-sources.jar" - ], - "packages": [], - "sha256": "76df17cc7c4fac9c470e557b5cca224df51ba878ec9fd3fd8f0f89878cbf98ab", - "url": "https://repo1.maven.org/maven2/com/typesafe/netty/netty-reactive-streams/2.0.4/netty-reactive-streams-2.0.4-sources.jar" - }, - { - "coord": "com.typesafe.scala-logging:scala-logging_2.13:3.9.5", + "coord": "com.typesafe.scala-logging:scala-logging_2.13:3.9.2", "dependencies": [ "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.slf4j:slf4j-api:1.7.36" + "org.slf4j:slf4j-api:1.7.26" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.slf4j:slf4j-api:1.7.36" + "org.slf4j:slf4j-api:1.7.26" ], - "file": "v1/https/repo1.maven.org/maven2/com/typesafe/scala-logging/scala-logging_2.13/3.9.5/scala-logging_2.13-3.9.5.jar", + "file": "v1/https/repo1.maven.org/maven2/com/typesafe/scala-logging/scala-logging_2.13/3.9.2/scala-logging_2.13-3.9.2.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/typesafe/scala-logging/scala-logging_2.13/3.9.5/scala-logging_2.13-3.9.5.jar" + "https://repo1.maven.org/maven2/com/typesafe/scala-logging/scala-logging_2.13/3.9.2/scala-logging_2.13-3.9.2.jar" ], "packages": [ "com.typesafe.scalalogging" ], - "sha256": "87a3017d3f43e6ace7566fe4c3d615134c6914ff871c8d64bb32ca1d996d0545", - "url": "https://repo1.maven.org/maven2/com/typesafe/scala-logging/scala-logging_2.13/3.9.5/scala-logging_2.13-3.9.5.jar" + "sha256": "66f30da5dc6d482dc721272db84dfdee96189cafd6413bd323e66c0423e17009", + "url": "https://repo1.maven.org/maven2/com/typesafe/scala-logging/scala-logging_2.13/3.9.2/scala-logging_2.13-3.9.2.jar" }, { - "coord": "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.5", + "coord": "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.2", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], - "file": "v1/https/repo1.maven.org/maven2/com/typesafe/scala-logging/scala-logging_2.13/3.9.5/scala-logging_2.13-3.9.5-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/typesafe/scala-logging/scala-logging_2.13/3.9.2/scala-logging_2.13-3.9.2-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/typesafe/scala-logging/scala-logging_2.13/3.9.5/scala-logging_2.13-3.9.5-sources.jar" + "https://repo1.maven.org/maven2/com/typesafe/scala-logging/scala-logging_2.13/3.9.2/scala-logging_2.13-3.9.2-sources.jar" ], "packages": [], - "sha256": "db07c47dd691dc4208338364f395fb39448f2d5d29a8b68d099488e9adb1af05", - "url": "https://repo1.maven.org/maven2/com/typesafe/scala-logging/scala-logging_2.13/3.9.5/scala-logging_2.13-3.9.5-sources.jar" + "sha256": "41f185bfcf1a3f8078ae7cbef4242e9a742e308c686df1a967b85e4db1c74a9c", + "url": "https://repo1.maven.org/maven2/com/typesafe/scala-logging/scala-logging_2.13/3.9.2/scala-logging_2.13-3.9.2-sources.jar" }, { - "coord": "com.typesafe:config:1.4.2", + "coord": "com.typesafe:config:1.4.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/typesafe/config/1.4.2/config-1.4.2.jar", + "file": "v1/https/repo1.maven.org/maven2/com/typesafe/config/1.4.1/config-1.4.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/typesafe/config/1.4.2/config-1.4.2.jar" + "https://repo1.maven.org/maven2/com/typesafe/config/1.4.1/config-1.4.1.jar" ], "packages": [ "com.typesafe.config", "com.typesafe.config.impl", "com.typesafe.config.parser" ], - "sha256": "0076c249b4387d8369146528fd5dacb3efba098dc02ecf9ac81debdfc2e12fd5", - "url": "https://repo1.maven.org/maven2/com/typesafe/config/1.4.2/config-1.4.2.jar" + "sha256": "4c0aa7e223c75c8840c41fc183d4cd3118140a1ee503e3e08ce66ed2794c948f", + "url": "https://repo1.maven.org/maven2/com/typesafe/config/1.4.1/config-1.4.1.jar" }, { - "coord": "com.typesafe:config:jar:sources:1.4.2", + "coord": "com.typesafe:config:jar:sources:1.4.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/typesafe/config/1.4.2/config-1.4.2-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/typesafe/config/1.4.1/config-1.4.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/typesafe/config/1.4.2/config-1.4.2-sources.jar" + "https://repo1.maven.org/maven2/com/typesafe/config/1.4.1/config-1.4.1-sources.jar" ], "packages": [], - "sha256": "2f1139b6985e24abe09fd05f7b3448dbbcda54854bd490c783cd02fdb82f342f", - "url": "https://repo1.maven.org/maven2/com/typesafe/config/1.4.2/config-1.4.2-sources.jar" + "sha256": "89af318a607f7e2b2691ed1ef4b4890bd37ea17d6986b0aec50dd4d5f889520c", + "url": "https://repo1.maven.org/maven2/com/typesafe/config/1.4.1/config-1.4.1-sources.jar" }, { "coord": "com.typesafe:ssl-config-core_2.13:0.4.2", "dependencies": [ - "com.typesafe:config:1.4.2", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", + "com.typesafe:config:1.4.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ - "com.typesafe:config:1.4.2", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", + "com.typesafe:config:1.4.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang:scala-library:2.13.8" ], "file": "v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.13/0.4.2/ssl-config-core_2.13-0.4.2.jar", @@ -3783,13 +3590,13 @@ { "coord": "com.typesafe:ssl-config-core_2.13:jar:sources:0.4.2", "dependencies": [ - "com.typesafe:config:jar:sources:1.4.2", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "com.typesafe:config:jar:sources:1.4.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ - "com.typesafe:config:jar:sources:1.4.2", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "com.typesafe:config:jar:sources:1.4.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "file": "v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.13/0.4.2/ssl-config-core_2.13-0.4.2-sources.jar", @@ -3801,16 +3608,16 @@ "url": "https://repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.13/0.4.2/ssl-config-core_2.13-0.4.2-sources.jar" }, { - "coord": "com.zaxxer:HikariCP:3.4.5", + "coord": "com.zaxxer:HikariCP:3.2.0", "dependencies": [ - "org.slf4j:slf4j-api:1.7.36" + "org.slf4j:slf4j-api:1.7.26" ], "directDependencies": [ - "org.slf4j:slf4j-api:1.7.36" + "org.slf4j:slf4j-api:1.7.26" ], - "file": "v1/https/repo1.maven.org/maven2/com/zaxxer/HikariCP/3.4.5/HikariCP-3.4.5.jar", + "file": "v1/https/repo1.maven.org/maven2/com/zaxxer/HikariCP/3.2.0/HikariCP-3.2.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/zaxxer/HikariCP/3.4.5/HikariCP-3.4.5.jar" + "https://repo1.maven.org/maven2/com/zaxxer/HikariCP/3.2.0/HikariCP-3.2.0.jar" ], "packages": [ "com.zaxxer.hikari", @@ -3822,41 +3629,32 @@ "com.zaxxer.hikari.pool", "com.zaxxer.hikari.util" ], - "sha256": "8b732f9470570d4a841dc1ef6c826b586978b25ba830712ff1fa59de275dfa61", - "url": "https://repo1.maven.org/maven2/com/zaxxer/HikariCP/3.4.5/HikariCP-3.4.5.jar" + "sha256": "b008de68bbd85811f4b6e8f0860d0966c6acb4f2e75fabd46ec2094569cbefeb", + "url": "https://repo1.maven.org/maven2/com/zaxxer/HikariCP/3.2.0/HikariCP-3.2.0.jar" }, { - "coord": "com.zaxxer:HikariCP:jar:sources:3.4.5", + "coord": "com.zaxxer:HikariCP:jar:sources:3.2.0", "dependencies": [ - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], "directDependencies": [ - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], - "file": "v1/https/repo1.maven.org/maven2/com/zaxxer/HikariCP/3.4.5/HikariCP-3.4.5-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/zaxxer/HikariCP/3.2.0/HikariCP-3.2.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/com/zaxxer/HikariCP/3.4.5/HikariCP-3.4.5-sources.jar" - ], - "packages": [ - "com.zaxxer.hikari", - "com.zaxxer.hikari.hibernate", - "com.zaxxer.hikari.metrics", - "com.zaxxer.hikari.metrics.dropwizard", - "com.zaxxer.hikari.metrics.micrometer", - "com.zaxxer.hikari.metrics.prometheus", - "com.zaxxer.hikari.pool", - "com.zaxxer.hikari.util" + "https://repo1.maven.org/maven2/com/zaxxer/HikariCP/3.2.0/HikariCP-3.2.0-sources.jar" ], - "sha256": "5e9d9d6c82c3aa25830d473b712b94d82991e610de760d72e464d15fdf6c32c9", - "url": "https://repo1.maven.org/maven2/com/zaxxer/HikariCP/3.4.5/HikariCP-3.4.5-sources.jar" + "packages": [], + "sha256": "a66fc818710bc62c3fe19accc933f234dcec7bb58ac7cb36518d46ff57a6c666", + "url": "https://repo1.maven.org/maven2/com/zaxxer/HikariCP/3.2.0/HikariCP-3.2.0-sources.jar" }, { - "coord": "commons-codec:commons-codec:1.11", + "coord": "commons-codec:commons-codec:1.14", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar", + "file": "v1/https/repo1.maven.org/maven2/commons-codec/commons-codec/1.14/commons-codec-1.14.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar" + "https://repo1.maven.org/maven2/commons-codec/commons-codec/1.14/commons-codec-1.14.jar" ], "packages": [ "org.apache.commons.codec", @@ -3867,56 +3665,52 @@ "org.apache.commons.codec.language.bm", "org.apache.commons.codec.net" ], - "sha256": "e599d5318e97aa48f42136a2927e6dfa4e8881dff0e6c8e3109ddbbff51d7b7d", - "url": "https://repo1.maven.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar" + "sha256": "a128e4f93fabe5381ded64cf2873019e06030b718eb43ceeae0b0e5d17ad33e9", + "url": "https://repo1.maven.org/maven2/commons-codec/commons-codec/1.14/commons-codec-1.14.jar" }, { - "coord": "commons-codec:commons-codec:jar:sources:1.11", + "coord": "commons-codec:commons-codec:jar:sources:1.14", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/commons-codec/commons-codec/1.14/commons-codec-1.14-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11-sources.jar" + "https://repo1.maven.org/maven2/commons-codec/commons-codec/1.14/commons-codec-1.14-sources.jar" ], "packages": [], - "sha256": "901cb5d1f7c2877017c95d3c5efd5a497738d0162ef72cdf58e9cb13f50b2e9c", - "url": "https://repo1.maven.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11-sources.jar" + "sha256": "8f039d63b9e02a66f47c8bda13d389f2c7ca6fdd115f6294c58a0b628f7e568a", + "url": "https://repo1.maven.org/maven2/commons-codec/commons-codec/1.14/commons-codec-1.14-sources.jar" }, { - "coord": "commons-io:commons-io:2.11.0", + "coord": "commons-io:commons-io:2.5", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar", + "file": "v1/https/repo1.maven.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar" + "https://repo1.maven.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar" ], "packages": [ "org.apache.commons.io", "org.apache.commons.io.comparator", - "org.apache.commons.io.file", - "org.apache.commons.io.file.spi", "org.apache.commons.io.filefilter", - "org.apache.commons.io.function", "org.apache.commons.io.input", - "org.apache.commons.io.input.buffer", "org.apache.commons.io.monitor", "org.apache.commons.io.output", "org.apache.commons.io.serialization" ], - "sha256": "961b2f6d87dbacc5d54abf45ab7a6e2495f89b75598962d8c723cea9bc210908", - "url": "https://repo1.maven.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar" + "sha256": "a10418348d234968600ccb1d988efcbbd08716e1d96936ccc1880e7d22513474", + "url": "https://repo1.maven.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar" }, { - "coord": "commons-io:commons-io:jar:sources:2.11.0", + "coord": "commons-io:commons-io:jar:sources:2.5", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/commons-io/commons-io/2.5/commons-io-2.5-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0-sources.jar" + "https://repo1.maven.org/maven2/commons-io/commons-io/2.5/commons-io-2.5-sources.jar" ], "packages": [], - "sha256": "8c5746d4e96ed0300a7252b1d4cb65111b19400d28a929ca8e0e4b637875f1ee", - "url": "https://repo1.maven.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0-sources.jar" + "sha256": "3b69b518d9a844732e35509b79e499fca63a960ee4301b1c96dc32e87f3f60a1", + "url": "https://repo1.maven.org/maven2/commons-io/commons-io/2.5/commons-io-2.5-sources.jar" }, { "coord": "commons-logging:commons-logging:1.2", @@ -4017,79 +3811,48 @@ "url": "https://repo1.maven.org/maven2/dev/dirs/directories/26/directories-26-sources.jar" }, { - "coord": "dev.failsafe:failsafe:3.2.4", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/dev/failsafe/failsafe/3.2.4/failsafe-3.2.4.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/dev/failsafe/failsafe/3.2.4/failsafe-3.2.4.jar" - ], - "packages": [ - "dev.failsafe", - "dev.failsafe.event", - "dev.failsafe.function", - "dev.failsafe.internal", - "dev.failsafe.internal.util", - "dev.failsafe.spi" - ], - "sha256": "afa786e3e4191ca995838fbfa71d68fcc25ea6c3b3b125e001c96718108400c1", - "url": "https://repo1.maven.org/maven2/dev/failsafe/failsafe/3.2.4/failsafe-3.2.4.jar" - }, - { - "coord": "dev.failsafe:failsafe:jar:sources:3.2.4", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/dev/failsafe/failsafe/3.2.4/failsafe-3.2.4-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/dev/failsafe/failsafe/3.2.4/failsafe-3.2.4-sources.jar" - ], - "packages": [], - "sha256": "cac5bc2c38d5fa5ec82df58bf85318b8acb4a88d6f81cb6b776d7ea2e749b59c", - "url": "https://repo1.maven.org/maven2/dev/failsafe/failsafe/3.2.4/failsafe-3.2.4-sources.jar" - }, - { - "coord": "eu.rekawek.toxiproxy:toxiproxy-java:2.1.7", + "coord": "eu.rekawek.toxiproxy:toxiproxy-java:2.1.3", "dependencies": [ - "com.google.code.gson:gson:2.9.1" + "com.google.code.gson:gson:2.9.0" ], "directDependencies": [ - "com.google.code.gson:gson:2.9.1" + "com.google.code.gson:gson:2.9.0" ], - "file": "v1/https/repo1.maven.org/maven2/eu/rekawek/toxiproxy/toxiproxy-java/2.1.7/toxiproxy-java-2.1.7.jar", + "file": "v1/https/repo1.maven.org/maven2/eu/rekawek/toxiproxy/toxiproxy-java/2.1.3/toxiproxy-java-2.1.3.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/eu/rekawek/toxiproxy/toxiproxy-java/2.1.7/toxiproxy-java-2.1.7.jar" + "https://repo1.maven.org/maven2/eu/rekawek/toxiproxy/toxiproxy-java/2.1.3/toxiproxy-java-2.1.3.jar" ], "packages": [ "eu.rekawek.toxiproxy", "eu.rekawek.toxiproxy.model", "eu.rekawek.toxiproxy.model.toxic" ], - "sha256": "e5c98f993472b2c38e9124f17eba48c30cc6d4da5116bbfb9bc0939fa5121251", - "url": "https://repo1.maven.org/maven2/eu/rekawek/toxiproxy/toxiproxy-java/2.1.7/toxiproxy-java-2.1.7.jar" + "sha256": "c37738816ab1685b3f2d8235a99fb2d20761886b2520f82802ab45ec27b110db", + "url": "https://repo1.maven.org/maven2/eu/rekawek/toxiproxy/toxiproxy-java/2.1.3/toxiproxy-java-2.1.3.jar" }, { - "coord": "eu.rekawek.toxiproxy:toxiproxy-java:jar:sources:2.1.7", + "coord": "eu.rekawek.toxiproxy:toxiproxy-java:jar:sources:2.1.3", "dependencies": [ - "com.google.code.gson:gson:jar:sources:2.9.1" + "com.google.code.gson:gson:jar:sources:2.9.0" ], "directDependencies": [ - "com.google.code.gson:gson:jar:sources:2.9.1" + "com.google.code.gson:gson:jar:sources:2.9.0" ], - "file": "v1/https/repo1.maven.org/maven2/eu/rekawek/toxiproxy/toxiproxy-java/2.1.7/toxiproxy-java-2.1.7-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/eu/rekawek/toxiproxy/toxiproxy-java/2.1.3/toxiproxy-java-2.1.3-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/eu/rekawek/toxiproxy/toxiproxy-java/2.1.7/toxiproxy-java-2.1.7-sources.jar" + "https://repo1.maven.org/maven2/eu/rekawek/toxiproxy/toxiproxy-java/2.1.3/toxiproxy-java-2.1.3-sources.jar" ], "packages": [], - "sha256": "3b074878d1797d74a65ea939c5e27149ea6a15a16f8ebf5d654818c679fb0316", - "url": "https://repo1.maven.org/maven2/eu/rekawek/toxiproxy/toxiproxy-java/2.1.7/toxiproxy-java-2.1.7-sources.jar" + "sha256": "adea0ba3e560e40bc2c27cc1323848c947e725cd5ce75e9563ed457ff764b31b", + "url": "https://repo1.maven.org/maven2/eu/rekawek/toxiproxy/toxiproxy-java/2.1.3/toxiproxy-java-2.1.3-sources.jar" }, { - "coord": "io.burt:jmespath-core:0.5.1", + "coord": "io.burt:jmespath-core:0.5.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/io/burt/jmespath-core/0.5.1/jmespath-core-0.5.1.jar", + "file": "v1/https/repo1.maven.org/maven2/io/burt/jmespath-core/0.5.0/jmespath-core-0.5.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/burt/jmespath-core/0.5.1/jmespath-core-0.5.1.jar" + "https://repo1.maven.org/maven2/io/burt/jmespath-core/0.5.0/jmespath-core-0.5.0.jar" ], "packages": [ "io.burt.jmespath", @@ -4106,75 +3869,74 @@ "io.burt.jmespath.parser", "io.burt.jmespath.util" ], - "sha256": "f07e6e56cab616d478c52899e7649ef17d2f671c751f1c77dc613a514f84226c", - "url": "https://repo1.maven.org/maven2/io/burt/jmespath-core/0.5.1/jmespath-core-0.5.1.jar" + "sha256": "d19551fef93e00e0093dcd9d31023952516959bec10a0e6b634eea4e1878dddf", + "url": "https://repo1.maven.org/maven2/io/burt/jmespath-core/0.5.0/jmespath-core-0.5.0.jar" }, { - "coord": "io.burt:jmespath-core:jar:sources:0.5.1", + "coord": "io.burt:jmespath-core:jar:sources:0.5.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/io/burt/jmespath-core/0.5.1/jmespath-core-0.5.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/burt/jmespath-core/0.5.0/jmespath-core-0.5.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/burt/jmespath-core/0.5.1/jmespath-core-0.5.1-sources.jar" + "https://repo1.maven.org/maven2/io/burt/jmespath-core/0.5.0/jmespath-core-0.5.0-sources.jar" ], "packages": [], - "sha256": "b4460435423508c17c4979014123108a00df7ba5138e98cc31de05f9759a52e1", - "url": "https://repo1.maven.org/maven2/io/burt/jmespath-core/0.5.1/jmespath-core-0.5.1-sources.jar" + "sha256": "0e217d2c2990a14fe02db5e63b667b08540f4fdfaeae5deadf5a417c0262c281", + "url": "https://repo1.maven.org/maven2/io/burt/jmespath-core/0.5.0/jmespath-core-0.5.0-sources.jar" }, { - "coord": "io.burt:jmespath-jackson:0.5.1", + "coord": "io.burt:jmespath-jackson:0.5.0", "dependencies": [ - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "io.burt:jmespath-core:0.5.1" + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "io.burt:jmespath-core:0.5.0" ], "directDependencies": [ - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "io.burt:jmespath-core:0.5.1" + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "io.burt:jmespath-core:0.5.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/burt/jmespath-jackson/0.5.1/jmespath-jackson-0.5.1.jar", + "file": "v1/https/repo1.maven.org/maven2/io/burt/jmespath-jackson/0.5.0/jmespath-jackson-0.5.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/burt/jmespath-jackson/0.5.1/jmespath-jackson-0.5.1.jar" + "https://repo1.maven.org/maven2/io/burt/jmespath-jackson/0.5.0/jmespath-jackson-0.5.0.jar" ], "packages": [ "io.burt.jmespath.jackson" ], - "sha256": "f7aff82bf33eb91369b6ea48b3d1ec5ad43dbb6d85bd36719c9dbe2e7c3d0fd1", - "url": "https://repo1.maven.org/maven2/io/burt/jmespath-jackson/0.5.1/jmespath-jackson-0.5.1.jar" + "sha256": "2af9b1ad79784334d3b59147f86720330be57b1a24343589de40da3bbfe69681", + "url": "https://repo1.maven.org/maven2/io/burt/jmespath-jackson/0.5.0/jmespath-jackson-0.5.0.jar" }, { - "coord": "io.burt:jmespath-jackson:jar:sources:0.5.1", + "coord": "io.burt:jmespath-jackson:jar:sources:0.5.0", "dependencies": [ - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "io.burt:jmespath-core:jar:sources:0.5.1" + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "io.burt:jmespath-core:jar:sources:0.5.0" ], "directDependencies": [ - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "io.burt:jmespath-core:jar:sources:0.5.1" + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "io.burt:jmespath-core:jar:sources:0.5.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/burt/jmespath-jackson/0.5.1/jmespath-jackson-0.5.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/burt/jmespath-jackson/0.5.0/jmespath-jackson-0.5.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/burt/jmespath-jackson/0.5.1/jmespath-jackson-0.5.1-sources.jar" + "https://repo1.maven.org/maven2/io/burt/jmespath-jackson/0.5.0/jmespath-jackson-0.5.0-sources.jar" ], "packages": [], - "sha256": "e3e2c4813701922f8c4acffe0a652fe5cb431162888ddf2623fe486d8beb12a0", - "url": "https://repo1.maven.org/maven2/io/burt/jmespath-jackson/0.5.1/jmespath-jackson-0.5.1-sources.jar" + "sha256": "7d2d525a5aab10713eb53ea8dad5225a526267d96289ce4e5bea78180700afe4", + "url": "https://repo1.maven.org/maven2/io/burt/jmespath-jackson/0.5.0/jmespath-jackson-0.5.0-sources.jar" }, { - "coord": "io.circe:circe-core_2.13:0.14.3", + "coord": "io.circe:circe-core_2.13:0.13.0", "dependencies": [ - "io.circe:circe-numbers_2.13:0.14.3", + "io.circe:circe-numbers_2.13:0.13.0", "org.scala-lang:scala-library:2.13.8", - "org.typelevel:cats-core_2.13:2.8.0", - "org.typelevel:cats-kernel_2.13:2.8.0" + "org.typelevel:cats-core_2.13:2.6.1" ], "directDependencies": [ - "io.circe:circe-numbers_2.13:0.14.3", + "io.circe:circe-numbers_2.13:0.13.0", "org.scala-lang:scala-library:2.13.8", - "org.typelevel:cats-core_2.13:2.8.0" + "org.typelevel:cats-core_2.13:2.6.1" ], - "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-core_2.13/0.14.3/circe-core_2.13-0.14.3.jar", + "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-core_2.13/0.13.0/circe-core_2.13-0.13.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/circe/circe-core_2.13/0.14.3/circe-core_2.13-0.14.3.jar" + "https://repo1.maven.org/maven2/io/circe/circe-core_2.13/0.13.0/circe-core_2.13-0.13.0.jar" ], "packages": [ "io.circe", @@ -4182,43 +3944,46 @@ "io.circe.export", "io.circe.syntax" ], - "sha256": "58ec252f6a39032f90e13f5f71fbbfb05c9b4b5814ee2624145c5bb5b793da77", - "url": "https://repo1.maven.org/maven2/io/circe/circe-core_2.13/0.14.3/circe-core_2.13-0.14.3.jar" + "sha256": "a7a052f551a214754639985448e8b512f97f2f540b803239b03c46710a42c3ab", + "url": "https://repo1.maven.org/maven2/io/circe/circe-core_2.13/0.13.0/circe-core_2.13-0.13.0.jar" }, { - "coord": "io.circe:circe-core_2.13:jar:sources:0.14.3", + "coord": "io.circe:circe-core_2.13:jar:sources:0.13.0", "dependencies": [ - "io.circe:circe-numbers_2.13:jar:sources:0.14.3", + "io.circe:circe-numbers_2.13:jar:sources:0.13.0", "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.typelevel:cats-core_2.13:jar:sources:2.8.0", - "org.typelevel:cats-kernel_2.13:jar:sources:2.8.0" + "org.typelevel:cats-core_2.13:jar:sources:2.6.1" ], "directDependencies": [ - "io.circe:circe-numbers_2.13:jar:sources:0.14.3", + "io.circe:circe-numbers_2.13:jar:sources:0.13.0", "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.typelevel:cats-core_2.13:jar:sources:2.8.0" + "org.typelevel:cats-core_2.13:jar:sources:2.6.1" ], - "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-core_2.13/0.14.3/circe-core_2.13-0.14.3-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-core_2.13/0.13.0/circe-core_2.13-0.13.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/circe/circe-core_2.13/0.14.3/circe-core_2.13-0.14.3-sources.jar" + "https://repo1.maven.org/maven2/io/circe/circe-core_2.13/0.13.0/circe-core_2.13-0.13.0-sources.jar" ], "packages": [], - "sha256": "661db6dabb091915b697e567fc3169b64a6602d56f1f5a9a444c040dc7727ef2", - "url": "https://repo1.maven.org/maven2/io/circe/circe-core_2.13/0.14.3/circe-core_2.13-0.14.3-sources.jar" + "sha256": "2bd1746bc208a8a1517e531d97618e35ae7561b98ef025489a83619d3c6f7286", + "url": "https://repo1.maven.org/maven2/io/circe/circe-core_2.13/0.13.0/circe-core_2.13-0.13.0-sources.jar" }, { - "coord": "io.circe:circe-generic-extras_2.13:0.14.2", + "coord": "io.circe:circe-generic-extras_2.13:0.13.0", "dependencies": [ - "io.circe:circe-generic_2.13:0.14.3", - "org.scala-lang:scala-library:2.13.8" + "com.chuusai:shapeless_2.13:2.3.3", + "io.circe:circe-core_2.13:0.13.0", + "io.circe:circe-generic_2.13:0.13.0", + "io.circe:circe-numbers_2.13:0.13.0", + "org.scala-lang:scala-library:2.13.8", + "org.typelevel:cats-core_2.13:2.6.1" ], "directDependencies": [ - "io.circe:circe-generic_2.13:0.14.3", + "io.circe:circe-generic_2.13:0.13.0", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-generic-extras_2.13/0.14.2/circe-generic-extras_2.13-0.14.2.jar", + "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-generic-extras_2.13/0.13.0/circe-generic-extras_2.13-0.13.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/circe/circe-generic-extras_2.13/0.14.2/circe-generic-extras_2.13-0.14.2.jar" + "https://repo1.maven.org/maven2/io/circe/circe-generic-extras_2.13/0.13.0/circe-generic-extras_2.13-0.13.0.jar" ], "packages": [ "io.circe.generic.extras", @@ -4228,45 +3993,48 @@ "io.circe.generic.extras.encoding", "io.circe.generic.extras.util" ], - "sha256": "0040b8ba3b21f379f12846651a3c9ec73a8f67db2e12f4238b37a31e80feac57", - "url": "https://repo1.maven.org/maven2/io/circe/circe-generic-extras_2.13/0.14.2/circe-generic-extras_2.13-0.14.2.jar" + "sha256": "6688649b7c128eeff409095fe29f2c82df889d7bc53538e0dd2d5b7bd1ce928e", + "url": "https://repo1.maven.org/maven2/io/circe/circe-generic-extras_2.13/0.13.0/circe-generic-extras_2.13-0.13.0.jar" }, { - "coord": "io.circe:circe-generic-extras_2.13:jar:sources:0.14.2", + "coord": "io.circe:circe-generic-extras_2.13:jar:sources:0.13.0", "dependencies": [ - "io.circe:circe-generic_2.13:jar:sources:0.14.3", - "org.scala-lang:scala-library:jar:sources:2.13.8" + "com.chuusai:shapeless_2.13:jar:sources:2.3.3", + "io.circe:circe-core_2.13:jar:sources:0.13.0", + "io.circe:circe-generic_2.13:jar:sources:0.13.0", + "io.circe:circe-numbers_2.13:jar:sources:0.13.0", + "org.scala-lang:scala-library:jar:sources:2.13.8", + "org.typelevel:cats-core_2.13:jar:sources:2.6.1" ], "directDependencies": [ - "io.circe:circe-generic_2.13:jar:sources:0.14.3", + "io.circe:circe-generic_2.13:jar:sources:0.13.0", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-generic-extras_2.13/0.14.2/circe-generic-extras_2.13-0.14.2-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-generic-extras_2.13/0.13.0/circe-generic-extras_2.13-0.13.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/circe/circe-generic-extras_2.13/0.14.2/circe-generic-extras_2.13-0.14.2-sources.jar" + "https://repo1.maven.org/maven2/io/circe/circe-generic-extras_2.13/0.13.0/circe-generic-extras_2.13-0.13.0-sources.jar" ], "packages": [], - "sha256": "87f932ff5b84eb804d8868ce2767327fa13d3a4321e1ee6fd1b0adc12e3e4db7", - "url": "https://repo1.maven.org/maven2/io/circe/circe-generic-extras_2.13/0.14.2/circe-generic-extras_2.13-0.14.2-sources.jar" + "sha256": "594e6b3518ac4ff50d077e1319f11ebfc53bc76c26c1725c34f6f3016665ac80", + "url": "https://repo1.maven.org/maven2/io/circe/circe-generic-extras_2.13/0.13.0/circe-generic-extras_2.13-0.13.0-sources.jar" }, { - "coord": "io.circe:circe-generic_2.13:0.14.3", + "coord": "io.circe:circe-generic_2.13:0.13.0", "dependencies": [ "com.chuusai:shapeless_2.13:2.3.3", - "io.circe:circe-core_2.13:0.14.3", - "io.circe:circe-numbers_2.13:0.14.3", + "io.circe:circe-core_2.13:0.13.0", + "io.circe:circe-numbers_2.13:0.13.0", "org.scala-lang:scala-library:2.13.8", - "org.typelevel:cats-core_2.13:2.8.0", - "org.typelevel:cats-kernel_2.13:2.8.0" + "org.typelevel:cats-core_2.13:2.6.1" ], "directDependencies": [ "com.chuusai:shapeless_2.13:2.3.3", - "io.circe:circe-core_2.13:0.14.3", + "io.circe:circe-core_2.13:0.13.0", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-generic_2.13/0.14.3/circe-generic_2.13-0.14.3.jar", + "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-generic_2.13/0.13.0/circe-generic_2.13-0.13.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/circe/circe-generic_2.13/0.14.3/circe-generic_2.13-0.14.3.jar" + "https://repo1.maven.org/maven2/io/circe/circe-generic_2.13/0.13.0/circe-generic_2.13-0.13.0.jar" ], "packages": [ "io.circe.generic", @@ -4277,179 +4045,176 @@ "io.circe.generic.util", "io.circe.generic.util.macros" ], - "sha256": "6634ad5c5e21663666a8b2a4ba43c6830925b72e4fb1c28b7e907840051a71ea", - "url": "https://repo1.maven.org/maven2/io/circe/circe-generic_2.13/0.14.3/circe-generic_2.13-0.14.3.jar" + "sha256": "e797bb5c382870d1cd8aae01fed801acc901ac2fd74a75a3277b96be958f21cf", + "url": "https://repo1.maven.org/maven2/io/circe/circe-generic_2.13/0.13.0/circe-generic_2.13-0.13.0.jar" }, { - "coord": "io.circe:circe-generic_2.13:jar:sources:0.14.3", + "coord": "io.circe:circe-generic_2.13:jar:sources:0.13.0", "dependencies": [ "com.chuusai:shapeless_2.13:jar:sources:2.3.3", - "io.circe:circe-core_2.13:jar:sources:0.14.3", - "io.circe:circe-numbers_2.13:jar:sources:0.14.3", + "io.circe:circe-core_2.13:jar:sources:0.13.0", + "io.circe:circe-numbers_2.13:jar:sources:0.13.0", "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.typelevel:cats-core_2.13:jar:sources:2.8.0", - "org.typelevel:cats-kernel_2.13:jar:sources:2.8.0" + "org.typelevel:cats-core_2.13:jar:sources:2.6.1" ], "directDependencies": [ "com.chuusai:shapeless_2.13:jar:sources:2.3.3", - "io.circe:circe-core_2.13:jar:sources:0.14.3", + "io.circe:circe-core_2.13:jar:sources:0.13.0", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-generic_2.13/0.14.3/circe-generic_2.13-0.14.3-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-generic_2.13/0.13.0/circe-generic_2.13-0.13.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/circe/circe-generic_2.13/0.14.3/circe-generic_2.13-0.14.3-sources.jar" + "https://repo1.maven.org/maven2/io/circe/circe-generic_2.13/0.13.0/circe-generic_2.13-0.13.0-sources.jar" ], "packages": [], - "sha256": "c1eeb258bc25ea469b3f876732b7f686130785ee829204466bded4344d28e50f", - "url": "https://repo1.maven.org/maven2/io/circe/circe-generic_2.13/0.14.3/circe-generic_2.13-0.14.3-sources.jar" + "sha256": "1a796f6fab62eb654f7fd696ee0dd6199374c8186855ea994cd0a9413827762a", + "url": "https://repo1.maven.org/maven2/io/circe/circe-generic_2.13/0.13.0/circe-generic_2.13-0.13.0-sources.jar" }, { - "coord": "io.circe:circe-jawn_2.13:0.14.3", + "coord": "io.circe:circe-jawn_2.13:0.13.0", "dependencies": [ - "io.circe:circe-core_2.13:0.14.3", - "io.circe:circe-numbers_2.13:0.14.3", + "io.circe:circe-core_2.13:0.13.0", + "io.circe:circe-numbers_2.13:0.13.0", "org.scala-lang:scala-library:2.13.8", - "org.typelevel:cats-core_2.13:2.8.0", - "org.typelevel:cats-kernel_2.13:2.8.0", - "org.typelevel:jawn-parser_2.13:1.4.0" + "org.typelevel:cats-core_2.13:2.6.1", + "org.typelevel:jawn-parser_2.13:1.0.0" ], "directDependencies": [ - "io.circe:circe-core_2.13:0.14.3", + "io.circe:circe-core_2.13:0.13.0", "org.scala-lang:scala-library:2.13.8", - "org.typelevel:jawn-parser_2.13:1.4.0" + "org.typelevel:jawn-parser_2.13:1.0.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-jawn_2.13/0.14.3/circe-jawn_2.13-0.14.3.jar", + "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-jawn_2.13/0.13.0/circe-jawn_2.13-0.13.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/circe/circe-jawn_2.13/0.14.3/circe-jawn_2.13-0.14.3.jar" + "https://repo1.maven.org/maven2/io/circe/circe-jawn_2.13/0.13.0/circe-jawn_2.13-0.13.0.jar" ], "packages": [ "io.circe.jawn" ], - "sha256": "7bc20f946c67019de91952cb4c122faf50426e9e4eb922266691e0b5ad6db6fa", - "url": "https://repo1.maven.org/maven2/io/circe/circe-jawn_2.13/0.14.3/circe-jawn_2.13-0.14.3.jar" + "sha256": "6788ad39e95d56912d77e12ebfce633ccb5b4f54cc8a031a84596b575b32396e", + "url": "https://repo1.maven.org/maven2/io/circe/circe-jawn_2.13/0.13.0/circe-jawn_2.13-0.13.0.jar" }, { - "coord": "io.circe:circe-jawn_2.13:jar:sources:0.14.3", + "coord": "io.circe:circe-jawn_2.13:jar:sources:0.13.0", "dependencies": [ - "io.circe:circe-core_2.13:jar:sources:0.14.3", - "io.circe:circe-numbers_2.13:jar:sources:0.14.3", + "io.circe:circe-core_2.13:jar:sources:0.13.0", + "io.circe:circe-numbers_2.13:jar:sources:0.13.0", "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.typelevel:cats-core_2.13:jar:sources:2.8.0", - "org.typelevel:cats-kernel_2.13:jar:sources:2.8.0", - "org.typelevel:jawn-parser_2.13:jar:sources:1.4.0" + "org.typelevel:cats-core_2.13:jar:sources:2.6.1", + "org.typelevel:jawn-parser_2.13:jar:sources:1.0.0" ], "directDependencies": [ - "io.circe:circe-core_2.13:jar:sources:0.14.3", + "io.circe:circe-core_2.13:jar:sources:0.13.0", "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.typelevel:jawn-parser_2.13:jar:sources:1.4.0" + "org.typelevel:jawn-parser_2.13:jar:sources:1.0.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-jawn_2.13/0.14.3/circe-jawn_2.13-0.14.3-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-jawn_2.13/0.13.0/circe-jawn_2.13-0.13.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/circe/circe-jawn_2.13/0.14.3/circe-jawn_2.13-0.14.3-sources.jar" + "https://repo1.maven.org/maven2/io/circe/circe-jawn_2.13/0.13.0/circe-jawn_2.13-0.13.0-sources.jar" ], "packages": [], - "sha256": "03ed171aa11416c6a761d51d250b6375689a1f13662f63beae2b1a932a035a57", - "url": "https://repo1.maven.org/maven2/io/circe/circe-jawn_2.13/0.14.3/circe-jawn_2.13-0.14.3-sources.jar" + "sha256": "e6778aff10ff94d208b4ac8d6a20200578ef48e614a8b57be0fcf346bcd64dcd", + "url": "https://repo1.maven.org/maven2/io/circe/circe-jawn_2.13/0.13.0/circe-jawn_2.13-0.13.0-sources.jar" }, { - "coord": "io.circe:circe-numbers_2.13:0.14.3", + "coord": "io.circe:circe-numbers_2.13:0.13.0", "dependencies": [ "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-numbers_2.13/0.14.3/circe-numbers_2.13-0.14.3.jar", + "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-numbers_2.13/0.13.0/circe-numbers_2.13-0.13.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/circe/circe-numbers_2.13/0.14.3/circe-numbers_2.13-0.14.3.jar" + "https://repo1.maven.org/maven2/io/circe/circe-numbers_2.13/0.13.0/circe-numbers_2.13-0.13.0.jar" ], "packages": [ "io.circe.numbers" ], - "sha256": "059bcff531bc6c75eda8991326163763d89dad24e6d172c1f103de6e20519c7d", - "url": "https://repo1.maven.org/maven2/io/circe/circe-numbers_2.13/0.14.3/circe-numbers_2.13-0.14.3.jar" + "sha256": "5c67857cd070bf96b2a73da879d973ead222b3295970d00dbeb6ce419537891d", + "url": "https://repo1.maven.org/maven2/io/circe/circe-numbers_2.13/0.13.0/circe-numbers_2.13-0.13.0.jar" }, { - "coord": "io.circe:circe-numbers_2.13:jar:sources:0.14.3", + "coord": "io.circe:circe-numbers_2.13:jar:sources:0.13.0", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-numbers_2.13/0.14.3/circe-numbers_2.13-0.14.3-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-numbers_2.13/0.13.0/circe-numbers_2.13-0.13.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/circe/circe-numbers_2.13/0.14.3/circe-numbers_2.13-0.14.3-sources.jar" + "https://repo1.maven.org/maven2/io/circe/circe-numbers_2.13/0.13.0/circe-numbers_2.13-0.13.0-sources.jar" ], "packages": [], - "sha256": "fe38ea76711e6b2bef843ae530afb86d2ca6a3abb42aa6cf8ef6238b92942926", - "url": "https://repo1.maven.org/maven2/io/circe/circe-numbers_2.13/0.14.3/circe-numbers_2.13-0.14.3-sources.jar" + "sha256": "e6268cab5a281a28cba0354f7a277758e72403a3a759e5f6a5473536c832b37f", + "url": "https://repo1.maven.org/maven2/io/circe/circe-numbers_2.13/0.13.0/circe-numbers_2.13-0.13.0-sources.jar" }, { - "coord": "io.circe:circe-parser_2.13:0.14.3", + "coord": "io.circe:circe-parser_2.13:0.13.0", "dependencies": [ - "io.circe:circe-core_2.13:0.14.3", - "io.circe:circe-jawn_2.13:0.14.3", - "io.circe:circe-numbers_2.13:0.14.3", + "io.circe:circe-core_2.13:0.13.0", + "io.circe:circe-jawn_2.13:0.13.0", + "io.circe:circe-numbers_2.13:0.13.0", "org.scala-lang:scala-library:2.13.8", - "org.typelevel:cats-core_2.13:2.8.0", - "org.typelevel:cats-kernel_2.13:2.8.0", - "org.typelevel:jawn-parser_2.13:1.4.0" + "org.typelevel:cats-core_2.13:2.6.1", + "org.typelevel:jawn-parser_2.13:1.0.0" ], "directDependencies": [ - "io.circe:circe-core_2.13:0.14.3", - "io.circe:circe-jawn_2.13:0.14.3", + "io.circe:circe-core_2.13:0.13.0", + "io.circe:circe-jawn_2.13:0.13.0", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-parser_2.13/0.14.3/circe-parser_2.13-0.14.3.jar", + "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-parser_2.13/0.13.0/circe-parser_2.13-0.13.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/circe/circe-parser_2.13/0.14.3/circe-parser_2.13-0.14.3.jar" + "https://repo1.maven.org/maven2/io/circe/circe-parser_2.13/0.13.0/circe-parser_2.13-0.13.0.jar" ], "packages": [ "io.circe.parser" ], - "sha256": "9936275be57146f76c4705b336c9f576a175817811b8187288128146f330d7e9", - "url": "https://repo1.maven.org/maven2/io/circe/circe-parser_2.13/0.14.3/circe-parser_2.13-0.14.3.jar" + "sha256": "d50ac054883479633b8121cfdf02b259a3f2ba6267a2a031177fd454a670d66d", + "url": "https://repo1.maven.org/maven2/io/circe/circe-parser_2.13/0.13.0/circe-parser_2.13-0.13.0.jar" }, { - "coord": "io.circe:circe-parser_2.13:jar:sources:0.14.3", + "coord": "io.circe:circe-parser_2.13:jar:sources:0.13.0", "dependencies": [ - "io.circe:circe-core_2.13:jar:sources:0.14.3", - "io.circe:circe-jawn_2.13:jar:sources:0.14.3", - "io.circe:circe-numbers_2.13:jar:sources:0.14.3", + "io.circe:circe-core_2.13:jar:sources:0.13.0", + "io.circe:circe-jawn_2.13:jar:sources:0.13.0", + "io.circe:circe-numbers_2.13:jar:sources:0.13.0", "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.typelevel:cats-core_2.13:jar:sources:2.8.0", - "org.typelevel:cats-kernel_2.13:jar:sources:2.8.0", - "org.typelevel:jawn-parser_2.13:jar:sources:1.4.0" + "org.typelevel:cats-core_2.13:jar:sources:2.6.1", + "org.typelevel:jawn-parser_2.13:jar:sources:1.0.0" ], "directDependencies": [ - "io.circe:circe-core_2.13:jar:sources:0.14.3", - "io.circe:circe-jawn_2.13:jar:sources:0.14.3", + "io.circe:circe-core_2.13:jar:sources:0.13.0", + "io.circe:circe-jawn_2.13:jar:sources:0.13.0", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-parser_2.13/0.14.3/circe-parser_2.13-0.14.3-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-parser_2.13/0.13.0/circe-parser_2.13-0.13.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/circe/circe-parser_2.13/0.14.3/circe-parser_2.13-0.14.3-sources.jar" + "https://repo1.maven.org/maven2/io/circe/circe-parser_2.13/0.13.0/circe-parser_2.13-0.13.0-sources.jar" ], "packages": [], - "sha256": "0250c96d024d90f65d8a5cdcc269e74a3f2073f4d20355ede6e6f8ab9db96d7b", - "url": "https://repo1.maven.org/maven2/io/circe/circe-parser_2.13/0.14.3/circe-parser_2.13-0.14.3-sources.jar" + "sha256": "df26bd47fab652f3ef421255dd635a3ed43d2021c06cd65f5b79ba4b58e92d70", + "url": "https://repo1.maven.org/maven2/io/circe/circe-parser_2.13/0.13.0/circe-parser_2.13-0.13.0-sources.jar" }, { - "coord": "io.circe:circe-yaml_2.13:0.14.1", + "coord": "io.circe:circe-yaml_2.13:0.13.0", "dependencies": [ - "io.circe:circe-core_2.13:0.14.3", + "io.circe:circe-core_2.13:0.13.0", + "io.circe:circe-numbers_2.13:0.13.0", "org.scala-lang:scala-library:2.13.8", - "org.yaml:snakeyaml:1.28" + "org.typelevel:cats-core_2.13:2.6.1", + "org.yaml:snakeyaml:1.26" ], "directDependencies": [ - "io.circe:circe-core_2.13:0.14.3", + "io.circe:circe-core_2.13:0.13.0", "org.scala-lang:scala-library:2.13.8", - "org.yaml:snakeyaml:1.28" + "org.yaml:snakeyaml:1.26" ], - "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-yaml_2.13/0.14.1/circe-yaml_2.13-0.14.1.jar", + "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-yaml_2.13/0.13.0/circe-yaml_2.13-0.13.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/circe/circe-yaml_2.13/0.14.1/circe-yaml_2.13-0.14.1.jar" + "https://repo1.maven.org/maven2/io/circe/circe-yaml_2.13/0.13.0/circe-yaml_2.13-0.13.0.jar" ], "packages": [ "io.circe.yaml", @@ -4457,36 +4222,38 @@ "io.circe.yaml.printer", "io.circe.yaml.syntax" ], - "sha256": "64a222840e52bc6f9b4e6c312a393be73c54abf40571f5c3ce1c02bcf3b70b44", - "url": "https://repo1.maven.org/maven2/io/circe/circe-yaml_2.13/0.14.1/circe-yaml_2.13-0.14.1.jar" + "sha256": "ba09382887d81df5705ef572f3a86e43a46cb1e849b4def18025fac871763e50", + "url": "https://repo1.maven.org/maven2/io/circe/circe-yaml_2.13/0.13.0/circe-yaml_2.13-0.13.0.jar" }, { - "coord": "io.circe:circe-yaml_2.13:jar:sources:0.14.1", + "coord": "io.circe:circe-yaml_2.13:jar:sources:0.13.0", "dependencies": [ - "io.circe:circe-core_2.13:jar:sources:0.14.3", + "io.circe:circe-core_2.13:jar:sources:0.13.0", + "io.circe:circe-numbers_2.13:jar:sources:0.13.0", "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.yaml:snakeyaml:jar:sources:1.28" + "org.typelevel:cats-core_2.13:jar:sources:2.6.1", + "org.yaml:snakeyaml:jar:sources:1.26" ], "directDependencies": [ - "io.circe:circe-core_2.13:jar:sources:0.14.3", + "io.circe:circe-core_2.13:jar:sources:0.13.0", "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.yaml:snakeyaml:jar:sources:1.28" + "org.yaml:snakeyaml:jar:sources:1.26" ], - "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-yaml_2.13/0.14.1/circe-yaml_2.13-0.14.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/circe/circe-yaml_2.13/0.13.0/circe-yaml_2.13-0.13.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/circe/circe-yaml_2.13/0.14.1/circe-yaml_2.13-0.14.1-sources.jar" + "https://repo1.maven.org/maven2/io/circe/circe-yaml_2.13/0.13.0/circe-yaml_2.13-0.13.0-sources.jar" ], "packages": [], - "sha256": "1b66e9d8eea6064e40393326c056b1d12cf65a20f36b87c8ca9cd098815ad37f", - "url": "https://repo1.maven.org/maven2/io/circe/circe-yaml_2.13/0.14.1/circe-yaml_2.13-0.14.1-sources.jar" + "sha256": "65728080045572310e2430a984a730d00789d1d08caccc23770e98be665bdd11", + "url": "https://repo1.maven.org/maven2/io/circe/circe-yaml_2.13/0.13.0/circe-yaml_2.13-0.13.0-sources.jar" }, { "coord": "io.dropwizard.metrics:metrics-core:4.1.33", "dependencies": [ - "org.slf4j:slf4j-api:1.7.36" + "org.slf4j:slf4j-api:1.7.26" ], "directDependencies": [ - "org.slf4j:slf4j-api:1.7.36" + "org.slf4j:slf4j-api:1.7.26" ], "file": "v1/https/repo1.maven.org/maven2/io/dropwizard/metrics/metrics-core/4.1.33/metrics-core-4.1.33.jar", "mirror_urls": [ @@ -4501,10 +4268,10 @@ { "coord": "io.dropwizard.metrics:metrics-core:jar:sources:4.1.33", "dependencies": [ - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], "directDependencies": [ - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], "file": "v1/https/repo1.maven.org/maven2/io/dropwizard/metrics/metrics-core/4.1.33/metrics-core-4.1.33-sources.jar", "mirror_urls": [ @@ -4518,11 +4285,11 @@ "coord": "io.dropwizard.metrics:metrics-graphite:4.1.33", "dependencies": [ "io.dropwizard.metrics:metrics-core:4.1.33", - "org.slf4j:slf4j-api:1.7.36" + "org.slf4j:slf4j-api:1.7.26" ], "directDependencies": [ "io.dropwizard.metrics:metrics-core:4.1.33", - "org.slf4j:slf4j-api:1.7.36" + "org.slf4j:slf4j-api:1.7.26" ], "exclusions": [ "com.rabbitmq:amqp-client" @@ -4541,11 +4308,11 @@ "coord": "io.dropwizard.metrics:metrics-graphite:jar:sources:4.1.33", "dependencies": [ "io.dropwizard.metrics:metrics-core:jar:sources:4.1.33", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], "directDependencies": [ "io.dropwizard.metrics:metrics-core:jar:sources:4.1.33", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], "exclusions": [ "com.rabbitmq:amqp-client" @@ -4562,11 +4329,11 @@ "coord": "io.dropwizard.metrics:metrics-jmx:4.1.33", "dependencies": [ "io.dropwizard.metrics:metrics-core:4.1.33", - "org.slf4j:slf4j-api:1.7.36" + "org.slf4j:slf4j-api:1.7.26" ], "directDependencies": [ "io.dropwizard.metrics:metrics-core:4.1.33", - "org.slf4j:slf4j-api:1.7.36" + "org.slf4j:slf4j-api:1.7.26" ], "file": "v1/https/repo1.maven.org/maven2/io/dropwizard/metrics/metrics-jmx/4.1.33/metrics-jmx-4.1.33.jar", "mirror_urls": [ @@ -4582,11 +4349,11 @@ "coord": "io.dropwizard.metrics:metrics-jmx:jar:sources:4.1.33", "dependencies": [ "io.dropwizard.metrics:metrics-core:jar:sources:4.1.33", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], "directDependencies": [ "io.dropwizard.metrics:metrics-core:jar:sources:4.1.33", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], "file": "v1/https/repo1.maven.org/maven2/io/dropwizard/metrics/metrics-jmx/4.1.33/metrics-jmx-4.1.33-sources.jar", "mirror_urls": [ @@ -4600,11 +4367,11 @@ "coord": "io.dropwizard.metrics:metrics-jvm:4.1.33", "dependencies": [ "io.dropwizard.metrics:metrics-core:4.1.33", - "org.slf4j:slf4j-api:1.7.36" + "org.slf4j:slf4j-api:1.7.26" ], "directDependencies": [ "io.dropwizard.metrics:metrics-core:4.1.33", - "org.slf4j:slf4j-api:1.7.36" + "org.slf4j:slf4j-api:1.7.26" ], "file": "v1/https/repo1.maven.org/maven2/io/dropwizard/metrics/metrics-jvm/4.1.33/metrics-jvm-4.1.33.jar", "mirror_urls": [ @@ -4620,11 +4387,11 @@ "coord": "io.dropwizard.metrics:metrics-jvm:jar:sources:4.1.33", "dependencies": [ "io.dropwizard.metrics:metrics-core:jar:sources:4.1.33", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], "directDependencies": [ "io.dropwizard.metrics:metrics-core:jar:sources:4.1.33", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], "file": "v1/https/repo1.maven.org/maven2/io/dropwizard/metrics/metrics-jvm/4.1.33/metrics-jvm-4.1.33-sources.jar", "mirror_urls": [ @@ -4635,503 +4402,377 @@ "url": "https://repo1.maven.org/maven2/io/dropwizard/metrics/metrics-jvm/4.1.33/metrics-jvm-4.1.33-sources.jar" }, { - "coord": "io.gatling.highcharts:gatling-charts-highcharts:3.8.4", - "dependencies": [ - "ch.qos.logback:logback-classic:1.2.11", - "ch.qos.logback:logback-core:1.2.11", - "com.aayushatharva.brotli4j:brotli4j:1.8.0", - "com.aayushatharva.brotli4j:native-linux-aarch64:1.8.0", - "com.aayushatharva.brotli4j:native-linux-x86_64:1.8.0", - "com.aayushatharva.brotli4j:native-osx-aarch64:1.8.0", - "com.aayushatharva.brotli4j:native-osx-x86_64:1.8.0", - "com.aayushatharva.brotli4j:native-windows-x86_64:1.8.0", - "com.eatthepath:fast-uuid:0.2.0", - "com.fasterxml.jackson.core:jackson-annotations:2.13.4", - "com.fasterxml.jackson.core:jackson-core:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.github.ben-manes.caffeine:caffeine:3.1.1", - "com.github.scopt:scopt_2.13:4.1.0", - "com.google.code.findbugs:jsr305:3.0.2", - "com.softwaremill.quicklens:quicklens_2.13:1.9.0", + "coord": "io.gatling.highcharts:gatling-charts-highcharts:3.5.1", + "dependencies": [ + "ch.qos.logback:logback-classic:1.2.8", + "com.eatthepath:fast-uuid:0.1", + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "com.github.ben-manes.caffeine:caffeine:3.0.5", + "com.github.scopt:scopt_2.13:4.0.0", + "com.softwaremill.quicklens:quicklens_2.13:1.6.1", "com.tdunning:t-digest:3.1", "com.typesafe.akka:akka-actor_2.13:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:3.9.5", - "com.typesafe:config:1.4.2", - "io.burt:jmespath-core:0.5.1", - "io.burt:jmespath-jackson:0.5.1", - "io.gatling:gatling-app:3.8.4", - "io.gatling:gatling-charts:3.8.4", - "io.gatling:gatling-commons-shared-unstable:3.8.4", - "io.gatling:gatling-commons-shared:3.8.4", - "io.gatling:gatling-commons:3.8.4", - "io.gatling:gatling-core-java:3.8.4", - "io.gatling:gatling-core:3.8.4", - "io.gatling:gatling-graphite:3.8.4", - "io.gatling:gatling-http-client:3.8.4", - "io.gatling:gatling-http-java:3.8.4", - "io.gatling:gatling-http:3.8.4", - "io.gatling:gatling-jdbc-java:3.8.4", - "io.gatling:gatling-jdbc:3.8.4", - "io.gatling:gatling-jms-java:3.8.4", - "io.gatling:gatling-jms:3.8.4", - "io.gatling:gatling-jsonpath:3.8.4", - "io.gatling:gatling-mqtt-java:3.8.4", - "io.gatling:gatling-mqtt:3.8.4", - "io.gatling:gatling-netty-util:3.8.4", - "io.gatling:gatling-recorder-bc-shaded:1.71.1", - "io.gatling:gatling-recorder:3.8.4", - "io.gatling:gatling-redis-java:3.8.4", - "io.gatling:gatling-redis:3.8.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-dns:4.1.81.Final", - "io.netty:netty-codec-http2:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec-mqtt:4.1.81.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver-dns-classes-macos:4.1.81.Final", - "io.netty:netty-resolver-dns-native-macos:jar:osx-aarch_64:4.1.81.Final", - "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.81.Final", - "io.netty:netty-resolver-dns:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-tcnative-boringssl-static:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.pebbletemplates:pebble:3.1.5", + "com.typesafe.scala-logging:scala-logging_2.13:3.9.2", + "com.typesafe:config:1.4.1", + "io.burt:jmespath-core:0.5.0", + "io.burt:jmespath-jackson:0.5.0", + "io.gatling:gatling-app:3.5.1", + "io.gatling:gatling-charts:3.5.1", + "io.gatling:gatling-commons-shared-unstable:3.5.1", + "io.gatling:gatling-commons-shared:3.5.1", + "io.gatling:gatling-commons:3.5.1", + "io.gatling:gatling-core:3.5.1", + "io.gatling:gatling-graphite:3.5.1", + "io.gatling:gatling-http-client:3.5.1", + "io.gatling:gatling-http:3.5.1", + "io.gatling:gatling-jdbc:3.5.1", + "io.gatling:gatling-jms:3.5.1", + "io.gatling:gatling-jsonpath:3.5.1", + "io.gatling:gatling-netty-util:3.5.1", + "io.gatling:gatling-recorder:3.5.1", + "io.gatling:gatling-redis:3.5.1", + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-codec-dns:4.1.58.Final", + "io.netty:netty-codec-http2:4.1.72.Final", + "io.netty:netty-codec-http:4.1.72.Final", + "io.netty:netty-codec:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-handler-proxy:4.1.72.Final", + "io.netty:netty-handler:4.1.72.Final", + "io.netty:netty-resolver-dns:4.1.58.Final", + "io.netty:netty-resolver:4.1.72.Final", + "io.netty:netty-tcnative-boringssl-static:2.0.46.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:4.1.58.Final", + "io.netty:netty-transport:4.1.72.Final", + "io.pebbletemplates:pebble:3.1.4", "io.suzaku:boopickle_2.13:1.3.3", "javax.jms:javax.jms-api:2.0.1", - "net.debasishg:redisclient_2.13:3.42", - "net.jodah:typetools:0.6.3", - "net.sf.saxon:Saxon-HE:10.6", + "net.debasishg:redisclient_2.13:3.30", + "net.sf.saxon:Saxon-HE:10.3", "org.apache.commons:commons-pool2:2.8.0", + "org.bouncycastle:bcpkix-jdk15on:1.70", "org.hdrhistogram:HdrHistogram:2.1.12", - "org.jodd:jodd-lagarto:6.0.6", - "org.jodd:jodd-util:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", + "org.jodd:jodd-lagarto:6.0.3", + "org.jodd:jodd-util:6.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang.modules:scala-swing_2.13:3.0.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", "org.simpleflatmapper:lightning-csv:8.2.3", "org.simpleflatmapper:sfm-util:8.2.3", - "org.slf4j:slf4j-api:1.7.36", + "org.slf4j:slf4j-api:1.7.26", "org.typelevel:spire-macros_2.13:0.17.0", "org.unbescape:unbescape:1.1.6.RELEASE" ], "directDependencies": [ - "io.gatling:gatling-app:3.8.4", - "io.gatling:gatling-recorder:3.8.4", + "io.gatling:gatling-app:3.5.1", + "io.gatling:gatling-recorder:3.5.1", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/highcharts/gatling-charts-highcharts/3.8.4/gatling-charts-highcharts-3.8.4.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/highcharts/gatling-charts-highcharts/3.5.1/gatling-charts-highcharts-3.5.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/highcharts/gatling-charts-highcharts/3.8.4/gatling-charts-highcharts-3.8.4.jar" + "https://repo1.maven.org/maven2/io/gatling/highcharts/gatling-charts-highcharts/3.5.1/gatling-charts-highcharts-3.5.1.jar" ], "packages": [ - "io.gatling.charts.highcharts.component", - "io.gatling.charts.highcharts.series", - "io.gatling.charts.highcharts.template" + "io.gatling.charts.component.impl", + "io.gatling.highcharts.component", + "io.gatling.highcharts.series", + "io.gatling.highcharts.template" ], - "sha256": "24c505e22b7f43b8b160370808f638b3905fb925595f06aeba9bae7c61db2c3e", - "url": "https://repo1.maven.org/maven2/io/gatling/highcharts/gatling-charts-highcharts/3.8.4/gatling-charts-highcharts-3.8.4.jar" + "sha256": "25494a483eff49d196d9c8c545a2d9d88e4f111eba7c5fc388c2a44ef7323075", + "url": "https://repo1.maven.org/maven2/io/gatling/highcharts/gatling-charts-highcharts/3.5.1/gatling-charts-highcharts-3.5.1.jar" }, { - "coord": "io.gatling.highcharts:gatling-charts-highcharts:jar:sources:3.8.4", + "coord": "io.gatling.highcharts:gatling-charts-highcharts:jar:sources:3.5.1", "dependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.11", - "ch.qos.logback:logback-core:jar:sources:1.2.11", - "com.aayushatharva.brotli4j:brotli4j:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-linux-aarch64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-linux-x86_64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-osx-aarch64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-osx-x86_64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-windows-x86_64:jar:sources:1.8.0", - "com.eatthepath:fast-uuid:jar:sources:0.2.0", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.github.ben-manes.caffeine:caffeine:jar:sources:3.1.1", - "com.github.scopt:scopt_2.13:jar:sources:4.1.0", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.9.0", + "ch.qos.logback:logback-classic:jar:sources:1.2.8", + "com.eatthepath:fast-uuid:jar:sources:0.1", + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "com.github.ben-manes.caffeine:caffeine:jar:sources:3.0.5", + "com.github.scopt:scopt_2.13:jar:sources:4.0.0", + "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.6.1", "com.tdunning:t-digest:jar:sources:3.1", "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.5", - "com.typesafe:config:jar:sources:1.4.2", - "io.burt:jmespath-core:jar:sources:0.5.1", - "io.burt:jmespath-jackson:jar:sources:0.5.1", - "io.gatling:gatling-app:jar:sources:3.8.4", - "io.gatling:gatling-charts:jar:sources:3.8.4", - "io.gatling:gatling-commons-shared-unstable:jar:sources:3.8.4", - "io.gatling:gatling-commons-shared:jar:sources:3.8.4", - "io.gatling:gatling-commons:jar:sources:3.8.4", - "io.gatling:gatling-core-java:jar:sources:3.8.4", - "io.gatling:gatling-core:jar:sources:3.8.4", - "io.gatling:gatling-graphite:jar:sources:3.8.4", - "io.gatling:gatling-http-client:jar:sources:3.8.4", - "io.gatling:gatling-http-java:jar:sources:3.8.4", - "io.gatling:gatling-http:jar:sources:3.8.4", - "io.gatling:gatling-jdbc-java:jar:sources:3.8.4", - "io.gatling:gatling-jdbc:jar:sources:3.8.4", - "io.gatling:gatling-jms-java:jar:sources:3.8.4", - "io.gatling:gatling-jms:jar:sources:3.8.4", - "io.gatling:gatling-jsonpath:jar:sources:3.8.4", - "io.gatling:gatling-mqtt-java:jar:sources:3.8.4", - "io.gatling:gatling-mqtt:jar:sources:3.8.4", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.gatling:gatling-recorder-bc-shaded:jar:sources:1.71.1", - "io.gatling:gatling-recorder:jar:sources:3.8.4", - "io.gatling:gatling-redis-java:jar:sources:3.8.4", - "io.gatling:gatling-redis:jar:sources:3.8.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-dns:jar:sources:4.1.81.Final", - "io.netty:netty-codec-http2:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec-mqtt:jar:sources:4.1.81.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver-dns-classes-macos:jar:sources:4.1.81.Final", - "io.netty:netty-resolver-dns-native-macos:jar:sources:4.1.81.Final", - "io.netty:netty-resolver-dns:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-tcnative-boringssl-static:jar:sources:2.0.54.Final", - "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.pebbletemplates:pebble:jar:sources:3.1.5", + "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.2", + "com.typesafe:config:jar:sources:1.4.1", + "io.burt:jmespath-core:jar:sources:0.5.0", + "io.burt:jmespath-jackson:jar:sources:0.5.0", + "io.gatling:gatling-app:jar:sources:3.5.1", + "io.gatling:gatling-charts:jar:sources:3.5.1", + "io.gatling:gatling-commons-shared-unstable:jar:sources:3.5.1", + "io.gatling:gatling-commons-shared:jar:sources:3.5.1", + "io.gatling:gatling-commons:jar:sources:3.5.1", + "io.gatling:gatling-core:jar:sources:3.5.1", + "io.gatling:gatling-graphite:jar:sources:3.5.1", + "io.gatling:gatling-http-client:jar:sources:3.5.1", + "io.gatling:gatling-http:jar:sources:3.5.1", + "io.gatling:gatling-jdbc:jar:sources:3.5.1", + "io.gatling:gatling-jms:jar:sources:3.5.1", + "io.gatling:gatling-jsonpath:jar:sources:3.5.1", + "io.gatling:gatling-netty-util:jar:sources:3.5.1", + "io.gatling:gatling-recorder:jar:sources:3.5.1", + "io.gatling:gatling-redis:jar:sources:3.5.1", + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-codec-dns:jar:sources:4.1.58.Final", + "io.netty:netty-codec-http2:jar:sources:4.1.72.Final", + "io.netty:netty-codec-http:jar:sources:4.1.72.Final", + "io.netty:netty-codec:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-handler-proxy:jar:sources:4.1.72.Final", + "io.netty:netty-handler:jar:sources:4.1.72.Final", + "io.netty:netty-resolver-dns:jar:sources:4.1.58.Final", + "io.netty:netty-resolver:jar:sources:4.1.72.Final", + "io.netty:netty-tcnative-boringssl-static:jar:sources:2.0.46.Final", + "io.netty:netty-transport-native-epoll:jar:sources:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final", + "io.pebbletemplates:pebble:jar:sources:3.1.4", "io.suzaku:boopickle_2.13:jar:sources:1.3.3", "javax.jms:javax.jms-api:jar:sources:2.0.1", - "net.debasishg:redisclient_2.13:jar:sources:3.42", - "net.jodah:typetools:jar:sources:0.6.3", - "net.sf.saxon:Saxon-HE:jar:sources:10.6", + "net.debasishg:redisclient_2.13:jar:sources:3.30", + "net.sf.saxon:Saxon-HE:jar:sources:10.3", "org.apache.commons:commons-pool2:jar:sources:2.8.0", + "org.bouncycastle:bcpkix-jdk15on:jar:sources:1.70", "org.hdrhistogram:HdrHistogram:jar:sources:2.1.12", - "org.jodd:jodd-lagarto:jar:sources:6.0.6", - "org.jodd:jodd-util:jar:sources:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "org.jodd:jodd-lagarto:jar:sources:6.0.3", + "org.jodd:jodd-util:jar:sources:6.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "org.scala-lang.modules:scala-swing_2.13:jar:sources:3.0.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", "org.simpleflatmapper:lightning-csv:jar:sources:8.2.3", "org.simpleflatmapper:sfm-util:jar:sources:8.2.3", - "org.slf4j:slf4j-api:jar:sources:1.7.36", + "org.slf4j:slf4j-api:jar:sources:1.7.26", "org.typelevel:spire-macros_2.13:jar:sources:0.17.0", "org.unbescape:unbescape:jar:sources:1.1.6.RELEASE" ], "directDependencies": [ - "io.gatling:gatling-app:jar:sources:3.8.4", - "io.gatling:gatling-recorder:jar:sources:3.8.4", + "io.gatling:gatling-app:jar:sources:3.5.1", + "io.gatling:gatling-recorder:jar:sources:3.5.1", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/highcharts/gatling-charts-highcharts/3.8.4/gatling-charts-highcharts-3.8.4-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/highcharts/gatling-charts-highcharts/3.5.1/gatling-charts-highcharts-3.5.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/highcharts/gatling-charts-highcharts/3.8.4/gatling-charts-highcharts-3.8.4-sources.jar" + "https://repo1.maven.org/maven2/io/gatling/highcharts/gatling-charts-highcharts/3.5.1/gatling-charts-highcharts-3.5.1-sources.jar" ], "packages": [], - "sha256": "ed98e3ab3891e5160def8bacb3065fb764fe94978707f2d8ad34e714ed29a0c7", - "url": "https://repo1.maven.org/maven2/io/gatling/highcharts/gatling-charts-highcharts/3.8.4/gatling-charts-highcharts-3.8.4-sources.jar" + "sha256": "2f3c27880cff9e12da2878da610805239dd71c1a83ada7af72971a9320397953", + "url": "https://repo1.maven.org/maven2/io/gatling/highcharts/gatling-charts-highcharts/3.5.1/gatling-charts-highcharts-3.5.1-sources.jar" }, { - "coord": "io.gatling:gatling-app:3.8.4", + "coord": "io.gatling:gatling-app:3.5.1", "dependencies": [ - "ch.qos.logback:logback-classic:1.2.11", - "ch.qos.logback:logback-core:1.2.11", - "com.aayushatharva.brotli4j:brotli4j:1.8.0", - "com.aayushatharva.brotli4j:native-linux-aarch64:1.8.0", - "com.aayushatharva.brotli4j:native-linux-x86_64:1.8.0", - "com.aayushatharva.brotli4j:native-osx-aarch64:1.8.0", - "com.aayushatharva.brotli4j:native-osx-x86_64:1.8.0", - "com.aayushatharva.brotli4j:native-windows-x86_64:1.8.0", - "com.eatthepath:fast-uuid:0.2.0", - "com.fasterxml.jackson.core:jackson-annotations:2.13.4", - "com.fasterxml.jackson.core:jackson-core:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.github.ben-manes.caffeine:caffeine:3.1.1", - "com.github.scopt:scopt_2.13:4.1.0", - "com.google.code.findbugs:jsr305:3.0.2", - "com.softwaremill.quicklens:quicklens_2.13:1.9.0", + "ch.qos.logback:logback-classic:1.2.8", + "com.eatthepath:fast-uuid:0.1", + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "com.github.ben-manes.caffeine:caffeine:3.0.5", + "com.github.scopt:scopt_2.13:4.0.0", + "com.softwaremill.quicklens:quicklens_2.13:1.6.1", "com.tdunning:t-digest:3.1", "com.typesafe.akka:akka-actor_2.13:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:3.9.5", - "com.typesafe:config:1.4.2", - "io.burt:jmespath-core:0.5.1", - "io.burt:jmespath-jackson:0.5.1", - "io.gatling:gatling-charts:3.8.4", - "io.gatling:gatling-commons-shared-unstable:3.8.4", - "io.gatling:gatling-commons-shared:3.8.4", - "io.gatling:gatling-commons:3.8.4", - "io.gatling:gatling-core-java:3.8.4", - "io.gatling:gatling-core:3.8.4", - "io.gatling:gatling-graphite:3.8.4", - "io.gatling:gatling-http-client:3.8.4", - "io.gatling:gatling-http-java:3.8.4", - "io.gatling:gatling-http:3.8.4", - "io.gatling:gatling-jdbc-java:3.8.4", - "io.gatling:gatling-jdbc:3.8.4", - "io.gatling:gatling-jms-java:3.8.4", - "io.gatling:gatling-jms:3.8.4", - "io.gatling:gatling-jsonpath:3.8.4", - "io.gatling:gatling-mqtt-java:3.8.4", - "io.gatling:gatling-mqtt:3.8.4", - "io.gatling:gatling-netty-util:3.8.4", - "io.gatling:gatling-redis-java:3.8.4", - "io.gatling:gatling-redis:3.8.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-dns:4.1.81.Final", - "io.netty:netty-codec-http2:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec-mqtt:4.1.81.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver-dns-classes-macos:4.1.81.Final", - "io.netty:netty-resolver-dns-native-macos:jar:osx-aarch_64:4.1.81.Final", - "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.81.Final", - "io.netty:netty-resolver-dns:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-tcnative-boringssl-static:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.pebbletemplates:pebble:3.1.5", + "com.typesafe.scala-logging:scala-logging_2.13:3.9.2", + "com.typesafe:config:1.4.1", + "io.burt:jmespath-core:0.5.0", + "io.burt:jmespath-jackson:0.5.0", + "io.gatling:gatling-charts:3.5.1", + "io.gatling:gatling-commons-shared-unstable:3.5.1", + "io.gatling:gatling-commons-shared:3.5.1", + "io.gatling:gatling-commons:3.5.1", + "io.gatling:gatling-core:3.5.1", + "io.gatling:gatling-graphite:3.5.1", + "io.gatling:gatling-http-client:3.5.1", + "io.gatling:gatling-http:3.5.1", + "io.gatling:gatling-jdbc:3.5.1", + "io.gatling:gatling-jms:3.5.1", + "io.gatling:gatling-jsonpath:3.5.1", + "io.gatling:gatling-netty-util:3.5.1", + "io.gatling:gatling-redis:3.5.1", + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-codec-dns:4.1.58.Final", + "io.netty:netty-codec-http2:4.1.72.Final", + "io.netty:netty-codec-http:4.1.72.Final", + "io.netty:netty-codec:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-handler-proxy:4.1.72.Final", + "io.netty:netty-handler:4.1.72.Final", + "io.netty:netty-resolver-dns:4.1.58.Final", + "io.netty:netty-resolver:4.1.72.Final", + "io.netty:netty-tcnative-boringssl-static:2.0.46.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:4.1.58.Final", + "io.netty:netty-transport:4.1.72.Final", + "io.pebbletemplates:pebble:3.1.4", "io.suzaku:boopickle_2.13:1.3.3", "javax.jms:javax.jms-api:2.0.1", - "net.debasishg:redisclient_2.13:3.42", - "net.jodah:typetools:0.6.3", - "net.sf.saxon:Saxon-HE:10.6", + "net.debasishg:redisclient_2.13:3.30", + "net.sf.saxon:Saxon-HE:10.3", "org.apache.commons:commons-pool2:2.8.0", "org.hdrhistogram:HdrHistogram:2.1.12", - "org.jodd:jodd-lagarto:6.0.6", - "org.jodd:jodd-util:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", + "org.jodd:jodd-lagarto:6.0.3", + "org.jodd:jodd-util:6.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", "org.simpleflatmapper:lightning-csv:8.2.3", "org.simpleflatmapper:sfm-util:8.2.3", - "org.slf4j:slf4j-api:1.7.36", + "org.slf4j:slf4j-api:1.7.26", "org.typelevel:spire-macros_2.13:0.17.0", "org.unbescape:unbescape:1.1.6.RELEASE" ], "directDependencies": [ - "io.gatling:gatling-charts:3.8.4", - "io.gatling:gatling-core-java:3.8.4", - "io.gatling:gatling-core:3.8.4", - "io.gatling:gatling-graphite:3.8.4", - "io.gatling:gatling-http-java:3.8.4", - "io.gatling:gatling-http:3.8.4", - "io.gatling:gatling-jdbc-java:3.8.4", - "io.gatling:gatling-jdbc:3.8.4", - "io.gatling:gatling-jms-java:3.8.4", - "io.gatling:gatling-jms:3.8.4", - "io.gatling:gatling-mqtt-java:3.8.4", - "io.gatling:gatling-mqtt:3.8.4", - "io.gatling:gatling-redis-java:3.8.4", - "io.gatling:gatling-redis:3.8.4", + "io.gatling:gatling-charts:3.5.1", + "io.gatling:gatling-core:3.5.1", + "io.gatling:gatling-graphite:3.5.1", + "io.gatling:gatling-http:3.5.1", + "io.gatling:gatling-jdbc:3.5.1", + "io.gatling:gatling-jms:3.5.1", + "io.gatling:gatling-redis:3.5.1", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-app/3.8.4/gatling-app-3.8.4.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-app/3.5.1/gatling-app-3.5.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-app/3.8.4/gatling-app-3.8.4.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-app/3.5.1/gatling-app-3.5.1.jar" ], "packages": [ "io.gatling.app", "io.gatling.app.classloader", "io.gatling.app.cli" ], - "sha256": "f9f165d17132515bac9c86381e7f814e4783ec4808e21a170aad8020c0277c42", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-app/3.8.4/gatling-app-3.8.4.jar" - }, - { - "coord": "io.gatling:gatling-app:jar:sources:3.8.4", - "dependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.11", - "ch.qos.logback:logback-core:jar:sources:1.2.11", - "com.aayushatharva.brotli4j:brotli4j:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-linux-aarch64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-linux-x86_64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-osx-aarch64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-osx-x86_64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-windows-x86_64:jar:sources:1.8.0", - "com.eatthepath:fast-uuid:jar:sources:0.2.0", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.github.ben-manes.caffeine:caffeine:jar:sources:3.1.1", - "com.github.scopt:scopt_2.13:jar:sources:4.1.0", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.9.0", + "sha256": "642538becc128cbbb5e5f7e221e464af02b163ede63a5725b50e0f25e7b373ba", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-app/3.5.1/gatling-app-3.5.1.jar" + }, + { + "coord": "io.gatling:gatling-app:jar:sources:3.5.1", + "dependencies": [ + "ch.qos.logback:logback-classic:jar:sources:1.2.8", + "com.eatthepath:fast-uuid:jar:sources:0.1", + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "com.github.ben-manes.caffeine:caffeine:jar:sources:3.0.5", + "com.github.scopt:scopt_2.13:jar:sources:4.0.0", + "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.6.1", "com.tdunning:t-digest:jar:sources:3.1", "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.5", - "com.typesafe:config:jar:sources:1.4.2", - "io.burt:jmespath-core:jar:sources:0.5.1", - "io.burt:jmespath-jackson:jar:sources:0.5.1", - "io.gatling:gatling-charts:jar:sources:3.8.4", - "io.gatling:gatling-commons-shared-unstable:jar:sources:3.8.4", - "io.gatling:gatling-commons-shared:jar:sources:3.8.4", - "io.gatling:gatling-commons:jar:sources:3.8.4", - "io.gatling:gatling-core-java:jar:sources:3.8.4", - "io.gatling:gatling-core:jar:sources:3.8.4", - "io.gatling:gatling-graphite:jar:sources:3.8.4", - "io.gatling:gatling-http-client:jar:sources:3.8.4", - "io.gatling:gatling-http-java:jar:sources:3.8.4", - "io.gatling:gatling-http:jar:sources:3.8.4", - "io.gatling:gatling-jdbc-java:jar:sources:3.8.4", - "io.gatling:gatling-jdbc:jar:sources:3.8.4", - "io.gatling:gatling-jms-java:jar:sources:3.8.4", - "io.gatling:gatling-jms:jar:sources:3.8.4", - "io.gatling:gatling-jsonpath:jar:sources:3.8.4", - "io.gatling:gatling-mqtt-java:jar:sources:3.8.4", - "io.gatling:gatling-mqtt:jar:sources:3.8.4", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.gatling:gatling-redis-java:jar:sources:3.8.4", - "io.gatling:gatling-redis:jar:sources:3.8.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-dns:jar:sources:4.1.81.Final", - "io.netty:netty-codec-http2:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec-mqtt:jar:sources:4.1.81.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver-dns-classes-macos:jar:sources:4.1.81.Final", - "io.netty:netty-resolver-dns-native-macos:jar:sources:4.1.81.Final", - "io.netty:netty-resolver-dns:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-tcnative-boringssl-static:jar:sources:2.0.54.Final", - "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.pebbletemplates:pebble:jar:sources:3.1.5", + "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.2", + "com.typesafe:config:jar:sources:1.4.1", + "io.burt:jmespath-core:jar:sources:0.5.0", + "io.burt:jmespath-jackson:jar:sources:0.5.0", + "io.gatling:gatling-charts:jar:sources:3.5.1", + "io.gatling:gatling-commons-shared-unstable:jar:sources:3.5.1", + "io.gatling:gatling-commons-shared:jar:sources:3.5.1", + "io.gatling:gatling-commons:jar:sources:3.5.1", + "io.gatling:gatling-core:jar:sources:3.5.1", + "io.gatling:gatling-graphite:jar:sources:3.5.1", + "io.gatling:gatling-http-client:jar:sources:3.5.1", + "io.gatling:gatling-http:jar:sources:3.5.1", + "io.gatling:gatling-jdbc:jar:sources:3.5.1", + "io.gatling:gatling-jms:jar:sources:3.5.1", + "io.gatling:gatling-jsonpath:jar:sources:3.5.1", + "io.gatling:gatling-netty-util:jar:sources:3.5.1", + "io.gatling:gatling-redis:jar:sources:3.5.1", + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-codec-dns:jar:sources:4.1.58.Final", + "io.netty:netty-codec-http2:jar:sources:4.1.72.Final", + "io.netty:netty-codec-http:jar:sources:4.1.72.Final", + "io.netty:netty-codec:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-handler-proxy:jar:sources:4.1.72.Final", + "io.netty:netty-handler:jar:sources:4.1.72.Final", + "io.netty:netty-resolver-dns:jar:sources:4.1.58.Final", + "io.netty:netty-resolver:jar:sources:4.1.72.Final", + "io.netty:netty-tcnative-boringssl-static:jar:sources:2.0.46.Final", + "io.netty:netty-transport-native-epoll:jar:sources:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final", + "io.pebbletemplates:pebble:jar:sources:3.1.4", "io.suzaku:boopickle_2.13:jar:sources:1.3.3", "javax.jms:javax.jms-api:jar:sources:2.0.1", - "net.debasishg:redisclient_2.13:jar:sources:3.42", - "net.jodah:typetools:jar:sources:0.6.3", - "net.sf.saxon:Saxon-HE:jar:sources:10.6", + "net.debasishg:redisclient_2.13:jar:sources:3.30", + "net.sf.saxon:Saxon-HE:jar:sources:10.3", "org.apache.commons:commons-pool2:jar:sources:2.8.0", "org.hdrhistogram:HdrHistogram:jar:sources:2.1.12", - "org.jodd:jodd-lagarto:jar:sources:6.0.6", - "org.jodd:jodd-util:jar:sources:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "org.jodd:jodd-lagarto:jar:sources:6.0.3", + "org.jodd:jodd-util:jar:sources:6.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", "org.simpleflatmapper:lightning-csv:jar:sources:8.2.3", "org.simpleflatmapper:sfm-util:jar:sources:8.2.3", - "org.slf4j:slf4j-api:jar:sources:1.7.36", + "org.slf4j:slf4j-api:jar:sources:1.7.26", "org.typelevel:spire-macros_2.13:jar:sources:0.17.0", "org.unbescape:unbescape:jar:sources:1.1.6.RELEASE" ], "directDependencies": [ - "io.gatling:gatling-charts:jar:sources:3.8.4", - "io.gatling:gatling-core-java:jar:sources:3.8.4", - "io.gatling:gatling-core:jar:sources:3.8.4", - "io.gatling:gatling-graphite:jar:sources:3.8.4", - "io.gatling:gatling-http-java:jar:sources:3.8.4", - "io.gatling:gatling-http:jar:sources:3.8.4", - "io.gatling:gatling-jdbc-java:jar:sources:3.8.4", - "io.gatling:gatling-jdbc:jar:sources:3.8.4", - "io.gatling:gatling-jms-java:jar:sources:3.8.4", - "io.gatling:gatling-jms:jar:sources:3.8.4", - "io.gatling:gatling-mqtt-java:jar:sources:3.8.4", - "io.gatling:gatling-mqtt:jar:sources:3.8.4", - "io.gatling:gatling-redis-java:jar:sources:3.8.4", - "io.gatling:gatling-redis:jar:sources:3.8.4", + "io.gatling:gatling-charts:jar:sources:3.5.1", + "io.gatling:gatling-core:jar:sources:3.5.1", + "io.gatling:gatling-graphite:jar:sources:3.5.1", + "io.gatling:gatling-http:jar:sources:3.5.1", + "io.gatling:gatling-jdbc:jar:sources:3.5.1", + "io.gatling:gatling-jms:jar:sources:3.5.1", + "io.gatling:gatling-redis:jar:sources:3.5.1", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-app/3.8.4/gatling-app-3.8.4-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-app/3.5.1/gatling-app-3.5.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-app/3.8.4/gatling-app-3.8.4-sources.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-app/3.5.1/gatling-app-3.5.1-sources.jar" ], "packages": [], - "sha256": "6b873ed577b61e52dc048267e8f9079393713129cd9a95bd1394ea61f5fab9b3", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-app/3.8.4/gatling-app-3.8.4-sources.jar" + "sha256": "a47266ed35e426f3258400db59a26f3fd912633118ec7c8b91ed5333b4e7e959", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-app/3.5.1/gatling-app-3.5.1-sources.jar" }, { - "coord": "io.gatling:gatling-charts:3.8.4", + "coord": "io.gatling:gatling-charts:3.5.1", "dependencies": [ - "ch.qos.logback:logback-classic:1.2.11", - "ch.qos.logback:logback-core:1.2.11", - "com.fasterxml.jackson.core:jackson-annotations:2.13.4", - "com.fasterxml.jackson.core:jackson-core:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.github.ben-manes.caffeine:caffeine:3.1.1", - "com.github.scopt:scopt_2.13:4.1.0", - "com.softwaremill.quicklens:quicklens_2.13:1.9.0", + "ch.qos.logback:logback-classic:1.2.8", + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "com.github.ben-manes.caffeine:caffeine:3.0.5", + "com.github.scopt:scopt_2.13:4.0.0", + "com.softwaremill.quicklens:quicklens_2.13:1.6.1", "com.tdunning:t-digest:3.1", "com.typesafe.akka:akka-actor_2.13:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:3.9.5", - "com.typesafe:config:1.4.2", - "io.burt:jmespath-core:0.5.1", - "io.burt:jmespath-jackson:0.5.1", - "io.gatling:gatling-commons-shared-unstable:3.8.4", - "io.gatling:gatling-commons-shared:3.8.4", - "io.gatling:gatling-commons:3.8.4", - "io.gatling:gatling-core:3.8.4", - "io.gatling:gatling-jsonpath:3.8.4", - "io.gatling:gatling-netty-util:3.8.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.pebbletemplates:pebble:3.1.5", + "com.typesafe.scala-logging:scala-logging_2.13:3.9.2", + "com.typesafe:config:1.4.1", + "io.burt:jmespath-core:0.5.0", + "io.burt:jmespath-jackson:0.5.0", + "io.gatling:gatling-commons-shared-unstable:3.5.1", + "io.gatling:gatling-commons-shared:3.5.1", + "io.gatling:gatling-commons:3.5.1", + "io.gatling:gatling-core:3.5.1", + "io.gatling:gatling-jsonpath:3.5.1", + "io.gatling:gatling-netty-util:3.5.1", + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-handler:4.1.72.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:4.1.58.Final", + "io.netty:netty-transport:4.1.72.Final", + "io.pebbletemplates:pebble:3.1.4", "io.suzaku:boopickle_2.13:1.3.3", - "net.sf.saxon:Saxon-HE:10.6", - "org.jodd:jodd-lagarto:6.0.6", - "org.jodd:jodd-util:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", + "net.sf.saxon:Saxon-HE:10.3", + "org.jodd:jodd-lagarto:6.0.3", + "org.jodd:jodd-util:6.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", "org.simpleflatmapper:lightning-csv:8.2.3", "org.simpleflatmapper:sfm-util:8.2.3", - "org.slf4j:slf4j-api:1.7.36", + "org.slf4j:slf4j-api:1.7.26", "org.typelevel:spire-macros_2.13:0.17.0", "org.unbescape:unbescape:1.1.6.RELEASE" ], "directDependencies": [ "com.tdunning:t-digest:3.1", - "io.gatling:gatling-core:3.8.4", + "io.gatling:gatling-core:3.5.1", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-charts/3.8.4/gatling-charts-3.8.4.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-charts/3.5.1/gatling-charts-3.5.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-charts/3.8.4/gatling-charts-3.8.4.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-charts/3.5.1/gatling-charts-3.5.1.jar" ], "packages": [ "io.gatling.charts", @@ -5143,93 +4784,84 @@ "io.gatling.charts.template", "io.gatling.charts.util" ], - "sha256": "e49febfeeb1dc9d8622ba78809eb71b56f2a06844d0be6ae40057ca704224460", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-charts/3.8.4/gatling-charts-3.8.4.jar" + "sha256": "e791f43e53e0325eff54f5bda40f7c326db5697e43d02cb775725c9f31909818", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-charts/3.5.1/gatling-charts-3.5.1.jar" }, { - "coord": "io.gatling:gatling-charts:jar:sources:3.8.4", + "coord": "io.gatling:gatling-charts:jar:sources:3.5.1", "dependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.11", - "ch.qos.logback:logback-core:jar:sources:1.2.11", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.github.ben-manes.caffeine:caffeine:jar:sources:3.1.1", - "com.github.scopt:scopt_2.13:jar:sources:4.1.0", - "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.9.0", + "ch.qos.logback:logback-classic:jar:sources:1.2.8", + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "com.github.ben-manes.caffeine:caffeine:jar:sources:3.0.5", + "com.github.scopt:scopt_2.13:jar:sources:4.0.0", + "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.6.1", "com.tdunning:t-digest:jar:sources:3.1", "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.5", - "com.typesafe:config:jar:sources:1.4.2", - "io.burt:jmespath-core:jar:sources:0.5.1", - "io.burt:jmespath-jackson:jar:sources:0.5.1", - "io.gatling:gatling-commons-shared-unstable:jar:sources:3.8.4", - "io.gatling:gatling-commons-shared:jar:sources:3.8.4", - "io.gatling:gatling-commons:jar:sources:3.8.4", - "io.gatling:gatling-core:jar:sources:3.8.4", - "io.gatling:gatling-jsonpath:jar:sources:3.8.4", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.pebbletemplates:pebble:jar:sources:3.1.5", + "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.2", + "com.typesafe:config:jar:sources:1.4.1", + "io.burt:jmespath-core:jar:sources:0.5.0", + "io.burt:jmespath-jackson:jar:sources:0.5.0", + "io.gatling:gatling-commons-shared-unstable:jar:sources:3.5.1", + "io.gatling:gatling-commons-shared:jar:sources:3.5.1", + "io.gatling:gatling-commons:jar:sources:3.5.1", + "io.gatling:gatling-core:jar:sources:3.5.1", + "io.gatling:gatling-jsonpath:jar:sources:3.5.1", + "io.gatling:gatling-netty-util:jar:sources:3.5.1", + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-handler:jar:sources:4.1.72.Final", + "io.netty:netty-transport-native-epoll:jar:sources:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final", + "io.pebbletemplates:pebble:jar:sources:3.1.4", "io.suzaku:boopickle_2.13:jar:sources:1.3.3", - "net.sf.saxon:Saxon-HE:jar:sources:10.6", - "org.jodd:jodd-lagarto:jar:sources:6.0.6", - "org.jodd:jodd-util:jar:sources:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "net.sf.saxon:Saxon-HE:jar:sources:10.3", + "org.jodd:jodd-lagarto:jar:sources:6.0.3", + "org.jodd:jodd-util:jar:sources:6.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", "org.simpleflatmapper:lightning-csv:jar:sources:8.2.3", "org.simpleflatmapper:sfm-util:jar:sources:8.2.3", - "org.slf4j:slf4j-api:jar:sources:1.7.36", + "org.slf4j:slf4j-api:jar:sources:1.7.26", "org.typelevel:spire-macros_2.13:jar:sources:0.17.0", "org.unbescape:unbescape:jar:sources:1.1.6.RELEASE" ], "directDependencies": [ "com.tdunning:t-digest:jar:sources:3.1", - "io.gatling:gatling-core:jar:sources:3.8.4", + "io.gatling:gatling-core:jar:sources:3.5.1", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-charts/3.8.4/gatling-charts-3.8.4-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-charts/3.5.1/gatling-charts-3.5.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-charts/3.8.4/gatling-charts-3.8.4-sources.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-charts/3.5.1/gatling-charts-3.5.1-sources.jar" ], "packages": [], - "sha256": "174b46cd146d7a68a0bb1a66ad3e68fbacb2672e6ace730fe3e04729d5cf4c6d", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-charts/3.8.4/gatling-charts-3.8.4-sources.jar" + "sha256": "8f4e002ed3147003bc34ac2379ee756c170439d439fd69e44fae264eeafd127f", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-charts/3.5.1/gatling-charts-3.5.1-sources.jar" }, { - "coord": "io.gatling:gatling-commons-shared-unstable:3.8.4", + "coord": "io.gatling:gatling-commons-shared-unstable:3.5.1", "dependencies": [ - "io.gatling:gatling-commons-shared:3.8.4", - "io.gatling:gatling-netty-util:3.8.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", + "io.gatling:gatling-commons-shared:3.5.1", + "io.gatling:gatling-netty-util:3.5.1", + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:4.1.58.Final", + "io.netty:netty-transport:4.1.72.Final", "io.suzaku:boopickle_2.13:1.3.3", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8" ], "directDependencies": [ - "io.gatling:gatling-commons-shared:3.8.4", + "io.gatling:gatling-commons-shared:3.5.1", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-commons-shared-unstable/3.8.4/gatling-commons-shared-unstable-3.8.4.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-commons-shared-unstable/3.5.1/gatling-commons-shared-unstable-3.5.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-commons-shared-unstable/3.8.4/gatling-commons-shared-unstable-3.8.4.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-commons-shared-unstable/3.5.1/gatling-commons-shared-unstable-3.5.1.jar" ], "packages": [ "io.gatling.commons.shared.unstable.model", @@ -5237,137 +4869,126 @@ "io.gatling.commons.shared.unstable.model.stats.assertion", "io.gatling.commons.shared.unstable.util" ], - "sha256": "fe058fba108e4800e078349912ddc5b5a77dafdbc5ad9e16656941088612740d", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-commons-shared-unstable/3.8.4/gatling-commons-shared-unstable-3.8.4.jar" + "sha256": "ac50810a5712a7671f6736a75eba154416d2592faa7072785684a59009167d08", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-commons-shared-unstable/3.5.1/gatling-commons-shared-unstable-3.5.1.jar" }, { - "coord": "io.gatling:gatling-commons-shared-unstable:jar:sources:3.8.4", + "coord": "io.gatling:gatling-commons-shared-unstable:jar:sources:3.5.1", "dependencies": [ - "io.gatling:gatling-commons-shared:jar:sources:3.8.4", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", + "io.gatling:gatling-commons-shared:jar:sources:3.5.1", + "io.gatling:gatling-netty-util:jar:sources:3.5.1", + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-transport-native-epoll:jar:sources:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final", "io.suzaku:boopickle_2.13:jar:sources:1.3.3", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8" ], "directDependencies": [ - "io.gatling:gatling-commons-shared:jar:sources:3.8.4", + "io.gatling:gatling-commons-shared:jar:sources:3.5.1", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-commons-shared-unstable/3.8.4/gatling-commons-shared-unstable-3.8.4-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-commons-shared-unstable/3.5.1/gatling-commons-shared-unstable-3.5.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-commons-shared-unstable/3.8.4/gatling-commons-shared-unstable-3.8.4-sources.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-commons-shared-unstable/3.5.1/gatling-commons-shared-unstable-3.5.1-sources.jar" ], "packages": [], - "sha256": "41845f9c577053026651fbc7a9f5c9902d4a3f6bc8a394fc9af6e7fbb90b7a96", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-commons-shared-unstable/3.8.4/gatling-commons-shared-unstable-3.8.4-sources.jar" + "sha256": "70a1254b8fc4840c01054a6cda1a1f1a1adafc0104443124d37e3a9c4dd42af6", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-commons-shared-unstable/3.5.1/gatling-commons-shared-unstable-3.5.1-sources.jar" }, { - "coord": "io.gatling:gatling-commons-shared:3.8.4", + "coord": "io.gatling:gatling-commons-shared:3.5.1", "dependencies": [ - "io.gatling:gatling-netty-util:3.8.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", + "io.gatling:gatling-netty-util:3.5.1", + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:4.1.58.Final", + "io.netty:netty-transport:4.1.72.Final", "io.suzaku:boopickle_2.13:1.3.3", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8" ], "directDependencies": [ - "io.gatling:gatling-netty-util:3.8.4", + "io.gatling:gatling-netty-util:3.5.1", "io.suzaku:boopickle_2.13:1.3.3", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-commons-shared/3.8.4/gatling-commons-shared-3.8.4.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-commons-shared/3.5.1/gatling-commons-shared-3.5.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-commons-shared/3.8.4/gatling-commons-shared-3.8.4.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-commons-shared/3.5.1/gatling-commons-shared-3.5.1.jar" ], "packages": [ "io.gatling.commons.stats", "io.gatling.commons.stats.assertion", "io.gatling.commons.util" ], - "sha256": "6dc2e6625a086f53f2090edb0c13a7a91d0e5024a96fbb18c8cdc38c807db89b", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-commons-shared/3.8.4/gatling-commons-shared-3.8.4.jar" + "sha256": "efdc51fe991ee176f77fb9b6fc11577a02191943d18ba7818b9a3589b2523e6e", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-commons-shared/3.5.1/gatling-commons-shared-3.5.1.jar" }, { - "coord": "io.gatling:gatling-commons-shared:jar:sources:3.8.4", + "coord": "io.gatling:gatling-commons-shared:jar:sources:3.5.1", "dependencies": [ - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", + "io.gatling:gatling-netty-util:jar:sources:3.5.1", + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-transport-native-epoll:jar:sources:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final", "io.suzaku:boopickle_2.13:jar:sources:1.3.3", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8" ], "directDependencies": [ - "io.gatling:gatling-netty-util:jar:sources:3.8.4", + "io.gatling:gatling-netty-util:jar:sources:3.5.1", "io.suzaku:boopickle_2.13:jar:sources:1.3.3", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-commons-shared/3.8.4/gatling-commons-shared-3.8.4-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-commons-shared/3.5.1/gatling-commons-shared-3.5.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-commons-shared/3.8.4/gatling-commons-shared-3.8.4-sources.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-commons-shared/3.5.1/gatling-commons-shared-3.5.1-sources.jar" ], "packages": [], - "sha256": "4aee6afe413967acc72494424d5ca74ab70fd490abcf8cf53977bdfb74542aff", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-commons-shared/3.8.4/gatling-commons-shared-3.8.4-sources.jar" + "sha256": "fc3e43d7c4c47f21f72291c2a2c164863c13a5bd0b54dc0b1af7678ccc6ca115", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-commons-shared/3.5.1/gatling-commons-shared-3.5.1-sources.jar" }, { - "coord": "io.gatling:gatling-commons:3.8.4", + "coord": "io.gatling:gatling-commons:3.5.1", "dependencies": [ - "ch.qos.logback:logback-classic:1.2.11", - "ch.qos.logback:logback-core:1.2.11", - "com.typesafe.scala-logging:scala-logging_2.13:3.9.5", - "com.typesafe:config:1.4.2", - "io.gatling:gatling-commons-shared-unstable:3.8.4", - "io.gatling:gatling-commons-shared:3.8.4", - "io.gatling:gatling-netty-util:3.8.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", + "ch.qos.logback:logback-classic:1.2.8", + "com.typesafe.scala-logging:scala-logging_2.13:3.9.2", + "com.typesafe:config:1.4.1", + "io.gatling:gatling-commons-shared-unstable:3.5.1", + "io.gatling:gatling-commons-shared:3.5.1", + "io.gatling:gatling-netty-util:3.5.1", + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:4.1.58.Final", + "io.netty:netty-transport:4.1.72.Final", "io.suzaku:boopickle_2.13:1.3.3", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.slf4j:slf4j-api:1.7.36", + "org.slf4j:slf4j-api:1.7.26", "org.typelevel:spire-macros_2.13:0.17.0" ], "directDependencies": [ - "ch.qos.logback:logback-classic:1.2.11", - "com.typesafe.scala-logging:scala-logging_2.13:3.9.5", - "com.typesafe:config:1.4.2", - "io.gatling:gatling-commons-shared-unstable:3.8.4", - "io.gatling:gatling-commons-shared:3.8.4", + "ch.qos.logback:logback-classic:1.2.8", + "com.typesafe.scala-logging:scala-logging_2.13:3.9.2", + "com.typesafe:config:1.4.1", + "io.gatling:gatling-commons-shared-unstable:3.5.1", + "io.gatling:gatling-commons-shared:3.5.1", "org.scala-lang:scala-library:2.13.8", - "org.slf4j:slf4j-api:1.7.36", + "org.slf4j:slf4j-api:1.7.26", "org.typelevel:spire-macros_2.13:0.17.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-commons/3.8.4/gatling-commons-3.8.4.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-commons/3.5.1/gatling-commons-3.5.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-commons/3.8.4/gatling-commons-3.8.4.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-commons/3.5.1/gatling-commons-3.5.1.jar" ], "packages": [ "io.gatling.commons", @@ -5375,260 +4996,107 @@ "io.gatling.commons.util", "io.gatling.commons.validation" ], - "sha256": "33d2a55395edf040371aadc8fa597fc1109f22e31486596ed302bcc1f2d37a0b", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-commons/3.8.4/gatling-commons-3.8.4.jar" - }, - { - "coord": "io.gatling:gatling-commons:jar:sources:3.8.4", - "dependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.11", - "ch.qos.logback:logback-core:jar:sources:1.2.11", - "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.5", - "com.typesafe:config:jar:sources:1.4.2", - "io.gatling:gatling-commons-shared-unstable:jar:sources:3.8.4", - "io.gatling:gatling-commons-shared:jar:sources:3.8.4", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.suzaku:boopickle_2.13:jar:sources:1.3.3", - "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.slf4j:slf4j-api:jar:sources:1.7.36", - "org.typelevel:spire-macros_2.13:jar:sources:0.17.0" - ], - "directDependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.11", - "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.5", - "com.typesafe:config:jar:sources:1.4.2", - "io.gatling:gatling-commons-shared-unstable:jar:sources:3.8.4", - "io.gatling:gatling-commons-shared:jar:sources:3.8.4", - "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.slf4j:slf4j-api:jar:sources:1.7.36", - "org.typelevel:spire-macros_2.13:jar:sources:0.17.0" - ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-commons/3.8.4/gatling-commons-3.8.4-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-commons/3.8.4/gatling-commons-3.8.4-sources.jar" - ], - "packages": [], - "sha256": "935750353f2356a825f1a765d56fd2b68ee818932c54d6b5be37f2aefffc405b", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-commons/3.8.4/gatling-commons-3.8.4-sources.jar" + "sha256": "6b838194f642e0151245e1f2f39605835c13147940b4903f7314bddb5855eab1", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-commons/3.5.1/gatling-commons-3.5.1.jar" }, { - "coord": "io.gatling:gatling-core-java:3.8.4", + "coord": "io.gatling:gatling-commons:jar:sources:3.5.1", "dependencies": [ - "ch.qos.logback:logback-classic:1.2.11", - "ch.qos.logback:logback-core:1.2.11", - "com.fasterxml.jackson.core:jackson-annotations:2.13.4", - "com.fasterxml.jackson.core:jackson-core:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.github.ben-manes.caffeine:caffeine:3.1.1", - "com.github.scopt:scopt_2.13:4.1.0", - "com.google.code.findbugs:jsr305:3.0.2", - "com.softwaremill.quicklens:quicklens_2.13:1.9.0", - "com.typesafe.akka:akka-actor_2.13:2.6.18", - "com.typesafe.akka:akka-slf4j_2.13:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:3.9.5", - "com.typesafe:config:1.4.2", - "io.burt:jmespath-core:0.5.1", - "io.burt:jmespath-jackson:0.5.1", - "io.gatling:gatling-commons-shared-unstable:3.8.4", - "io.gatling:gatling-commons-shared:3.8.4", - "io.gatling:gatling-commons:3.8.4", - "io.gatling:gatling-core:3.8.4", - "io.gatling:gatling-jsonpath:3.8.4", - "io.gatling:gatling-netty-util:3.8.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.pebbletemplates:pebble:3.1.5", - "io.suzaku:boopickle_2.13:1.3.3", - "net.jodah:typetools:0.6.3", - "net.sf.saxon:Saxon-HE:10.6", - "org.jodd:jodd-lagarto:6.0.6", - "org.jodd:jodd-util:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", - "org.scala-lang:scala-library:2.13.8", - "org.scala-lang:scala-reflect:2.13.8", - "org.simpleflatmapper:lightning-csv:8.2.3", - "org.simpleflatmapper:sfm-util:8.2.3", - "org.slf4j:slf4j-api:1.7.36", - "org.typelevel:spire-macros_2.13:0.17.0", - "org.unbescape:unbescape:1.1.6.RELEASE" - ], - "directDependencies": [ - "com.google.code.findbugs:jsr305:3.0.2", - "io.gatling:gatling-core:3.8.4", - "net.jodah:typetools:0.6.3", - "org.scala-lang:scala-library:2.13.8" - ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-core-java/3.8.4/gatling-core-java-3.8.4.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-core-java/3.8.4/gatling-core-java-3.8.4.jar" - ], - "packages": [ - "io.gatling.javaapi.core", - "io.gatling.javaapi.core.condition", - "io.gatling.javaapi.core.error", - "io.gatling.javaapi.core.exec", - "io.gatling.javaapi.core.feed", - "io.gatling.javaapi.core.group", - "io.gatling.javaapi.core.internal", - "io.gatling.javaapi.core.internal.condition", - "io.gatling.javaapi.core.internal.errors", - "io.gatling.javaapi.core.internal.exec", - "io.gatling.javaapi.core.internal.feed", - "io.gatling.javaapi.core.internal.group", - "io.gatling.javaapi.core.internal.loop", - "io.gatling.javaapi.core.internal.pause", - "io.gatling.javaapi.core.loop", - "io.gatling.javaapi.core.pause" - ], - "sha256": "cd1580a73b2e6addc5230ddc35c4254788aaa471ac9586d5947c12da68be449a", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-core-java/3.8.4/gatling-core-java-3.8.4.jar" - }, - { - "coord": "io.gatling:gatling-core-java:jar:sources:3.8.4", - "dependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.11", - "ch.qos.logback:logback-core:jar:sources:1.2.11", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.github.ben-manes.caffeine:caffeine:jar:sources:3.1.1", - "com.github.scopt:scopt_2.13:jar:sources:4.1.0", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.9.0", - "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", - "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.5", - "com.typesafe:config:jar:sources:1.4.2", - "io.burt:jmespath-core:jar:sources:0.5.1", - "io.burt:jmespath-jackson:jar:sources:0.5.1", - "io.gatling:gatling-commons-shared-unstable:jar:sources:3.8.4", - "io.gatling:gatling-commons-shared:jar:sources:3.8.4", - "io.gatling:gatling-commons:jar:sources:3.8.4", - "io.gatling:gatling-core:jar:sources:3.8.4", - "io.gatling:gatling-jsonpath:jar:sources:3.8.4", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.pebbletemplates:pebble:jar:sources:3.1.5", + "ch.qos.logback:logback-classic:jar:sources:1.2.8", + "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.2", + "com.typesafe:config:jar:sources:1.4.1", + "io.gatling:gatling-commons-shared-unstable:jar:sources:3.5.1", + "io.gatling:gatling-commons-shared:jar:sources:3.5.1", + "io.gatling:gatling-netty-util:jar:sources:3.5.1", + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-transport-native-epoll:jar:sources:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final", "io.suzaku:boopickle_2.13:jar:sources:1.3.3", - "net.jodah:typetools:jar:sources:0.6.3", - "net.sf.saxon:Saxon-HE:jar:sources:10.6", - "org.jodd:jodd-lagarto:jar:sources:6.0.6", - "org.jodd:jodd-util:jar:sources:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.simpleflatmapper:lightning-csv:jar:sources:8.2.3", - "org.simpleflatmapper:sfm-util:jar:sources:8.2.3", - "org.slf4j:slf4j-api:jar:sources:1.7.36", - "org.typelevel:spire-macros_2.13:jar:sources:0.17.0", - "org.unbescape:unbescape:jar:sources:1.1.6.RELEASE" + "org.slf4j:slf4j-api:jar:sources:1.7.26", + "org.typelevel:spire-macros_2.13:jar:sources:0.17.0" ], "directDependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "io.gatling:gatling-core:jar:sources:3.8.4", - "net.jodah:typetools:jar:sources:0.6.3", - "org.scala-lang:scala-library:jar:sources:2.13.8" + "ch.qos.logback:logback-classic:jar:sources:1.2.8", + "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.2", + "com.typesafe:config:jar:sources:1.4.1", + "io.gatling:gatling-commons-shared-unstable:jar:sources:3.5.1", + "io.gatling:gatling-commons-shared:jar:sources:3.5.1", + "org.scala-lang:scala-library:jar:sources:2.13.8", + "org.slf4j:slf4j-api:jar:sources:1.7.26", + "org.typelevel:spire-macros_2.13:jar:sources:0.17.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-core-java/3.8.4/gatling-core-java-3.8.4-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-commons/3.5.1/gatling-commons-3.5.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-core-java/3.8.4/gatling-core-java-3.8.4-sources.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-commons/3.5.1/gatling-commons-3.5.1-sources.jar" ], "packages": [], - "sha256": "8d6080f90b4b6fefcede33e187c4c0148a6bb3d1a9c1b56ba8f2e5798e5db405", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-core-java/3.8.4/gatling-core-java-3.8.4-sources.jar" + "sha256": "4e4cb19a1ccaefbd67ffe7972d126464cdac1c929f058d26bf3b712627a92e1f", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-commons/3.5.1/gatling-commons-3.5.1-sources.jar" }, { - "coord": "io.gatling:gatling-core:3.8.4", + "coord": "io.gatling:gatling-core:3.5.1", "dependencies": [ - "ch.qos.logback:logback-classic:1.2.11", - "ch.qos.logback:logback-core:1.2.11", - "com.fasterxml.jackson.core:jackson-annotations:2.13.4", - "com.fasterxml.jackson.core:jackson-core:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.github.ben-manes.caffeine:caffeine:3.1.1", - "com.github.scopt:scopt_2.13:4.1.0", - "com.softwaremill.quicklens:quicklens_2.13:1.9.0", + "ch.qos.logback:logback-classic:1.2.8", + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "com.github.ben-manes.caffeine:caffeine:3.0.5", + "com.github.scopt:scopt_2.13:4.0.0", + "com.softwaremill.quicklens:quicklens_2.13:1.6.1", "com.typesafe.akka:akka-actor_2.13:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:3.9.5", - "com.typesafe:config:1.4.2", - "io.burt:jmespath-core:0.5.1", - "io.burt:jmespath-jackson:0.5.1", - "io.gatling:gatling-commons-shared-unstable:3.8.4", - "io.gatling:gatling-commons-shared:3.8.4", - "io.gatling:gatling-commons:3.8.4", - "io.gatling:gatling-jsonpath:3.8.4", - "io.gatling:gatling-netty-util:3.8.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.pebbletemplates:pebble:3.1.5", + "com.typesafe.scala-logging:scala-logging_2.13:3.9.2", + "com.typesafe:config:1.4.1", + "io.burt:jmespath-core:0.5.0", + "io.burt:jmespath-jackson:0.5.0", + "io.gatling:gatling-commons-shared-unstable:3.5.1", + "io.gatling:gatling-commons-shared:3.5.1", + "io.gatling:gatling-commons:3.5.1", + "io.gatling:gatling-jsonpath:3.5.1", + "io.gatling:gatling-netty-util:3.5.1", + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-handler:4.1.72.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:4.1.58.Final", + "io.netty:netty-transport:4.1.72.Final", + "io.pebbletemplates:pebble:3.1.4", "io.suzaku:boopickle_2.13:1.3.3", - "net.sf.saxon:Saxon-HE:10.6", - "org.jodd:jodd-lagarto:6.0.6", - "org.jodd:jodd-util:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", + "net.sf.saxon:Saxon-HE:10.3", + "org.jodd:jodd-lagarto:6.0.3", + "org.jodd:jodd-util:6.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", "org.simpleflatmapper:lightning-csv:8.2.3", "org.simpleflatmapper:sfm-util:8.2.3", - "org.slf4j:slf4j-api:1.7.36", + "org.slf4j:slf4j-api:1.7.26", "org.typelevel:spire-macros_2.13:0.17.0", "org.unbescape:unbescape:1.1.6.RELEASE" ], "directDependencies": [ - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.github.ben-manes.caffeine:caffeine:3.1.1", - "com.github.scopt:scopt_2.13:4.1.0", - "com.softwaremill.quicklens:quicklens_2.13:1.9.0", + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "com.github.ben-manes.caffeine:caffeine:3.0.5", + "com.github.scopt:scopt_2.13:4.0.0", + "com.softwaremill.quicklens:quicklens_2.13:1.6.1", "com.typesafe.akka:akka-actor_2.13:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:2.6.18", - "io.burt:jmespath-jackson:0.5.1", - "io.gatling:gatling-commons:3.8.4", - "io.gatling:gatling-jsonpath:3.8.4", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final", - "io.pebbletemplates:pebble:3.1.5", - "net.sf.saxon:Saxon-HE:10.6", - "org.jodd:jodd-lagarto:6.0.6", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", + "io.burt:jmespath-jackson:0.5.0", + "io.gatling:gatling-commons:3.5.1", + "io.gatling:gatling-jsonpath:3.5.1", + "io.netty:netty-handler:4.1.72.Final", + "io.pebbletemplates:pebble:3.1.4", + "net.sf.saxon:Saxon-HE:10.3", + "org.jodd:jodd-lagarto:6.0.3", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang:scala-library:2.13.8", "org.simpleflatmapper:lightning-csv:8.2.3" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-core/3.8.4/gatling-core-3.8.4.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-core/3.5.1/gatling-core-3.5.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-core/3.8.4/gatling-core-3.8.4.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-core/3.5.1/gatling-core-3.5.1.jar" ], "packages": [ "io.gatling.core", @@ -5672,137 +5140,123 @@ "io.gatling.core.util", "io.gatling.core.util.cache" ], - "sha256": "fa90fa9a7179d662e7f1822121bee6f7260dfd992cdb062689777cd0cb4df888", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-core/3.8.4/gatling-core-3.8.4.jar" + "sha256": "06b80d236260b4b4459fc3a5b8aba33e1d56c9fef164cd2839ee04fddc9545b4", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-core/3.5.1/gatling-core-3.5.1.jar" }, { - "coord": "io.gatling:gatling-core:jar:sources:3.8.4", + "coord": "io.gatling:gatling-core:jar:sources:3.5.1", "dependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.11", - "ch.qos.logback:logback-core:jar:sources:1.2.11", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.github.ben-manes.caffeine:caffeine:jar:sources:3.1.1", - "com.github.scopt:scopt_2.13:jar:sources:4.1.0", - "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.9.0", + "ch.qos.logback:logback-classic:jar:sources:1.2.8", + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "com.github.ben-manes.caffeine:caffeine:jar:sources:3.0.5", + "com.github.scopt:scopt_2.13:jar:sources:4.0.0", + "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.6.1", "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.5", - "com.typesafe:config:jar:sources:1.4.2", - "io.burt:jmespath-core:jar:sources:0.5.1", - "io.burt:jmespath-jackson:jar:sources:0.5.1", - "io.gatling:gatling-commons-shared-unstable:jar:sources:3.8.4", - "io.gatling:gatling-commons-shared:jar:sources:3.8.4", - "io.gatling:gatling-commons:jar:sources:3.8.4", - "io.gatling:gatling-jsonpath:jar:sources:3.8.4", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.pebbletemplates:pebble:jar:sources:3.1.5", + "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.2", + "com.typesafe:config:jar:sources:1.4.1", + "io.burt:jmespath-core:jar:sources:0.5.0", + "io.burt:jmespath-jackson:jar:sources:0.5.0", + "io.gatling:gatling-commons-shared-unstable:jar:sources:3.5.1", + "io.gatling:gatling-commons-shared:jar:sources:3.5.1", + "io.gatling:gatling-commons:jar:sources:3.5.1", + "io.gatling:gatling-jsonpath:jar:sources:3.5.1", + "io.gatling:gatling-netty-util:jar:sources:3.5.1", + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-handler:jar:sources:4.1.72.Final", + "io.netty:netty-transport-native-epoll:jar:sources:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final", + "io.pebbletemplates:pebble:jar:sources:3.1.4", "io.suzaku:boopickle_2.13:jar:sources:1.3.3", - "net.sf.saxon:Saxon-HE:jar:sources:10.6", - "org.jodd:jodd-lagarto:jar:sources:6.0.6", - "org.jodd:jodd-util:jar:sources:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "net.sf.saxon:Saxon-HE:jar:sources:10.3", + "org.jodd:jodd-lagarto:jar:sources:6.0.3", + "org.jodd:jodd-util:jar:sources:6.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", "org.simpleflatmapper:lightning-csv:jar:sources:8.2.3", "org.simpleflatmapper:sfm-util:jar:sources:8.2.3", - "org.slf4j:slf4j-api:jar:sources:1.7.36", + "org.slf4j:slf4j-api:jar:sources:1.7.26", "org.typelevel:spire-macros_2.13:jar:sources:0.17.0", "org.unbescape:unbescape:jar:sources:1.1.6.RELEASE" ], "directDependencies": [ - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.github.ben-manes.caffeine:caffeine:jar:sources:3.1.1", - "com.github.scopt:scopt_2.13:jar:sources:4.1.0", - "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.9.0", + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "com.github.ben-manes.caffeine:caffeine:jar:sources:3.0.5", + "com.github.scopt:scopt_2.13:jar:sources:4.0.0", + "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.6.1", "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.18", - "io.burt:jmespath-jackson:jar:sources:0.5.1", - "io.gatling:gatling-commons:jar:sources:3.8.4", - "io.gatling:gatling-jsonpath:jar:sources:3.8.4", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final", - "io.pebbletemplates:pebble:jar:sources:3.1.5", - "net.sf.saxon:Saxon-HE:jar:sources:10.6", - "org.jodd:jodd-lagarto:jar:sources:6.0.6", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "io.burt:jmespath-jackson:jar:sources:0.5.0", + "io.gatling:gatling-commons:jar:sources:3.5.1", + "io.gatling:gatling-jsonpath:jar:sources:3.5.1", + "io.netty:netty-handler:jar:sources:4.1.72.Final", + "io.pebbletemplates:pebble:jar:sources:3.1.4", + "net.sf.saxon:Saxon-HE:jar:sources:10.3", + "org.jodd:jodd-lagarto:jar:sources:6.0.3", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.simpleflatmapper:lightning-csv:jar:sources:8.2.3" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-core/3.8.4/gatling-core-3.8.4-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-core/3.5.1/gatling-core-3.5.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-core/3.8.4/gatling-core-3.8.4-sources.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-core/3.5.1/gatling-core-3.5.1-sources.jar" ], "packages": [], - "sha256": "dd3961863d0e8cd5e01bb07beaa27aff7f5744eb4de6ac607f78abcebf18abe0", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-core/3.8.4/gatling-core-3.8.4-sources.jar" + "sha256": "17fc31ee9d137d264d9f6a72931dbf9f4d32d7ca347438543c9235e2dee608e1", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-core/3.5.1/gatling-core-3.5.1-sources.jar" }, { - "coord": "io.gatling:gatling-graphite:3.8.4", + "coord": "io.gatling:gatling-graphite:3.5.1", "dependencies": [ - "ch.qos.logback:logback-classic:1.2.11", - "ch.qos.logback:logback-core:1.2.11", - "com.fasterxml.jackson.core:jackson-annotations:2.13.4", - "com.fasterxml.jackson.core:jackson-core:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.github.ben-manes.caffeine:caffeine:3.1.1", - "com.github.scopt:scopt_2.13:4.1.0", - "com.softwaremill.quicklens:quicklens_2.13:1.9.0", + "ch.qos.logback:logback-classic:1.2.8", + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "com.github.ben-manes.caffeine:caffeine:3.0.5", + "com.github.scopt:scopt_2.13:4.0.0", + "com.softwaremill.quicklens:quicklens_2.13:1.6.1", "com.typesafe.akka:akka-actor_2.13:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:3.9.5", - "com.typesafe:config:1.4.2", - "io.burt:jmespath-core:0.5.1", - "io.burt:jmespath-jackson:0.5.1", - "io.gatling:gatling-commons-shared-unstable:3.8.4", - "io.gatling:gatling-commons-shared:3.8.4", - "io.gatling:gatling-commons:3.8.4", - "io.gatling:gatling-core:3.8.4", - "io.gatling:gatling-jsonpath:3.8.4", - "io.gatling:gatling-netty-util:3.8.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.pebbletemplates:pebble:3.1.5", + "com.typesafe.scala-logging:scala-logging_2.13:3.9.2", + "com.typesafe:config:1.4.1", + "io.burt:jmespath-core:0.5.0", + "io.burt:jmespath-jackson:0.5.0", + "io.gatling:gatling-commons-shared-unstable:3.5.1", + "io.gatling:gatling-commons-shared:3.5.1", + "io.gatling:gatling-commons:3.5.1", + "io.gatling:gatling-core:3.5.1", + "io.gatling:gatling-jsonpath:3.5.1", + "io.gatling:gatling-netty-util:3.5.1", + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-handler:4.1.72.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:4.1.58.Final", + "io.netty:netty-transport:4.1.72.Final", + "io.pebbletemplates:pebble:3.1.4", "io.suzaku:boopickle_2.13:1.3.3", - "net.sf.saxon:Saxon-HE:10.6", + "net.sf.saxon:Saxon-HE:10.3", "org.hdrhistogram:HdrHistogram:2.1.12", - "org.jodd:jodd-lagarto:6.0.6", - "org.jodd:jodd-util:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", + "org.jodd:jodd-lagarto:6.0.3", + "org.jodd:jodd-util:6.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", "org.simpleflatmapper:lightning-csv:8.2.3", "org.simpleflatmapper:sfm-util:8.2.3", - "org.slf4j:slf4j-api:1.7.36", + "org.slf4j:slf4j-api:1.7.26", "org.typelevel:spire-macros_2.13:0.17.0", "org.unbescape:unbescape:1.1.6.RELEASE" ], "directDependencies": [ - "io.gatling:gatling-core:3.8.4", + "io.gatling:gatling-core:3.5.1", "org.hdrhistogram:HdrHistogram:2.1.12", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-graphite/3.8.4/gatling-graphite-3.8.4.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-graphite/3.5.1/gatling-graphite-3.5.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-graphite/3.8.4/gatling-graphite-3.8.4.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-graphite/3.5.1/gatling-graphite-3.5.1.jar" ], "packages": [ "io.gatling.graphite", @@ -5810,144 +5264,105 @@ "io.gatling.graphite.sender", "io.gatling.graphite.types" ], - "sha256": "df8283c8a55c33511808c2a3a26ec4f890d23543b3b48377ad2b051f85bc219f", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-graphite/3.8.4/gatling-graphite-3.8.4.jar" + "sha256": "0c1ef3dac0dcd000e983623b27ae2e64fa59969663434cb44e4d176d6697803f", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-graphite/3.5.1/gatling-graphite-3.5.1.jar" }, { - "coord": "io.gatling:gatling-graphite:jar:sources:3.8.4", + "coord": "io.gatling:gatling-graphite:jar:sources:3.5.1", "dependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.11", - "ch.qos.logback:logback-core:jar:sources:1.2.11", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.github.ben-manes.caffeine:caffeine:jar:sources:3.1.1", - "com.github.scopt:scopt_2.13:jar:sources:4.1.0", - "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.9.0", + "ch.qos.logback:logback-classic:jar:sources:1.2.8", + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "com.github.ben-manes.caffeine:caffeine:jar:sources:3.0.5", + "com.github.scopt:scopt_2.13:jar:sources:4.0.0", + "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.6.1", "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.5", - "com.typesafe:config:jar:sources:1.4.2", - "io.burt:jmespath-core:jar:sources:0.5.1", - "io.burt:jmespath-jackson:jar:sources:0.5.1", - "io.gatling:gatling-commons-shared-unstable:jar:sources:3.8.4", - "io.gatling:gatling-commons-shared:jar:sources:3.8.4", - "io.gatling:gatling-commons:jar:sources:3.8.4", - "io.gatling:gatling-core:jar:sources:3.8.4", - "io.gatling:gatling-jsonpath:jar:sources:3.8.4", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.pebbletemplates:pebble:jar:sources:3.1.5", + "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.2", + "com.typesafe:config:jar:sources:1.4.1", + "io.burt:jmespath-core:jar:sources:0.5.0", + "io.burt:jmespath-jackson:jar:sources:0.5.0", + "io.gatling:gatling-commons-shared-unstable:jar:sources:3.5.1", + "io.gatling:gatling-commons-shared:jar:sources:3.5.1", + "io.gatling:gatling-commons:jar:sources:3.5.1", + "io.gatling:gatling-core:jar:sources:3.5.1", + "io.gatling:gatling-jsonpath:jar:sources:3.5.1", + "io.gatling:gatling-netty-util:jar:sources:3.5.1", + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-handler:jar:sources:4.1.72.Final", + "io.netty:netty-transport-native-epoll:jar:sources:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final", + "io.pebbletemplates:pebble:jar:sources:3.1.4", "io.suzaku:boopickle_2.13:jar:sources:1.3.3", - "net.sf.saxon:Saxon-HE:jar:sources:10.6", + "net.sf.saxon:Saxon-HE:jar:sources:10.3", "org.hdrhistogram:HdrHistogram:jar:sources:2.1.12", - "org.jodd:jodd-lagarto:jar:sources:6.0.6", - "org.jodd:jodd-util:jar:sources:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "org.jodd:jodd-lagarto:jar:sources:6.0.3", + "org.jodd:jodd-util:jar:sources:6.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", "org.simpleflatmapper:lightning-csv:jar:sources:8.2.3", "org.simpleflatmapper:sfm-util:jar:sources:8.2.3", - "org.slf4j:slf4j-api:jar:sources:1.7.36", + "org.slf4j:slf4j-api:jar:sources:1.7.26", "org.typelevel:spire-macros_2.13:jar:sources:0.17.0", "org.unbescape:unbescape:jar:sources:1.1.6.RELEASE" ], "directDependencies": [ - "io.gatling:gatling-core:jar:sources:3.8.4", + "io.gatling:gatling-core:jar:sources:3.5.1", "org.hdrhistogram:HdrHistogram:jar:sources:2.1.12", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-graphite/3.8.4/gatling-graphite-3.8.4-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-graphite/3.8.4/gatling-graphite-3.8.4-sources.jar" - ], - "packages": [], - "sha256": "2415f040127fe6b0dbf124d8a8beb0874296223b04803663e5c94da12327e93a", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-graphite/3.8.4/gatling-graphite-3.8.4-sources.jar" - }, - { - "coord": "io.gatling:gatling-http-client:3.8.4", - "dependencies": [ - "ch.qos.logback:logback-classic:1.2.11", - "ch.qos.logback:logback-core:1.2.11", - "com.aayushatharva.brotli4j:brotli4j:1.8.0", - "com.aayushatharva.brotli4j:native-linux-aarch64:1.8.0", - "com.aayushatharva.brotli4j:native-linux-x86_64:1.8.0", - "com.aayushatharva.brotli4j:native-osx-aarch64:1.8.0", - "com.aayushatharva.brotli4j:native-osx-x86_64:1.8.0", - "com.aayushatharva.brotli4j:native-windows-x86_64:1.8.0", - "com.typesafe.scala-logging:scala-logging_2.13:3.9.5", - "io.gatling:gatling-netty-util:3.8.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-dns:4.1.81.Final", - "io.netty:netty-codec-http2:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver-dns-classes-macos:4.1.81.Final", - "io.netty:netty-resolver-dns-native-macos:jar:osx-aarch_64:4.1.81.Final", - "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.81.Final", - "io.netty:netty-resolver-dns:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-tcnative-boringssl-static:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-graphite/3.5.1/gatling-graphite-3.5.1-sources.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/io/gatling/gatling-graphite/3.5.1/gatling-graphite-3.5.1-sources.jar" + ], + "packages": [], + "sha256": "13d96321a4b29587407c4603a6b9b74e7e934d9df2f775e78f835d9ce30febe6", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-graphite/3.5.1/gatling-graphite-3.5.1-sources.jar" + }, + { + "coord": "io.gatling:gatling-http-client:3.5.1", + "dependencies": [ + "ch.qos.logback:logback-classic:1.2.8", + "com.typesafe.scala-logging:scala-logging_2.13:3.9.2", + "io.gatling:gatling-netty-util:3.5.1", + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-codec-dns:4.1.58.Final", + "io.netty:netty-codec-http2:4.1.72.Final", + "io.netty:netty-codec-http:4.1.72.Final", + "io.netty:netty-codec:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-handler-proxy:4.1.72.Final", + "io.netty:netty-handler:4.1.72.Final", + "io.netty:netty-resolver-dns:4.1.58.Final", + "io.netty:netty-resolver:4.1.72.Final", + "io.netty:netty-tcnative-boringssl-static:2.0.46.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:4.1.58.Final", + "io.netty:netty-transport:4.1.72.Final", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.slf4j:slf4j-api:1.7.36" - ], - "directDependencies": [ - "ch.qos.logback:logback-classic:1.2.11", - "com.aayushatharva.brotli4j:brotli4j:1.8.0", - "com.aayushatharva.brotli4j:native-linux-aarch64:1.8.0", - "com.aayushatharva.brotli4j:native-linux-x86_64:1.8.0", - "com.aayushatharva.brotli4j:native-osx-aarch64:1.8.0", - "com.aayushatharva.brotli4j:native-osx-x86_64:1.8.0", - "com.aayushatharva.brotli4j:native-windows-x86_64:1.8.0", - "com.typesafe.scala-logging:scala-logging_2.13:3.9.5", - "io.gatling:gatling-netty-util:3.8.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-http2:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver-dns-native-macos:jar:osx-aarch_64:4.1.81.Final", - "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.81.Final", - "io.netty:netty-resolver-dns:4.1.81.Final", - "io.netty:netty-tcnative-boringssl-static:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", + "org.slf4j:slf4j-api:1.7.26" + ], + "directDependencies": [ + "ch.qos.logback:logback-classic:1.2.8", + "com.typesafe.scala-logging:scala-logging_2.13:3.9.2", + "io.gatling:gatling-netty-util:3.5.1", + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-codec-http2:4.1.72.Final", + "io.netty:netty-codec-http:4.1.72.Final", + "io.netty:netty-handler-proxy:4.1.72.Final", + "io.netty:netty-handler:4.1.72.Final", + "io.netty:netty-resolver-dns:4.1.58.Final", + "io.netty:netty-tcnative-boringssl-static:2.0.46.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.58.Final", "org.scala-lang:scala-library:2.13.8", - "org.slf4j:slf4j-api:1.7.36" + "org.slf4j:slf4j-api:1.7.26" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-http-client/3.8.4/gatling-http-client-3.8.4.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-http-client/3.5.1/gatling-http-client-3.5.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-http-client/3.8.4/gatling-http-client-3.8.4.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-http-client/3.5.1/gatling-http-client-3.5.1.jar" ], "packages": [ "io.gatling.http.client", @@ -5961,7 +5376,6 @@ "io.gatling.http.client.body.string", "io.gatling.http.client.body.stringchunks", "io.gatling.http.client.impl", - "io.gatling.http.client.impl.compression", "io.gatling.http.client.impl.request", "io.gatling.http.client.oauth", "io.gatling.http.client.pool", @@ -5973,323 +5387,114 @@ "io.gatling.http.client.uri", "io.gatling.http.client.util" ], - "sha256": "735d163f9a748a8dbf5aafc5f3af6f42a43c6671c7a76ec5b21dcbdcc38e613f", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-http-client/3.8.4/gatling-http-client-3.8.4.jar" - }, - { - "coord": "io.gatling:gatling-http-client:jar:sources:3.8.4", - "dependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.11", - "ch.qos.logback:logback-core:jar:sources:1.2.11", - "com.aayushatharva.brotli4j:brotli4j:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-linux-aarch64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-linux-x86_64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-osx-aarch64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-osx-x86_64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-windows-x86_64:jar:sources:1.8.0", - "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.5", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-dns:jar:sources:4.1.81.Final", - "io.netty:netty-codec-http2:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver-dns-classes-macos:jar:sources:4.1.81.Final", - "io.netty:netty-resolver-dns-native-macos:jar:sources:4.1.81.Final", - "io.netty:netty-resolver-dns:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-tcnative-boringssl-static:jar:sources:2.0.54.Final", - "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", + "sha256": "68029871d1ff8a19e45a39ca1bc782eaed84abb9ea4cefa5c94a420025535fc5", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-http-client/3.5.1/gatling-http-client-3.5.1.jar" + }, + { + "coord": "io.gatling:gatling-http-client:jar:sources:3.5.1", + "dependencies": [ + "ch.qos.logback:logback-classic:jar:sources:1.2.8", + "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.2", + "io.gatling:gatling-netty-util:jar:sources:3.5.1", + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-codec-dns:jar:sources:4.1.58.Final", + "io.netty:netty-codec-http2:jar:sources:4.1.72.Final", + "io.netty:netty-codec-http:jar:sources:4.1.72.Final", + "io.netty:netty-codec:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-handler-proxy:jar:sources:4.1.72.Final", + "io.netty:netty-handler:jar:sources:4.1.72.Final", + "io.netty:netty-resolver-dns:jar:sources:4.1.58.Final", + "io.netty:netty-resolver:jar:sources:4.1.72.Final", + "io.netty:netty-tcnative-boringssl-static:jar:sources:2.0.46.Final", + "io.netty:netty-transport-native-epoll:jar:sources:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.slf4j:slf4j-api:jar:sources:1.7.36" - ], - "directDependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.11", - "com.aayushatharva.brotli4j:brotli4j:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-linux-aarch64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-linux-x86_64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-osx-aarch64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-osx-x86_64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-windows-x86_64:jar:sources:1.8.0", - "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.5", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http2:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver-dns-native-macos:jar:sources:4.1.81.Final", - "io.netty:netty-resolver-dns:jar:sources:4.1.81.Final", - "io.netty:netty-tcnative-boringssl-static:jar:sources:2.0.54.Final", - "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.slf4j:slf4j-api:jar:sources:1.7.36" - ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-http-client/3.8.4/gatling-http-client-3.8.4-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-http-client/3.8.4/gatling-http-client-3.8.4-sources.jar" - ], - "packages": [], - "sha256": "10a2c840abb089c8662a5df8754d22de9950317bc89abd433f7bc457c9b4b981", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-http-client/3.8.4/gatling-http-client-3.8.4-sources.jar" - }, - { - "coord": "io.gatling:gatling-http-java:3.8.4", - "dependencies": [ - "ch.qos.logback:logback-classic:1.2.11", - "ch.qos.logback:logback-core:1.2.11", - "com.aayushatharva.brotli4j:brotli4j:1.8.0", - "com.aayushatharva.brotli4j:native-linux-aarch64:1.8.0", - "com.aayushatharva.brotli4j:native-linux-x86_64:1.8.0", - "com.aayushatharva.brotli4j:native-osx-aarch64:1.8.0", - "com.aayushatharva.brotli4j:native-osx-x86_64:1.8.0", - "com.aayushatharva.brotli4j:native-windows-x86_64:1.8.0", - "com.fasterxml.jackson.core:jackson-annotations:2.13.4", - "com.fasterxml.jackson.core:jackson-core:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.github.ben-manes.caffeine:caffeine:3.1.1", - "com.github.scopt:scopt_2.13:4.1.0", - "com.google.code.findbugs:jsr305:3.0.2", - "com.softwaremill.quicklens:quicklens_2.13:1.9.0", - "com.typesafe.akka:akka-actor_2.13:2.6.18", - "com.typesafe.akka:akka-slf4j_2.13:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:3.9.5", - "com.typesafe:config:1.4.2", - "io.burt:jmespath-core:0.5.1", - "io.burt:jmespath-jackson:0.5.1", - "io.gatling:gatling-commons-shared-unstable:3.8.4", - "io.gatling:gatling-commons-shared:3.8.4", - "io.gatling:gatling-commons:3.8.4", - "io.gatling:gatling-core-java:3.8.4", - "io.gatling:gatling-core:3.8.4", - "io.gatling:gatling-http-client:3.8.4", - "io.gatling:gatling-http:3.8.4", - "io.gatling:gatling-jsonpath:3.8.4", - "io.gatling:gatling-netty-util:3.8.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-dns:4.1.81.Final", - "io.netty:netty-codec-http2:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver-dns-classes-macos:4.1.81.Final", - "io.netty:netty-resolver-dns-native-macos:jar:osx-aarch_64:4.1.81.Final", - "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.81.Final", - "io.netty:netty-resolver-dns:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-tcnative-boringssl-static:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.pebbletemplates:pebble:3.1.5", - "io.suzaku:boopickle_2.13:1.3.3", - "net.jodah:typetools:0.6.3", - "net.sf.saxon:Saxon-HE:10.6", - "org.jodd:jodd-lagarto:6.0.6", - "org.jodd:jodd-util:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", - "org.scala-lang:scala-library:2.13.8", - "org.scala-lang:scala-reflect:2.13.8", - "org.simpleflatmapper:lightning-csv:8.2.3", - "org.simpleflatmapper:sfm-util:8.2.3", - "org.slf4j:slf4j-api:1.7.36", - "org.typelevel:spire-macros_2.13:0.17.0", - "org.unbescape:unbescape:1.1.6.RELEASE" - ], - "directDependencies": [ - "com.google.code.findbugs:jsr305:3.0.2", - "io.gatling:gatling-core-java:3.8.4", - "io.gatling:gatling-http:3.8.4", - "org.scala-lang:scala-library:2.13.8" - ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-http-java/3.8.4/gatling-http-java-3.8.4.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-http-java/3.8.4/gatling-http-java-3.8.4.jar" - ], - "packages": [ - "io.gatling.javaapi.http", - "io.gatling.javaapi.http.internal" - ], - "sha256": "d23b6d7dd9f877acce432ef71ce519abd3492ce2bac226e58711b23127798696", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-http-java/3.8.4/gatling-http-java-3.8.4.jar" - }, - { - "coord": "io.gatling:gatling-http-java:jar:sources:3.8.4", - "dependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.11", - "ch.qos.logback:logback-core:jar:sources:1.2.11", - "com.aayushatharva.brotli4j:brotli4j:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-linux-aarch64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-linux-x86_64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-osx-aarch64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-osx-x86_64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-windows-x86_64:jar:sources:1.8.0", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.github.ben-manes.caffeine:caffeine:jar:sources:3.1.1", - "com.github.scopt:scopt_2.13:jar:sources:4.1.0", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.9.0", - "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", - "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.5", - "com.typesafe:config:jar:sources:1.4.2", - "io.burt:jmespath-core:jar:sources:0.5.1", - "io.burt:jmespath-jackson:jar:sources:0.5.1", - "io.gatling:gatling-commons-shared-unstable:jar:sources:3.8.4", - "io.gatling:gatling-commons-shared:jar:sources:3.8.4", - "io.gatling:gatling-commons:jar:sources:3.8.4", - "io.gatling:gatling-core-java:jar:sources:3.8.4", - "io.gatling:gatling-core:jar:sources:3.8.4", - "io.gatling:gatling-http-client:jar:sources:3.8.4", - "io.gatling:gatling-http:jar:sources:3.8.4", - "io.gatling:gatling-jsonpath:jar:sources:3.8.4", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-dns:jar:sources:4.1.81.Final", - "io.netty:netty-codec-http2:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver-dns-classes-macos:jar:sources:4.1.81.Final", - "io.netty:netty-resolver-dns-native-macos:jar:sources:4.1.81.Final", - "io.netty:netty-resolver-dns:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-tcnative-boringssl-static:jar:sources:2.0.54.Final", - "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.pebbletemplates:pebble:jar:sources:3.1.5", - "io.suzaku:boopickle_2.13:jar:sources:1.3.3", - "net.jodah:typetools:jar:sources:0.6.3", - "net.sf.saxon:Saxon-HE:jar:sources:10.6", - "org.jodd:jodd-lagarto:jar:sources:6.0.6", - "org.jodd:jodd-util:jar:sources:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "org.slf4j:slf4j-api:jar:sources:1.7.26" + ], + "directDependencies": [ + "ch.qos.logback:logback-classic:jar:sources:1.2.8", + "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.2", + "io.gatling:gatling-netty-util:jar:sources:3.5.1", + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-codec-http2:jar:sources:4.1.72.Final", + "io.netty:netty-codec-http:jar:sources:4.1.72.Final", + "io.netty:netty-handler-proxy:jar:sources:4.1.72.Final", + "io.netty:netty-handler:jar:sources:4.1.72.Final", + "io.netty:netty-resolver-dns:jar:sources:4.1.58.Final", + "io.netty:netty-tcnative-boringssl-static:jar:sources:2.0.46.Final", + "io.netty:netty-transport-native-epoll:jar:sources:4.1.58.Final", "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.simpleflatmapper:lightning-csv:jar:sources:8.2.3", - "org.simpleflatmapper:sfm-util:jar:sources:8.2.3", - "org.slf4j:slf4j-api:jar:sources:1.7.36", - "org.typelevel:spire-macros_2.13:jar:sources:0.17.0", - "org.unbescape:unbescape:jar:sources:1.1.6.RELEASE" - ], - "directDependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "io.gatling:gatling-core-java:jar:sources:3.8.4", - "io.gatling:gatling-http:jar:sources:3.8.4", - "org.scala-lang:scala-library:jar:sources:2.13.8" + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-http-java/3.8.4/gatling-http-java-3.8.4-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-http-client/3.5.1/gatling-http-client-3.5.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-http-java/3.8.4/gatling-http-java-3.8.4-sources.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-http-client/3.5.1/gatling-http-client-3.5.1-sources.jar" ], "packages": [], - "sha256": "be6dba8562c05411ae96f7f6d12f08139733f34e3d48b965fdb090d82c9050b8", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-http-java/3.8.4/gatling-http-java-3.8.4-sources.jar" + "sha256": "c359c1df21a98cda368266d623dc485d29f8925ce0ae4542f6ef0f7a61d3e394", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-http-client/3.5.1/gatling-http-client-3.5.1-sources.jar" }, { - "coord": "io.gatling:gatling-http:3.8.4", + "coord": "io.gatling:gatling-http:3.5.1", "dependencies": [ - "ch.qos.logback:logback-classic:1.2.11", - "ch.qos.logback:logback-core:1.2.11", - "com.aayushatharva.brotli4j:brotli4j:1.8.0", - "com.aayushatharva.brotli4j:native-linux-aarch64:1.8.0", - "com.aayushatharva.brotli4j:native-linux-x86_64:1.8.0", - "com.aayushatharva.brotli4j:native-osx-aarch64:1.8.0", - "com.aayushatharva.brotli4j:native-osx-x86_64:1.8.0", - "com.aayushatharva.brotli4j:native-windows-x86_64:1.8.0", - "com.fasterxml.jackson.core:jackson-annotations:2.13.4", - "com.fasterxml.jackson.core:jackson-core:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.github.ben-manes.caffeine:caffeine:3.1.1", - "com.github.scopt:scopt_2.13:4.1.0", - "com.softwaremill.quicklens:quicklens_2.13:1.9.0", + "ch.qos.logback:logback-classic:1.2.8", + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "com.github.ben-manes.caffeine:caffeine:3.0.5", + "com.github.scopt:scopt_2.13:4.0.0", + "com.softwaremill.quicklens:quicklens_2.13:1.6.1", "com.typesafe.akka:akka-actor_2.13:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:3.9.5", - "com.typesafe:config:1.4.2", - "io.burt:jmespath-core:0.5.1", - "io.burt:jmespath-jackson:0.5.1", - "io.gatling:gatling-commons-shared-unstable:3.8.4", - "io.gatling:gatling-commons-shared:3.8.4", - "io.gatling:gatling-commons:3.8.4", - "io.gatling:gatling-core:3.8.4", - "io.gatling:gatling-http-client:3.8.4", - "io.gatling:gatling-jsonpath:3.8.4", - "io.gatling:gatling-netty-util:3.8.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-dns:4.1.81.Final", - "io.netty:netty-codec-http2:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver-dns-classes-macos:4.1.81.Final", - "io.netty:netty-resolver-dns-native-macos:jar:osx-aarch_64:4.1.81.Final", - "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.81.Final", - "io.netty:netty-resolver-dns:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-tcnative-boringssl-static:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.pebbletemplates:pebble:3.1.5", + "com.typesafe.scala-logging:scala-logging_2.13:3.9.2", + "com.typesafe:config:1.4.1", + "io.burt:jmespath-core:0.5.0", + "io.burt:jmespath-jackson:0.5.0", + "io.gatling:gatling-commons-shared-unstable:3.5.1", + "io.gatling:gatling-commons-shared:3.5.1", + "io.gatling:gatling-commons:3.5.1", + "io.gatling:gatling-core:3.5.1", + "io.gatling:gatling-http-client:3.5.1", + "io.gatling:gatling-jsonpath:3.5.1", + "io.gatling:gatling-netty-util:3.5.1", + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-codec-dns:4.1.58.Final", + "io.netty:netty-codec-http2:4.1.72.Final", + "io.netty:netty-codec-http:4.1.72.Final", + "io.netty:netty-codec:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-handler-proxy:4.1.72.Final", + "io.netty:netty-handler:4.1.72.Final", + "io.netty:netty-resolver-dns:4.1.58.Final", + "io.netty:netty-resolver:4.1.72.Final", + "io.netty:netty-tcnative-boringssl-static:2.0.46.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:4.1.58.Final", + "io.netty:netty-transport:4.1.72.Final", + "io.pebbletemplates:pebble:3.1.4", "io.suzaku:boopickle_2.13:1.3.3", - "net.sf.saxon:Saxon-HE:10.6", - "org.jodd:jodd-lagarto:6.0.6", - "org.jodd:jodd-util:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", + "net.sf.saxon:Saxon-HE:10.3", + "org.jodd:jodd-lagarto:6.0.3", + "org.jodd:jodd-util:6.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", "org.simpleflatmapper:lightning-csv:8.2.3", "org.simpleflatmapper:sfm-util:8.2.3", - "org.slf4j:slf4j-api:1.7.36", + "org.slf4j:slf4j-api:1.7.26", "org.typelevel:spire-macros_2.13:0.17.0", "org.unbescape:unbescape:1.1.6.RELEASE" ], "directDependencies": [ - "io.gatling:gatling-core:3.8.4", - "io.gatling:gatling-http-client:3.8.4", - "net.sf.saxon:Saxon-HE:10.6", + "io.gatling:gatling-core:3.5.1", + "io.gatling:gatling-http-client:3.5.1", + "net.sf.saxon:Saxon-HE:10.3", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-http/3.8.4/gatling-http-3.8.4.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-http/3.5.1/gatling-http-3.5.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-http/3.8.4/gatling-http-3.8.4.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-http/3.5.1/gatling-http-3.5.1.jar" ], "packages": [ "io.gatling.http", @@ -6300,7 +5505,6 @@ "io.gatling.http.action.sse.fsm", "io.gatling.http.action.ws", "io.gatling.http.action.ws.fsm", - "io.gatling.http.auth", "io.gatling.http.cache", "io.gatling.http.check", "io.gatling.http.check.body", @@ -6329,1345 +5533,454 @@ "io.gatling.http.response", "io.gatling.http.util" ], - "sha256": "44ecfbb2076f745519b847b6286da2ece7bb051c57a6641e81f508cd9815da64", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-http/3.8.4/gatling-http-3.8.4.jar" - }, - { - "coord": "io.gatling:gatling-http:jar:sources:3.8.4", - "dependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.11", - "ch.qos.logback:logback-core:jar:sources:1.2.11", - "com.aayushatharva.brotli4j:brotli4j:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-linux-aarch64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-linux-x86_64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-osx-aarch64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-osx-x86_64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-windows-x86_64:jar:sources:1.8.0", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.github.ben-manes.caffeine:caffeine:jar:sources:3.1.1", - "com.github.scopt:scopt_2.13:jar:sources:4.1.0", - "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.9.0", + "sha256": "c11d8488bf2b17b1f9898f1b56bd7ac31f8348137c92f91c82c68d589480c5f6", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-http/3.5.1/gatling-http-3.5.1.jar" + }, + { + "coord": "io.gatling:gatling-http:jar:sources:3.5.1", + "dependencies": [ + "ch.qos.logback:logback-classic:jar:sources:1.2.8", + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "com.github.ben-manes.caffeine:caffeine:jar:sources:3.0.5", + "com.github.scopt:scopt_2.13:jar:sources:4.0.0", + "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.6.1", "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.5", - "com.typesafe:config:jar:sources:1.4.2", - "io.burt:jmespath-core:jar:sources:0.5.1", - "io.burt:jmespath-jackson:jar:sources:0.5.1", - "io.gatling:gatling-commons-shared-unstable:jar:sources:3.8.4", - "io.gatling:gatling-commons-shared:jar:sources:3.8.4", - "io.gatling:gatling-commons:jar:sources:3.8.4", - "io.gatling:gatling-core:jar:sources:3.8.4", - "io.gatling:gatling-http-client:jar:sources:3.8.4", - "io.gatling:gatling-jsonpath:jar:sources:3.8.4", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-dns:jar:sources:4.1.81.Final", - "io.netty:netty-codec-http2:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver-dns-classes-macos:jar:sources:4.1.81.Final", - "io.netty:netty-resolver-dns-native-macos:jar:sources:4.1.81.Final", - "io.netty:netty-resolver-dns:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-tcnative-boringssl-static:jar:sources:2.0.54.Final", - "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.pebbletemplates:pebble:jar:sources:3.1.5", + "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.2", + "com.typesafe:config:jar:sources:1.4.1", + "io.burt:jmespath-core:jar:sources:0.5.0", + "io.burt:jmespath-jackson:jar:sources:0.5.0", + "io.gatling:gatling-commons-shared-unstable:jar:sources:3.5.1", + "io.gatling:gatling-commons-shared:jar:sources:3.5.1", + "io.gatling:gatling-commons:jar:sources:3.5.1", + "io.gatling:gatling-core:jar:sources:3.5.1", + "io.gatling:gatling-http-client:jar:sources:3.5.1", + "io.gatling:gatling-jsonpath:jar:sources:3.5.1", + "io.gatling:gatling-netty-util:jar:sources:3.5.1", + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-codec-dns:jar:sources:4.1.58.Final", + "io.netty:netty-codec-http2:jar:sources:4.1.72.Final", + "io.netty:netty-codec-http:jar:sources:4.1.72.Final", + "io.netty:netty-codec:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-handler-proxy:jar:sources:4.1.72.Final", + "io.netty:netty-handler:jar:sources:4.1.72.Final", + "io.netty:netty-resolver-dns:jar:sources:4.1.58.Final", + "io.netty:netty-resolver:jar:sources:4.1.72.Final", + "io.netty:netty-tcnative-boringssl-static:jar:sources:2.0.46.Final", + "io.netty:netty-transport-native-epoll:jar:sources:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final", + "io.pebbletemplates:pebble:jar:sources:3.1.4", "io.suzaku:boopickle_2.13:jar:sources:1.3.3", - "net.sf.saxon:Saxon-HE:jar:sources:10.6", - "org.jodd:jodd-lagarto:jar:sources:6.0.6", - "org.jodd:jodd-util:jar:sources:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "net.sf.saxon:Saxon-HE:jar:sources:10.3", + "org.jodd:jodd-lagarto:jar:sources:6.0.3", + "org.jodd:jodd-util:jar:sources:6.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", "org.simpleflatmapper:lightning-csv:jar:sources:8.2.3", "org.simpleflatmapper:sfm-util:jar:sources:8.2.3", - "org.slf4j:slf4j-api:jar:sources:1.7.36", + "org.slf4j:slf4j-api:jar:sources:1.7.26", "org.typelevel:spire-macros_2.13:jar:sources:0.17.0", "org.unbescape:unbescape:jar:sources:1.1.6.RELEASE" ], "directDependencies": [ - "io.gatling:gatling-core:jar:sources:3.8.4", - "io.gatling:gatling-http-client:jar:sources:3.8.4", - "net.sf.saxon:Saxon-HE:jar:sources:10.6", + "io.gatling:gatling-core:jar:sources:3.5.1", + "io.gatling:gatling-http-client:jar:sources:3.5.1", + "net.sf.saxon:Saxon-HE:jar:sources:10.3", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-http/3.8.4/gatling-http-3.8.4-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-http/3.5.1/gatling-http-3.5.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-http/3.8.4/gatling-http-3.8.4-sources.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-http/3.5.1/gatling-http-3.5.1-sources.jar" ], "packages": [], - "sha256": "c16e0ba1b276b3ea33870984049d04002775f94067e4f00911ceab878cc6d83e", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-http/3.8.4/gatling-http-3.8.4-sources.jar" + "sha256": "f1ee3913b7e11ec3b9419a0495a6e30a65180a3f4c654fefeec4d98ea97be2cf", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-http/3.5.1/gatling-http-3.5.1-sources.jar" }, { - "coord": "io.gatling:gatling-jdbc-java:3.8.4", + "coord": "io.gatling:gatling-jdbc:3.5.1", "dependencies": [ - "ch.qos.logback:logback-classic:1.2.11", - "ch.qos.logback:logback-core:1.2.11", - "com.fasterxml.jackson.core:jackson-annotations:2.13.4", - "com.fasterxml.jackson.core:jackson-core:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.github.ben-manes.caffeine:caffeine:3.1.1", - "com.github.scopt:scopt_2.13:4.1.0", - "com.google.code.findbugs:jsr305:3.0.2", - "com.softwaremill.quicklens:quicklens_2.13:1.9.0", + "ch.qos.logback:logback-classic:1.2.8", + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "com.github.ben-manes.caffeine:caffeine:3.0.5", + "com.github.scopt:scopt_2.13:4.0.0", + "com.softwaremill.quicklens:quicklens_2.13:1.6.1", "com.typesafe.akka:akka-actor_2.13:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:3.9.5", - "com.typesafe:config:1.4.2", - "io.burt:jmespath-core:0.5.1", - "io.burt:jmespath-jackson:0.5.1", - "io.gatling:gatling-commons-shared-unstable:3.8.4", - "io.gatling:gatling-commons-shared:3.8.4", - "io.gatling:gatling-commons:3.8.4", - "io.gatling:gatling-core-java:3.8.4", - "io.gatling:gatling-core:3.8.4", - "io.gatling:gatling-jdbc:3.8.4", - "io.gatling:gatling-jsonpath:3.8.4", - "io.gatling:gatling-netty-util:3.8.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.pebbletemplates:pebble:3.1.5", + "com.typesafe.scala-logging:scala-logging_2.13:3.9.2", + "com.typesafe:config:1.4.1", + "io.burt:jmespath-core:0.5.0", + "io.burt:jmespath-jackson:0.5.0", + "io.gatling:gatling-commons-shared-unstable:3.5.1", + "io.gatling:gatling-commons-shared:3.5.1", + "io.gatling:gatling-commons:3.5.1", + "io.gatling:gatling-core:3.5.1", + "io.gatling:gatling-jsonpath:3.5.1", + "io.gatling:gatling-netty-util:3.5.1", + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-handler:4.1.72.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:4.1.58.Final", + "io.netty:netty-transport:4.1.72.Final", + "io.pebbletemplates:pebble:3.1.4", "io.suzaku:boopickle_2.13:1.3.3", - "net.jodah:typetools:0.6.3", - "net.sf.saxon:Saxon-HE:10.6", - "org.jodd:jodd-lagarto:6.0.6", - "org.jodd:jodd-util:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", + "net.sf.saxon:Saxon-HE:10.3", + "org.jodd:jodd-lagarto:6.0.3", + "org.jodd:jodd-util:6.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", "org.simpleflatmapper:lightning-csv:8.2.3", "org.simpleflatmapper:sfm-util:8.2.3", - "org.slf4j:slf4j-api:1.7.36", + "org.slf4j:slf4j-api:1.7.26", "org.typelevel:spire-macros_2.13:0.17.0", "org.unbescape:unbescape:1.1.6.RELEASE" ], "directDependencies": [ - "com.google.code.findbugs:jsr305:3.0.2", - "io.gatling:gatling-core-java:3.8.4", - "io.gatling:gatling-jdbc:3.8.4", + "io.gatling:gatling-core:3.5.1", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-jdbc-java/3.8.4/gatling-jdbc-java-3.8.4.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-jdbc/3.5.1/gatling-jdbc-3.5.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-jdbc-java/3.8.4/gatling-jdbc-java-3.8.4.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-jdbc/3.5.1/gatling-jdbc-3.5.1.jar" ], "packages": [ - "io.gatling.javaapi.jdbc" + "io.gatling.jdbc", + "io.gatling.jdbc.feeder" ], - "sha256": "6e3de4a93e24177541859f24fa6b538d8c586d9054e5ad15da917d590e70b53a", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-jdbc-java/3.8.4/gatling-jdbc-java-3.8.4.jar" + "sha256": "b432fe2eb190e3fef393dd75ea70c8b14358cf0f537c270d1406ab8fd5c221ea", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-jdbc/3.5.1/gatling-jdbc-3.5.1.jar" }, { - "coord": "io.gatling:gatling-jdbc-java:jar:sources:3.8.4", + "coord": "io.gatling:gatling-jdbc:jar:sources:3.5.1", "dependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.11", - "ch.qos.logback:logback-core:jar:sources:1.2.11", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.github.ben-manes.caffeine:caffeine:jar:sources:3.1.1", - "com.github.scopt:scopt_2.13:jar:sources:4.1.0", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.9.0", + "ch.qos.logback:logback-classic:jar:sources:1.2.8", + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "com.github.ben-manes.caffeine:caffeine:jar:sources:3.0.5", + "com.github.scopt:scopt_2.13:jar:sources:4.0.0", + "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.6.1", "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.5", - "com.typesafe:config:jar:sources:1.4.2", - "io.burt:jmespath-core:jar:sources:0.5.1", - "io.burt:jmespath-jackson:jar:sources:0.5.1", - "io.gatling:gatling-commons-shared-unstable:jar:sources:3.8.4", - "io.gatling:gatling-commons-shared:jar:sources:3.8.4", - "io.gatling:gatling-commons:jar:sources:3.8.4", - "io.gatling:gatling-core-java:jar:sources:3.8.4", - "io.gatling:gatling-core:jar:sources:3.8.4", - "io.gatling:gatling-jdbc:jar:sources:3.8.4", - "io.gatling:gatling-jsonpath:jar:sources:3.8.4", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.pebbletemplates:pebble:jar:sources:3.1.5", + "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.2", + "com.typesafe:config:jar:sources:1.4.1", + "io.burt:jmespath-core:jar:sources:0.5.0", + "io.burt:jmespath-jackson:jar:sources:0.5.0", + "io.gatling:gatling-commons-shared-unstable:jar:sources:3.5.1", + "io.gatling:gatling-commons-shared:jar:sources:3.5.1", + "io.gatling:gatling-commons:jar:sources:3.5.1", + "io.gatling:gatling-core:jar:sources:3.5.1", + "io.gatling:gatling-jsonpath:jar:sources:3.5.1", + "io.gatling:gatling-netty-util:jar:sources:3.5.1", + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-handler:jar:sources:4.1.72.Final", + "io.netty:netty-transport-native-epoll:jar:sources:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final", + "io.pebbletemplates:pebble:jar:sources:3.1.4", "io.suzaku:boopickle_2.13:jar:sources:1.3.3", - "net.jodah:typetools:jar:sources:0.6.3", - "net.sf.saxon:Saxon-HE:jar:sources:10.6", - "org.jodd:jodd-lagarto:jar:sources:6.0.6", - "org.jodd:jodd-util:jar:sources:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "net.sf.saxon:Saxon-HE:jar:sources:10.3", + "org.jodd:jodd-lagarto:jar:sources:6.0.3", + "org.jodd:jodd-util:jar:sources:6.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", "org.simpleflatmapper:lightning-csv:jar:sources:8.2.3", "org.simpleflatmapper:sfm-util:jar:sources:8.2.3", - "org.slf4j:slf4j-api:jar:sources:1.7.36", + "org.slf4j:slf4j-api:jar:sources:1.7.26", "org.typelevel:spire-macros_2.13:jar:sources:0.17.0", "org.unbescape:unbescape:jar:sources:1.1.6.RELEASE" ], "directDependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "io.gatling:gatling-core-java:jar:sources:3.8.4", - "io.gatling:gatling-jdbc:jar:sources:3.8.4", + "io.gatling:gatling-core:jar:sources:3.5.1", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-jdbc-java/3.8.4/gatling-jdbc-java-3.8.4-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-jdbc/3.5.1/gatling-jdbc-3.5.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-jdbc-java/3.8.4/gatling-jdbc-java-3.8.4-sources.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-jdbc/3.5.1/gatling-jdbc-3.5.1-sources.jar" ], "packages": [], - "sha256": "52f5eded79353cdc5890aab72ce5dbcda22b95d46a4c56855eb59fc4ee3836ce", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-jdbc-java/3.8.4/gatling-jdbc-java-3.8.4-sources.jar" + "sha256": "7d7971e0f8d6b270003314449c472d0c684ff5eaf7a794f67835ee6442e46faa", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-jdbc/3.5.1/gatling-jdbc-3.5.1-sources.jar" }, { - "coord": "io.gatling:gatling-jdbc:3.8.4", + "coord": "io.gatling:gatling-jms:3.5.1", "dependencies": [ - "ch.qos.logback:logback-classic:1.2.11", - "ch.qos.logback:logback-core:1.2.11", - "com.fasterxml.jackson.core:jackson-annotations:2.13.4", - "com.fasterxml.jackson.core:jackson-core:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.github.ben-manes.caffeine:caffeine:3.1.1", - "com.github.scopt:scopt_2.13:4.1.0", - "com.softwaremill.quicklens:quicklens_2.13:1.9.0", + "ch.qos.logback:logback-classic:1.2.8", + "com.eatthepath:fast-uuid:0.1", + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "com.github.ben-manes.caffeine:caffeine:3.0.5", + "com.github.scopt:scopt_2.13:4.0.0", + "com.softwaremill.quicklens:quicklens_2.13:1.6.1", "com.typesafe.akka:akka-actor_2.13:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:3.9.5", - "com.typesafe:config:1.4.2", - "io.burt:jmespath-core:0.5.1", - "io.burt:jmespath-jackson:0.5.1", - "io.gatling:gatling-commons-shared-unstable:3.8.4", - "io.gatling:gatling-commons-shared:3.8.4", - "io.gatling:gatling-commons:3.8.4", - "io.gatling:gatling-core:3.8.4", - "io.gatling:gatling-jsonpath:3.8.4", - "io.gatling:gatling-netty-util:3.8.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.pebbletemplates:pebble:3.1.5", + "com.typesafe.scala-logging:scala-logging_2.13:3.9.2", + "com.typesafe:config:1.4.1", + "io.burt:jmespath-core:0.5.0", + "io.burt:jmespath-jackson:0.5.0", + "io.gatling:gatling-commons-shared-unstable:3.5.1", + "io.gatling:gatling-commons-shared:3.5.1", + "io.gatling:gatling-commons:3.5.1", + "io.gatling:gatling-core:3.5.1", + "io.gatling:gatling-jsonpath:3.5.1", + "io.gatling:gatling-netty-util:3.5.1", + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-handler:4.1.72.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:4.1.58.Final", + "io.netty:netty-transport:4.1.72.Final", + "io.pebbletemplates:pebble:3.1.4", "io.suzaku:boopickle_2.13:1.3.3", - "net.sf.saxon:Saxon-HE:10.6", - "org.jodd:jodd-lagarto:6.0.6", - "org.jodd:jodd-util:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", + "javax.jms:javax.jms-api:2.0.1", + "net.sf.saxon:Saxon-HE:10.3", + "org.jodd:jodd-lagarto:6.0.3", + "org.jodd:jodd-util:6.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", "org.simpleflatmapper:lightning-csv:8.2.3", "org.simpleflatmapper:sfm-util:8.2.3", - "org.slf4j:slf4j-api:1.7.36", + "org.slf4j:slf4j-api:1.7.26", "org.typelevel:spire-macros_2.13:0.17.0", "org.unbescape:unbescape:1.1.6.RELEASE" ], "directDependencies": [ - "io.gatling:gatling-core:3.8.4", + "com.eatthepath:fast-uuid:0.1", + "io.gatling:gatling-core:3.5.1", + "javax.jms:javax.jms-api:2.0.1", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-jdbc/3.8.4/gatling-jdbc-3.8.4.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-jms/3.5.1/gatling-jms-3.5.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-jdbc/3.8.4/gatling-jdbc-3.8.4.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-jms/3.5.1/gatling-jms-3.5.1.jar" ], "packages": [ - "io.gatling.jdbc", - "io.gatling.jdbc.feeder" + "io.gatling.jms", + "io.gatling.jms.action", + "io.gatling.jms.check", + "io.gatling.jms.client", + "io.gatling.jms.jndi", + "io.gatling.jms.protocol", + "io.gatling.jms.request" ], - "sha256": "835f7017279b5c84c4ce48aef6b24bd6679f72c728c22f77096ad7dc67f67c99", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-jdbc/3.8.4/gatling-jdbc-3.8.4.jar" + "sha256": "b880023055f52e6b1ca45a4696856d3b346c8ed5697127a321c2f305da5b348d", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-jms/3.5.1/gatling-jms-3.5.1.jar" }, { - "coord": "io.gatling:gatling-jdbc:jar:sources:3.8.4", + "coord": "io.gatling:gatling-jms:jar:sources:3.5.1", "dependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.11", - "ch.qos.logback:logback-core:jar:sources:1.2.11", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.github.ben-manes.caffeine:caffeine:jar:sources:3.1.1", - "com.github.scopt:scopt_2.13:jar:sources:4.1.0", - "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.9.0", + "ch.qos.logback:logback-classic:jar:sources:1.2.8", + "com.eatthepath:fast-uuid:jar:sources:0.1", + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "com.github.ben-manes.caffeine:caffeine:jar:sources:3.0.5", + "com.github.scopt:scopt_2.13:jar:sources:4.0.0", + "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.6.1", "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.5", - "com.typesafe:config:jar:sources:1.4.2", - "io.burt:jmespath-core:jar:sources:0.5.1", - "io.burt:jmespath-jackson:jar:sources:0.5.1", - "io.gatling:gatling-commons-shared-unstable:jar:sources:3.8.4", - "io.gatling:gatling-commons-shared:jar:sources:3.8.4", - "io.gatling:gatling-commons:jar:sources:3.8.4", - "io.gatling:gatling-core:jar:sources:3.8.4", - "io.gatling:gatling-jsonpath:jar:sources:3.8.4", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.pebbletemplates:pebble:jar:sources:3.1.5", + "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.2", + "com.typesafe:config:jar:sources:1.4.1", + "io.burt:jmespath-core:jar:sources:0.5.0", + "io.burt:jmespath-jackson:jar:sources:0.5.0", + "io.gatling:gatling-commons-shared-unstable:jar:sources:3.5.1", + "io.gatling:gatling-commons-shared:jar:sources:3.5.1", + "io.gatling:gatling-commons:jar:sources:3.5.1", + "io.gatling:gatling-core:jar:sources:3.5.1", + "io.gatling:gatling-jsonpath:jar:sources:3.5.1", + "io.gatling:gatling-netty-util:jar:sources:3.5.1", + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-handler:jar:sources:4.1.72.Final", + "io.netty:netty-transport-native-epoll:jar:sources:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final", + "io.pebbletemplates:pebble:jar:sources:3.1.4", "io.suzaku:boopickle_2.13:jar:sources:1.3.3", - "net.sf.saxon:Saxon-HE:jar:sources:10.6", - "org.jodd:jodd-lagarto:jar:sources:6.0.6", - "org.jodd:jodd-util:jar:sources:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "javax.jms:javax.jms-api:jar:sources:2.0.1", + "net.sf.saxon:Saxon-HE:jar:sources:10.3", + "org.jodd:jodd-lagarto:jar:sources:6.0.3", + "org.jodd:jodd-util:jar:sources:6.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", "org.simpleflatmapper:lightning-csv:jar:sources:8.2.3", "org.simpleflatmapper:sfm-util:jar:sources:8.2.3", - "org.slf4j:slf4j-api:jar:sources:1.7.36", + "org.slf4j:slf4j-api:jar:sources:1.7.26", "org.typelevel:spire-macros_2.13:jar:sources:0.17.0", "org.unbescape:unbescape:jar:sources:1.1.6.RELEASE" ], "directDependencies": [ - "io.gatling:gatling-core:jar:sources:3.8.4", + "com.eatthepath:fast-uuid:jar:sources:0.1", + "io.gatling:gatling-core:jar:sources:3.5.1", + "javax.jms:javax.jms-api:jar:sources:2.0.1", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-jdbc/3.8.4/gatling-jdbc-3.8.4-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-jms/3.5.1/gatling-jms-3.5.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-jdbc/3.8.4/gatling-jdbc-3.8.4-sources.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-jms/3.5.1/gatling-jms-3.5.1-sources.jar" ], "packages": [], - "sha256": "cdf11077653e5db233fd4c3476913ace2ebae3d345665ace78a077cc0a2b92cf", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-jdbc/3.8.4/gatling-jdbc-3.8.4-sources.jar" + "sha256": "cc857e6125eb64e70c6cca85be9c3b18e042d3254e12415cc96a34ad71cb6938", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-jms/3.5.1/gatling-jms-3.5.1-sources.jar" }, { - "coord": "io.gatling:gatling-jms-java:3.8.4", + "coord": "io.gatling:gatling-jsonpath:3.5.1", "dependencies": [ - "ch.qos.logback:logback-classic:1.2.11", - "ch.qos.logback:logback-core:1.2.11", - "com.eatthepath:fast-uuid:0.2.0", - "com.fasterxml.jackson.core:jackson-annotations:2.13.4", - "com.fasterxml.jackson.core:jackson-core:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.github.ben-manes.caffeine:caffeine:3.1.1", - "com.github.scopt:scopt_2.13:4.1.0", - "com.google.code.findbugs:jsr305:3.0.2", - "com.softwaremill.quicklens:quicklens_2.13:1.9.0", - "com.typesafe.akka:akka-actor_2.13:2.6.18", - "com.typesafe.akka:akka-slf4j_2.13:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:3.9.5", - "com.typesafe:config:1.4.2", - "io.burt:jmespath-core:0.5.1", - "io.burt:jmespath-jackson:0.5.1", - "io.gatling:gatling-commons-shared-unstable:3.8.4", - "io.gatling:gatling-commons-shared:3.8.4", - "io.gatling:gatling-commons:3.8.4", - "io.gatling:gatling-core-java:3.8.4", - "io.gatling:gatling-core:3.8.4", - "io.gatling:gatling-jms:3.8.4", - "io.gatling:gatling-jsonpath:3.8.4", - "io.gatling:gatling-netty-util:3.8.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.pebbletemplates:pebble:3.1.5", - "io.suzaku:boopickle_2.13:1.3.3", - "javax.jms:javax.jms-api:2.0.1", - "net.jodah:typetools:0.6.3", - "net.sf.saxon:Saxon-HE:10.6", - "org.jodd:jodd-lagarto:6.0.6", - "org.jodd:jodd-util:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", - "org.scala-lang:scala-library:2.13.8", - "org.scala-lang:scala-reflect:2.13.8", - "org.simpleflatmapper:lightning-csv:8.2.3", - "org.simpleflatmapper:sfm-util:8.2.3", - "org.slf4j:slf4j-api:1.7.36", - "org.typelevel:spire-macros_2.13:0.17.0", - "org.unbescape:unbescape:1.1.6.RELEASE" + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", + "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ - "com.google.code.findbugs:jsr305:3.0.2", - "io.gatling:gatling-core-java:3.8.4", - "io.gatling:gatling-jms:3.8.4", + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-jms-java/3.8.4/gatling-jms-java-3.8.4.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-jsonpath/3.5.1/gatling-jsonpath-3.5.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-jms-java/3.8.4/gatling-jms-java-3.8.4.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-jsonpath/3.5.1/gatling-jsonpath-3.5.1.jar" ], "packages": [ - "io.gatling.javaapi.jms", - "io.gatling.javaapi.jms.internal" + "io.gatling.jsonpath" ], - "sha256": "92e7bfa0156c59bd8da000d5863d2850e26c24c81a250c1a82d992645b01d2a7", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-jms-java/3.8.4/gatling-jms-java-3.8.4.jar" + "sha256": "29f4898f0ab24bc3e9ffe336ffbf3a82ebc3c46518e9439d34adb4644237c62c", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-jsonpath/3.5.1/gatling-jsonpath-3.5.1.jar" }, { - "coord": "io.gatling:gatling-jms-java:jar:sources:3.8.4", + "coord": "io.gatling:gatling-jsonpath:jar:sources:3.5.1", "dependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.11", - "ch.qos.logback:logback-core:jar:sources:1.2.11", - "com.eatthepath:fast-uuid:jar:sources:0.2.0", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.github.ben-manes.caffeine:caffeine:jar:sources:3.1.1", - "com.github.scopt:scopt_2.13:jar:sources:4.1.0", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.9.0", - "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", - "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.5", - "com.typesafe:config:jar:sources:1.4.2", - "io.burt:jmespath-core:jar:sources:0.5.1", - "io.burt:jmespath-jackson:jar:sources:0.5.1", - "io.gatling:gatling-commons-shared-unstable:jar:sources:3.8.4", - "io.gatling:gatling-commons-shared:jar:sources:3.8.4", - "io.gatling:gatling-commons:jar:sources:3.8.4", - "io.gatling:gatling-core-java:jar:sources:3.8.4", - "io.gatling:gatling-core:jar:sources:3.8.4", - "io.gatling:gatling-jms:jar:sources:3.8.4", - "io.gatling:gatling-jsonpath:jar:sources:3.8.4", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.pebbletemplates:pebble:jar:sources:3.1.5", - "io.suzaku:boopickle_2.13:jar:sources:1.3.3", - "javax.jms:javax.jms-api:jar:sources:2.0.1", - "net.jodah:typetools:jar:sources:0.6.3", - "net.sf.saxon:Saxon-HE:jar:sources:10.6", - "org.jodd:jodd-lagarto:jar:sources:6.0.6", - "org.jodd:jodd-util:jar:sources:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", - "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.simpleflatmapper:lightning-csv:jar:sources:8.2.3", - "org.simpleflatmapper:sfm-util:jar:sources:8.2.3", - "org.slf4j:slf4j-api:jar:sources:1.7.36", - "org.typelevel:spire-macros_2.13:jar:sources:0.17.0", - "org.unbescape:unbescape:jar:sources:1.1.6.RELEASE" + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", + "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "io.gatling:gatling-core-java:jar:sources:3.8.4", - "io.gatling:gatling-jms:jar:sources:3.8.4", + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-jms-java/3.8.4/gatling-jms-java-3.8.4-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-jsonpath/3.5.1/gatling-jsonpath-3.5.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-jms-java/3.8.4/gatling-jms-java-3.8.4-sources.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-jsonpath/3.5.1/gatling-jsonpath-3.5.1-sources.jar" ], "packages": [], - "sha256": "daddd1db0978aa966f93628aac0327f26609713d51fd4a92329e225fc2f85037", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-jms-java/3.8.4/gatling-jms-java-3.8.4-sources.jar" + "sha256": "650347d9008c3cf860942463c4aaa48ce93cc7f2619d2bb1fdbbcf4277e2a033", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-jsonpath/3.5.1/gatling-jsonpath-3.5.1-sources.jar" }, { - "coord": "io.gatling:gatling-jms:3.8.4", + "coord": "io.gatling:gatling-netty-util:3.5.1", "dependencies": [ - "ch.qos.logback:logback-classic:1.2.11", - "ch.qos.logback:logback-core:1.2.11", - "com.eatthepath:fast-uuid:0.2.0", - "com.fasterxml.jackson.core:jackson-annotations:2.13.4", - "com.fasterxml.jackson.core:jackson-core:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.github.ben-manes.caffeine:caffeine:3.1.1", - "com.github.scopt:scopt_2.13:4.1.0", - "com.softwaremill.quicklens:quicklens_2.13:1.9.0", - "com.typesafe.akka:akka-actor_2.13:2.6.18", - "com.typesafe.akka:akka-slf4j_2.13:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:3.9.5", - "com.typesafe:config:1.4.2", - "io.burt:jmespath-core:0.5.1", - "io.burt:jmespath-jackson:0.5.1", - "io.gatling:gatling-commons-shared-unstable:3.8.4", - "io.gatling:gatling-commons-shared:3.8.4", - "io.gatling:gatling-commons:3.8.4", - "io.gatling:gatling-core:3.8.4", - "io.gatling:gatling-jsonpath:3.8.4", - "io.gatling:gatling-netty-util:3.8.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.pebbletemplates:pebble:3.1.5", - "io.suzaku:boopickle_2.13:1.3.3", - "javax.jms:javax.jms-api:2.0.1", - "net.sf.saxon:Saxon-HE:10.6", - "org.jodd:jodd-lagarto:6.0.6", - "org.jodd:jodd-util:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", - "org.scala-lang:scala-library:2.13.8", - "org.scala-lang:scala-reflect:2.13.8", - "org.simpleflatmapper:lightning-csv:8.2.3", - "org.simpleflatmapper:sfm-util:8.2.3", - "org.slf4j:slf4j-api:1.7.36", - "org.typelevel:spire-macros_2.13:0.17.0", - "org.unbescape:unbescape:1.1.6.RELEASE" + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:4.1.58.Final", + "io.netty:netty-transport:4.1.72.Final", + "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ - "com.eatthepath:fast-uuid:0.2.0", - "io.gatling:gatling-core:3.8.4", - "javax.jms:javax.jms-api:2.0.1", + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.58.Final", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-jms/3.8.4/gatling-jms-3.8.4.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-netty-util/3.5.1/gatling-netty-util-3.5.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-jms/3.8.4/gatling-jms-3.8.4.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-netty-util/3.5.1/gatling-netty-util-3.5.1.jar" ], "packages": [ - "io.gatling.jms", - "io.gatling.jms.action", - "io.gatling.jms.check", - "io.gatling.jms.client", - "io.gatling.jms.jndi", - "io.gatling.jms.protocol", - "io.gatling.jms.request" + "io.gatling.netty.util" ], - "sha256": "7e448699f64647dc561775127e7ad04df19b97770886c44ea4caab4c29485b16", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-jms/3.8.4/gatling-jms-3.8.4.jar" + "sha256": "2810b4914330fc7e0a01df5e0c548e80391fe4d206bd9bfd444c6b8b61a8be07", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-netty-util/3.5.1/gatling-netty-util-3.5.1.jar" }, { - "coord": "io.gatling:gatling-jms:jar:sources:3.8.4", + "coord": "io.gatling:gatling-netty-util:jar:sources:3.5.1", "dependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.11", - "ch.qos.logback:logback-core:jar:sources:1.2.11", - "com.eatthepath:fast-uuid:jar:sources:0.2.0", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.github.ben-manes.caffeine:caffeine:jar:sources:3.1.1", - "com.github.scopt:scopt_2.13:jar:sources:4.1.0", - "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.9.0", - "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", - "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.5", - "com.typesafe:config:jar:sources:1.4.2", - "io.burt:jmespath-core:jar:sources:0.5.1", - "io.burt:jmespath-jackson:jar:sources:0.5.1", - "io.gatling:gatling-commons-shared-unstable:jar:sources:3.8.4", - "io.gatling:gatling-commons-shared:jar:sources:3.8.4", - "io.gatling:gatling-commons:jar:sources:3.8.4", - "io.gatling:gatling-core:jar:sources:3.8.4", - "io.gatling:gatling-jsonpath:jar:sources:3.8.4", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.pebbletemplates:pebble:jar:sources:3.1.5", - "io.suzaku:boopickle_2.13:jar:sources:1.3.3", - "javax.jms:javax.jms-api:jar:sources:2.0.1", - "net.sf.saxon:Saxon-HE:jar:sources:10.6", - "org.jodd:jodd-lagarto:jar:sources:6.0.6", - "org.jodd:jodd-util:jar:sources:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", - "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.simpleflatmapper:lightning-csv:jar:sources:8.2.3", - "org.simpleflatmapper:sfm-util:jar:sources:8.2.3", - "org.slf4j:slf4j-api:jar:sources:1.7.36", - "org.typelevel:spire-macros_2.13:jar:sources:0.17.0", - "org.unbescape:unbescape:jar:sources:1.1.6.RELEASE" + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-transport-native-epoll:jar:sources:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final", + "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ - "com.eatthepath:fast-uuid:jar:sources:0.2.0", - "io.gatling:gatling-core:jar:sources:3.8.4", - "javax.jms:javax.jms-api:jar:sources:2.0.1", + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-transport-native-epoll:jar:sources:4.1.58.Final", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-jms/3.8.4/gatling-jms-3.8.4-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-netty-util/3.5.1/gatling-netty-util-3.5.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-jms/3.8.4/gatling-jms-3.8.4-sources.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-netty-util/3.5.1/gatling-netty-util-3.5.1-sources.jar" ], "packages": [], - "sha256": "a1ae6a1f30a9923d7f484af55f1b1bd60219f6fdec01c3e1a458174b98287823", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-jms/3.8.4/gatling-jms-3.8.4-sources.jar" + "sha256": "4c4c9f50e68a4302785294cc408ad53df508fc74a9a2c6827d3f84401f7f96fd", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-netty-util/3.5.1/gatling-netty-util-3.5.1-sources.jar" }, { - "coord": "io.gatling:gatling-jsonpath:3.8.4", + "coord": "io.gatling:gatling-recorder:3.5.1", "dependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:2.13.4", - "com.fasterxml.jackson.core:jackson-core:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "io.gatling:gatling-netty-util:3.8.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", - "org.scala-lang:scala-library:2.13.8" - ], - "directDependencies": [ - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "io.gatling:gatling-netty-util:3.8.4", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", - "org.scala-lang:scala-library:2.13.8" - ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-jsonpath/3.8.4/gatling-jsonpath-3.8.4.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-jsonpath/3.8.4/gatling-jsonpath-3.8.4.jar" - ], - "packages": [ - "io.gatling.jsonpath" - ], - "sha256": "ce72135c78763b9083a83c482ac4e204e79e54bbc92e3534296c4aa5622fb9e6", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-jsonpath/3.8.4/gatling-jsonpath-3.8.4.jar" - }, - { - "coord": "io.gatling:gatling-jsonpath:jar:sources:3.8.4", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", - "org.scala-lang:scala-library:jar:sources:2.13.8" - ], - "directDependencies": [ - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", - "org.scala-lang:scala-library:jar:sources:2.13.8" - ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-jsonpath/3.8.4/gatling-jsonpath-3.8.4-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-jsonpath/3.8.4/gatling-jsonpath-3.8.4-sources.jar" - ], - "packages": [], - "sha256": "fe73f7bf8b8d31b6c985280969ce6bd9174e334fd2d0c16c21deed5d39eb0d3d", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-jsonpath/3.8.4/gatling-jsonpath-3.8.4-sources.jar" - }, - { - "coord": "io.gatling:gatling-mqtt-java:3.8.4", - "dependencies": [ - "ch.qos.logback:logback-classic:1.2.11", - "ch.qos.logback:logback-core:1.2.11", - "com.fasterxml.jackson.core:jackson-annotations:2.13.4", - "com.fasterxml.jackson.core:jackson-core:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.github.ben-manes.caffeine:caffeine:3.1.1", - "com.github.scopt:scopt_2.13:4.1.0", - "com.google.code.findbugs:jsr305:3.0.2", - "com.softwaremill.quicklens:quicklens_2.13:1.9.0", - "com.typesafe.akka:akka-actor_2.13:2.6.18", - "com.typesafe.akka:akka-slf4j_2.13:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:3.9.5", - "com.typesafe:config:1.4.2", - "io.burt:jmespath-core:0.5.1", - "io.burt:jmespath-jackson:0.5.1", - "io.gatling:gatling-commons-shared-unstable:3.8.4", - "io.gatling:gatling-commons-shared:3.8.4", - "io.gatling:gatling-commons:3.8.4", - "io.gatling:gatling-core-java:3.8.4", - "io.gatling:gatling-core:3.8.4", - "io.gatling:gatling-jsonpath:3.8.4", - "io.gatling:gatling-mqtt:3.8.4", - "io.gatling:gatling-netty-util:3.8.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-mqtt:4.1.81.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.pebbletemplates:pebble:3.1.5", - "io.suzaku:boopickle_2.13:1.3.3", - "net.jodah:typetools:0.6.3", - "net.sf.saxon:Saxon-HE:10.6", - "org.jodd:jodd-lagarto:6.0.6", - "org.jodd:jodd-util:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", - "org.scala-lang:scala-library:2.13.8", - "org.scala-lang:scala-reflect:2.13.8", - "org.simpleflatmapper:lightning-csv:8.2.3", - "org.simpleflatmapper:sfm-util:8.2.3", - "org.slf4j:slf4j-api:1.7.36", - "org.typelevel:spire-macros_2.13:0.17.0", - "org.unbescape:unbescape:1.1.6.RELEASE" - ], - "directDependencies": [ - "com.google.code.findbugs:jsr305:3.0.2", - "io.gatling:gatling-core-java:3.8.4", - "io.gatling:gatling-mqtt:3.8.4", - "org.scala-lang:scala-library:2.13.8" - ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-mqtt-java/3.8.4/gatling-mqtt-java-3.8.4.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-mqtt-java/3.8.4/gatling-mqtt-java-3.8.4.jar" - ], - "packages": [ - "io.gatling.javaapi.mqtt", - "io.gatling.javaapi.mqtt.internal" - ], - "sha256": "9ad8b896384ef67653e525f00d081d7c23af4fac5e49dc90e9d5657a73a23fea", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-mqtt-java/3.8.4/gatling-mqtt-java-3.8.4.jar" - }, - { - "coord": "io.gatling:gatling-mqtt-java:jar:sources:3.8.4", - "dependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.11", - "ch.qos.logback:logback-core:jar:sources:1.2.11", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.github.ben-manes.caffeine:caffeine:jar:sources:3.1.1", - "com.github.scopt:scopt_2.13:jar:sources:4.1.0", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.9.0", - "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", - "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.5", - "com.typesafe:config:jar:sources:1.4.2", - "io.burt:jmespath-core:jar:sources:0.5.1", - "io.burt:jmespath-jackson:jar:sources:0.5.1", - "io.gatling:gatling-commons-shared-unstable:jar:sources:3.8.4", - "io.gatling:gatling-commons-shared:jar:sources:3.8.4", - "io.gatling:gatling-commons:jar:sources:3.8.4", - "io.gatling:gatling-core-java:jar:sources:3.8.4", - "io.gatling:gatling-core:jar:sources:3.8.4", - "io.gatling:gatling-jsonpath:jar:sources:3.8.4", - "io.gatling:gatling-mqtt:jar:sources:3.8.4", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-mqtt:jar:sources:4.1.81.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.pebbletemplates:pebble:jar:sources:3.1.5", - "io.suzaku:boopickle_2.13:jar:sources:1.3.3", - "net.jodah:typetools:jar:sources:0.6.3", - "net.sf.saxon:Saxon-HE:jar:sources:10.6", - "org.jodd:jodd-lagarto:jar:sources:6.0.6", - "org.jodd:jodd-util:jar:sources:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", - "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.simpleflatmapper:lightning-csv:jar:sources:8.2.3", - "org.simpleflatmapper:sfm-util:jar:sources:8.2.3", - "org.slf4j:slf4j-api:jar:sources:1.7.36", - "org.typelevel:spire-macros_2.13:jar:sources:0.17.0", - "org.unbescape:unbescape:jar:sources:1.1.6.RELEASE" - ], - "directDependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "io.gatling:gatling-core-java:jar:sources:3.8.4", - "io.gatling:gatling-mqtt:jar:sources:3.8.4", - "org.scala-lang:scala-library:jar:sources:2.13.8" - ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-mqtt-java/3.8.4/gatling-mqtt-java-3.8.4-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-mqtt-java/3.8.4/gatling-mqtt-java-3.8.4-sources.jar" - ], - "packages": [], - "sha256": "94de43369df81b975b03b800b626572c7ae2a062facc62bbc2b80e3407db6cc5", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-mqtt-java/3.8.4/gatling-mqtt-java-3.8.4-sources.jar" - }, - { - "coord": "io.gatling:gatling-mqtt:3.8.4", - "dependencies": [ - "ch.qos.logback:logback-classic:1.2.11", - "ch.qos.logback:logback-core:1.2.11", - "com.fasterxml.jackson.core:jackson-annotations:2.13.4", - "com.fasterxml.jackson.core:jackson-core:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.github.ben-manes.caffeine:caffeine:3.1.1", - "com.github.scopt:scopt_2.13:4.1.0", - "com.softwaremill.quicklens:quicklens_2.13:1.9.0", - "com.typesafe.akka:akka-actor_2.13:2.6.18", - "com.typesafe.akka:akka-slf4j_2.13:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:3.9.5", - "com.typesafe:config:1.4.2", - "io.burt:jmespath-core:0.5.1", - "io.burt:jmespath-jackson:0.5.1", - "io.gatling:gatling-commons-shared-unstable:3.8.4", - "io.gatling:gatling-commons-shared:3.8.4", - "io.gatling:gatling-commons:3.8.4", - "io.gatling:gatling-core:3.8.4", - "io.gatling:gatling-jsonpath:3.8.4", - "io.gatling:gatling-netty-util:3.8.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-mqtt:4.1.81.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.pebbletemplates:pebble:3.1.5", - "io.suzaku:boopickle_2.13:1.3.3", - "net.sf.saxon:Saxon-HE:10.6", - "org.jodd:jodd-lagarto:6.0.6", - "org.jodd:jodd-util:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", - "org.scala-lang:scala-library:2.13.8", - "org.scala-lang:scala-reflect:2.13.8", - "org.simpleflatmapper:lightning-csv:8.2.3", - "org.simpleflatmapper:sfm-util:8.2.3", - "org.slf4j:slf4j-api:1.7.36", - "org.typelevel:spire-macros_2.13:0.17.0", - "org.unbescape:unbescape:1.1.6.RELEASE" - ], - "directDependencies": [ - "io.gatling:gatling-core:3.8.4", - "io.gatling:gatling-netty-util:3.8.4", - "io.netty:netty-codec-mqtt:4.1.81.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "org.scala-lang:scala-library:2.13.8" - ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-mqtt/3.8.4/gatling-mqtt-3.8.4.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-mqtt/3.8.4/gatling-mqtt-3.8.4.jar" - ], - "packages": [ - "io.gatling.mqtt", - "io.gatling.mqtt.action.builder", - "io.gatling.mqtt.check", - "io.gatling.mqtt.protocol" - ], - "sha256": "c63cc0bcbb4556fbddb8db3e780e654497336ff35540e9c3655d895abd41df0c", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-mqtt/3.8.4/gatling-mqtt-3.8.4.jar" - }, - { - "coord": "io.gatling:gatling-mqtt:jar:sources:3.8.4", - "dependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.11", - "ch.qos.logback:logback-core:jar:sources:1.2.11", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.github.ben-manes.caffeine:caffeine:jar:sources:3.1.1", - "com.github.scopt:scopt_2.13:jar:sources:4.1.0", - "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.9.0", - "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", - "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.5", - "com.typesafe:config:jar:sources:1.4.2", - "io.burt:jmespath-core:jar:sources:0.5.1", - "io.burt:jmespath-jackson:jar:sources:0.5.1", - "io.gatling:gatling-commons-shared-unstable:jar:sources:3.8.4", - "io.gatling:gatling-commons-shared:jar:sources:3.8.4", - "io.gatling:gatling-commons:jar:sources:3.8.4", - "io.gatling:gatling-core:jar:sources:3.8.4", - "io.gatling:gatling-jsonpath:jar:sources:3.8.4", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-mqtt:jar:sources:4.1.81.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.pebbletemplates:pebble:jar:sources:3.1.5", - "io.suzaku:boopickle_2.13:jar:sources:1.3.3", - "net.sf.saxon:Saxon-HE:jar:sources:10.6", - "org.jodd:jodd-lagarto:jar:sources:6.0.6", - "org.jodd:jodd-util:jar:sources:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", - "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.simpleflatmapper:lightning-csv:jar:sources:8.2.3", - "org.simpleflatmapper:sfm-util:jar:sources:8.2.3", - "org.slf4j:slf4j-api:jar:sources:1.7.36", - "org.typelevel:spire-macros_2.13:jar:sources:0.17.0", - "org.unbescape:unbescape:jar:sources:1.1.6.RELEASE" - ], - "directDependencies": [ - "io.gatling:gatling-core:jar:sources:3.8.4", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.netty:netty-codec-mqtt:jar:sources:4.1.81.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "org.scala-lang:scala-library:jar:sources:2.13.8" - ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-mqtt/3.8.4/gatling-mqtt-3.8.4-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-mqtt/3.8.4/gatling-mqtt-3.8.4-sources.jar" - ], - "packages": [], - "sha256": "aeb4a7a659fbc595a72e02f526b8fe11d103b71bfb9b4af16d820a9cb1dce25a", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-mqtt/3.8.4/gatling-mqtt-3.8.4-sources.jar" - }, - { - "coord": "io.gatling:gatling-netty-util:3.8.4", - "dependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "org.scala-lang:scala-library:2.13.8" - ], - "directDependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "org.scala-lang:scala-library:2.13.8" - ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-netty-util/3.8.4/gatling-netty-util-3.8.4.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-netty-util/3.8.4/gatling-netty-util-3.8.4.jar" - ], - "packages": [ - "io.gatling.netty.util" - ], - "sha256": "6e26c86efc3c6b3d5c6b6680eec4f28ecc27d675d076317a22a69ed12d67972c", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-netty-util/3.8.4/gatling-netty-util-3.8.4.jar" - }, - { - "coord": "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "org.scala-lang:scala-library:jar:sources:2.13.8" - ], - "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "org.scala-lang:scala-library:jar:sources:2.13.8" - ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-netty-util/3.8.4/gatling-netty-util-3.8.4-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-netty-util/3.8.4/gatling-netty-util-3.8.4-sources.jar" - ], - "packages": [], - "sha256": "2ce4133dcfad513dc28fc83d7da6acbc58d086743d30b1d87f23c2593be6ed8a", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-netty-util/3.8.4/gatling-netty-util-3.8.4-sources.jar" - }, - { - "coord": "io.gatling:gatling-recorder-bc-shaded:1.71.1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-recorder-bc-shaded/1.71.1/gatling-recorder-bc-shaded-1.71.1.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-recorder-bc-shaded/1.71.1/gatling-recorder-bc-shaded-1.71.1.jar" - ], - "packages": [ - "io.gatling.recorder.internal.bouncycastle", - "io.gatling.recorder.internal.bouncycastle.asn1", - "io.gatling.recorder.internal.bouncycastle.asn1.anssi", - "io.gatling.recorder.internal.bouncycastle.asn1.bc", - "io.gatling.recorder.internal.bouncycastle.asn1.bsi", - "io.gatling.recorder.internal.bouncycastle.asn1.cmc", - "io.gatling.recorder.internal.bouncycastle.asn1.cmp", - "io.gatling.recorder.internal.bouncycastle.asn1.cms", - "io.gatling.recorder.internal.bouncycastle.asn1.cms.ecc", - "io.gatling.recorder.internal.bouncycastle.asn1.crmf", - "io.gatling.recorder.internal.bouncycastle.asn1.cryptlib", - "io.gatling.recorder.internal.bouncycastle.asn1.cryptopro", - "io.gatling.recorder.internal.bouncycastle.asn1.dvcs", - "io.gatling.recorder.internal.bouncycastle.asn1.eac", - "io.gatling.recorder.internal.bouncycastle.asn1.edec", - "io.gatling.recorder.internal.bouncycastle.asn1.esf", - "io.gatling.recorder.internal.bouncycastle.asn1.ess", - "io.gatling.recorder.internal.bouncycastle.asn1.est", - "io.gatling.recorder.internal.bouncycastle.asn1.gm", - "io.gatling.recorder.internal.bouncycastle.asn1.gnu", - "io.gatling.recorder.internal.bouncycastle.asn1.iana", - "io.gatling.recorder.internal.bouncycastle.asn1.icao", - "io.gatling.recorder.internal.bouncycastle.asn1.isara", - "io.gatling.recorder.internal.bouncycastle.asn1.isismtt", - "io.gatling.recorder.internal.bouncycastle.asn1.isismtt.ocsp", - "io.gatling.recorder.internal.bouncycastle.asn1.isismtt.x509", - "io.gatling.recorder.internal.bouncycastle.asn1.iso", - "io.gatling.recorder.internal.bouncycastle.asn1.kisa", - "io.gatling.recorder.internal.bouncycastle.asn1.microsoft", - "io.gatling.recorder.internal.bouncycastle.asn1.misc", - "io.gatling.recorder.internal.bouncycastle.asn1.mozilla", - "io.gatling.recorder.internal.bouncycastle.asn1.nist", - "io.gatling.recorder.internal.bouncycastle.asn1.nsri", - "io.gatling.recorder.internal.bouncycastle.asn1.ntt", - "io.gatling.recorder.internal.bouncycastle.asn1.ocsp", - "io.gatling.recorder.internal.bouncycastle.asn1.oiw", - "io.gatling.recorder.internal.bouncycastle.asn1.pkcs", - "io.gatling.recorder.internal.bouncycastle.asn1.rosstandart", - "io.gatling.recorder.internal.bouncycastle.asn1.sec", - "io.gatling.recorder.internal.bouncycastle.asn1.smime", - "io.gatling.recorder.internal.bouncycastle.asn1.teletrust", - "io.gatling.recorder.internal.bouncycastle.asn1.tsp", - "io.gatling.recorder.internal.bouncycastle.asn1.ua", - "io.gatling.recorder.internal.bouncycastle.asn1.util", - "io.gatling.recorder.internal.bouncycastle.asn1.x500", - "io.gatling.recorder.internal.bouncycastle.asn1.x500.style", - "io.gatling.recorder.internal.bouncycastle.asn1.x509", - "io.gatling.recorder.internal.bouncycastle.asn1.x509.qualified", - "io.gatling.recorder.internal.bouncycastle.asn1.x509.sigi", - "io.gatling.recorder.internal.bouncycastle.asn1.x9", - "io.gatling.recorder.internal.bouncycastle.cert", - "io.gatling.recorder.internal.bouncycastle.cert.bc", - "io.gatling.recorder.internal.bouncycastle.cert.cmp", - "io.gatling.recorder.internal.bouncycastle.cert.crmf", - "io.gatling.recorder.internal.bouncycastle.cert.crmf.bc", - "io.gatling.recorder.internal.bouncycastle.cert.crmf.jcajce", - "io.gatling.recorder.internal.bouncycastle.cert.dane", - "io.gatling.recorder.internal.bouncycastle.cert.dane.fetcher", - "io.gatling.recorder.internal.bouncycastle.cert.jcajce", - "io.gatling.recorder.internal.bouncycastle.cert.ocsp", - "io.gatling.recorder.internal.bouncycastle.cert.ocsp.jcajce", - "io.gatling.recorder.internal.bouncycastle.cert.path", - "io.gatling.recorder.internal.bouncycastle.cert.path.validations", - "io.gatling.recorder.internal.bouncycastle.cert.selector", - "io.gatling.recorder.internal.bouncycastle.cert.selector.jcajce", - "io.gatling.recorder.internal.bouncycastle.cmc", - "io.gatling.recorder.internal.bouncycastle.cms", - "io.gatling.recorder.internal.bouncycastle.cms.bc", - "io.gatling.recorder.internal.bouncycastle.cms.jcajce", - "io.gatling.recorder.internal.bouncycastle.crypto", - "io.gatling.recorder.internal.bouncycastle.crypto.agreement", - "io.gatling.recorder.internal.bouncycastle.crypto.agreement.jpake", - "io.gatling.recorder.internal.bouncycastle.crypto.agreement.kdf", - "io.gatling.recorder.internal.bouncycastle.crypto.agreement.srp", - "io.gatling.recorder.internal.bouncycastle.crypto.commitments", - "io.gatling.recorder.internal.bouncycastle.crypto.digests", - "io.gatling.recorder.internal.bouncycastle.crypto.ec", - "io.gatling.recorder.internal.bouncycastle.crypto.encodings", - "io.gatling.recorder.internal.bouncycastle.crypto.engines", - "io.gatling.recorder.internal.bouncycastle.crypto.examples", - "io.gatling.recorder.internal.bouncycastle.crypto.fpe", - "io.gatling.recorder.internal.bouncycastle.crypto.generators", - "io.gatling.recorder.internal.bouncycastle.crypto.io", - "io.gatling.recorder.internal.bouncycastle.crypto.kems", - "io.gatling.recorder.internal.bouncycastle.crypto.macs", - "io.gatling.recorder.internal.bouncycastle.crypto.modes", - "io.gatling.recorder.internal.bouncycastle.crypto.modes.gcm", - "io.gatling.recorder.internal.bouncycastle.crypto.modes.kgcm", - "io.gatling.recorder.internal.bouncycastle.crypto.paddings", - "io.gatling.recorder.internal.bouncycastle.crypto.params", - "io.gatling.recorder.internal.bouncycastle.crypto.parsers", - "io.gatling.recorder.internal.bouncycastle.crypto.prng", - "io.gatling.recorder.internal.bouncycastle.crypto.prng.drbg", - "io.gatling.recorder.internal.bouncycastle.crypto.signers", - "io.gatling.recorder.internal.bouncycastle.crypto.util", - "io.gatling.recorder.internal.bouncycastle.dvcs", - "io.gatling.recorder.internal.bouncycastle.eac", - "io.gatling.recorder.internal.bouncycastle.eac.jcajce", - "io.gatling.recorder.internal.bouncycastle.eac.operator", - "io.gatling.recorder.internal.bouncycastle.eac.operator.jcajce", - "io.gatling.recorder.internal.bouncycastle.est", - "io.gatling.recorder.internal.bouncycastle.est.jcajce", - "io.gatling.recorder.internal.bouncycastle.i18n", - "io.gatling.recorder.internal.bouncycastle.i18n.filter", - "io.gatling.recorder.internal.bouncycastle.iana", - "io.gatling.recorder.internal.bouncycastle.internal.asn1.bsi", - "io.gatling.recorder.internal.bouncycastle.internal.asn1.cms", - "io.gatling.recorder.internal.bouncycastle.internal.asn1.eac", - "io.gatling.recorder.internal.bouncycastle.internal.asn1.isismtt", - "io.gatling.recorder.internal.bouncycastle.its", - "io.gatling.recorder.internal.bouncycastle.its.bc", - "io.gatling.recorder.internal.bouncycastle.its.jcajce", - "io.gatling.recorder.internal.bouncycastle.its.operator", - "io.gatling.recorder.internal.bouncycastle.jcajce", - "io.gatling.recorder.internal.bouncycastle.jcajce.interfaces", - "io.gatling.recorder.internal.bouncycastle.jcajce.io", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.asymmetric", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.asymmetric.dh", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.asymmetric.dsa", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.asymmetric.dstu", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.asymmetric.ec", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.asymmetric.ecgost", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.asymmetric.ecgost12", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.asymmetric.edec", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.asymmetric.elgamal", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.asymmetric.gost", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.asymmetric.ies", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.asymmetric.rsa", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.asymmetric.util", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.asymmetric.x509", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.config", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.digest", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.drbg", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.keystore", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.keystore.bc", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.keystore.bcfks", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.keystore.pkcs12", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.keystore.util", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.symmetric", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.symmetric.util", - "io.gatling.recorder.internal.bouncycastle.jcajce.provider.util", - "io.gatling.recorder.internal.bouncycastle.jcajce.spec", - "io.gatling.recorder.internal.bouncycastle.jcajce.util", - "io.gatling.recorder.internal.bouncycastle.jce", - "io.gatling.recorder.internal.bouncycastle.jce.exception", - "io.gatling.recorder.internal.bouncycastle.jce.interfaces", - "io.gatling.recorder.internal.bouncycastle.jce.netscape", - "io.gatling.recorder.internal.bouncycastle.jce.provider", - "io.gatling.recorder.internal.bouncycastle.jce.spec", - "io.gatling.recorder.internal.bouncycastle.math", - "io.gatling.recorder.internal.bouncycastle.math.ec", - "io.gatling.recorder.internal.bouncycastle.math.ec.custom.djb", - "io.gatling.recorder.internal.bouncycastle.math.ec.custom.gm", - "io.gatling.recorder.internal.bouncycastle.math.ec.custom.sec", - "io.gatling.recorder.internal.bouncycastle.math.ec.endo", - "io.gatling.recorder.internal.bouncycastle.math.ec.rfc7748", - "io.gatling.recorder.internal.bouncycastle.math.ec.rfc8032", - "io.gatling.recorder.internal.bouncycastle.math.ec.tools", - "io.gatling.recorder.internal.bouncycastle.math.field", - "io.gatling.recorder.internal.bouncycastle.math.raw", - "io.gatling.recorder.internal.bouncycastle.mime", - "io.gatling.recorder.internal.bouncycastle.mime.encoding", - "io.gatling.recorder.internal.bouncycastle.mime.smime", - "io.gatling.recorder.internal.bouncycastle.mozilla", - "io.gatling.recorder.internal.bouncycastle.mozilla.jcajce", - "io.gatling.recorder.internal.bouncycastle.oer", - "io.gatling.recorder.internal.bouncycastle.oer.its", - "io.gatling.recorder.internal.bouncycastle.oer.its.etsi102941", - "io.gatling.recorder.internal.bouncycastle.oer.its.etsi102941.basetypes", - "io.gatling.recorder.internal.bouncycastle.oer.its.etsi103097", - "io.gatling.recorder.internal.bouncycastle.oer.its.etsi103097.extension", - "io.gatling.recorder.internal.bouncycastle.oer.its.ieee1609dot2", - "io.gatling.recorder.internal.bouncycastle.oer.its.ieee1609dot2.basetypes", - "io.gatling.recorder.internal.bouncycastle.oer.its.ieee1609dot2dot1", - "io.gatling.recorder.internal.bouncycastle.oer.its.template.etsi102941", - "io.gatling.recorder.internal.bouncycastle.oer.its.template.etsi102941.basetypes", - "io.gatling.recorder.internal.bouncycastle.oer.its.template.etsi103097", - "io.gatling.recorder.internal.bouncycastle.oer.its.template.etsi103097.extension", - "io.gatling.recorder.internal.bouncycastle.oer.its.template.ieee1609dot2", - "io.gatling.recorder.internal.bouncycastle.oer.its.template.ieee1609dot2.basetypes", - "io.gatling.recorder.internal.bouncycastle.oer.its.template.ieee1609dot2dot1", - "io.gatling.recorder.internal.bouncycastle.openssl", - "io.gatling.recorder.internal.bouncycastle.openssl.bc", - "io.gatling.recorder.internal.bouncycastle.openssl.jcajce", - "io.gatling.recorder.internal.bouncycastle.operator", - "io.gatling.recorder.internal.bouncycastle.operator.bc", - "io.gatling.recorder.internal.bouncycastle.operator.jcajce", - "io.gatling.recorder.internal.bouncycastle.pkcs", - "io.gatling.recorder.internal.bouncycastle.pkcs.bc", - "io.gatling.recorder.internal.bouncycastle.pkcs.jcajce", - "io.gatling.recorder.internal.bouncycastle.pkix", - "io.gatling.recorder.internal.bouncycastle.pkix.jcajce", - "io.gatling.recorder.internal.bouncycastle.pqc.asn1", - "io.gatling.recorder.internal.bouncycastle.pqc.crypto", - "io.gatling.recorder.internal.bouncycastle.pqc.crypto.cmce", - "io.gatling.recorder.internal.bouncycastle.pqc.crypto.frodo", - "io.gatling.recorder.internal.bouncycastle.pqc.crypto.gmss", - "io.gatling.recorder.internal.bouncycastle.pqc.crypto.gmss.util", - "io.gatling.recorder.internal.bouncycastle.pqc.crypto.lms", - "io.gatling.recorder.internal.bouncycastle.pqc.crypto.mceliece", - "io.gatling.recorder.internal.bouncycastle.pqc.crypto.newhope", - "io.gatling.recorder.internal.bouncycastle.pqc.crypto.qtesla", - "io.gatling.recorder.internal.bouncycastle.pqc.crypto.rainbow", - "io.gatling.recorder.internal.bouncycastle.pqc.crypto.rainbow.util", - "io.gatling.recorder.internal.bouncycastle.pqc.crypto.saber", - "io.gatling.recorder.internal.bouncycastle.pqc.crypto.sphincs", - "io.gatling.recorder.internal.bouncycastle.pqc.crypto.sphincsplus", - "io.gatling.recorder.internal.bouncycastle.pqc.crypto.util", - "io.gatling.recorder.internal.bouncycastle.pqc.crypto.xmss", - "io.gatling.recorder.internal.bouncycastle.pqc.jcajce.interfaces", - "io.gatling.recorder.internal.bouncycastle.pqc.jcajce.provider", - "io.gatling.recorder.internal.bouncycastle.pqc.jcajce.provider.cmce", - "io.gatling.recorder.internal.bouncycastle.pqc.jcajce.provider.frodo", - "io.gatling.recorder.internal.bouncycastle.pqc.jcajce.provider.gmss", - "io.gatling.recorder.internal.bouncycastle.pqc.jcajce.provider.lms", - "io.gatling.recorder.internal.bouncycastle.pqc.jcajce.provider.mceliece", - "io.gatling.recorder.internal.bouncycastle.pqc.jcajce.provider.newhope", - "io.gatling.recorder.internal.bouncycastle.pqc.jcajce.provider.qtesla", - "io.gatling.recorder.internal.bouncycastle.pqc.jcajce.provider.rainbow", - "io.gatling.recorder.internal.bouncycastle.pqc.jcajce.provider.saber", - "io.gatling.recorder.internal.bouncycastle.pqc.jcajce.provider.sphincs", - "io.gatling.recorder.internal.bouncycastle.pqc.jcajce.provider.sphincsplus", - "io.gatling.recorder.internal.bouncycastle.pqc.jcajce.provider.util", - "io.gatling.recorder.internal.bouncycastle.pqc.jcajce.provider.xmss", - "io.gatling.recorder.internal.bouncycastle.pqc.jcajce.spec", - "io.gatling.recorder.internal.bouncycastle.pqc.math.linearalgebra", - "io.gatling.recorder.internal.bouncycastle.tsp", - "io.gatling.recorder.internal.bouncycastle.tsp.cms", - "io.gatling.recorder.internal.bouncycastle.tsp.ers", - "io.gatling.recorder.internal.bouncycastle.util", - "io.gatling.recorder.internal.bouncycastle.util.encoders", - "io.gatling.recorder.internal.bouncycastle.util.io", - "io.gatling.recorder.internal.bouncycastle.util.io.pem", - "io.gatling.recorder.internal.bouncycastle.util.test", - "io.gatling.recorder.internal.bouncycastle.voms", - "io.gatling.recorder.internal.bouncycastle.x509", - "io.gatling.recorder.internal.bouncycastle.x509.extension", - "io.gatling.recorder.internal.bouncycastle.x509.util" - ], - "sha256": "6e5f70792f854d4bf44b4a8ef83c35269f6c73e4e78c52a1c1b6d6f810c3cdb6", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-recorder-bc-shaded/1.71.1/gatling-recorder-bc-shaded-1.71.1.jar" - }, - { - "coord": "io.gatling:gatling-recorder-bc-shaded:jar:sources:1.71.1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-recorder-bc-shaded/1.71.1/gatling-recorder-bc-shaded-1.71.1-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-recorder-bc-shaded/1.71.1/gatling-recorder-bc-shaded-1.71.1-sources.jar" - ], - "packages": [], - "sha256": "eab40fc8f5e07124b042778d796bf5621b6d220e096699553262642be54b87cf", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-recorder-bc-shaded/1.71.1/gatling-recorder-bc-shaded-1.71.1-sources.jar" - }, - { - "coord": "io.gatling:gatling-recorder:3.8.4", - "dependencies": [ - "ch.qos.logback:logback-classic:1.2.11", - "ch.qos.logback:logback-core:1.2.11", - "com.aayushatharva.brotli4j:brotli4j:1.8.0", - "com.aayushatharva.brotli4j:native-linux-aarch64:1.8.0", - "com.aayushatharva.brotli4j:native-linux-x86_64:1.8.0", - "com.aayushatharva.brotli4j:native-osx-aarch64:1.8.0", - "com.aayushatharva.brotli4j:native-osx-x86_64:1.8.0", - "com.aayushatharva.brotli4j:native-windows-x86_64:1.8.0", - "com.fasterxml.jackson.core:jackson-annotations:2.13.4", - "com.fasterxml.jackson.core:jackson-core:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.github.ben-manes.caffeine:caffeine:3.1.1", - "com.github.scopt:scopt_2.13:4.1.0", - "com.softwaremill.quicklens:quicklens_2.13:1.9.0", + "ch.qos.logback:logback-classic:1.2.8", + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "com.github.ben-manes.caffeine:caffeine:3.0.5", + "com.github.scopt:scopt_2.13:4.0.0", + "com.softwaremill.quicklens:quicklens_2.13:1.6.1", "com.typesafe.akka:akka-actor_2.13:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:3.9.5", - "com.typesafe:config:1.4.2", - "io.burt:jmespath-core:0.5.1", - "io.burt:jmespath-jackson:0.5.1", - "io.gatling:gatling-commons-shared-unstable:3.8.4", - "io.gatling:gatling-commons-shared:3.8.4", - "io.gatling:gatling-commons:3.8.4", - "io.gatling:gatling-core:3.8.4", - "io.gatling:gatling-http-client:3.8.4", - "io.gatling:gatling-http:3.8.4", - "io.gatling:gatling-jsonpath:3.8.4", - "io.gatling:gatling-netty-util:3.8.4", - "io.gatling:gatling-recorder-bc-shaded:1.71.1", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-dns:4.1.81.Final", - "io.netty:netty-codec-http2:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver-dns-classes-macos:4.1.81.Final", - "io.netty:netty-resolver-dns-native-macos:jar:osx-aarch_64:4.1.81.Final", - "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.81.Final", - "io.netty:netty-resolver-dns:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-tcnative-boringssl-static:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.pebbletemplates:pebble:3.1.5", + "com.typesafe.scala-logging:scala-logging_2.13:3.9.2", + "com.typesafe:config:1.4.1", + "io.burt:jmespath-core:0.5.0", + "io.burt:jmespath-jackson:0.5.0", + "io.gatling:gatling-commons-shared-unstable:3.5.1", + "io.gatling:gatling-commons-shared:3.5.1", + "io.gatling:gatling-commons:3.5.1", + "io.gatling:gatling-core:3.5.1", + "io.gatling:gatling-http-client:3.5.1", + "io.gatling:gatling-http:3.5.1", + "io.gatling:gatling-jsonpath:3.5.1", + "io.gatling:gatling-netty-util:3.5.1", + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-codec-dns:4.1.58.Final", + "io.netty:netty-codec-http2:4.1.72.Final", + "io.netty:netty-codec-http:4.1.72.Final", + "io.netty:netty-codec:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-handler-proxy:4.1.72.Final", + "io.netty:netty-handler:4.1.72.Final", + "io.netty:netty-resolver-dns:4.1.58.Final", + "io.netty:netty-resolver:4.1.72.Final", + "io.netty:netty-tcnative-boringssl-static:2.0.46.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:4.1.58.Final", + "io.netty:netty-transport:4.1.72.Final", + "io.pebbletemplates:pebble:3.1.4", "io.suzaku:boopickle_2.13:1.3.3", - "net.sf.saxon:Saxon-HE:10.6", - "org.jodd:jodd-lagarto:6.0.6", - "org.jodd:jodd-util:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", + "net.sf.saxon:Saxon-HE:10.3", + "org.bouncycastle:bcpkix-jdk15on:1.70", + "org.jodd:jodd-lagarto:6.0.3", + "org.jodd:jodd-util:6.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang.modules:scala-swing_2.13:3.0.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", "org.simpleflatmapper:lightning-csv:8.2.3", "org.simpleflatmapper:sfm-util:8.2.3", - "org.slf4j:slf4j-api:1.7.36", + "org.slf4j:slf4j-api:1.7.26", "org.typelevel:spire-macros_2.13:0.17.0", "org.unbescape:unbescape:1.1.6.RELEASE" ], "directDependencies": [ - "com.fasterxml.jackson.core:jackson-databind:2.13.4", + "com.fasterxml.jackson.core:jackson-databind:2.12.0", "com.typesafe.akka:akka-actor_2.13:2.6.18", - "io.gatling:gatling-core:3.8.4", - "io.gatling:gatling-http:3.8.4", - "io.gatling:gatling-recorder-bc-shaded:1.71.1", - "io.netty:netty-codec-http:4.1.81.Final", + "io.gatling:gatling-core:3.5.1", + "io.gatling:gatling-http:3.5.1", + "io.netty:netty-codec-http:4.1.72.Final", + "org.bouncycastle:bcpkix-jdk15on:1.70", "org.scala-lang.modules:scala-swing_2.13:3.0.0", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-recorder/3.8.4/gatling-recorder-3.8.4.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-recorder/3.5.1/gatling-recorder-3.5.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-recorder/3.8.4/gatling-recorder-3.8.4.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-recorder/3.5.1/gatling-recorder-3.5.1.jar" ], "packages": [ "io.gatling.recorder", @@ -7679,8 +5992,8 @@ "io.gatling.recorder.http.flows", "io.gatling.recorder.http.ssl", "io.gatling.recorder.model", - "io.gatling.recorder.render", - "io.gatling.recorder.render.template", + "io.gatling.recorder.scenario", + "io.gatling.recorder.scenario.template", "io.gatling.recorder.ui", "io.gatling.recorder.ui.headless", "io.gatling.recorder.ui.swing", @@ -7689,777 +6002,578 @@ "io.gatling.recorder.ui.swing.util", "io.gatling.recorder.util" ], - "sha256": "82091b4ab4edaa6925f4cef05e57f833a6d4584b99075e078e16e679f1a0b5fe", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-recorder/3.8.4/gatling-recorder-3.8.4.jar" - }, - { - "coord": "io.gatling:gatling-recorder:jar:sources:3.8.4", - "dependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.11", - "ch.qos.logback:logback-core:jar:sources:1.2.11", - "com.aayushatharva.brotli4j:brotli4j:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-linux-aarch64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-linux-x86_64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-osx-aarch64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-osx-x86_64:jar:sources:1.8.0", - "com.aayushatharva.brotli4j:native-windows-x86_64:jar:sources:1.8.0", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.github.ben-manes.caffeine:caffeine:jar:sources:3.1.1", - "com.github.scopt:scopt_2.13:jar:sources:4.1.0", - "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.9.0", - "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", - "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.5", - "com.typesafe:config:jar:sources:1.4.2", - "io.burt:jmespath-core:jar:sources:0.5.1", - "io.burt:jmespath-jackson:jar:sources:0.5.1", - "io.gatling:gatling-commons-shared-unstable:jar:sources:3.8.4", - "io.gatling:gatling-commons-shared:jar:sources:3.8.4", - "io.gatling:gatling-commons:jar:sources:3.8.4", - "io.gatling:gatling-core:jar:sources:3.8.4", - "io.gatling:gatling-http-client:jar:sources:3.8.4", - "io.gatling:gatling-http:jar:sources:3.8.4", - "io.gatling:gatling-jsonpath:jar:sources:3.8.4", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.gatling:gatling-recorder-bc-shaded:jar:sources:1.71.1", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-dns:jar:sources:4.1.81.Final", - "io.netty:netty-codec-http2:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver-dns-classes-macos:jar:sources:4.1.81.Final", - "io.netty:netty-resolver-dns-native-macos:jar:sources:4.1.81.Final", - "io.netty:netty-resolver-dns:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-tcnative-boringssl-static:jar:sources:2.0.54.Final", - "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.pebbletemplates:pebble:jar:sources:3.1.5", - "io.suzaku:boopickle_2.13:jar:sources:1.3.3", - "net.sf.saxon:Saxon-HE:jar:sources:10.6", - "org.jodd:jodd-lagarto:jar:sources:6.0.6", - "org.jodd:jodd-util:jar:sources:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", - "org.scala-lang.modules:scala-swing_2.13:jar:sources:3.0.0", - "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.simpleflatmapper:lightning-csv:jar:sources:8.2.3", - "org.simpleflatmapper:sfm-util:jar:sources:8.2.3", - "org.slf4j:slf4j-api:jar:sources:1.7.36", - "org.typelevel:spire-macros_2.13:jar:sources:0.17.0", - "org.unbescape:unbescape:jar:sources:1.1.6.RELEASE" - ], - "directDependencies": [ - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", - "io.gatling:gatling-core:jar:sources:3.8.4", - "io.gatling:gatling-http:jar:sources:3.8.4", - "io.gatling:gatling-recorder-bc-shaded:jar:sources:1.71.1", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "org.scala-lang.modules:scala-swing_2.13:jar:sources:3.0.0", - "org.scala-lang:scala-library:jar:sources:2.13.8" - ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-recorder/3.8.4/gatling-recorder-3.8.4-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-recorder/3.8.4/gatling-recorder-3.8.4-sources.jar" - ], - "packages": [], - "sha256": "e3c38dda75092718f30807f84b00be7b46cab06a66327be26bc97246be864c3c", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-recorder/3.8.4/gatling-recorder-3.8.4-sources.jar" + "sha256": "0467ac306b7f7439ec7a182052ead4e8900c3f4a066e818528199c7eb937ca99", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-recorder/3.5.1/gatling-recorder-3.5.1.jar" }, { - "coord": "io.gatling:gatling-redis-java:3.8.4", + "coord": "io.gatling:gatling-recorder:jar:sources:3.5.1", "dependencies": [ - "ch.qos.logback:logback-classic:1.2.11", - "ch.qos.logback:logback-core:1.2.11", - "com.fasterxml.jackson.core:jackson-annotations:2.13.4", - "com.fasterxml.jackson.core:jackson-core:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.github.ben-manes.caffeine:caffeine:3.1.1", - "com.github.scopt:scopt_2.13:4.1.0", - "com.google.code.findbugs:jsr305:3.0.2", - "com.softwaremill.quicklens:quicklens_2.13:1.9.0", - "com.typesafe.akka:akka-actor_2.13:2.6.18", - "com.typesafe.akka:akka-slf4j_2.13:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:3.9.5", - "com.typesafe:config:1.4.2", - "io.burt:jmespath-core:0.5.1", - "io.burt:jmespath-jackson:0.5.1", - "io.gatling:gatling-commons-shared-unstable:3.8.4", - "io.gatling:gatling-commons-shared:3.8.4", - "io.gatling:gatling-commons:3.8.4", - "io.gatling:gatling-core-java:3.8.4", - "io.gatling:gatling-core:3.8.4", - "io.gatling:gatling-jsonpath:3.8.4", - "io.gatling:gatling-netty-util:3.8.4", - "io.gatling:gatling-redis:3.8.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.pebbletemplates:pebble:3.1.5", - "io.suzaku:boopickle_2.13:1.3.3", - "net.debasishg:redisclient_2.13:3.42", - "net.jodah:typetools:0.6.3", - "net.sf.saxon:Saxon-HE:10.6", - "org.apache.commons:commons-pool2:2.8.0", - "org.jodd:jodd-lagarto:6.0.6", - "org.jodd:jodd-util:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", - "org.scala-lang:scala-library:2.13.8", - "org.scala-lang:scala-reflect:2.13.8", - "org.simpleflatmapper:lightning-csv:8.2.3", - "org.simpleflatmapper:sfm-util:8.2.3", - "org.slf4j:slf4j-api:1.7.36", - "org.typelevel:spire-macros_2.13:0.17.0", - "org.unbescape:unbescape:1.1.6.RELEASE" - ], - "directDependencies": [ - "com.google.code.findbugs:jsr305:3.0.2", - "io.gatling:gatling-core-java:3.8.4", - "io.gatling:gatling-redis:3.8.4", - "org.scala-lang:scala-library:2.13.8" - ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-redis-java/3.8.4/gatling-redis-java-3.8.4.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-redis-java/3.8.4/gatling-redis-java-3.8.4.jar" - ], - "packages": [ - "io.gatling.javaapi.redis" - ], - "sha256": "2f16fb3663908fe578ff1171803fc98d84239b0b78c6cc0ac33bad01e316a413", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-redis-java/3.8.4/gatling-redis-java-3.8.4.jar" - }, - { - "coord": "io.gatling:gatling-redis-java:jar:sources:3.8.4", - "dependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.11", - "ch.qos.logback:logback-core:jar:sources:1.2.11", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.github.ben-manes.caffeine:caffeine:jar:sources:3.1.1", - "com.github.scopt:scopt_2.13:jar:sources:4.1.0", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.9.0", + "ch.qos.logback:logback-classic:jar:sources:1.2.8", + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "com.github.ben-manes.caffeine:caffeine:jar:sources:3.0.5", + "com.github.scopt:scopt_2.13:jar:sources:4.0.0", + "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.6.1", "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.5", - "com.typesafe:config:jar:sources:1.4.2", - "io.burt:jmespath-core:jar:sources:0.5.1", - "io.burt:jmespath-jackson:jar:sources:0.5.1", - "io.gatling:gatling-commons-shared-unstable:jar:sources:3.8.4", - "io.gatling:gatling-commons-shared:jar:sources:3.8.4", - "io.gatling:gatling-commons:jar:sources:3.8.4", - "io.gatling:gatling-core-java:jar:sources:3.8.4", - "io.gatling:gatling-core:jar:sources:3.8.4", - "io.gatling:gatling-jsonpath:jar:sources:3.8.4", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.gatling:gatling-redis:jar:sources:3.8.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.pebbletemplates:pebble:jar:sources:3.1.5", + "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.2", + "com.typesafe:config:jar:sources:1.4.1", + "io.burt:jmespath-core:jar:sources:0.5.0", + "io.burt:jmespath-jackson:jar:sources:0.5.0", + "io.gatling:gatling-commons-shared-unstable:jar:sources:3.5.1", + "io.gatling:gatling-commons-shared:jar:sources:3.5.1", + "io.gatling:gatling-commons:jar:sources:3.5.1", + "io.gatling:gatling-core:jar:sources:3.5.1", + "io.gatling:gatling-http-client:jar:sources:3.5.1", + "io.gatling:gatling-http:jar:sources:3.5.1", + "io.gatling:gatling-jsonpath:jar:sources:3.5.1", + "io.gatling:gatling-netty-util:jar:sources:3.5.1", + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-codec-dns:jar:sources:4.1.58.Final", + "io.netty:netty-codec-http2:jar:sources:4.1.72.Final", + "io.netty:netty-codec-http:jar:sources:4.1.72.Final", + "io.netty:netty-codec:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-handler-proxy:jar:sources:4.1.72.Final", + "io.netty:netty-handler:jar:sources:4.1.72.Final", + "io.netty:netty-resolver-dns:jar:sources:4.1.58.Final", + "io.netty:netty-resolver:jar:sources:4.1.72.Final", + "io.netty:netty-tcnative-boringssl-static:jar:sources:2.0.46.Final", + "io.netty:netty-transport-native-epoll:jar:sources:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final", + "io.pebbletemplates:pebble:jar:sources:3.1.4", "io.suzaku:boopickle_2.13:jar:sources:1.3.3", - "net.debasishg:redisclient_2.13:jar:sources:3.42", - "net.jodah:typetools:jar:sources:0.6.3", - "net.sf.saxon:Saxon-HE:jar:sources:10.6", - "org.apache.commons:commons-pool2:jar:sources:2.8.0", - "org.jodd:jodd-lagarto:jar:sources:6.0.6", - "org.jodd:jodd-util:jar:sources:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "net.sf.saxon:Saxon-HE:jar:sources:10.3", + "org.bouncycastle:bcpkix-jdk15on:jar:sources:1.70", + "org.jodd:jodd-lagarto:jar:sources:6.0.3", + "org.jodd:jodd-util:jar:sources:6.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", + "org.scala-lang.modules:scala-swing_2.13:jar:sources:3.0.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", "org.simpleflatmapper:lightning-csv:jar:sources:8.2.3", "org.simpleflatmapper:sfm-util:jar:sources:8.2.3", - "org.slf4j:slf4j-api:jar:sources:1.7.36", + "org.slf4j:slf4j-api:jar:sources:1.7.26", "org.typelevel:spire-macros_2.13:jar:sources:0.17.0", "org.unbescape:unbescape:jar:sources:1.1.6.RELEASE" ], "directDependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "io.gatling:gatling-core-java:jar:sources:3.8.4", - "io.gatling:gatling-redis:jar:sources:3.8.4", + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", + "io.gatling:gatling-core:jar:sources:3.5.1", + "io.gatling:gatling-http:jar:sources:3.5.1", + "io.netty:netty-codec-http:jar:sources:4.1.72.Final", + "org.bouncycastle:bcpkix-jdk15on:jar:sources:1.70", + "org.scala-lang.modules:scala-swing_2.13:jar:sources:3.0.0", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-redis-java/3.8.4/gatling-redis-java-3.8.4-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-recorder/3.5.1/gatling-recorder-3.5.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-redis-java/3.8.4/gatling-redis-java-3.8.4-sources.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-recorder/3.5.1/gatling-recorder-3.5.1-sources.jar" ], "packages": [], - "sha256": "860ba97791d2d37c73781e45c1d6837934e6ec47b6b39930a02ddb5380a4065a", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-redis-java/3.8.4/gatling-redis-java-3.8.4-sources.jar" + "sha256": "e519601b2b36acf65dcafd2a431c4ee6b7e492560556d95e952352d2840ab9ff", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-recorder/3.5.1/gatling-recorder-3.5.1-sources.jar" }, { - "coord": "io.gatling:gatling-redis:3.8.4", + "coord": "io.gatling:gatling-redis:3.5.1", "dependencies": [ - "ch.qos.logback:logback-classic:1.2.11", - "ch.qos.logback:logback-core:1.2.11", - "com.fasterxml.jackson.core:jackson-annotations:2.13.4", - "com.fasterxml.jackson.core:jackson-core:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "com.github.ben-manes.caffeine:caffeine:3.1.1", - "com.github.scopt:scopt_2.13:4.1.0", - "com.softwaremill.quicklens:quicklens_2.13:1.9.0", + "ch.qos.logback:logback-classic:1.2.8", + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "com.github.ben-manes.caffeine:caffeine:3.0.5", + "com.github.scopt:scopt_2.13:4.0.0", + "com.softwaremill.quicklens:quicklens_2.13:1.6.1", "com.typesafe.akka:akka-actor_2.13:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:3.9.5", - "com.typesafe:config:1.4.2", - "io.burt:jmespath-core:0.5.1", - "io.burt:jmespath-jackson:0.5.1", - "io.gatling:gatling-commons-shared-unstable:3.8.4", - "io.gatling:gatling-commons-shared:3.8.4", - "io.gatling:gatling-commons:3.8.4", - "io.gatling:gatling-core:3.8.4", - "io.gatling:gatling-jsonpath:3.8.4", - "io.gatling:gatling-netty-util:3.8.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.pebbletemplates:pebble:3.1.5", + "com.typesafe.scala-logging:scala-logging_2.13:3.9.2", + "com.typesafe:config:1.4.1", + "io.burt:jmespath-core:0.5.0", + "io.burt:jmespath-jackson:0.5.0", + "io.gatling:gatling-commons-shared-unstable:3.5.1", + "io.gatling:gatling-commons-shared:3.5.1", + "io.gatling:gatling-commons:3.5.1", + "io.gatling:gatling-core:3.5.1", + "io.gatling:gatling-jsonpath:3.5.1", + "io.gatling:gatling-netty-util:3.5.1", + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-handler:4.1.72.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:4.1.58.Final", + "io.netty:netty-transport:4.1.72.Final", + "io.pebbletemplates:pebble:3.1.4", "io.suzaku:boopickle_2.13:1.3.3", - "net.debasishg:redisclient_2.13:3.42", - "net.sf.saxon:Saxon-HE:10.6", + "net.debasishg:redisclient_2.13:3.30", + "net.sf.saxon:Saxon-HE:10.3", "org.apache.commons:commons-pool2:2.8.0", - "org.jodd:jodd-lagarto:6.0.6", - "org.jodd:jodd-util:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", + "org.jodd:jodd-lagarto:6.0.3", + "org.jodd:jodd-util:6.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", "org.simpleflatmapper:lightning-csv:8.2.3", "org.simpleflatmapper:sfm-util:8.2.3", - "org.slf4j:slf4j-api:1.7.36", + "org.slf4j:slf4j-api:1.7.26", "org.typelevel:spire-macros_2.13:0.17.0", "org.unbescape:unbescape:1.1.6.RELEASE" ], "directDependencies": [ - "io.gatling:gatling-core:3.8.4", - "net.debasishg:redisclient_2.13:3.42", + "io.gatling:gatling-core:3.5.1", + "net.debasishg:redisclient_2.13:3.30", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-redis/3.8.4/gatling-redis-3.8.4.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-redis/3.5.1/gatling-redis-3.5.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-redis/3.8.4/gatling-redis-3.8.4.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-redis/3.5.1/gatling-redis-3.5.1.jar" ], "packages": [ "io.gatling.redis", - "io.gatling.redis.feeder" + "io.gatling.redis.feeder", + "io.gatling.redis.util" ], - "sha256": "b51385cc205e5da600a98b522b75fd373077ca8ef92bd96c9a6f96321844aee5", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-redis/3.8.4/gatling-redis-3.8.4.jar" + "sha256": "798b9e18935ba3e010c08ff1ebba94c6efb539075160d18dd9a718a64deb66b9", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-redis/3.5.1/gatling-redis-3.5.1.jar" }, { - "coord": "io.gatling:gatling-redis:jar:sources:3.8.4", + "coord": "io.gatling:gatling-redis:jar:sources:3.5.1", "dependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.11", - "ch.qos.logback:logback-core:jar:sources:1.2.11", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.13.4", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "com.github.ben-manes.caffeine:caffeine:jar:sources:3.1.1", - "com.github.scopt:scopt_2.13:jar:sources:4.1.0", - "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.9.0", + "ch.qos.logback:logback-classic:jar:sources:1.2.8", + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "com.github.ben-manes.caffeine:caffeine:jar:sources:3.0.5", + "com.github.scopt:scopt_2.13:jar:sources:4.0.0", + "com.softwaremill.quicklens:quicklens_2.13:jar:sources:1.6.1", "com.typesafe.akka:akka-actor_2.13:jar:sources:2.6.18", "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.6.18", - "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.5", - "com.typesafe:config:jar:sources:1.4.2", - "io.burt:jmespath-core:jar:sources:0.5.1", - "io.burt:jmespath-jackson:jar:sources:0.5.1", - "io.gatling:gatling-commons-shared-unstable:jar:sources:3.8.4", - "io.gatling:gatling-commons-shared:jar:sources:3.8.4", - "io.gatling:gatling-commons:jar:sources:3.8.4", - "io.gatling:gatling-core:jar:sources:3.8.4", - "io.gatling:gatling-jsonpath:jar:sources:3.8.4", - "io.gatling:gatling-netty-util:jar:sources:3.8.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.pebbletemplates:pebble:jar:sources:3.1.5", + "com.typesafe.scala-logging:scala-logging_2.13:jar:sources:3.9.2", + "com.typesafe:config:jar:sources:1.4.1", + "io.burt:jmespath-core:jar:sources:0.5.0", + "io.burt:jmespath-jackson:jar:sources:0.5.0", + "io.gatling:gatling-commons-shared-unstable:jar:sources:3.5.1", + "io.gatling:gatling-commons-shared:jar:sources:3.5.1", + "io.gatling:gatling-commons:jar:sources:3.5.1", + "io.gatling:gatling-core:jar:sources:3.5.1", + "io.gatling:gatling-jsonpath:jar:sources:3.5.1", + "io.gatling:gatling-netty-util:jar:sources:3.5.1", + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-handler:jar:sources:4.1.72.Final", + "io.netty:netty-transport-native-epoll:jar:sources:4.1.58.Final", + "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final", + "io.pebbletemplates:pebble:jar:sources:3.1.4", "io.suzaku:boopickle_2.13:jar:sources:1.3.3", - "net.debasishg:redisclient_2.13:jar:sources:3.42", - "net.sf.saxon:Saxon-HE:jar:sources:10.6", + "net.debasishg:redisclient_2.13:jar:sources:3.30", + "net.sf.saxon:Saxon-HE:jar:sources:10.3", "org.apache.commons:commons-pool2:jar:sources:2.8.0", - "org.jodd:jodd-lagarto:jar:sources:6.0.6", - "org.jodd:jodd-util:jar:sources:6.1.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "org.jodd:jodd-lagarto:jar:sources:6.0.3", + "org.jodd:jodd-util:jar:sources:6.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", "org.simpleflatmapper:lightning-csv:jar:sources:8.2.3", "org.simpleflatmapper:sfm-util:jar:sources:8.2.3", - "org.slf4j:slf4j-api:jar:sources:1.7.36", + "org.slf4j:slf4j-api:jar:sources:1.7.26", "org.typelevel:spire-macros_2.13:jar:sources:0.17.0", "org.unbescape:unbescape:jar:sources:1.1.6.RELEASE" ], "directDependencies": [ - "io.gatling:gatling-core:jar:sources:3.8.4", - "net.debasishg:redisclient_2.13:jar:sources:3.42", + "io.gatling:gatling-core:jar:sources:3.5.1", + "net.debasishg:redisclient_2.13:jar:sources:3.30", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-redis/3.8.4/gatling-redis-3.8.4-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/gatling/gatling-redis/3.8.4/gatling-redis-3.8.4-sources.jar" - ], - "packages": [], - "sha256": "c8f1167124b9375bb851b0f1ce74a0525ccae0f2db5c3c17fa8e99d1f7126c04", - "url": "https://repo1.maven.org/maven2/io/gatling/gatling-redis/3.8.4/gatling-redis-3.8.4-sources.jar" - }, - { - "coord": "io.github.classgraph:classgraph:4.8.78", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/io/github/classgraph/classgraph/4.8.78/classgraph-4.8.78.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/github/classgraph/classgraph/4.8.78/classgraph-4.8.78.jar" - ], - "packages": [ - "io.github.classgraph", - "nonapi.io.github.classgraph.classloaderhandler", - "nonapi.io.github.classgraph.classpath", - "nonapi.io.github.classgraph.concurrency", - "nonapi.io.github.classgraph.fastzipfilereader", - "nonapi.io.github.classgraph.fileslice", - "nonapi.io.github.classgraph.fileslice.reader", - "nonapi.io.github.classgraph.json", - "nonapi.io.github.classgraph.recycler", - "nonapi.io.github.classgraph.scanspec", - "nonapi.io.github.classgraph.types", - "nonapi.io.github.classgraph.utils" - ], - "sha256": "d1381487f5011e7d59192805c8868a8c7bfaac102f8472523321cd5c07319b29", - "url": "https://repo1.maven.org/maven2/io/github/classgraph/classgraph/4.8.78/classgraph-4.8.78.jar" - }, - { - "coord": "io.github.classgraph:classgraph:jar:sources:4.8.78", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/io/github/classgraph/classgraph/4.8.78/classgraph-4.8.78-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/gatling/gatling-redis/3.5.1/gatling-redis-3.5.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/github/classgraph/classgraph/4.8.78/classgraph-4.8.78-sources.jar" + "https://repo1.maven.org/maven2/io/gatling/gatling-redis/3.5.1/gatling-redis-3.5.1-sources.jar" ], "packages": [], - "sha256": "cc449db0a21b955e3ad2d39a7373187fd1f844c4c498147f71b4031169884c2b", - "url": "https://repo1.maven.org/maven2/io/github/classgraph/classgraph/4.8.78/classgraph-4.8.78-sources.jar" + "sha256": "af4a8f01245a5008cde9fa3e77098459c1cfafac72aec82531eab2163582460e", + "url": "https://repo1.maven.org/maven2/io/gatling/gatling-redis/3.5.1/gatling-redis-3.5.1-sources.jar" }, { - "coord": "io.github.paoloboni:spray-json-derived-codecs_2.13:2.3.9", + "coord": "io.github.paoloboni:spray-json-derived-codecs_2.13:2.3.4", "dependencies": [ "com.chuusai:shapeless_2.13:2.3.3", - "io.spray:spray-json_2.13:1.3.6", + "io.spray:spray-json_2.13:1.3.5", "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ "com.chuusai:shapeless_2.13:2.3.3", - "io.spray:spray-json_2.13:1.3.6", + "io.spray:spray-json_2.13:1.3.5", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/github/paoloboni/spray-json-derived-codecs_2.13/2.3.9/spray-json-derived-codecs_2.13-2.3.9.jar", + "file": "v1/https/repo1.maven.org/maven2/io/github/paoloboni/spray-json-derived-codecs_2.13/2.3.4/spray-json-derived-codecs_2.13-2.3.4.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/github/paoloboni/spray-json-derived-codecs_2.13/2.3.9/spray-json-derived-codecs_2.13-2.3.9.jar" + "https://repo1.maven.org/maven2/io/github/paoloboni/spray-json-derived-codecs_2.13/2.3.4/spray-json-derived-codecs_2.13-2.3.4.jar" ], "packages": [ "spray.json.derived" ], - "sha256": "55cfbaf3c7ef21885f7dc3ddef6ad7b8f994946c718825e57a5895dc3b9d1f29", - "url": "https://repo1.maven.org/maven2/io/github/paoloboni/spray-json-derived-codecs_2.13/2.3.9/spray-json-derived-codecs_2.13-2.3.9.jar" + "sha256": "bba4647901952cb7fb4bb50325b1c42d11b4c8d8981e7c76c4c1275f15fb84b1", + "url": "https://repo1.maven.org/maven2/io/github/paoloboni/spray-json-derived-codecs_2.13/2.3.4/spray-json-derived-codecs_2.13-2.3.4.jar" }, { - "coord": "io.github.paoloboni:spray-json-derived-codecs_2.13:jar:sources:2.3.9", + "coord": "io.github.paoloboni:spray-json-derived-codecs_2.13:jar:sources:2.3.4", "dependencies": [ "com.chuusai:shapeless_2.13:jar:sources:2.3.3", - "io.spray:spray-json_2.13:jar:sources:1.3.6", + "io.spray:spray-json_2.13:jar:sources:1.3.5", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ "com.chuusai:shapeless_2.13:jar:sources:2.3.3", - "io.spray:spray-json_2.13:jar:sources:1.3.6", + "io.spray:spray-json_2.13:jar:sources:1.3.5", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/github/paoloboni/spray-json-derived-codecs_2.13/2.3.9/spray-json-derived-codecs_2.13-2.3.9-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/github/paoloboni/spray-json-derived-codecs_2.13/2.3.4/spray-json-derived-codecs_2.13-2.3.4-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/github/paoloboni/spray-json-derived-codecs_2.13/2.3.9/spray-json-derived-codecs_2.13-2.3.9-sources.jar" + "https://repo1.maven.org/maven2/io/github/paoloboni/spray-json-derived-codecs_2.13/2.3.4/spray-json-derived-codecs_2.13-2.3.4-sources.jar" ], "packages": [], - "sha256": "30005d4840027be515d0830b09913c2fab6b942f798a11ff0d58d6c690264510", - "url": "https://repo1.maven.org/maven2/io/github/paoloboni/spray-json-derived-codecs_2.13/2.3.9/spray-json-derived-codecs_2.13-2.3.9-sources.jar" + "sha256": "6d6171228e885feebdc7f0fadffc1804ad547d5faaa2615cd14b6c9f7fe127c0", + "url": "https://repo1.maven.org/maven2/io/github/paoloboni/spray-json-derived-codecs_2.13/2.3.4/spray-json-derived-codecs_2.13-2.3.4-sources.jar" }, { - "coord": "io.grpc:grpc-api:1.50.0", + "coord": "io.grpc:grpc-api:1.44.0", "dependencies": [ "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:guava:31.1-jre", - "io.grpc:grpc-context:1.50.0" + "com.google.errorprone:error_prone_annotations:2.10.0", + "com.google.guava:guava:31.0.1-jre", + "io.grpc:grpc-context:1.44.0" ], "directDependencies": [ "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:guava:31.1-jre", - "io.grpc:grpc-context:1.50.0" + "com.google.errorprone:error_prone_annotations:2.10.0", + "com.google.guava:guava:31.0.1-jre", + "io.grpc:grpc-context:1.44.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-api/1.50.0/grpc-api-1.50.0.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-api/1.44.0/grpc-api-1.44.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-api/1.50.0/grpc-api-1.50.0.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-api/1.44.0/grpc-api-1.44.0.jar" ], "packages": [ "io.grpc" ], - "sha256": "db8c64df715f540ee2df76486f686138719786f1e253fad3d615151a287b5e45", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-api/1.50.0/grpc-api-1.50.0.jar" + "sha256": "a533d9343f923717544d326004d1c309a2fc0cc23aa5d6770674c4510a6cbedf", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-api/1.44.0/grpc-api-1.44.0.jar" }, { - "coord": "io.grpc:grpc-api:jar:sources:1.50.0", + "coord": "io.grpc:grpc-api:jar:sources:1.44.0", "dependencies": [ "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:guava:jar:sources:31.1-jre", - "io.grpc:grpc-context:jar:sources:1.50.0" + "com.google.errorprone:error_prone_annotations:jar:sources:2.10.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "io.grpc:grpc-context:jar:sources:1.44.0" ], "directDependencies": [ "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:guava:jar:sources:31.1-jre", - "io.grpc:grpc-context:jar:sources:1.50.0" + "com.google.errorprone:error_prone_annotations:jar:sources:2.10.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "io.grpc:grpc-context:jar:sources:1.44.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-api/1.50.0/grpc-api-1.50.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-api/1.44.0/grpc-api-1.44.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-api/1.50.0/grpc-api-1.50.0-sources.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-api/1.44.0/grpc-api-1.44.0-sources.jar" ], "packages": [], - "sha256": "f6397fda4284d87bfa246a0f2a549a8a3604a21688b635c6b38e070ba742dfb0", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-api/1.50.0/grpc-api-1.50.0-sources.jar" + "sha256": "87fd404d0eef342319c32959d282d53097fe85353fd81c2c6829d8f91b45548c", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-api/1.44.0/grpc-api-1.44.0-sources.jar" }, { - "coord": "io.grpc:grpc-context:1.50.0", + "coord": "io.grpc:grpc-context:1.44.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-context/1.50.0/grpc-context-1.50.0.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-context/1.44.0/grpc-context-1.44.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-context/1.50.0/grpc-context-1.50.0.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-context/1.44.0/grpc-context-1.44.0.jar" ], "packages": [ "io.grpc" ], - "sha256": "04156f7ad11235900a77ebd348e710ad76a0d2cbefde527c1f90b38fba1ae908", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-context/1.50.0/grpc-context-1.50.0.jar" + "sha256": "d89ae95afc82549f1d9b2687a08091247744995ad671132c509fa757deed3506", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-context/1.44.0/grpc-context-1.44.0.jar" }, { - "coord": "io.grpc:grpc-context:jar:sources:1.50.0", + "coord": "io.grpc:grpc-context:jar:sources:1.44.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-context/1.50.0/grpc-context-1.50.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-context/1.44.0/grpc-context-1.44.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-context/1.50.0/grpc-context-1.50.0-sources.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-context/1.44.0/grpc-context-1.44.0-sources.jar" ], "packages": [], - "sha256": "4d835c57fc77a6ca6cf0ce84460d5215051c79d044c7e95f6390a93a9f9eb004", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-context/1.50.0/grpc-context-1.50.0-sources.jar" + "sha256": "40adb83fdfd83f67b19a90034a91ecb0c64775f93011ee790d70b02f526f60a4", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-context/1.44.0/grpc-context-1.44.0-sources.jar" }, { - "coord": "io.grpc:grpc-core:1.50.0", + "coord": "io.grpc:grpc-core:1.44.0", "dependencies": [ "com.google.android:annotations:4.1.1.4", - "com.google.code.gson:gson:2.9.1", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:guava:31.1-jre", - "io.grpc:grpc-api:1.50.0", - "io.perfmark:perfmark-api:0.25.0", - "org.codehaus.mojo:animal-sniffer-annotations:1.21" + "com.google.code.gson:gson:2.9.0", + "com.google.errorprone:error_prone_annotations:2.10.0", + "com.google.guava:guava:31.0.1-jre", + "io.grpc:grpc-api:1.44.0", + "io.perfmark:perfmark-api:0.23.0", + "org.codehaus.mojo:animal-sniffer-annotations:1.19" ], "directDependencies": [ "com.google.android:annotations:4.1.1.4", - "com.google.code.gson:gson:2.9.1", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:guava:31.1-jre", - "io.grpc:grpc-api:1.50.0", - "io.perfmark:perfmark-api:0.25.0", - "org.codehaus.mojo:animal-sniffer-annotations:1.21" + "com.google.code.gson:gson:2.9.0", + "com.google.errorprone:error_prone_annotations:2.10.0", + "com.google.guava:guava:31.0.1-jre", + "io.grpc:grpc-api:1.44.0", + "io.perfmark:perfmark-api:0.23.0", + "org.codehaus.mojo:animal-sniffer-annotations:1.19" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-core/1.50.0/grpc-core-1.50.0.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-core/1.44.0/grpc-core-1.44.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-core/1.50.0/grpc-core-1.50.0.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-core/1.44.0/grpc-core-1.44.0.jar" ], "packages": [ "io.grpc.inprocess", "io.grpc.internal", "io.grpc.util" ], - "sha256": "90125198487e7ca94c5f3697f510b7560d740fdc59bcd6b0347df429a53c659a", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-core/1.50.0/grpc-core-1.50.0.jar" + "sha256": "3c953b6d4e84d77e2e102c9fd9ccddefedf360694e1b1fa91569369a84158b9d", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-core/1.44.0/grpc-core-1.44.0.jar" }, { - "coord": "io.grpc:grpc-core:jar:sources:1.50.0", + "coord": "io.grpc:grpc-core:jar:sources:1.44.0", "dependencies": [ "com.google.android:annotations:jar:sources:4.1.1.4", - "com.google.code.gson:gson:jar:sources:2.9.1", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:guava:jar:sources:31.1-jre", - "io.grpc:grpc-api:jar:sources:1.50.0", - "io.perfmark:perfmark-api:jar:sources:0.25.0", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.21" + "com.google.code.gson:gson:jar:sources:2.9.0", + "com.google.errorprone:error_prone_annotations:jar:sources:2.10.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "io.grpc:grpc-api:jar:sources:1.44.0", + "io.perfmark:perfmark-api:jar:sources:0.23.0", + "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.19" ], "directDependencies": [ "com.google.android:annotations:jar:sources:4.1.1.4", - "com.google.code.gson:gson:jar:sources:2.9.1", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:guava:jar:sources:31.1-jre", - "io.grpc:grpc-api:jar:sources:1.50.0", - "io.perfmark:perfmark-api:jar:sources:0.25.0", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.21" + "com.google.code.gson:gson:jar:sources:2.9.0", + "com.google.errorprone:error_prone_annotations:jar:sources:2.10.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "io.grpc:grpc-api:jar:sources:1.44.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.50.0/grpc-core-1.50.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-core/1.44.0/grpc-core-1.44.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-core/1.50.0/grpc-core-1.50.0-sources.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-core/1.44.0/grpc-core-1.44.0-sources.jar" ], "packages": [], - "sha256": "ea7b1f1f7e8e37187dc6a693ade0b842f1b681625b62ef3c65658d3bd85567a4", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-core/1.50.0/grpc-core-1.50.0-sources.jar" + "sha256": "d93a285d7feb68a61456057fc11a2be48cdd2b1e2ee8b48ee596ba79617be742", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-core/1.44.0/grpc-core-1.44.0-sources.jar" }, { - "coord": "io.grpc:grpc-netty:1.50.0", + "coord": "io.grpc:grpc-netty:1.44.0", "dependencies": [ - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:guava:31.1-jre", - "io.grpc:grpc-core:1.50.0", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-http2:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec-socks:4.1.79.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.perfmark:perfmark-api:0.25.0" + "com.google.errorprone:error_prone_annotations:2.10.0", + "com.google.guava:guava:31.0.1-jre", + "io.grpc:grpc-core:1.44.0", + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-codec-http2:4.1.72.Final", + "io.netty:netty-codec-http:4.1.72.Final", + "io.netty:netty-codec-socks:4.1.72.Final", + "io.netty:netty-codec:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-handler-proxy:4.1.72.Final", + "io.netty:netty-handler:4.1.72.Final", + "io.netty:netty-resolver:4.1.72.Final", + "io.netty:netty-tcnative-classes:2.0.46.Final", + "io.netty:netty-transport:4.1.72.Final", + "io.perfmark:perfmark-api:0.23.0" ], "directDependencies": [ - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:guava:31.1-jre", - "io.grpc:grpc-core:1.50.0", - "io.netty:netty-codec-http2:4.1.79.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.perfmark:perfmark-api:0.25.0" + "com.google.errorprone:error_prone_annotations:2.10.0", + "com.google.guava:guava:31.0.1-jre", + "io.grpc:grpc-core:1.44.0", + "io.netty:netty-codec-http2:4.1.72.Final", + "io.netty:netty-handler-proxy:4.1.72.Final", + "io.perfmark:perfmark-api:0.23.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-netty/1.50.0/grpc-netty-1.50.0.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-netty/1.44.0/grpc-netty-1.44.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-netty/1.50.0/grpc-netty-1.50.0.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-netty/1.44.0/grpc-netty-1.44.0.jar" ], "packages": [ "io.grpc.netty" ], - "sha256": "004cf659b079bbab6047969d08ca98ec13f6f892cecb084c1ffa2193a8e6f799", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-netty/1.50.0/grpc-netty-1.50.0.jar" + "sha256": "34c223a38c5acfa402966ba083566394821d7e7081c93eeb4df3f424df622a18", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-netty/1.44.0/grpc-netty-1.44.0.jar" }, { - "coord": "io.grpc:grpc-netty:jar:sources:1.50.0", + "coord": "io.grpc:grpc-netty:jar:sources:1.44.0", "dependencies": [ - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:guava:jar:sources:31.1-jre", - "io.grpc:grpc-core:jar:sources:1.50.0", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http2:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec-socks:jar:sources:4.1.79.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.perfmark:perfmark-api:jar:sources:0.25.0" + "com.google.errorprone:error_prone_annotations:jar:sources:2.10.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "io.grpc:grpc-core:jar:sources:1.44.0", + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-codec-http2:jar:sources:4.1.72.Final", + "io.netty:netty-codec-http:jar:sources:4.1.72.Final", + "io.netty:netty-codec-socks:jar:sources:4.1.72.Final", + "io.netty:netty-codec:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-handler-proxy:jar:sources:4.1.72.Final", + "io.netty:netty-handler:jar:sources:4.1.72.Final", + "io.netty:netty-resolver:jar:sources:4.1.72.Final", + "io.netty:netty-tcnative-classes:jar:sources:2.0.46.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final", + "io.perfmark:perfmark-api:jar:sources:0.23.0" ], "directDependencies": [ - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:guava:jar:sources:31.1-jre", - "io.grpc:grpc-core:jar:sources:1.50.0", - "io.netty:netty-codec-http2:jar:sources:4.1.79.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.perfmark:perfmark-api:jar:sources:0.25.0" + "com.google.errorprone:error_prone_annotations:jar:sources:2.10.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "io.grpc:grpc-core:jar:sources:1.44.0", + "io.netty:netty-codec-http2:jar:sources:4.1.72.Final", + "io.netty:netty-handler-proxy:jar:sources:4.1.72.Final", + "io.perfmark:perfmark-api:jar:sources:0.23.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-netty/1.50.0/grpc-netty-1.50.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-netty/1.44.0/grpc-netty-1.44.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-netty/1.50.0/grpc-netty-1.50.0-sources.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-netty/1.44.0/grpc-netty-1.44.0-sources.jar" ], "packages": [], - "sha256": "5e5ea09c9b3b3570f73c0127baca51dc253d912387cb9aacbcdbad6b5174d416", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-netty/1.50.0/grpc-netty-1.50.0-sources.jar" + "sha256": "7e064d73220379142e277f13dd48fdf4ac9b216440402101d155d68896912e9e", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-netty/1.44.0/grpc-netty-1.44.0-sources.jar" }, { - "coord": "io.grpc:grpc-protobuf-lite:1.50.0", + "coord": "io.grpc:grpc-protobuf-lite:1.44.0", "dependencies": [ "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:guava:31.1-jre", - "io.grpc:grpc-api:1.50.0", - "io.grpc:grpc-context:1.50.0" + "com.google.errorprone:error_prone_annotations:2.10.0", + "com.google.guava:guava:31.0.1-jre", + "io.grpc:grpc-api:1.44.0", + "io.grpc:grpc-context:1.44.0" ], "directDependencies": [ "com.google.code.findbugs:jsr305:3.0.2", - "com.google.guava:guava:31.1-jre", - "io.grpc:grpc-api:1.50.0" + "com.google.guava:guava:31.0.1-jre", + "io.grpc:grpc-api:1.44.0" ], "exclusions": [ "com.google.protobuf:protobuf-javalite" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.50.0/grpc-protobuf-lite-1.50.0.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.44.0/grpc-protobuf-lite-1.44.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.50.0/grpc-protobuf-lite-1.50.0.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.44.0/grpc-protobuf-lite-1.44.0.jar" ], "packages": [ "io.grpc.protobuf.lite" ], - "sha256": "9a83de15e77226903d5789a88187c2fb874c29ab26a86fb1ba1372e66530bc32", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.50.0/grpc-protobuf-lite-1.50.0.jar" + "sha256": "8231fcabf494b25284fd5f5094ced46f4b17c74821839126b9d891ab3b69c3e2", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.44.0/grpc-protobuf-lite-1.44.0.jar" }, { - "coord": "io.grpc:grpc-protobuf-lite:jar:sources:1.50.0", + "coord": "io.grpc:grpc-protobuf-lite:jar:sources:1.44.0", "dependencies": [ "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:guava:jar:sources:31.1-jre", - "io.grpc:grpc-api:jar:sources:1.50.0", - "io.grpc:grpc-context:jar:sources:1.50.0" + "com.google.errorprone:error_prone_annotations:jar:sources:2.10.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "io.grpc:grpc-api:jar:sources:1.44.0", + "io.grpc:grpc-context:jar:sources:1.44.0" ], "directDependencies": [ "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.guava:guava:jar:sources:31.1-jre", - "io.grpc:grpc-api:jar:sources:1.50.0" + "com.google.guava:guava:jar:sources:31.0.1-jre", + "io.grpc:grpc-api:jar:sources:1.44.0" ], "exclusions": [ "com.google.protobuf:protobuf-javalite" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.50.0/grpc-protobuf-lite-1.50.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.44.0/grpc-protobuf-lite-1.44.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.50.0/grpc-protobuf-lite-1.50.0-sources.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.44.0/grpc-protobuf-lite-1.44.0-sources.jar" ], "packages": [], - "sha256": "497764000a1a068423d4d235df3bd76a8eb4c79a4d3ca9a9f65c64cc319bf3fa", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.50.0/grpc-protobuf-lite-1.50.0-sources.jar" + "sha256": "77e83e91d503a997798c957074c63ce18e82a35d8b67f0491bf57baab765e391", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf-lite/1.44.0/grpc-protobuf-lite-1.44.0-sources.jar" }, { - "coord": "io.grpc:grpc-protobuf:1.50.0", + "coord": "io.grpc:grpc-protobuf:1.44.0", "dependencies": [ - "com.google.api.grpc:proto-google-common-protos:2.9.0", + "com.google.api.grpc:proto-google-common-protos:2.0.1", "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:guava:31.1-jre", - "com.google.protobuf:protobuf-java:3.21.7", - "io.grpc:grpc-api:1.50.0", - "io.grpc:grpc-context:1.50.0", - "io.grpc:grpc-protobuf-lite:1.50.0" + "com.google.errorprone:error_prone_annotations:2.10.0", + "com.google.guava:guava:31.0.1-jre", + "com.google.protobuf:protobuf-java:3.19.3", + "io.grpc:grpc-api:1.44.0", + "io.grpc:grpc-context:1.44.0", + "io.grpc:grpc-protobuf-lite:1.44.0" ], "directDependencies": [ - "com.google.api.grpc:proto-google-common-protos:2.9.0", + "com.google.api.grpc:proto-google-common-protos:2.0.1", "com.google.code.findbugs:jsr305:3.0.2", - "com.google.guava:guava:31.1-jre", - "com.google.protobuf:protobuf-java:3.21.7", - "io.grpc:grpc-api:1.50.0", - "io.grpc:grpc-protobuf-lite:1.50.0" + "com.google.guava:guava:31.0.1-jre", + "com.google.protobuf:protobuf-java:3.19.3", + "io.grpc:grpc-api:1.44.0", + "io.grpc:grpc-protobuf-lite:1.44.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.50.0/grpc-protobuf-1.50.0.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.44.0/grpc-protobuf-1.44.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.50.0/grpc-protobuf-1.50.0.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.44.0/grpc-protobuf-1.44.0.jar" ], "packages": [ "io.grpc.protobuf" ], - "sha256": "c551b963d6e664d1008e41585ab54375cc3e810b0cabd58c46be7c0bed3d0472", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.50.0/grpc-protobuf-1.50.0.jar" + "sha256": "7cc4779ee149baab1c3ca1caccfb7e0c86d89944fbcf84d75460a6e4617a231c", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.44.0/grpc-protobuf-1.44.0.jar" }, { - "coord": "io.grpc:grpc-protobuf:jar:sources:1.50.0", + "coord": "io.grpc:grpc-protobuf:jar:sources:1.44.0", "dependencies": [ - "com.google.api.grpc:proto-google-common-protos:jar:sources:2.9.0", + "com.google.api.grpc:proto-google-common-protos:jar:sources:2.0.1", "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:guava:jar:sources:31.1-jre", - "com.google.protobuf:protobuf-java:jar:sources:3.21.7", - "io.grpc:grpc-api:jar:sources:1.50.0", - "io.grpc:grpc-context:jar:sources:1.50.0", - "io.grpc:grpc-protobuf-lite:jar:sources:1.50.0" + "com.google.errorprone:error_prone_annotations:jar:sources:2.10.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "com.google.protobuf:protobuf-java:jar:sources:3.19.3", + "io.grpc:grpc-api:jar:sources:1.44.0", + "io.grpc:grpc-context:jar:sources:1.44.0", + "io.grpc:grpc-protobuf-lite:jar:sources:1.44.0" ], "directDependencies": [ - "com.google.api.grpc:proto-google-common-protos:jar:sources:2.9.0", + "com.google.api.grpc:proto-google-common-protos:jar:sources:2.0.1", "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.guava:guava:jar:sources:31.1-jre", - "com.google.protobuf:protobuf-java:jar:sources:3.21.7", - "io.grpc:grpc-api:jar:sources:1.50.0", - "io.grpc:grpc-protobuf-lite:jar:sources:1.50.0" + "com.google.guava:guava:jar:sources:31.0.1-jre", + "com.google.protobuf:protobuf-java:jar:sources:3.19.3", + "io.grpc:grpc-api:jar:sources:1.44.0", + "io.grpc:grpc-protobuf-lite:jar:sources:1.44.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.50.0/grpc-protobuf-1.50.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.44.0/grpc-protobuf-1.44.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.50.0/grpc-protobuf-1.50.0-sources.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.44.0/grpc-protobuf-1.44.0-sources.jar" ], "packages": [], - "sha256": "7dfb11b14b2860501d42019e8c744354e22d1f9de7502e32a9a407ddd88e2585", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.50.0/grpc-protobuf-1.50.0-sources.jar" + "sha256": "05f07f8321d9db4c383aecee78a2b013798ac2c9231b555949fb93e2c30807b6", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-protobuf/1.44.0/grpc-protobuf-1.44.0-sources.jar" }, { - "coord": "io.grpc:grpc-services:1.50.0", + "coord": "io.grpc:grpc-services:1.44.0", "dependencies": [ - "com.google.api.grpc:proto-google-common-protos:2.9.0", + "com.google.api.grpc:proto-google-common-protos:2.0.1", "com.google.code.findbugs:jsr305:3.0.2", - "com.google.code.gson:gson:2.9.1", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:guava:31.1-jre", + "com.google.code.gson:gson:2.9.0", + "com.google.errorprone:error_prone_annotations:2.10.0", + "com.google.guava:guava:31.0.1-jre", "com.google.j2objc:j2objc-annotations:1.3", - "com.google.protobuf:protobuf-java-util:3.21.7", - "com.google.protobuf:protobuf-java:3.21.7", - "io.grpc:grpc-api:1.50.0", - "io.grpc:grpc-context:1.50.0", - "io.grpc:grpc-core:1.50.0", - "io.grpc:grpc-protobuf-lite:1.50.0", - "io.grpc:grpc-protobuf:1.50.0", - "io.grpc:grpc-stub:1.50.0" + "com.google.protobuf:protobuf-java-util:3.19.2", + "com.google.protobuf:protobuf-java:3.19.3", + "io.grpc:grpc-api:1.44.0", + "io.grpc:grpc-context:1.44.0", + "io.grpc:grpc-core:1.44.0", + "io.grpc:grpc-protobuf-lite:1.44.0", + "io.grpc:grpc-protobuf:1.44.0", + "io.grpc:grpc-stub:1.44.0" ], "directDependencies": [ - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:guava:31.1-jre", - "com.google.protobuf:protobuf-java-util:3.21.7", - "io.grpc:grpc-core:1.50.0", - "io.grpc:grpc-protobuf:1.50.0", - "io.grpc:grpc-stub:1.50.0" + "com.google.errorprone:error_prone_annotations:2.10.0", + "com.google.guava:guava:31.0.1-jre", + "com.google.protobuf:protobuf-java-util:3.19.2", + "io.grpc:grpc-core:1.44.0", + "io.grpc:grpc-protobuf:1.44.0", + "io.grpc:grpc-stub:1.44.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-services/1.50.0/grpc-services-1.50.0.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-services/1.44.0/grpc-services-1.44.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-services/1.50.0/grpc-services-1.50.0.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-services/1.44.0/grpc-services-1.44.0.jar" ], "packages": [ "io.grpc.binarylog.v1", @@ -8470,251 +6584,250 @@ "io.grpc.reflection.v1alpha", "io.grpc.services" ], - "sha256": "23536091a55a6b8448ded377ecbd817af23b780d97b381d70c1439c9e498c33c", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-services/1.50.0/grpc-services-1.50.0.jar" + "sha256": "e3a4501acf9429db136b1fd806842c3fae204b495382fd2f5e943abf20ef3212", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-services/1.44.0/grpc-services-1.44.0.jar" }, { - "coord": "io.grpc:grpc-services:jar:sources:1.50.0", + "coord": "io.grpc:grpc-services:jar:sources:1.44.0", "dependencies": [ - "com.google.api.grpc:proto-google-common-protos:jar:sources:2.9.0", + "com.google.api.grpc:proto-google-common-protos:jar:sources:2.0.1", "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.code.gson:gson:jar:sources:2.9.1", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:guava:jar:sources:31.1-jre", + "com.google.code.gson:gson:jar:sources:2.9.0", + "com.google.errorprone:error_prone_annotations:jar:sources:2.10.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", "com.google.j2objc:j2objc-annotations:jar:sources:1.3", - "com.google.protobuf:protobuf-java-util:jar:sources:3.21.7", - "com.google.protobuf:protobuf-java:jar:sources:3.21.7", - "io.grpc:grpc-api:jar:sources:1.50.0", - "io.grpc:grpc-context:jar:sources:1.50.0", - "io.grpc:grpc-core:jar:sources:1.50.0", - "io.grpc:grpc-protobuf-lite:jar:sources:1.50.0", - "io.grpc:grpc-protobuf:jar:sources:1.50.0", - "io.grpc:grpc-stub:jar:sources:1.50.0" + "com.google.protobuf:protobuf-java-util:jar:sources:3.19.2", + "com.google.protobuf:protobuf-java:jar:sources:3.19.3", + "io.grpc:grpc-api:jar:sources:1.44.0", + "io.grpc:grpc-context:jar:sources:1.44.0", + "io.grpc:grpc-core:jar:sources:1.44.0", + "io.grpc:grpc-protobuf-lite:jar:sources:1.44.0", + "io.grpc:grpc-protobuf:jar:sources:1.44.0", + "io.grpc:grpc-stub:jar:sources:1.44.0" ], "directDependencies": [ - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:guava:jar:sources:31.1-jre", - "com.google.protobuf:protobuf-java-util:jar:sources:3.21.7", - "io.grpc:grpc-core:jar:sources:1.50.0", - "io.grpc:grpc-protobuf:jar:sources:1.50.0", - "io.grpc:grpc-stub:jar:sources:1.50.0" + "com.google.errorprone:error_prone_annotations:jar:sources:2.10.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "com.google.protobuf:protobuf-java-util:jar:sources:3.19.2", + "io.grpc:grpc-core:jar:sources:1.44.0", + "io.grpc:grpc-protobuf:jar:sources:1.44.0", + "io.grpc:grpc-stub:jar:sources:1.44.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-services/1.50.0/grpc-services-1.50.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-services/1.44.0/grpc-services-1.44.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-services/1.50.0/grpc-services-1.50.0-sources.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-services/1.44.0/grpc-services-1.44.0-sources.jar" ], "packages": [], - "sha256": "d1019354e1ecdf8ad515f7f678630bd3aa42bf5b7a452d2a5bc63d932d02674c", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-services/1.50.0/grpc-services-1.50.0-sources.jar" + "sha256": "3726f43a0ff32a63214260827443c011f435ad65d7f4ce0678c61648c0cfde57", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-services/1.44.0/grpc-services-1.44.0-sources.jar" }, { - "coord": "io.grpc:grpc-stub:1.50.0", + "coord": "io.grpc:grpc-stub:1.44.0", "dependencies": [ "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:guava:31.1-jre", - "io.grpc:grpc-api:1.50.0", - "io.grpc:grpc-context:1.50.0" + "com.google.errorprone:error_prone_annotations:2.10.0", + "com.google.guava:guava:31.0.1-jre", + "io.grpc:grpc-api:1.44.0", + "io.grpc:grpc-context:1.44.0" ], "directDependencies": [ - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:guava:31.1-jre", - "io.grpc:grpc-api:1.50.0" + "com.google.errorprone:error_prone_annotations:2.10.0", + "com.google.guava:guava:31.0.1-jre", + "io.grpc:grpc-api:1.44.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-stub/1.50.0/grpc-stub-1.50.0.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-stub/1.44.0/grpc-stub-1.44.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-stub/1.50.0/grpc-stub-1.50.0.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-stub/1.44.0/grpc-stub-1.44.0.jar" ], "packages": [ "io.grpc.stub", "io.grpc.stub.annotations" ], - "sha256": "64e693b13a8ecf5e53cb2d1b66503e322ac0dd9603936204b7f714f60578ec83", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-stub/1.50.0/grpc-stub-1.50.0.jar" + "sha256": "b3f6e9f95a9f879f8782df88455999f8d289b4f94274d01faf34e26d50bf81b6", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-stub/1.44.0/grpc-stub-1.44.0.jar" }, { - "coord": "io.grpc:grpc-stub:jar:sources:1.50.0", + "coord": "io.grpc:grpc-stub:jar:sources:1.44.0", "dependencies": [ "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:guava:jar:sources:31.1-jre", - "io.grpc:grpc-api:jar:sources:1.50.0", - "io.grpc:grpc-context:jar:sources:1.50.0" + "com.google.errorprone:error_prone_annotations:jar:sources:2.10.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "io.grpc:grpc-api:jar:sources:1.44.0", + "io.grpc:grpc-context:jar:sources:1.44.0" ], "directDependencies": [ - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:guava:jar:sources:31.1-jre", - "io.grpc:grpc-api:jar:sources:1.50.0" + "com.google.errorprone:error_prone_annotations:jar:sources:2.10.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "io.grpc:grpc-api:jar:sources:1.44.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-stub/1.50.0/grpc-stub-1.50.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-stub/1.44.0/grpc-stub-1.44.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/grpc/grpc-stub/1.50.0/grpc-stub-1.50.0-sources.jar" + "https://repo1.maven.org/maven2/io/grpc/grpc-stub/1.44.0/grpc-stub-1.44.0-sources.jar" ], "packages": [], - "sha256": "1bd941f6528ea6b92ac2bd73d7ec9b2e7e3fd758be3bedccd2eb4bffa1a7ff94", - "url": "https://repo1.maven.org/maven2/io/grpc/grpc-stub/1.50.0/grpc-stub-1.50.0-sources.jar" + "sha256": "a16c1eaf25c22c5a29945a058b8f802503b3bf7d5b8bf5566b725d7e1e149ad0", + "url": "https://repo1.maven.org/maven2/io/grpc/grpc-stub/1.44.0/grpc-stub-1.44.0-sources.jar" }, { - "coord": "io.netty:netty-buffer:4.1.79.Final", + "coord": "io.netty:netty-buffer:4.1.72.Final", "dependencies": [ - "io.netty:netty-common:4.1.81.Final" + "io.netty:netty-common:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-common:4.1.81.Final" + "io.netty:netty-common:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-buffer/4.1.79.Final/netty-buffer-4.1.79.Final.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-buffer/4.1.72.Final/netty-buffer-4.1.72.Final.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-buffer/4.1.79.Final/netty-buffer-4.1.79.Final.jar" + "https://repo1.maven.org/maven2/io/netty/netty-buffer/4.1.72.Final/netty-buffer-4.1.72.Final.jar" ], "packages": [ "io.netty.buffer", "io.netty.buffer.search" ], - "sha256": "53b3c99c025f7344960d8a410df5792caba4444dd82c18606a572f7361127f98", - "url": "https://repo1.maven.org/maven2/io/netty/netty-buffer/4.1.79.Final/netty-buffer-4.1.79.Final.jar" + "sha256": "568ff7cd9d8e2284ec980730c88924f686642929f8f219a74518b4e64755f3a1", + "url": "https://repo1.maven.org/maven2/io/netty/netty-buffer/4.1.72.Final/netty-buffer-4.1.72.Final.jar" }, { - "coord": "io.netty:netty-buffer:jar:sources:4.1.79.Final", + "coord": "io.netty:netty-buffer:jar:sources:4.1.72.Final", "dependencies": [ - "io.netty:netty-common:jar:sources:4.1.81.Final" + "io.netty:netty-common:jar:sources:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-common:jar:sources:4.1.81.Final" + "io.netty:netty-common:jar:sources:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-buffer/4.1.79.Final/netty-buffer-4.1.79.Final-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-buffer/4.1.72.Final/netty-buffer-4.1.72.Final-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-buffer/4.1.79.Final/netty-buffer-4.1.79.Final-sources.jar" + "https://repo1.maven.org/maven2/io/netty/netty-buffer/4.1.72.Final/netty-buffer-4.1.72.Final-sources.jar" ], "packages": [], - "sha256": "c803fec4e07a3b3ddfb280d0463d0f2a34800020177a3ed927c70ee64a352752", - "url": "https://repo1.maven.org/maven2/io/netty/netty-buffer/4.1.79.Final/netty-buffer-4.1.79.Final-sources.jar" + "sha256": "26a2256cfd5f4f8bbb005d190a4ef63d125ca90d2de271abfc84f87878551636", + "url": "https://repo1.maven.org/maven2/io/netty/netty-buffer/4.1.72.Final/netty-buffer-4.1.72.Final-sources.jar" }, { - "coord": "io.netty:netty-codec-dns:4.1.81.Final", + "coord": "io.netty:netty-codec-dns:4.1.58.Final", "dependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-codec:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-transport:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-codec:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-transport:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec-dns/4.1.81.Final/netty-codec-dns-4.1.81.Final.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec-dns/4.1.58.Final/netty-codec-dns-4.1.58.Final.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-codec-dns/4.1.81.Final/netty-codec-dns-4.1.81.Final.jar" + "https://repo1.maven.org/maven2/io/netty/netty-codec-dns/4.1.58.Final/netty-codec-dns-4.1.58.Final.jar" ], "packages": [ "io.netty.handler.codec.dns" ], - "sha256": "ae91735348afd47d810696de9d7af30eff0a3adddda63afeeec9b0159153a6f2", - "url": "https://repo1.maven.org/maven2/io/netty/netty-codec-dns/4.1.81.Final/netty-codec-dns-4.1.81.Final.jar" + "sha256": "ee4ab0c01b94823615fdc71a8f1356aa532592686a48b0e4f395855e71f152e6", + "url": "https://repo1.maven.org/maven2/io/netty/netty-codec-dns/4.1.58.Final/netty-codec-dns-4.1.58.Final.jar" }, { - "coord": "io.netty:netty-codec-dns:jar:sources:4.1.81.Final", + "coord": "io.netty:netty-codec-dns:jar:sources:4.1.58.Final", "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-codec:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-codec:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec-dns/4.1.81.Final/netty-codec-dns-4.1.81.Final-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec-dns/4.1.58.Final/netty-codec-dns-4.1.58.Final-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-codec-dns/4.1.81.Final/netty-codec-dns-4.1.81.Final-sources.jar" + "https://repo1.maven.org/maven2/io/netty/netty-codec-dns/4.1.58.Final/netty-codec-dns-4.1.58.Final-sources.jar" ], "packages": [], - "sha256": "17ad600555e7c3f18f8a4ac2a7fdc55ef4a5de4742d0c3e6b6515b11137d9629", - "url": "https://repo1.maven.org/maven2/io/netty/netty-codec-dns/4.1.81.Final/netty-codec-dns-4.1.81.Final-sources.jar" + "sha256": "62de53fa7dec03a81c7b266203f2181fcf32972c7a4fdd35da95f7c3b002ed5e", + "url": "https://repo1.maven.org/maven2/io/netty/netty-codec-dns/4.1.58.Final/netty-codec-dns-4.1.58.Final-sources.jar" }, { - "coord": "io.netty:netty-codec-http2:4.1.79.Final", + "coord": "io.netty:netty-codec-http2:4.1.72.Final", "dependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-codec-http:4.1.72.Final", + "io.netty:netty-codec:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-handler:4.1.72.Final", + "io.netty:netty-resolver:4.1.72.Final", + "io.netty:netty-tcnative-classes:2.0.46.Final", + "io.netty:netty-transport:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-codec-http:4.1.72.Final", + "io.netty:netty-codec:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-handler:4.1.72.Final", + "io.netty:netty-transport:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec-http2/4.1.79.Final/netty-codec-http2-4.1.79.Final.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec-http2/4.1.72.Final/netty-codec-http2-4.1.72.Final.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-codec-http2/4.1.79.Final/netty-codec-http2-4.1.79.Final.jar" + "https://repo1.maven.org/maven2/io/netty/netty-codec-http2/4.1.72.Final/netty-codec-http2-4.1.72.Final.jar" ], "packages": [ "io.netty.handler.codec.http2" ], - "sha256": "9e767a904b0aab9c44aaac947abf0911055f341459520b2503c7014a4635c7f8", - "url": "https://repo1.maven.org/maven2/io/netty/netty-codec-http2/4.1.79.Final/netty-codec-http2-4.1.79.Final.jar" + "sha256": "c89a70500f59e8563e720aaa808263a514bd9e2bd91ba84eab8c2ccb45f234b2", + "url": "https://repo1.maven.org/maven2/io/netty/netty-codec-http2/4.1.72.Final/netty-codec-http2-4.1.72.Final.jar" }, { - "coord": "io.netty:netty-codec-http2:jar:sources:4.1.79.Final", + "coord": "io.netty:netty-codec-http2:jar:sources:4.1.72.Final", "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-codec-http:jar:sources:4.1.72.Final", + "io.netty:netty-codec:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-handler:jar:sources:4.1.72.Final", + "io.netty:netty-resolver:jar:sources:4.1.72.Final", + "io.netty:netty-tcnative-classes:jar:sources:2.0.46.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-codec-http:jar:sources:4.1.72.Final", + "io.netty:netty-codec:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-handler:jar:sources:4.1.72.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec-http2/4.1.79.Final/netty-codec-http2-4.1.79.Final-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec-http2/4.1.72.Final/netty-codec-http2-4.1.72.Final-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-codec-http2/4.1.79.Final/netty-codec-http2-4.1.79.Final-sources.jar" + "https://repo1.maven.org/maven2/io/netty/netty-codec-http2/4.1.72.Final/netty-codec-http2-4.1.72.Final-sources.jar" ], "packages": [], - "sha256": "f29c7462f920774066f004e9ed82b61a42285a826127d3ba454943e030a832f9", - "url": "https://repo1.maven.org/maven2/io/netty/netty-codec-http2/4.1.79.Final/netty-codec-http2-4.1.79.Final-sources.jar" + "sha256": "ddd31a25ceb93b2b847e7e628924fff1741c962aa62c82cbebdc69af466320a3", + "url": "https://repo1.maven.org/maven2/io/netty/netty-codec-http2/4.1.72.Final/netty-codec-http2-4.1.72.Final-sources.jar" }, { - "coord": "io.netty:netty-codec-http:4.1.81.Final", + "coord": "io.netty:netty-codec-http:4.1.72.Final", "dependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-codec:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-handler:4.1.72.Final", + "io.netty:netty-resolver:4.1.72.Final", + "io.netty:netty-tcnative-classes:2.0.46.Final", + "io.netty:netty-transport:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-codec:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-handler:4.1.72.Final", + "io.netty:netty-transport:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec-http/4.1.81.Final/netty-codec-http-4.1.81.Final.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec-http/4.1.72.Final/netty-codec-http-4.1.72.Final.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-codec-http/4.1.81.Final/netty-codec-http-4.1.81.Final.jar" + "https://repo1.maven.org/maven2/io/netty/netty-codec-http/4.1.72.Final/netty-codec-http-4.1.72.Final.jar" ], "packages": [ "io.netty.handler.codec.http", @@ -8727,100 +6840,53 @@ "io.netty.handler.codec.rtsp", "io.netty.handler.codec.spdy" ], - "sha256": "fa4a31792723a052bab0c259ab684fd6bada84ab88e2ccb9801f9008c22870ad", - "url": "https://repo1.maven.org/maven2/io/netty/netty-codec-http/4.1.81.Final/netty-codec-http-4.1.81.Final.jar" - }, - { - "coord": "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" - ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec-http/4.1.81.Final/netty-codec-http-4.1.81.Final-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-codec-http/4.1.81.Final/netty-codec-http-4.1.81.Final-sources.jar" - ], - "packages": [], - "sha256": "5c1e7a88e6801a87dfa4fc6edd7d8d1afbc245b443184f5b97b143b5a8267da2", - "url": "https://repo1.maven.org/maven2/io/netty/netty-codec-http/4.1.81.Final/netty-codec-http-4.1.81.Final-sources.jar" - }, - { - "coord": "io.netty:netty-codec-mqtt:4.1.81.Final", - "dependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport:4.1.81.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" - ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec-mqtt/4.1.81.Final/netty-codec-mqtt-4.1.81.Final.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-codec-mqtt/4.1.81.Final/netty-codec-mqtt-4.1.81.Final.jar" - ], - "packages": [ - "io.netty.handler.codec.mqtt" - ], - "sha256": "3152a9a25e278c54f5ff3e081def3525273640ea023d676f4a32926c045a57ed", - "url": "https://repo1.maven.org/maven2/io/netty/netty-codec-mqtt/4.1.81.Final/netty-codec-mqtt-4.1.81.Final.jar" + "sha256": "fa6fec88010bfaf6a7415b5364671b6b18ffb6b35a986ab97b423fd8c3a0174b", + "url": "https://repo1.maven.org/maven2/io/netty/netty-codec-http/4.1.72.Final/netty-codec-http-4.1.72.Final.jar" }, { - "coord": "io.netty:netty-codec-mqtt:jar:sources:4.1.81.Final", + "coord": "io.netty:netty-codec-http:jar:sources:4.1.72.Final", "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-codec:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-handler:jar:sources:4.1.72.Final", + "io.netty:netty-resolver:jar:sources:4.1.72.Final", + "io.netty:netty-tcnative-classes:jar:sources:2.0.46.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-codec:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-handler:jar:sources:4.1.72.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec-mqtt/4.1.81.Final/netty-codec-mqtt-4.1.81.Final-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec-http/4.1.72.Final/netty-codec-http-4.1.72.Final-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-codec-mqtt/4.1.81.Final/netty-codec-mqtt-4.1.81.Final-sources.jar" + "https://repo1.maven.org/maven2/io/netty/netty-codec-http/4.1.72.Final/netty-codec-http-4.1.72.Final-sources.jar" ], "packages": [], - "sha256": "04ea046e21eef755d1b8230fa9c6f8b58d2e803e30fa48aa059664b2fe773478", - "url": "https://repo1.maven.org/maven2/io/netty/netty-codec-mqtt/4.1.81.Final/netty-codec-mqtt-4.1.81.Final-sources.jar" + "sha256": "d58e18a424107d4d5d6758384480c3fa6c5e923a1cc88d8f44e6c1fef1d824e7", + "url": "https://repo1.maven.org/maven2/io/netty/netty-codec-http/4.1.72.Final/netty-codec-http-4.1.72.Final-sources.jar" }, { - "coord": "io.netty:netty-codec-socks:4.1.79.Final", + "coord": "io.netty:netty-codec-socks:4.1.72.Final", "dependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-codec:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-resolver:4.1.72.Final", + "io.netty:netty-transport:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-codec:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-transport:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec-socks/4.1.79.Final/netty-codec-socks-4.1.79.Final.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec-socks/4.1.72.Final/netty-codec-socks-4.1.72.Final.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-codec-socks/4.1.79.Final/netty-codec-socks-4.1.79.Final.jar" + "https://repo1.maven.org/maven2/io/netty/netty-codec-socks/4.1.72.Final/netty-codec-socks-4.1.72.Final.jar" ], "packages": [ "io.netty.handler.codec.socks", @@ -8828,48 +6894,48 @@ "io.netty.handler.codec.socksx.v4", "io.netty.handler.codec.socksx.v5" ], - "sha256": "618fde253dda73a039b9b7ae813c34570c4ec7cd95142c2a44602a988b789f00", - "url": "https://repo1.maven.org/maven2/io/netty/netty-codec-socks/4.1.79.Final/netty-codec-socks-4.1.79.Final.jar" + "sha256": "33c4cd134858aabc5afe5dc440c8880186017dc4dc541f34c8e16bffc5546d07", + "url": "https://repo1.maven.org/maven2/io/netty/netty-codec-socks/4.1.72.Final/netty-codec-socks-4.1.72.Final.jar" }, { - "coord": "io.netty:netty-codec-socks:jar:sources:4.1.79.Final", + "coord": "io.netty:netty-codec-socks:jar:sources:4.1.72.Final", "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-codec:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-resolver:jar:sources:4.1.72.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-codec:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec-socks/4.1.79.Final/netty-codec-socks-4.1.79.Final-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec-socks/4.1.72.Final/netty-codec-socks-4.1.72.Final-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-codec-socks/4.1.79.Final/netty-codec-socks-4.1.79.Final-sources.jar" + "https://repo1.maven.org/maven2/io/netty/netty-codec-socks/4.1.72.Final/netty-codec-socks-4.1.72.Final-sources.jar" ], "packages": [], - "sha256": "12ad351912528a80823ae601b88ed1b22e2f33938a660f8884fa72634328019f", - "url": "https://repo1.maven.org/maven2/io/netty/netty-codec-socks/4.1.79.Final/netty-codec-socks-4.1.79.Final-sources.jar" + "sha256": "f06d8ed4acc70451ab56cae84a6f3d7213371057528762a180ecd7042116e8f7", + "url": "https://repo1.maven.org/maven2/io/netty/netty-codec-socks/4.1.72.Final/netty-codec-socks-4.1.72.Final-sources.jar" }, { - "coord": "io.netty:netty-codec:4.1.81.Final", + "coord": "io.netty:netty-codec:4.1.72.Final", "dependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-resolver:4.1.72.Final", + "io.netty:netty-transport:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-transport:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec/4.1.81.Final/netty-codec-4.1.81.Final.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec/4.1.72.Final/netty-codec-4.1.72.Final.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-codec/4.1.81.Final/netty-codec-4.1.81.Final.jar" + "https://repo1.maven.org/maven2/io/netty/netty-codec/4.1.72.Final/netty-codec-4.1.72.Final.jar" ], "packages": [ "io.netty.handler.codec", @@ -8883,37 +6949,37 @@ "io.netty.handler.codec.string", "io.netty.handler.codec.xml" ], - "sha256": "56f9ae971c3a05485fe184b6b4084caee39b788b8f39bba874836cb50395531e", - "url": "https://repo1.maven.org/maven2/io/netty/netty-codec/4.1.81.Final/netty-codec-4.1.81.Final.jar" + "sha256": "5d8591ca271a1e9c224e8de3873aa9936acb581ee0db514e7dc18523df36d16c", + "url": "https://repo1.maven.org/maven2/io/netty/netty-codec/4.1.72.Final/netty-codec-4.1.72.Final.jar" }, { - "coord": "io.netty:netty-codec:jar:sources:4.1.81.Final", + "coord": "io.netty:netty-codec:jar:sources:4.1.72.Final", "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-resolver:jar:sources:4.1.72.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec/4.1.81.Final/netty-codec-4.1.81.Final-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec/4.1.72.Final/netty-codec-4.1.72.Final-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-codec/4.1.81.Final/netty-codec-4.1.81.Final-sources.jar" + "https://repo1.maven.org/maven2/io/netty/netty-codec/4.1.72.Final/netty-codec-4.1.72.Final-sources.jar" ], "packages": [], - "sha256": "f8544656813b1743ac7f3e3c39089d4a1fe5459811d5086071bdb5723dd5f853", - "url": "https://repo1.maven.org/maven2/io/netty/netty-codec/4.1.81.Final/netty-codec-4.1.81.Final-sources.jar" + "sha256": "f9a2b486b8fc6798b8c05d2a9c5b3fc9be2cac1020b137c2d5b326fc66c851dc", + "url": "https://repo1.maven.org/maven2/io/netty/netty-codec/4.1.72.Final/netty-codec-4.1.72.Final-sources.jar" }, { - "coord": "io.netty:netty-common:4.1.81.Final", + "coord": "io.netty:netty-common:4.1.72.Final", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-common/4.1.81.Final/netty-common-4.1.81.Final.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-common/4.1.72.Final/netty-common-4.1.72.Final.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-common/4.1.81.Final/netty-common-4.1.81.Final.jar" + "https://repo1.maven.org/maven2/io/netty/netty-common/4.1.72.Final/netty-common-4.1.72.Final.jar" ], "packages": [ "io.netty.util", @@ -8926,98 +6992,102 @@ "io.netty.util.internal.shaded.org.jctools.util", "io.netty.util.internal.svm" ], - "sha256": "4abc927ca26716a21ae7948c1a14c1838094ae21759cb581f18333545d9ddaa8", - "url": "https://repo1.maven.org/maven2/io/netty/netty-common/4.1.81.Final/netty-common-4.1.81.Final.jar" + "sha256": "8adb4c291260ceb2859a68c49f0adeed36bf49587608e2b81ecff6aaf06025e9", + "url": "https://repo1.maven.org/maven2/io/netty/netty-common/4.1.72.Final/netty-common-4.1.72.Final.jar" }, { - "coord": "io.netty:netty-common:jar:sources:4.1.81.Final", + "coord": "io.netty:netty-common:jar:sources:4.1.72.Final", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-common/4.1.81.Final/netty-common-4.1.81.Final-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-common/4.1.72.Final/netty-common-4.1.72.Final-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-common/4.1.81.Final/netty-common-4.1.81.Final-sources.jar" + "https://repo1.maven.org/maven2/io/netty/netty-common/4.1.72.Final/netty-common-4.1.72.Final-sources.jar" ], "packages": [], - "sha256": "5033ad1bba4bccb134696b790fbe6d5f3bc457070aa89664dea97be8f1f60d4c", - "url": "https://repo1.maven.org/maven2/io/netty/netty-common/4.1.81.Final/netty-common-4.1.81.Final-sources.jar" + "sha256": "b7cf0f4f8b89cf4a5fe28605db2f1359d0d0d1756a4379ad8e4d9aa83a96f281", + "url": "https://repo1.maven.org/maven2/io/netty/netty-common/4.1.72.Final/netty-common-4.1.72.Final-sources.jar" }, { - "coord": "io.netty:netty-handler-proxy:4.1.79.Final", + "coord": "io.netty:netty-handler-proxy:4.1.72.Final", "dependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec-socks:4.1.79.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-codec-http:4.1.72.Final", + "io.netty:netty-codec-socks:4.1.72.Final", + "io.netty:netty-codec:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-handler:4.1.72.Final", + "io.netty:netty-resolver:4.1.72.Final", + "io.netty:netty-tcnative-classes:2.0.46.Final", + "io.netty:netty-transport:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec-socks:4.1.79.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-codec-http:4.1.72.Final", + "io.netty:netty-codec-socks:4.1.72.Final", + "io.netty:netty-codec:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-transport:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-handler-proxy/4.1.79.Final/netty-handler-proxy-4.1.79.Final.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-handler-proxy/4.1.72.Final/netty-handler-proxy-4.1.72.Final.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-handler-proxy/4.1.79.Final/netty-handler-proxy-4.1.79.Final.jar" + "https://repo1.maven.org/maven2/io/netty/netty-handler-proxy/4.1.72.Final/netty-handler-proxy-4.1.72.Final.jar" ], "packages": [ "io.netty.handler.proxy" ], - "sha256": "99a6ee5ff3eb38caa5c5b215826606856b56dc040d888f69116d9c6db88709ae", - "url": "https://repo1.maven.org/maven2/io/netty/netty-handler-proxy/4.1.79.Final/netty-handler-proxy-4.1.79.Final.jar" + "sha256": "ce1123250450d2b17815748177fd36843690b8cd703b47e6dc12d159d86da30d", + "url": "https://repo1.maven.org/maven2/io/netty/netty-handler-proxy/4.1.72.Final/netty-handler-proxy-4.1.72.Final.jar" }, { - "coord": "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", + "coord": "io.netty:netty-handler-proxy:jar:sources:4.1.72.Final", "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec-socks:jar:sources:4.1.79.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-codec-http:jar:sources:4.1.72.Final", + "io.netty:netty-codec-socks:jar:sources:4.1.72.Final", + "io.netty:netty-codec:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-handler:jar:sources:4.1.72.Final", + "io.netty:netty-resolver:jar:sources:4.1.72.Final", + "io.netty:netty-tcnative-classes:jar:sources:2.0.46.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec-socks:jar:sources:4.1.79.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-codec-http:jar:sources:4.1.72.Final", + "io.netty:netty-codec-socks:jar:sources:4.1.72.Final", + "io.netty:netty-codec:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-handler-proxy/4.1.79.Final/netty-handler-proxy-4.1.79.Final-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-handler-proxy/4.1.72.Final/netty-handler-proxy-4.1.72.Final-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-handler-proxy/4.1.79.Final/netty-handler-proxy-4.1.79.Final-sources.jar" + "https://repo1.maven.org/maven2/io/netty/netty-handler-proxy/4.1.72.Final/netty-handler-proxy-4.1.72.Final-sources.jar" ], "packages": [], - "sha256": "330ed7d0832fcb7d65f0623e249944a310a9a6c94f669fc1be7dc4e0bbd9b355", - "url": "https://repo1.maven.org/maven2/io/netty/netty-handler-proxy/4.1.79.Final/netty-handler-proxy-4.1.79.Final-sources.jar" + "sha256": "233c483bb186afcccf17146a516b86ac14ceea32c51610e45fbfca04f68235fc", + "url": "https://repo1.maven.org/maven2/io/netty/netty-handler-proxy/4.1.72.Final/netty-handler-proxy-4.1.72.Final-sources.jar" }, { - "coord": "io.netty:netty-handler:4.1.79.Final", + "coord": "io.netty:netty-handler:4.1.72.Final", "dependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-codec:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-resolver:4.1.72.Final", + "io.netty:netty-tcnative-classes:2.0.46.Final", + "io.netty:netty-transport:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-codec:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-resolver:4.1.72.Final", + "io.netty:netty-tcnative-classes:2.0.46.Final", + "io.netty:netty-transport:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-handler/4.1.79.Final/netty-handler-4.1.79.Final.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-handler/4.1.72.Final/netty-handler-4.1.72.Final.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-handler/4.1.79.Final/netty-handler-4.1.79.Final.jar" + "https://repo1.maven.org/maven2/io/netty/netty-handler/4.1.72.Final/netty-handler-4.1.72.Final.jar" ], "packages": [ "io.netty.handler.address", @@ -9033,752 +7103,282 @@ "io.netty.handler.timeout", "io.netty.handler.traffic" ], - "sha256": "b61f5630af6b3cd4e18885c5fde2f8643a98fe03e529e05f88bfe80ae3cbd71e", - "url": "https://repo1.maven.org/maven2/io/netty/netty-handler/4.1.79.Final/netty-handler-4.1.79.Final.jar" - }, - { - "coord": "io.netty:netty-handler:jar:sources:4.1.79.Final", - "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" - ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-handler/4.1.79.Final/netty-handler-4.1.79.Final-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-handler/4.1.79.Final/netty-handler-4.1.79.Final-sources.jar" - ], - "packages": [], - "sha256": "6a14a956e058372d03e0a387fdc307e7d7fe8f744af0ebc9467aefdda681e771", - "url": "https://repo1.maven.org/maven2/io/netty/netty-handler/4.1.79.Final/netty-handler-4.1.79.Final-sources.jar" - }, - { - "coord": "io.netty:netty-resolver-dns-classes-macos:4.1.81.Final", - "dependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-dns:4.1.81.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver-dns:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" - ], - "directDependencies": [ - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-resolver-dns:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final" - ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-resolver-dns-classes-macos/4.1.81.Final/netty-resolver-dns-classes-macos-4.1.81.Final.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-resolver-dns-classes-macos/4.1.81.Final/netty-resolver-dns-classes-macos-4.1.81.Final.jar" - ], - "packages": [ - "io.netty.resolver.dns.macos" - ], - "sha256": "381e5b5073b48f9673f5354efc9cd1f1942379dc36bb31b6572c96412c2936a2", - "url": "https://repo1.maven.org/maven2/io/netty/netty-resolver-dns-classes-macos/4.1.81.Final/netty-resolver-dns-classes-macos-4.1.81.Final.jar" - }, - { - "coord": "io.netty:netty-resolver-dns-classes-macos:jar:sources:4.1.81.Final", - "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-dns:jar:sources:4.1.81.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver-dns:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" - ], - "directDependencies": [ - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-resolver-dns:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final" - ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-resolver-dns-classes-macos/4.1.81.Final/netty-resolver-dns-classes-macos-4.1.81.Final-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-resolver-dns-classes-macos/4.1.81.Final/netty-resolver-dns-classes-macos-4.1.81.Final-sources.jar" - ], - "packages": [], - "sha256": "42017c6a9f8e3cf616aae74300952a19013e6c20f995c592e2236d15c71376fa", - "url": "https://repo1.maven.org/maven2/io/netty/netty-resolver-dns-classes-macos/4.1.81.Final/netty-resolver-dns-classes-macos-4.1.81.Final-sources.jar" - }, - { - "coord": "io.netty:netty-resolver-dns-native-macos:jar:osx-aarch_64:4.1.81.Final", - "dependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-dns:4.1.81.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver-dns-classes-macos:4.1.81.Final", - "io.netty:netty-resolver-dns:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" - ], - "directDependencies": [ - "io.netty:netty-resolver-dns-classes-macos:4.1.81.Final" - ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-resolver-dns-native-macos/4.1.81.Final/netty-resolver-dns-native-macos-4.1.81.Final-osx-aarch_64.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-resolver-dns-native-macos/4.1.81.Final/netty-resolver-dns-native-macos-4.1.81.Final-osx-aarch_64.jar" - ], - "packages": [], - "sha256": "f3e88140a5c9ebfbfb1ed65b6e503aa6d18d3a141709696edad08d918ecbd572", - "url": "https://repo1.maven.org/maven2/io/netty/netty-resolver-dns-native-macos/4.1.81.Final/netty-resolver-dns-native-macos-4.1.81.Final-osx-aarch_64.jar" - }, - { - "coord": "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.81.Final", - "dependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-dns:4.1.81.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver-dns-classes-macos:4.1.81.Final", - "io.netty:netty-resolver-dns:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" - ], - "directDependencies": [ - "io.netty:netty-resolver-dns-classes-macos:4.1.81.Final" - ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-resolver-dns-native-macos/4.1.81.Final/netty-resolver-dns-native-macos-4.1.81.Final-osx-x86_64.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-resolver-dns-native-macos/4.1.81.Final/netty-resolver-dns-native-macos-4.1.81.Final-osx-x86_64.jar" - ], - "packages": [], - "sha256": "e8e776e729981ee60defb5d1340822f7b5f58e3ed96966f4201a1939940b2ffd", - "url": "https://repo1.maven.org/maven2/io/netty/netty-resolver-dns-native-macos/4.1.81.Final/netty-resolver-dns-native-macos-4.1.81.Final-osx-x86_64.jar" - }, - { - "coord": "io.netty:netty-resolver-dns-native-macos:jar:sources:4.1.81.Final", - "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-dns:jar:sources:4.1.81.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver-dns-classes-macos:jar:sources:4.1.81.Final", - "io.netty:netty-resolver-dns:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" - ], - "directDependencies": [ - "io.netty:netty-resolver-dns-classes-macos:jar:sources:4.1.81.Final" - ], - "file": null - }, - { - "coord": "io.netty:netty-resolver-dns:4.1.81.Final", - "dependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-dns:4.1.81.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport:4.1.81.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-dns:4.1.81.Final", - "io.netty:netty-codec:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport:4.1.81.Final" - ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-resolver-dns/4.1.81.Final/netty-resolver-dns-4.1.81.Final.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-resolver-dns/4.1.81.Final/netty-resolver-dns-4.1.81.Final.jar" - ], - "packages": [ - "io.netty.resolver.dns" - ], - "sha256": "6583a8f1338373dc84c2947d492b1e145e52d47f5052e02783a8f917119a0558", - "url": "https://repo1.maven.org/maven2/io/netty/netty-resolver-dns/4.1.81.Final/netty-resolver-dns-4.1.81.Final.jar" - }, - { - "coord": "io.netty:netty-resolver-dns:jar:sources:4.1.81.Final", - "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-dns:jar:sources:4.1.81.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-dns:jar:sources:4.1.81.Final", - "io.netty:netty-codec:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" - ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-resolver-dns/4.1.81.Final/netty-resolver-dns-4.1.81.Final-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-resolver-dns/4.1.81.Final/netty-resolver-dns-4.1.81.Final-sources.jar" - ], - "packages": [], - "sha256": "460afb57f413f42b50fd34c788c65148d38abba8be170b1d2fe1acd13fc870d7", - "url": "https://repo1.maven.org/maven2/io/netty/netty-resolver-dns/4.1.81.Final/netty-resolver-dns-4.1.81.Final-sources.jar" - }, - { - "coord": "io.netty:netty-resolver:4.1.79.Final", - "dependencies": [ - "io.netty:netty-common:4.1.81.Final" - ], - "directDependencies": [ - "io.netty:netty-common:4.1.81.Final" - ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-resolver/4.1.79.Final/netty-resolver-4.1.79.Final.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-resolver/4.1.79.Final/netty-resolver-4.1.79.Final.jar" - ], - "packages": [ - "io.netty.resolver" - ], - "sha256": "c6c111a337bb6b3a889ceab321e9473da49a4e261dcf422fca22284064e38130", - "url": "https://repo1.maven.org/maven2/io/netty/netty-resolver/4.1.79.Final/netty-resolver-4.1.79.Final.jar" - }, - { - "coord": "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "dependencies": [ - "io.netty:netty-common:jar:sources:4.1.81.Final" - ], - "directDependencies": [ - "io.netty:netty-common:jar:sources:4.1.81.Final" - ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-resolver/4.1.79.Final/netty-resolver-4.1.79.Final-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-resolver/4.1.79.Final/netty-resolver-4.1.79.Final-sources.jar" - ], - "packages": [], - "sha256": "1f717fd4755e57881b5b0ec8b8d07cf2c2f6b7599758eb0fd7b3d559d43be8eb", - "url": "https://repo1.maven.org/maven2/io/netty/netty-resolver/4.1.79.Final/netty-resolver-4.1.79.Final-sources.jar" - }, - { - "coord": "io.netty:netty-tcnative-boringssl-static:2.0.54.Final", - "dependencies": [ - "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final" - ], - "directDependencies": [ - "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final" - ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final.jar" - ], - "packages": [], - "sha256": "1b9aeee2a775314eb972f97e30e93dcc1472c09f0e4a43c3fe7afa922e669dea", - "url": "https://repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final.jar" - }, - { - "coord": "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", - "dependencies": [ - "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final" - ], - "directDependencies": [ - "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final" - ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-aarch_64.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-aarch_64.jar" - ], - "packages": [], - "sha256": "4cc801f39a8fa71769fd4913fb98890e27a3fe16f3f9457ebba45cc30bdaed5e", - "url": "https://repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-aarch_64.jar" + "sha256": "9cb6012af7e06361d738ac4e3bdc49a158f8cf87d9dee0f2744056b7d99c28d5", + "url": "https://repo1.maven.org/maven2/io/netty/netty-handler/4.1.72.Final/netty-handler-4.1.72.Final.jar" }, { - "coord": "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", + "coord": "io.netty:netty-handler:jar:sources:4.1.72.Final", "dependencies": [ - "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final" - ], - "directDependencies": [ - "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final" + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-codec:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-resolver:jar:sources:4.1.72.Final", + "io.netty:netty-tcnative-classes:jar:sources:2.0.46.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-x86_64.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-x86_64.jar" - ], - "packages": [], - "sha256": "41f50bb80e9b6d6716f1ac95087384d2ae1f2062959651a2178c007e513ed541", - "url": "https://repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-x86_64.jar" - }, - { - "coord": "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", - "dependencies": [ - "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final" - ], - "directDependencies": [ - "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final" - ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-aarch_64.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-aarch_64.jar" - ], - "packages": [], - "sha256": "28d5554ef2d1a680e5f871704c7f97cddb6b391b6ed17659ef0d6d6e01df7869", - "url": "https://repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-aarch_64.jar" - }, - { - "coord": "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", - "dependencies": [ - "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final" - ], - "directDependencies": [ - "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final" - ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-x86_64.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-x86_64.jar" - ], - "packages": [], - "sha256": "49b6cdca6dade47ab29ce5317baf32c2671f56304b6e40074f7950718e4275fd", - "url": "https://repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-x86_64.jar" - }, - { - "coord": "io.netty:netty-tcnative-boringssl-static:jar:sources:2.0.54.Final", - "dependencies": [ - "io.netty:netty-tcnative-boringssl-static:jar:sources:2.0.54.Final", - "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final" - ], - "directDependencies": [ - "io.netty:netty-tcnative-boringssl-static:jar:sources:2.0.54.Final", - "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final" - ], - "file": null - }, - { - "coord": "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", - "dependencies": [ - "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final" - ], - "directDependencies": [ - "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", - "io.netty:netty-tcnative-classes:2.0.54.Final" - ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-windows-x86_64.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-windows-x86_64.jar" - ], - "packages": [], - "sha256": "7af3a38de275c58281e1f18593a523331db69890baabf5c5734d805dd1dddb71", - "url": "https://repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-windows-x86_64.jar" - }, - { - "coord": "io.netty:netty-tcnative-classes:2.0.54.Final", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "io.netty:netty-jni-util" - ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-tcnative-classes/2.0.54.Final/netty-tcnative-classes-2.0.54.Final.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-tcnative-classes/2.0.54.Final/netty-tcnative-classes-2.0.54.Final.jar" - ], - "packages": [ - "io.netty.internal.tcnative" + "directDependencies": [ + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-codec:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-resolver:jar:sources:4.1.72.Final", + "io.netty:netty-tcnative-classes:jar:sources:2.0.46.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final" ], - "sha256": "98977e279a66778e816f0ed25ea5b7d20b1cffc6469de73e5e3e9accda2aceb4", - "url": "https://repo1.maven.org/maven2/io/netty/netty-tcnative-classes/2.0.54.Final/netty-tcnative-classes-2.0.54.Final.jar" - }, - { - "coord": "io.netty:netty-tcnative-classes:jar:sources:2.0.54.Final", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-tcnative-classes/2.0.54.Final/netty-tcnative-classes-2.0.54.Final-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-handler/4.1.72.Final/netty-handler-4.1.72.Final-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-tcnative-classes/2.0.54.Final/netty-tcnative-classes-2.0.54.Final-sources.jar" + "https://repo1.maven.org/maven2/io/netty/netty-handler/4.1.72.Final/netty-handler-4.1.72.Final-sources.jar" ], "packages": [], - "sha256": "f1fab7dfd7fbfbccc2d97bd2e3723cabd5867397827a59b24be9c22f9ea2edc4", - "url": "https://repo1.maven.org/maven2/io/netty/netty-tcnative-classes/2.0.54.Final/netty-tcnative-classes-2.0.54.Final-sources.jar" + "sha256": "c0a72cbf0c6c3e8352deed2c20cd37412e8151b9b604c9314ad1d38f989d7bbd", + "url": "https://repo1.maven.org/maven2/io/netty/netty-handler/4.1.72.Final/netty-handler-4.1.72.Final-sources.jar" }, { - "coord": "io.netty:netty-transport-classes-epoll:4.1.81.Final", + "coord": "io.netty:netty-resolver-dns:4.1.58.Final", "dependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-codec-dns:4.1.58.Final", + "io.netty:netty-codec:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-handler:4.1.72.Final", + "io.netty:netty-resolver:4.1.72.Final", + "io.netty:netty-transport:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-codec-dns:4.1.58.Final", + "io.netty:netty-codec:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-handler:4.1.72.Final", + "io.netty:netty-resolver:4.1.72.Final", + "io.netty:netty-transport:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport-classes-epoll/4.1.81.Final/netty-transport-classes-epoll-4.1.81.Final.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-resolver-dns/4.1.58.Final/netty-resolver-dns-4.1.58.Final.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-transport-classes-epoll/4.1.81.Final/netty-transport-classes-epoll-4.1.81.Final.jar" + "https://repo1.maven.org/maven2/io/netty/netty-resolver-dns/4.1.58.Final/netty-resolver-dns-4.1.58.Final.jar" ], "packages": [ - "io.netty.channel.epoll" + "io.netty.resolver.dns" ], - "sha256": "138218f0fcdd4d2e188e6f9d3bc865f5bc5c794b45076a46de5d93943836e00d", - "url": "https://repo1.maven.org/maven2/io/netty/netty-transport-classes-epoll/4.1.81.Final/netty-transport-classes-epoll-4.1.81.Final.jar" + "sha256": "4f40a22f2119054422cbedc6d45fd1d63426d1fcf144a7465bbff2215e5028f6", + "url": "https://repo1.maven.org/maven2/io/netty/netty-resolver-dns/4.1.58.Final/netty-resolver-dns-4.1.58.Final.jar" }, { - "coord": "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", + "coord": "io.netty:netty-resolver-dns:jar:sources:4.1.58.Final", "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-codec-dns:jar:sources:4.1.58.Final", + "io.netty:netty-codec:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-handler:jar:sources:4.1.72.Final", + "io.netty:netty-resolver:jar:sources:4.1.72.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-codec-dns:jar:sources:4.1.58.Final", + "io.netty:netty-codec:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-handler:jar:sources:4.1.72.Final", + "io.netty:netty-resolver:jar:sources:4.1.72.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport-classes-epoll/4.1.81.Final/netty-transport-classes-epoll-4.1.81.Final-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-resolver-dns/4.1.58.Final/netty-resolver-dns-4.1.58.Final-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-transport-classes-epoll/4.1.81.Final/netty-transport-classes-epoll-4.1.81.Final-sources.jar" + "https://repo1.maven.org/maven2/io/netty/netty-resolver-dns/4.1.58.Final/netty-resolver-dns-4.1.58.Final-sources.jar" ], "packages": [], - "sha256": "171d2e5500ae913a6c3b388a8b70346b51d4febea2544160ce1d7a459747bf7b", - "url": "https://repo1.maven.org/maven2/io/netty/netty-transport-classes-epoll/4.1.81.Final/netty-transport-classes-epoll-4.1.81.Final-sources.jar" + "sha256": "66afae42efa1fc92a2f640611a479f473a3481df6bbb947674004bf52de17f60", + "url": "https://repo1.maven.org/maven2/io/netty/netty-resolver-dns/4.1.58.Final/netty-resolver-dns-4.1.58.Final-sources.jar" }, { - "coord": "io.netty:netty-transport-classes-kqueue:4.1.79.Final", + "coord": "io.netty:netty-resolver:4.1.72.Final", "dependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-common:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-common:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport-classes-kqueue/4.1.79.Final/netty-transport-classes-kqueue-4.1.79.Final.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-resolver/4.1.72.Final/netty-resolver-4.1.72.Final.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-transport-classes-kqueue/4.1.79.Final/netty-transport-classes-kqueue-4.1.79.Final.jar" + "https://repo1.maven.org/maven2/io/netty/netty-resolver/4.1.72.Final/netty-resolver-4.1.72.Final.jar" ], "packages": [ - "io.netty.channel.kqueue" + "io.netty.resolver" ], - "sha256": "b10005fbf71e84cded7fce88eebebaab723195272081f231e2f03d150a9af4e7", - "url": "https://repo1.maven.org/maven2/io/netty/netty-transport-classes-kqueue/4.1.79.Final/netty-transport-classes-kqueue-4.1.79.Final.jar" + "sha256": "6474598aab7cc9d8d6cfa06c05bd1b19adbf7f8451dbdd73070b33a6c60b1b90", + "url": "https://repo1.maven.org/maven2/io/netty/netty-resolver/4.1.72.Final/netty-resolver-4.1.72.Final.jar" }, { - "coord": "io.netty:netty-transport-classes-kqueue:jar:sources:4.1.79.Final", + "coord": "io.netty:netty-resolver:jar:sources:4.1.72.Final", "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" + "io.netty:netty-common:jar:sources:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" + "io.netty:netty-common:jar:sources:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport-classes-kqueue/4.1.79.Final/netty-transport-classes-kqueue-4.1.79.Final-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-resolver/4.1.72.Final/netty-resolver-4.1.72.Final-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-transport-classes-kqueue/4.1.79.Final/netty-transport-classes-kqueue-4.1.79.Final-sources.jar" + "https://repo1.maven.org/maven2/io/netty/netty-resolver/4.1.72.Final/netty-resolver-4.1.72.Final-sources.jar" ], "packages": [], - "sha256": "a2d5f83c8b8eeb47ff0e530d7230737ac47191d90d7d91355cbe9ad9892fb7cd", - "url": "https://repo1.maven.org/maven2/io/netty/netty-transport-classes-kqueue/4.1.79.Final/netty-transport-classes-kqueue-4.1.79.Final-sources.jar" + "sha256": "d879fafdffddc5494f9acf102d369c4de9f8658d4d4e5122fe2d9dd7de03ae29", + "url": "https://repo1.maven.org/maven2/io/netty/netty-resolver/4.1.72.Final/netty-resolver-4.1.72.Final-sources.jar" }, { - "coord": "io.netty:netty-transport-native-epoll:4.1.81.Final", + "coord": "io.netty:netty-tcnative-boringssl-static:2.0.46.Final", "dependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-tcnative-classes:2.0.46.Final" ], "directDependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-tcnative-classes:2.0.46.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.81.Final/netty-transport-native-epoll-4.1.81.Final.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.46.Final/netty-tcnative-boringssl-static-2.0.46.Final.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.81.Final/netty-transport-native-epoll-4.1.81.Final.jar" + "https://repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.46.Final/netty-tcnative-boringssl-static-2.0.46.Final.jar" ], "packages": [], - "sha256": "f77c171f663c52711d700ffc7fdfee43a57028e8a759d9c14e85c438534df862", - "url": "https://repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.81.Final/netty-transport-native-epoll-4.1.81.Final.jar" + "sha256": "170403604dfda291ca562990175832fc9ad77d0d7429597660418eb0e5b34507", + "url": "https://repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.46.Final/netty-tcnative-boringssl-static-2.0.46.Final.jar" }, { - "coord": "io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.81.Final", + "coord": "io.netty:netty-tcnative-boringssl-static:jar:sources:2.0.46.Final", "dependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-tcnative-classes:jar:sources:2.0.46.Final" ], "directDependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-tcnative-classes:jar:sources:2.0.46.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.81.Final/netty-transport-native-epoll-4.1.81.Final-linux-aarch_64.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.81.Final/netty-transport-native-epoll-4.1.81.Final-linux-aarch_64.jar" - ], - "packages": [], - "sha256": "61a167f547b706699aa8368ad878b8a514d2e24869df51e9c44ac5aed69a189f", - "url": "https://repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.81.Final/netty-transport-native-epoll-4.1.81.Final-linux-aarch_64.jar" + "file": null }, { - "coord": "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.81.Final", - "dependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" - ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.81.Final/netty-transport-native-epoll-4.1.81.Final-linux-x86_64.jar", + "coord": "io.netty:netty-tcnative-classes:2.0.46.Final", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-tcnative-classes/2.0.46.Final/netty-tcnative-classes-2.0.46.Final.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.81.Final/netty-transport-native-epoll-4.1.81.Final-linux-x86_64.jar" + "https://repo1.maven.org/maven2/io/netty/netty-tcnative-classes/2.0.46.Final/netty-tcnative-classes-2.0.46.Final.jar" ], - "packages": [], - "sha256": "b3c4958b9e51adbba3668d8cdbc63e9383307c36a7a95ed34c044442dbbac468", - "url": "https://repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.81.Final/netty-transport-native-epoll-4.1.81.Final-linux-x86_64.jar" + "packages": [ + "io.netty.internal.tcnative" + ], + "sha256": "d3ec888dcc4ac7915bf88b417c5e04fd354f4311032a748a6882df09347eed9a", + "url": "https://repo1.maven.org/maven2/io/netty/netty-tcnative-classes/2.0.46.Final/netty-tcnative-classes-2.0.46.Final.jar" }, { - "coord": "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" - ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.81.Final/netty-transport-native-epoll-4.1.81.Final-sources.jar", + "coord": "io.netty:netty-tcnative-classes:jar:sources:2.0.46.Final", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-tcnative-classes/2.0.46.Final/netty-tcnative-classes-2.0.46.Final-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.81.Final/netty-transport-native-epoll-4.1.81.Final-sources.jar" + "https://repo1.maven.org/maven2/io/netty/netty-tcnative-classes/2.0.46.Final/netty-tcnative-classes-2.0.46.Final-sources.jar" ], "packages": [], - "sha256": "f7c3b7ab9615767c350a5f83830d2956a718e5960cd594ffed2782e28873c3cf", - "url": "https://repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.81.Final/netty-transport-native-epoll-4.1.81.Final-sources.jar" + "sha256": "ca3be3cb23d170977e7c1199f83adff9217b50855a94e31c527a85fe8ea65bf8", + "url": "https://repo1.maven.org/maven2/io/netty/netty-tcnative-classes/2.0.46.Final/netty-tcnative-classes-2.0.46.Final-sources.jar" }, { - "coord": "io.netty:netty-transport-native-kqueue:4.1.79.Final", + "coord": "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.58.Final", "dependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-classes-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-transport-native-unix-common:4.1.58.Final", + "io.netty:netty-transport:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-transport-native-unix-common:4.1.58.Final", + "io.netty:netty-transport:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-kqueue/4.1.79.Final/netty-transport-native-kqueue-4.1.79.Final.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.58.Final/netty-transport-native-epoll-4.1.58.Final-linux-x86_64.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-transport-native-kqueue/4.1.79.Final/netty-transport-native-kqueue-4.1.79.Final.jar" + "https://repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.58.Final/netty-transport-native-epoll-4.1.58.Final-linux-x86_64.jar" ], - "packages": [], - "sha256": "8f2d7cf021a17671b55e4cc5254ef3ffa1bb946be26268d27e3f99d4cc59f266", - "url": "https://repo1.maven.org/maven2/io/netty/netty-transport-native-kqueue/4.1.79.Final/netty-transport-native-kqueue-4.1.79.Final.jar" + "packages": [ + "io.netty.channel.epoll" + ], + "sha256": "f83d7dd771268ae36280bf11aba3f0e7f34fac58cb9ad95897b229166212669b", + "url": "https://repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.58.Final/netty-transport-native-epoll-4.1.58.Final-linux-x86_64.jar" }, { - "coord": "io.netty:netty-transport-native-kqueue:jar:sources:4.1.79.Final", + "coord": "io.netty:netty-transport-native-epoll:jar:sources:4.1.58.Final", "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-classes-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-kqueue/4.1.79.Final/netty-transport-native-kqueue-4.1.79.Final-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.58.Final/netty-transport-native-epoll-4.1.58.Final-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-transport-native-kqueue/4.1.79.Final/netty-transport-native-kqueue-4.1.79.Final-sources.jar" + "https://repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.58.Final/netty-transport-native-epoll-4.1.58.Final-sources.jar" ], "packages": [], - "sha256": "cdb3f1778759f797ad0d5163ce0502f01c66e6a32738d43c345ffcfa184c02c2", - "url": "https://repo1.maven.org/maven2/io/netty/netty-transport-native-kqueue/4.1.79.Final/netty-transport-native-kqueue-4.1.79.Final-sources.jar" + "sha256": "a55e33cb6b0e3dfe46f791f54bc122e41cbd5ee084d322a9b98f4d083d293168", + "url": "https://repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.58.Final/netty-transport-native-epoll-4.1.58.Final-sources.jar" }, { - "coord": "io.netty:netty-transport-native-unix-common:4.1.81.Final", + "coord": "io.netty:netty-transport-native-unix-common:4.1.58.Final", "dependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-transport:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final" + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-transport:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-unix-common/4.1.81.Final/netty-transport-native-unix-common-4.1.81.Final.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-unix-common/4.1.58.Final/netty-transport-native-unix-common-4.1.58.Final.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-transport-native-unix-common/4.1.81.Final/netty-transport-native-unix-common-4.1.81.Final.jar" + "https://repo1.maven.org/maven2/io/netty/netty-transport-native-unix-common/4.1.58.Final/netty-transport-native-unix-common-4.1.58.Final.jar" ], "packages": [ "io.netty.channel.unix" ], - "sha256": "a259e7330b3abe57e56cbd0db5406687d784ee55c44afb990e7514a261c5c0a6", - "url": "https://repo1.maven.org/maven2/io/netty/netty-transport-native-unix-common/4.1.81.Final/netty-transport-native-unix-common-4.1.81.Final.jar" + "sha256": "970555236f8e9c0bf99d74cde41501cb3469db61105b0050323e46702b04e93a", + "url": "https://repo1.maven.org/maven2/io/netty/netty-transport-native-unix-common/4.1.58.Final/netty-transport-native-unix-common-4.1.58.Final.jar" }, { - "coord": "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", + "coord": "io.netty:netty-transport-native-unix-common:jar:sources:4.1.58.Final", "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final" + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-transport:jar:sources:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-unix-common/4.1.81.Final/netty-transport-native-unix-common-4.1.81.Final-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-unix-common/4.1.58.Final/netty-transport-native-unix-common-4.1.58.Final-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-transport-native-unix-common/4.1.81.Final/netty-transport-native-unix-common-4.1.81.Final-sources.jar" + "https://repo1.maven.org/maven2/io/netty/netty-transport-native-unix-common/4.1.58.Final/netty-transport-native-unix-common-4.1.58.Final-sources.jar" ], "packages": [], - "sha256": "7936a725e5ef0b1f40d3bb19c7888cf499059222813bb30a1007a77d1a68b99b", - "url": "https://repo1.maven.org/maven2/io/netty/netty-transport-native-unix-common/4.1.81.Final/netty-transport-native-unix-common-4.1.81.Final-sources.jar" + "sha256": "5a3485f27c06969f4d5d1ad8b076197081203d22cbf22c4370d4f1cd3704173c", + "url": "https://repo1.maven.org/maven2/io/netty/netty-transport-native-unix-common/4.1.58.Final/netty-transport-native-unix-common-4.1.58.Final-sources.jar" }, { - "coord": "io.netty:netty-transport:4.1.81.Final", + "coord": "io.netty:netty-transport:4.1.72.Final", "dependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final" + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-resolver:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-resolver:4.1.79.Final" + "io.netty:netty-buffer:4.1.72.Final", + "io.netty:netty-common:4.1.72.Final", + "io.netty:netty-resolver:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport/4.1.81.Final/netty-transport-4.1.81.Final.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport/4.1.72.Final/netty-transport-4.1.72.Final.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-transport/4.1.81.Final/netty-transport-4.1.81.Final.jar" + "https://repo1.maven.org/maven2/io/netty/netty-transport/4.1.72.Final/netty-transport-4.1.72.Final.jar" ], "packages": [ "io.netty.bootstrap", @@ -9794,28 +7394,28 @@ "io.netty.channel.socket.nio", "io.netty.channel.socket.oio" ], - "sha256": "e110b642ea8b4de571821d1792c0f2161a277a713cb0e90d53187489b0e4657d", - "url": "https://repo1.maven.org/maven2/io/netty/netty-transport/4.1.81.Final/netty-transport-4.1.81.Final.jar" + "sha256": "c5fb68e9a65b6e8a516adfcb9fa323479ee7b4d9449d8a529d2ecab3d3711d5a", + "url": "https://repo1.maven.org/maven2/io/netty/netty-transport/4.1.72.Final/netty-transport-4.1.72.Final.jar" }, { - "coord": "io.netty:netty-transport:jar:sources:4.1.81.Final", + "coord": "io.netty:netty-transport:jar:sources:4.1.72.Final", "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final" + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-resolver:jar:sources:4.1.72.Final" ], "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final" + "io.netty:netty-buffer:jar:sources:4.1.72.Final", + "io.netty:netty-common:jar:sources:4.1.72.Final", + "io.netty:netty-resolver:jar:sources:4.1.72.Final" ], - "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport/4.1.81.Final/netty-transport-4.1.81.Final-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport/4.1.72.Final/netty-transport-4.1.72.Final-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/netty/netty-transport/4.1.81.Final/netty-transport-4.1.81.Final-sources.jar" + "https://repo1.maven.org/maven2/io/netty/netty-transport/4.1.72.Final/netty-transport-4.1.72.Final-sources.jar" ], "packages": [], - "sha256": "af65f0d133823f223de846594b62a87d3f629f523119ed171a551051e00adcdb", - "url": "https://repo1.maven.org/maven2/io/netty/netty-transport/4.1.81.Final/netty-transport-4.1.81.Final-sources.jar" + "sha256": "7847a2a3d5411fb5ce576043938773a030fc1f31785700a8e018a2c0d7b83666", + "url": "https://repo1.maven.org/maven2/io/netty/netty-transport/4.1.72.Final/netty-transport-4.1.72.Final-sources.jar" }, { "coord": "io.opentelemetry:opentelemetry-api:1.12.0", @@ -9888,107 +7488,19 @@ "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-context/1.12.0/opentelemetry-context-1.12.0-sources.jar" }, { - "coord": "io.opentelemetry:opentelemetry-exporter-common:1.17.0", - "dependencies": [ - "io.opentelemetry:opentelemetry-api:1.12.0" - ], - "directDependencies": [ - "io.opentelemetry:opentelemetry-api:1.12.0" - ], - "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-exporter-common/1.17.0/opentelemetry-exporter-common-1.17.0.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-exporter-common/1.17.0/opentelemetry-exporter-common-1.17.0.jar" - ], - "packages": [ - "io.opentelemetry.exporter.internal", - "io.opentelemetry.exporter.internal.auth", - "io.opentelemetry.exporter.internal.grpc", - "io.opentelemetry.exporter.internal.marshal", - "io.opentelemetry.exporter.internal.okhttp", - "io.opentelemetry.exporter.internal.retry" - ], - "sha256": "d81ba85fe84c81e6b1a40c8351a619e1af40553cdecfe98254610137dcb025b0", - "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-exporter-common/1.17.0/opentelemetry-exporter-common-1.17.0.jar" - }, - { - "coord": "io.opentelemetry:opentelemetry-exporter-common:jar:sources:1.17.0", - "dependencies": [ - "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0" - ], - "directDependencies": [ - "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0" - ], - "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-exporter-common/1.17.0/opentelemetry-exporter-common-1.17.0-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-exporter-common/1.17.0/opentelemetry-exporter-common-1.17.0-sources.jar" - ], - "packages": [], - "sha256": "df93926df280e1e749a84608343dac4372c9c7ae00d2785322e790246e682bc8", - "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-exporter-common/1.17.0/opentelemetry-exporter-common-1.17.0-sources.jar" - }, - { - "coord": "io.opentelemetry:opentelemetry-exporter-logging:1.17.0", - "dependencies": [ - "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", - "io.opentelemetry:opentelemetry-sdk-logs:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:1.12.0", - "io.opentelemetry:opentelemetry-sdk:1.17.0", - "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha" - ], - "directDependencies": [ - "io.opentelemetry:opentelemetry-sdk-logs:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:1.17.0", - "io.opentelemetry:opentelemetry-sdk:1.17.0" - ], - "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-exporter-logging/1.17.0/opentelemetry-exporter-logging-1.17.0.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-exporter-logging/1.17.0/opentelemetry-exporter-logging-1.17.0.jar" - ], - "packages": [ - "io.opentelemetry.exporter.logging" - ], - "sha256": "442edd61d857e36db8bc769ad0f47f87078167cd0a1e9148765db5d9bc0b4301", - "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-exporter-logging/1.17.0/opentelemetry-exporter-logging-1.17.0.jar" - }, - { - "coord": "io.opentelemetry:opentelemetry-exporter-logging:jar:sources:1.17.0", - "dependencies": [ - "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha" - ], - "directDependencies": [ - "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk:jar:sources:1.17.0" - ], - "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-exporter-logging/1.17.0/opentelemetry-exporter-logging-1.17.0-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-exporter-logging/1.17.0/opentelemetry-exporter-logging-1.17.0-sources.jar" - ], - "packages": [], - "sha256": "a22c28cf2b8d37219d6914d07140e553226f905837b560304069eaf654ec5566", - "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-exporter-logging/1.17.0/opentelemetry-exporter-logging-1.17.0-sources.jar" - }, - { - "coord": "io.opentelemetry:opentelemetry-sdk-common:1.17.0", + "coord": "io.opentelemetry:opentelemetry-sdk-common:1.12.0", "dependencies": [ "io.opentelemetry:opentelemetry-api:1.12.0", + "io.opentelemetry:opentelemetry-context:1.12.0", "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha" ], "directDependencies": [ "io.opentelemetry:opentelemetry-api:1.12.0", "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha" ], - "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-common/1.17.0/opentelemetry-sdk-common-1.17.0.jar", + "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-common/1.12.0/opentelemetry-sdk-common-1.12.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-common/1.17.0/opentelemetry-sdk-common-1.17.0.jar" + "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-common/1.12.0/opentelemetry-sdk-common-1.12.0.jar" ], "packages": [ "io.opentelemetry.sdk.common", @@ -9996,251 +7508,144 @@ "io.opentelemetry.sdk.internal", "io.opentelemetry.sdk.resources" ], - "sha256": "7bd2d99fc7522e3d5eed91b4b92a7922be75b424c75439317a23c4ee027cb7e6", - "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-common/1.17.0/opentelemetry-sdk-common-1.17.0.jar" + "sha256": "3f1bbf00f8c9f6e38e54206bba875a1643b1315135e79ec98a8315018c60949a", + "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-common/1.12.0/opentelemetry-sdk-common-1.12.0.jar" }, { - "coord": "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", + "coord": "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.12.0", "dependencies": [ "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", + "io.opentelemetry:opentelemetry-context:jar:sources:1.12.0", "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha" ], "directDependencies": [ "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha" ], - "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-common/1.17.0/opentelemetry-sdk-common-1.17.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-common/1.12.0/opentelemetry-sdk-common-1.12.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-common/1.17.0/opentelemetry-sdk-common-1.17.0-sources.jar" + "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-common/1.12.0/opentelemetry-sdk-common-1.12.0-sources.jar" ], "packages": [ "io.opentelemetry.sdk.internal" ], - "sha256": "871209814f3ed4ac722685168be4c56d87a6b38b234400f94853c06d70905584", - "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-common/1.17.0/opentelemetry-sdk-common-1.17.0-sources.jar" - }, - { - "coord": "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.17.0", - "dependencies": [ - "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", - "io.opentelemetry:opentelemetry-sdk-logs:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:1.12.0", - "io.opentelemetry:opentelemetry-sdk:1.17.0", - "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha" - ], - "directDependencies": [ - "io.opentelemetry:opentelemetry-sdk-logs:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:1.17.0", - "io.opentelemetry:opentelemetry-sdk:1.17.0" - ], - "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi/1.17.0/opentelemetry-sdk-extension-autoconfigure-spi-1.17.0.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi/1.17.0/opentelemetry-sdk-extension-autoconfigure-spi-1.17.0.jar" - ], - "packages": [ - "io.opentelemetry.sdk.autoconfigure.spi", - "io.opentelemetry.sdk.autoconfigure.spi.logs", - "io.opentelemetry.sdk.autoconfigure.spi.metrics", - "io.opentelemetry.sdk.autoconfigure.spi.traces" - ], - "sha256": "929ffd64d542b60bc839f186dd6b63349fe4ed64778bbfee513e2fb38eaa7ac6", - "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi/1.17.0/opentelemetry-sdk-extension-autoconfigure-spi-1.17.0.jar" - }, - { - "coord": "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:jar:sources:1.17.0", - "dependencies": [ - "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha" - ], - "directDependencies": [ - "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk:jar:sources:1.17.0" - ], - "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi/1.17.0/opentelemetry-sdk-extension-autoconfigure-spi-1.17.0-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi/1.17.0/opentelemetry-sdk-extension-autoconfigure-spi-1.17.0-sources.jar" - ], - "packages": [], - "sha256": "e31ab6f8459ee82d9f0ce73c336e555f5d4dd08fc3416ddc803527cb209d25df", - "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi/1.17.0/opentelemetry-sdk-extension-autoconfigure-spi-1.17.0-sources.jar" - }, - { - "coord": "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.17.0-alpha", - "dependencies": [ - "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.17.0", - "io.opentelemetry:opentelemetry-sdk-logs:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:1.12.0", - "io.opentelemetry:opentelemetry-sdk:1.17.0", - "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha" - ], - "directDependencies": [ - "io.opentelemetry:opentelemetry-exporter-common:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.17.0", - "io.opentelemetry:opentelemetry-sdk-logs:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:1.17.0", - "io.opentelemetry:opentelemetry-sdk:1.17.0", - "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha" - ], - "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-extension-autoconfigure/1.17.0-alpha/opentelemetry-sdk-extension-autoconfigure-1.17.0-alpha.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-extension-autoconfigure/1.17.0-alpha/opentelemetry-sdk-extension-autoconfigure-1.17.0-alpha.jar" - ], - "packages": [ - "io.opentelemetry.sdk.autoconfigure" - ], - "sha256": "632e505e6a2f9788afb4c77131353423958f222c50684e58176ed8ba361fc873", - "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-extension-autoconfigure/1.17.0-alpha/opentelemetry-sdk-extension-autoconfigure-1.17.0-alpha.jar" - }, - { - "coord": "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:jar:sources:1.17.0-alpha", - "dependencies": [ - "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha" - ], - "directDependencies": [ - "io.opentelemetry:opentelemetry-exporter-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha" - ], - "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-extension-autoconfigure/1.17.0-alpha/opentelemetry-sdk-extension-autoconfigure-1.17.0-alpha-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-extension-autoconfigure/1.17.0-alpha/opentelemetry-sdk-extension-autoconfigure-1.17.0-alpha-sources.jar" - ], - "packages": [], - "sha256": "f2e46d8104734317d38da2eccd25d67089f0ba98ef51e23a423aa890cc195538", - "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-extension-autoconfigure/1.17.0-alpha/opentelemetry-sdk-extension-autoconfigure-1.17.0-alpha-sources.jar" + "sha256": "014f38a4638724b23065aab6da389fec6e3bc5e27fd5aa98b9e902ff1162a1f2", + "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-common/1.12.0/opentelemetry-sdk-common-1.12.0-sources.jar" }, { - "coord": "io.opentelemetry:opentelemetry-sdk-logs:1.17.0-alpha", + "coord": "io.opentelemetry:opentelemetry-sdk-logs:1.12.0-alpha", "dependencies": [ "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", + "io.opentelemetry:opentelemetry-context:1.12.0", + "io.opentelemetry:opentelemetry-sdk-common:1.12.0", "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha" ], "directDependencies": [ - "io.opentelemetry:opentelemetry-sdk-common:1.17.0" + "io.opentelemetry:opentelemetry-sdk-common:1.12.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-logs/1.17.0-alpha/opentelemetry-sdk-logs-1.17.0-alpha.jar", + "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-logs/1.12.0-alpha/opentelemetry-sdk-logs-1.12.0-alpha.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-logs/1.17.0-alpha/opentelemetry-sdk-logs-1.17.0-alpha.jar" + "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-logs/1.12.0-alpha/opentelemetry-sdk-logs-1.12.0-alpha.jar" ], "packages": [ "io.opentelemetry.sdk.logs", "io.opentelemetry.sdk.logs.data", "io.opentelemetry.sdk.logs.export" ], - "sha256": "47f5acf2833f9bec744eea5590efc421024b1ce238f47b22c4bb64759ae1e287", - "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-logs/1.17.0-alpha/opentelemetry-sdk-logs-1.17.0-alpha.jar" + "sha256": "0ee34a34bfc7962043eef63695d321b72fe720c24892fcaac3450e7b353aa326", + "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-logs/1.12.0-alpha/opentelemetry-sdk-logs-1.12.0-alpha.jar" }, { - "coord": "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.17.0-alpha", + "coord": "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.12.0-alpha", "dependencies": [ "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", + "io.opentelemetry:opentelemetry-context:jar:sources:1.12.0", + "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.12.0", "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha" ], "directDependencies": [ - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0" + "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.12.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-logs/1.17.0-alpha/opentelemetry-sdk-logs-1.17.0-alpha-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-logs/1.12.0-alpha/opentelemetry-sdk-logs-1.12.0-alpha-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-logs/1.17.0-alpha/opentelemetry-sdk-logs-1.17.0-alpha-sources.jar" + "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-logs/1.12.0-alpha/opentelemetry-sdk-logs-1.12.0-alpha-sources.jar" ], "packages": [], - "sha256": "acabd541c4b1ef7f99d6e33f4209fd88043376aab61f2152511d655e20bf78aa", - "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-logs/1.17.0-alpha/opentelemetry-sdk-logs-1.17.0-alpha-sources.jar" + "sha256": "13d6a77b23367b1a9f3b08916410930c105925b59b165c8b13ffa967937f56af", + "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-logs/1.12.0-alpha/opentelemetry-sdk-logs-1.12.0-alpha-sources.jar" }, { - "coord": "io.opentelemetry:opentelemetry-sdk-metrics:1.17.0", + "coord": "io.opentelemetry:opentelemetry-sdk-metrics:1.12.0-alpha", "dependencies": [ "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", + "io.opentelemetry:opentelemetry-context:1.12.0", + "io.opentelemetry:opentelemetry-sdk-common:1.12.0", "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha" ], "directDependencies": [ "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0" + "io.opentelemetry:opentelemetry-sdk-common:1.12.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-metrics/1.17.0/opentelemetry-sdk-metrics-1.17.0.jar", + "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-metrics/1.12.0-alpha/opentelemetry-sdk-metrics-1.12.0-alpha.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-metrics/1.17.0/opentelemetry-sdk-metrics-1.17.0.jar" + "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-metrics/1.12.0-alpha/opentelemetry-sdk-metrics-1.12.0-alpha.jar" ], "packages": [ "io.opentelemetry.sdk.metrics", + "io.opentelemetry.sdk.metrics.common", "io.opentelemetry.sdk.metrics.data", + "io.opentelemetry.sdk.metrics.exemplar", "io.opentelemetry.sdk.metrics.export", - "io.opentelemetry.sdk.metrics.internal", "io.opentelemetry.sdk.metrics.internal.aggregator", "io.opentelemetry.sdk.metrics.internal.concurrent", "io.opentelemetry.sdk.metrics.internal.data", "io.opentelemetry.sdk.metrics.internal.data.exponentialhistogram", "io.opentelemetry.sdk.metrics.internal.debug", "io.opentelemetry.sdk.metrics.internal.descriptor", - "io.opentelemetry.sdk.metrics.internal.exemplar", "io.opentelemetry.sdk.metrics.internal.export", "io.opentelemetry.sdk.metrics.internal.instrument", "io.opentelemetry.sdk.metrics.internal.state", - "io.opentelemetry.sdk.metrics.internal.view" + "io.opentelemetry.sdk.metrics.internal.view", + "io.opentelemetry.sdk.metrics.view" ], - "sha256": "fd5be4b8923cb349ee2b8ef80f6cd31f46846be8c2579846bdc39b03cb3c3a6e", - "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-metrics/1.17.0/opentelemetry-sdk-metrics-1.17.0.jar" + "sha256": "b9890b2ec149e23092183b3ea2922ca0afdc30c2becdeefd625774993a3c8a7d", + "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-metrics/1.12.0-alpha/opentelemetry-sdk-metrics-1.12.0-alpha.jar" }, { - "coord": "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.17.0", + "coord": "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.12.0-alpha", "dependencies": [ "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", + "io.opentelemetry:opentelemetry-context:jar:sources:1.12.0", + "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.12.0", "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha" ], "directDependencies": [ "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0" + "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.12.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-metrics/1.17.0/opentelemetry-sdk-metrics-1.17.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-metrics/1.12.0-alpha/opentelemetry-sdk-metrics-1.12.0-alpha-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-metrics/1.17.0/opentelemetry-sdk-metrics-1.17.0-sources.jar" + "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-metrics/1.12.0-alpha/opentelemetry-sdk-metrics-1.12.0-alpha-sources.jar" ], "packages": [], - "sha256": "25f36393fc7e8f1f528af95e152e9af0c4a5a310300a4af610a588da2e6623d6", - "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-metrics/1.17.0/opentelemetry-sdk-metrics-1.17.0-sources.jar" + "sha256": "c7125a50deee07ec218cbb6415e91dc5d96b64b696eaa7c99615032c968a4a41", + "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-metrics/1.12.0-alpha/opentelemetry-sdk-metrics-1.12.0-alpha-sources.jar" }, { "coord": "io.opentelemetry:opentelemetry-sdk-testing:1.12.0", "dependencies": [ "io.opentelemetry:opentelemetry-api:1.12.0", "io.opentelemetry:opentelemetry-context:1.12.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", - "io.opentelemetry:opentelemetry-sdk-logs:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:1.17.0", + "io.opentelemetry:opentelemetry-sdk-common:1.12.0", + "io.opentelemetry:opentelemetry-sdk-logs:1.12.0-alpha", + "io.opentelemetry:opentelemetry-sdk-metrics:1.12.0-alpha", "io.opentelemetry:opentelemetry-sdk-trace:1.12.0", - "io.opentelemetry:opentelemetry-sdk:1.17.0", + "io.opentelemetry:opentelemetry-sdk:1.12.0", "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha" ], "directDependencies": [ "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-sdk:1.17.0", + "io.opentelemetry:opentelemetry-sdk:1.12.0", "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha" ], "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-testing/1.12.0/opentelemetry-sdk-testing-1.12.0.jar", @@ -10264,16 +7669,16 @@ "dependencies": [ "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", "io.opentelemetry:opentelemetry-context:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.17.0", + "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.12.0", + "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.12.0-alpha", + "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.12.0-alpha", "io.opentelemetry:opentelemetry-sdk-trace:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk:jar:sources:1.17.0", + "io.opentelemetry:opentelemetry-sdk:jar:sources:1.12.0", "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha" ], "directDependencies": [ "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk:jar:sources:1.17.0", + "io.opentelemetry:opentelemetry-sdk:jar:sources:1.12.0", "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha" ], "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-testing/1.12.0/opentelemetry-sdk-testing-1.12.0-sources.jar", @@ -10289,12 +7694,12 @@ "dependencies": [ "io.opentelemetry:opentelemetry-api:1.12.0", "io.opentelemetry:opentelemetry-context:1.12.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", + "io.opentelemetry:opentelemetry-sdk-common:1.12.0", "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha" ], "directDependencies": [ "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", + "io.opentelemetry:opentelemetry-sdk-common:1.12.0", "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha" ], "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-trace/1.12.0/opentelemetry-sdk-trace-1.12.0.jar", @@ -10318,12 +7723,12 @@ "dependencies": [ "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", "io.opentelemetry:opentelemetry-context:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", + "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.12.0", "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha" ], "directDependencies": [ "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", + "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.12.0", "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha" ], "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-trace/1.12.0/opentelemetry-sdk-trace-1.12.0-sources.jar", @@ -10335,56 +7740,58 @@ "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk-trace/1.12.0/opentelemetry-sdk-trace-1.12.0-sources.jar" }, { - "coord": "io.opentelemetry:opentelemetry-sdk:1.17.0", + "coord": "io.opentelemetry:opentelemetry-sdk:1.12.0", "dependencies": [ "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", - "io.opentelemetry:opentelemetry-sdk-logs:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:1.17.0", + "io.opentelemetry:opentelemetry-context:1.12.0", + "io.opentelemetry:opentelemetry-sdk-common:1.12.0", + "io.opentelemetry:opentelemetry-sdk-logs:1.12.0-alpha", + "io.opentelemetry:opentelemetry-sdk-metrics:1.12.0-alpha", "io.opentelemetry:opentelemetry-sdk-trace:1.12.0", "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha" ], "directDependencies": [ "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", - "io.opentelemetry:opentelemetry-sdk-logs:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:1.17.0", + "io.opentelemetry:opentelemetry-sdk-common:1.12.0", + "io.opentelemetry:opentelemetry-sdk-logs:1.12.0-alpha", + "io.opentelemetry:opentelemetry-sdk-metrics:1.12.0-alpha", "io.opentelemetry:opentelemetry-sdk-trace:1.12.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk/1.17.0/opentelemetry-sdk-1.17.0.jar", + "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk/1.12.0/opentelemetry-sdk-1.12.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk/1.17.0/opentelemetry-sdk-1.17.0.jar" + "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk/1.12.0/opentelemetry-sdk-1.12.0.jar" ], "packages": [ "io.opentelemetry.sdk" ], - "sha256": "8a435d2bbf38a32141d828e78d8f75116cb3270f7ebd9a0f5f20c785115eaf70", - "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk/1.17.0/opentelemetry-sdk-1.17.0.jar" + "sha256": "63960b47f5898a55c0bb7d6f11349074e42f0f8fcef269b33ac42ff8cf087102", + "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk/1.12.0/opentelemetry-sdk-1.12.0.jar" }, { - "coord": "io.opentelemetry:opentelemetry-sdk:jar:sources:1.17.0", + "coord": "io.opentelemetry:opentelemetry-sdk:jar:sources:1.12.0", "dependencies": [ "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.17.0", + "io.opentelemetry:opentelemetry-context:jar:sources:1.12.0", + "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.12.0", + "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.12.0-alpha", + "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.12.0-alpha", "io.opentelemetry:opentelemetry-sdk-trace:jar:sources:1.12.0", "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha" ], "directDependencies": [ "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.17.0", + "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.12.0", + "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.12.0-alpha", + "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.12.0-alpha", "io.opentelemetry:opentelemetry-sdk-trace:jar:sources:1.12.0" ], - "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk/1.17.0/opentelemetry-sdk-1.17.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk/1.12.0/opentelemetry-sdk-1.12.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk/1.17.0/opentelemetry-sdk-1.17.0-sources.jar" + "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk/1.12.0/opentelemetry-sdk-1.12.0-sources.jar" ], "packages": [], - "sha256": "65c6c2cbccdaece973ccb3f37abe407c131cf16883377a59d456982aff5e4ab0", - "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk/1.17.0/opentelemetry-sdk-1.17.0-sources.jar" + "sha256": "4cdca7e6e669d5b8dc51452f33eb399a6797863a01bf4fe9992fbabc23ec0f38", + "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-sdk/1.12.0/opentelemetry-sdk-1.12.0-sources.jar" }, { "coord": "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha", @@ -10424,45 +7831,18 @@ "url": "https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-semconv/1.12.0-alpha/opentelemetry-semconv-1.12.0-alpha-sources.jar" }, { - "coord": "io.ous:jtoml:2.0.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/io/ous/jtoml/2.0.0/jtoml-2.0.0.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/ous/jtoml/2.0.0/jtoml-2.0.0.jar" - ], - "packages": [ - "io.ous.jtoml", - "io.ous.jtoml.impl" - ], - "sha256": "3cabdae2244c999addebb8c31ae452fbdc874b4f26a163539954b8eeb5d6acc6", - "url": "https://repo1.maven.org/maven2/io/ous/jtoml/2.0.0/jtoml-2.0.0.jar" - }, - { - "coord": "io.ous:jtoml:jar:sources:2.0.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/io/ous/jtoml/2.0.0/jtoml-2.0.0-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/io/ous/jtoml/2.0.0/jtoml-2.0.0-sources.jar" - ], - "packages": [], - "sha256": "f479f2acdf7a362dc86a5c9310ddaec7b34a87f0a8a6f46dde41c1069b2a2138", - "url": "https://repo1.maven.org/maven2/io/ous/jtoml/2.0.0/jtoml-2.0.0-sources.jar" - }, - { - "coord": "io.pebbletemplates:pebble:3.1.5", + "coord": "io.pebbletemplates:pebble:3.1.4", "dependencies": [ - "org.slf4j:slf4j-api:1.7.36", + "org.slf4j:slf4j-api:1.7.26", "org.unbescape:unbescape:1.1.6.RELEASE" ], "directDependencies": [ - "org.slf4j:slf4j-api:1.7.36", + "org.slf4j:slf4j-api:1.7.26", "org.unbescape:unbescape:1.1.6.RELEASE" ], - "file": "v1/https/repo1.maven.org/maven2/io/pebbletemplates/pebble/3.1.5/pebble-3.1.5.jar", + "file": "v1/https/repo1.maven.org/maven2/io/pebbletemplates/pebble/3.1.4/pebble-3.1.4.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/pebbletemplates/pebble/3.1.5/pebble-3.1.5.jar" + "https://repo1.maven.org/maven2/io/pebbletemplates/pebble/3.1.4/pebble-3.1.4.jar" ], "packages": [ "com.mitchellbosecke.pebble", @@ -10489,52 +7869,52 @@ "com.mitchellbosecke.pebble.tokenParser", "com.mitchellbosecke.pebble.utils" ], - "sha256": "d253a6dde59e138698aaaaee546461d2f1f6c8bd2aa38ecdd347df17cf90d6f0", - "url": "https://repo1.maven.org/maven2/io/pebbletemplates/pebble/3.1.5/pebble-3.1.5.jar" + "sha256": "147f8221c330656d0065bd74d5bbaa22ab0de773227cee6c166d6b26d1fec2ef", + "url": "https://repo1.maven.org/maven2/io/pebbletemplates/pebble/3.1.4/pebble-3.1.4.jar" }, { - "coord": "io.pebbletemplates:pebble:jar:sources:3.1.5", + "coord": "io.pebbletemplates:pebble:jar:sources:3.1.4", "dependencies": [ - "org.slf4j:slf4j-api:jar:sources:1.7.36", + "org.slf4j:slf4j-api:jar:sources:1.7.26", "org.unbescape:unbescape:jar:sources:1.1.6.RELEASE" ], "directDependencies": [ - "org.slf4j:slf4j-api:jar:sources:1.7.36", + "org.slf4j:slf4j-api:jar:sources:1.7.26", "org.unbescape:unbescape:jar:sources:1.1.6.RELEASE" ], - "file": "v1/https/repo1.maven.org/maven2/io/pebbletemplates/pebble/3.1.5/pebble-3.1.5-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/pebbletemplates/pebble/3.1.4/pebble-3.1.4-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/pebbletemplates/pebble/3.1.5/pebble-3.1.5-sources.jar" + "https://repo1.maven.org/maven2/io/pebbletemplates/pebble/3.1.4/pebble-3.1.4-sources.jar" ], "packages": [], - "sha256": "d8a1a898251905df0a879e1970575f6e6fdd1fd93ce302387ecc27ab807cf1ec", - "url": "https://repo1.maven.org/maven2/io/pebbletemplates/pebble/3.1.5/pebble-3.1.5-sources.jar" + "sha256": "15dd86fd5fabd9f18dde9803b8ceb487b74961e701c82e130b3c149b415689de", + "url": "https://repo1.maven.org/maven2/io/pebbletemplates/pebble/3.1.4/pebble-3.1.4-sources.jar" }, { - "coord": "io.perfmark:perfmark-api:0.25.0", + "coord": "io.perfmark:perfmark-api:0.23.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/io/perfmark/perfmark-api/0.25.0/perfmark-api-0.25.0.jar", + "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.25.0/perfmark-api-0.25.0.jar" + "https://repo1.maven.org/maven2/io/perfmark/perfmark-api/0.23.0/perfmark-api-0.23.0.jar" ], "packages": [ "io.perfmark" ], - "sha256": "2044542933fcdf40ad18441bec37646d150c491871157f288847e29cb81de4cb", - "url": "https://repo1.maven.org/maven2/io/perfmark/perfmark-api/0.25.0/perfmark-api-0.25.0.jar" + "sha256": "c705b5c10c18ff3032b9e81742bc2f6b0e5607f6a6dfc0c8ad0cff75d4913042", + "url": "https://repo1.maven.org/maven2/io/perfmark/perfmark-api/0.23.0/perfmark-api-0.23.0.jar" }, { - "coord": "io.perfmark:perfmark-api:jar:sources:0.25.0", + "coord": "io.perfmark:perfmark-api:jar:sources:0.23.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/io/perfmark/perfmark-api/0.25.0/perfmark-api-0.25.0-sources.jar", + "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.25.0/perfmark-api-0.25.0-sources.jar" + "https://repo1.maven.org/maven2/io/perfmark/perfmark-api/0.23.0/perfmark-api-0.23.0-sources.jar" ], "packages": [], - "sha256": "007b6b6beaba11fabb025d79b8774b6a7583596a8ec0a28157570304642b0e72", - "url": "https://repo1.maven.org/maven2/io/perfmark/perfmark-api/0.25.0/perfmark-api-0.25.0-sources.jar" + "sha256": "8b75ae9cac9c14c8b697501adf74584130a307f2851d135e0ada4667cdf3b7b5", + "url": "https://repo1.maven.org/maven2/io/perfmark/perfmark-api/0.23.0/perfmark-api-0.23.0-sources.jar" }, { "coord": "io.prometheus:simpleclient:0.14.1", @@ -10897,16 +8277,16 @@ "url": "https://repo1.maven.org/maven2/io/prometheus/simpleclient_tracer_otel_agent/0.14.1/simpleclient_tracer_otel_agent-0.14.1-sources.jar" }, { - "coord": "io.reactivex.rxjava2:rxjava:2.2.21", + "coord": "io.reactivex.rxjava2:rxjava:2.2.1", "dependencies": [ - "org.reactivestreams:reactive-streams:1.0.4" + "org.reactivestreams:reactive-streams:1.0.2" ], "directDependencies": [ - "org.reactivestreams:reactive-streams:1.0.4" + "org.reactivestreams:reactive-streams:1.0.2" ], - "file": "v1/https/repo1.maven.org/maven2/io/reactivex/rxjava2/rxjava/2.2.21/rxjava-2.2.21.jar", + "file": "v1/https/repo1.maven.org/maven2/io/reactivex/rxjava2/rxjava/2.2.1/rxjava-2.2.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/reactivex/rxjava2/rxjava/2.2.21/rxjava-2.2.21.jar" + "https://repo1.maven.org/maven2/io/reactivex/rxjava2/rxjava/2.2.1/rxjava-2.2.1.jar" ], "packages": [ "io.reactivex", @@ -10940,58 +8320,58 @@ "io.reactivex.subjects", "io.reactivex.subscribers" ], - "sha256": "59df6541a840018f0f4c899aae4f4c1f4383f4c16feb5268615fbe384d28501c", - "url": "https://repo1.maven.org/maven2/io/reactivex/rxjava2/rxjava/2.2.21/rxjava-2.2.21.jar" + "sha256": "459a378ddd8dc93c851efa6a8553f6eb51623a2749c2ac1c3ee4222175f80dac", + "url": "https://repo1.maven.org/maven2/io/reactivex/rxjava2/rxjava/2.2.1/rxjava-2.2.1.jar" }, { - "coord": "io.reactivex.rxjava2:rxjava:jar:sources:2.2.21", + "coord": "io.reactivex.rxjava2:rxjava:jar:sources:2.2.1", "dependencies": [ - "org.reactivestreams:reactive-streams:jar:sources:1.0.4" + "org.reactivestreams:reactive-streams:jar:sources:1.0.2" ], "directDependencies": [ - "org.reactivestreams:reactive-streams:jar:sources:1.0.4" + "org.reactivestreams:reactive-streams:jar:sources:1.0.2" ], - "file": "v1/https/repo1.maven.org/maven2/io/reactivex/rxjava2/rxjava/2.2.21/rxjava-2.2.21-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/reactivex/rxjava2/rxjava/2.2.1/rxjava-2.2.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/reactivex/rxjava2/rxjava/2.2.21/rxjava-2.2.21-sources.jar" + "https://repo1.maven.org/maven2/io/reactivex/rxjava2/rxjava/2.2.1/rxjava-2.2.1-sources.jar" ], "packages": [], - "sha256": "b39c62f4b1860a962a55fb29eeccd332f3434cc3a8224ec51b6f6bf0fd17ac6f", - "url": "https://repo1.maven.org/maven2/io/reactivex/rxjava2/rxjava/2.2.21/rxjava-2.2.21-sources.jar" + "sha256": "b51dec822a48b32742c73b38bb4c22ce25fc9ff52a507ae22c9a37837a477c81", + "url": "https://repo1.maven.org/maven2/io/reactivex/rxjava2/rxjava/2.2.1/rxjava-2.2.1-sources.jar" }, { - "coord": "io.spray:spray-json_2.13:1.3.6", + "coord": "io.spray:spray-json_2.13:1.3.5", "dependencies": [ "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/spray/spray-json_2.13/1.3.6/spray-json_2.13-1.3.6.jar", + "file": "v1/https/repo1.maven.org/maven2/io/spray/spray-json_2.13/1.3.5/spray-json_2.13-1.3.5.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/spray/spray-json_2.13/1.3.6/spray-json_2.13-1.3.6.jar" + "https://repo1.maven.org/maven2/io/spray/spray-json_2.13/1.3.5/spray-json_2.13-1.3.5.jar" ], "packages": [ "spray.json" ], - "sha256": "08b3b4b659e9be1828156ca3ac21f9c63d3aec344af04ee10ef1bda4aed171de", - "url": "https://repo1.maven.org/maven2/io/spray/spray-json_2.13/1.3.6/spray-json_2.13-1.3.6.jar" + "sha256": "3daa15f117e7b59e70cab88f1110863ca735e2cf107f4d5d78544f3c1e2b6e8f", + "url": "https://repo1.maven.org/maven2/io/spray/spray-json_2.13/1.3.5/spray-json_2.13-1.3.5.jar" }, { - "coord": "io.spray:spray-json_2.13:jar:sources:1.3.6", + "coord": "io.spray:spray-json_2.13:jar:sources:1.3.5", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/io/spray/spray-json_2.13/1.3.6/spray-json_2.13-1.3.6-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/io/spray/spray-json_2.13/1.3.5/spray-json_2.13-1.3.5-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/io/spray/spray-json_2.13/1.3.6/spray-json_2.13-1.3.6-sources.jar" + "https://repo1.maven.org/maven2/io/spray/spray-json_2.13/1.3.5/spray-json_2.13-1.3.5-sources.jar" ], "packages": [], - "sha256": "d7156158a235726e0504483a155f078b365df9c1e76a9a8187a7c7539d751a58", - "url": "https://repo1.maven.org/maven2/io/spray/spray-json_2.13/1.3.6/spray-json_2.13-1.3.6-sources.jar" + "sha256": "ab389dc21e527c67804d983492722c02a83e01cf10705d53001db2372cbf5d3a", + "url": "https://repo1.maven.org/maven2/io/spray/spray-json_2.13/1.3.5/spray-json_2.13-1.3.5-sources.jar" }, { "coord": "io.suzaku:boopickle_2.13:1.3.3", @@ -11028,32 +8408,32 @@ "url": "https://repo1.maven.org/maven2/io/suzaku/boopickle_2.13/1.3.3/boopickle_2.13-1.3.3-sources.jar" }, { - "coord": "javax.annotation:javax.annotation-api:1.3.2", + "coord": "javax.annotation:javax.annotation-api:1.2", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar", + "file": "v1/https/repo1.maven.org/maven2/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar" + "https://repo1.maven.org/maven2/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.jar" ], "packages": [ "javax.annotation", "javax.annotation.security", "javax.annotation.sql" ], - "sha256": "e04ba5195bcd555dc95650f7cc614d151e4bcd52d29a10b8aa2197f3ab89ab9b", - "url": "https://repo1.maven.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar" + "sha256": "5909b396ca3a2be10d0eea32c74ef78d816e1b4ead21de1d78de1f890d033e04", + "url": "https://repo1.maven.org/maven2/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.jar" }, { - "coord": "javax.annotation:javax.annotation-api:jar:sources:1.3.2", + "coord": "javax.annotation:javax.annotation-api:jar:sources:1.2", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2-sources.jar" + "https://repo1.maven.org/maven2/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2-sources.jar" ], "packages": [], - "sha256": "128971e52e0d84a66e3b6e049dab8ad7b2c58b7e1ad37fa2debd3d40c2947b95", - "url": "https://repo1.maven.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2-sources.jar" + "sha256": "8bd08333ac2c195e224cc4063a72f4aab3c980cf5e9fb694130fad41689689d0", + "url": "https://repo1.maven.org/maven2/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2-sources.jar" }, { "coord": "javax.jms:javax.jms-api:2.0.1", @@ -11111,12 +8491,12 @@ "url": "https://repo1.maven.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0-sources.jar" }, { - "coord": "javax.ws.rs:javax.ws.rs-api:2.1.1", + "coord": "javax.ws.rs:javax.ws.rs-api:2.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/javax/ws/rs/javax.ws.rs-api/2.1.1/javax.ws.rs-api-2.1.1.jar", + "file": "v1/https/repo1.maven.org/maven2/javax/ws/rs/javax.ws.rs-api/2.1/javax.ws.rs-api-2.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/javax/ws/rs/javax.ws.rs-api/2.1.1/javax.ws.rs-api-2.1.1.jar" + "https://repo1.maven.org/maven2/javax/ws/rs/javax.ws.rs-api/2.1/javax.ws.rs-api-2.1.jar" ], "packages": [ "javax.ws.rs", @@ -11126,28 +8506,28 @@ "javax.ws.rs.ext", "javax.ws.rs.sse" ], - "sha256": "2c309eb2c9455ffee9da8518c70a3b6d46be2a269b2e2a101c806a537efe79a4", - "url": "https://repo1.maven.org/maven2/javax/ws/rs/javax.ws.rs-api/2.1.1/javax.ws.rs-api-2.1.1.jar" + "sha256": "1a4295889416c6972addcd425dfeeee6e6ede110e8b2dc8b49044e9b400ad5db", + "url": "https://repo1.maven.org/maven2/javax/ws/rs/javax.ws.rs-api/2.1/javax.ws.rs-api-2.1.jar" }, { - "coord": "javax.ws.rs:javax.ws.rs-api:jar:sources:2.1.1", + "coord": "javax.ws.rs:javax.ws.rs-api:jar:sources:2.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/javax/ws/rs/javax.ws.rs-api/2.1.1/javax.ws.rs-api-2.1.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/javax/ws/rs/javax.ws.rs-api/2.1/javax.ws.rs-api-2.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/javax/ws/rs/javax.ws.rs-api/2.1.1/javax.ws.rs-api-2.1.1-sources.jar" + "https://repo1.maven.org/maven2/javax/ws/rs/javax.ws.rs-api/2.1/javax.ws.rs-api-2.1-sources.jar" ], "packages": [], - "sha256": "988cf24cda420f2333643b5f6c3813835404c0ad5e7cd137704ee7034bea2748", - "url": "https://repo1.maven.org/maven2/javax/ws/rs/javax.ws.rs-api/2.1.1/javax.ws.rs-api-2.1.1-sources.jar" + "sha256": "041411b622f9e28174d6eced5349427cd36e9b1978e94e1b722ac133ed53be04", + "url": "https://repo1.maven.org/maven2/javax/ws/rs/javax.ws.rs-api/2.1/javax.ws.rs-api-2.1-sources.jar" }, { - "coord": "joda-time:joda-time:2.11.1", + "coord": "joda-time:joda-time:2.10.8", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/joda-time/joda-time/2.11.1/joda-time-2.11.1.jar", + "file": "v1/https/repo1.maven.org/maven2/joda-time/joda-time/2.10.8/joda-time-2.10.8.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/joda-time/joda-time/2.11.1/joda-time-2.11.1.jar" + "https://repo1.maven.org/maven2/joda-time/joda-time/2.10.8/joda-time-2.10.8.jar" ], "packages": [ "org.joda.time", @@ -11158,32 +8538,93 @@ "org.joda.time.format", "org.joda.time.tz" ], - "sha256": "cbef38e4138d679c5c834e4eea7f80d7056881efa9196b41b6a081851aa7fe9b", - "url": "https://repo1.maven.org/maven2/joda-time/joda-time/2.11.1/joda-time-2.11.1.jar" + "sha256": "da04572b431597f0a42e6a7f44973f2bdc975776c25ad3cdb2ba92d17c554a66", + "url": "https://repo1.maven.org/maven2/joda-time/joda-time/2.10.8/joda-time-2.10.8.jar" }, { - "coord": "joda-time:joda-time:jar:sources:2.11.1", + "coord": "joda-time:joda-time:jar:sources:2.10.8", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/joda-time/joda-time/2.11.1/joda-time-2.11.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/joda-time/joda-time/2.10.8/joda-time-2.10.8-sources.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/joda-time/joda-time/2.10.8/joda-time-2.10.8-sources.jar" + ], + "packages": [], + "sha256": "feb9cd09bd5ed51bfda40a3915e1d57f466bf089e95cf278ed5a865c4e18fc24", + "url": "https://repo1.maven.org/maven2/joda-time/joda-time/2.10.8/joda-time-2.10.8-sources.jar" + }, + { + "coord": "junit:junit-dep:4.10", + "dependencies": [ + "org.hamcrest:hamcrest-core:1.3" + ], + "directDependencies": [ + "org.hamcrest:hamcrest-core:1.3" + ], + "file": "v1/https/repo1.maven.org/maven2/junit/junit-dep/4.10/junit-dep-4.10.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/junit/junit-dep/4.10/junit-dep-4.10.jar" + ], + "packages": [ + "junit.extensions", + "junit.framework", + "junit.runner", + "junit.textui", + "org.junit", + "org.junit.experimental", + "org.junit.experimental.categories", + "org.junit.experimental.max", + "org.junit.experimental.results", + "org.junit.experimental.runners", + "org.junit.experimental.theories", + "org.junit.experimental.theories.internal", + "org.junit.experimental.theories.suppliers", + "org.junit.internal", + "org.junit.internal.builders", + "org.junit.internal.matchers", + "org.junit.internal.requests", + "org.junit.internal.runners", + "org.junit.internal.runners.model", + "org.junit.internal.runners.rules", + "org.junit.internal.runners.statements", + "org.junit.matchers", + "org.junit.rules", + "org.junit.runner", + "org.junit.runner.manipulation", + "org.junit.runner.notification", + "org.junit.runners", + "org.junit.runners.model" + ], + "sha256": "c1b81ad9bed9cec9da9df975ac1af252341313bd6af42a7442a1328e90a4d932", + "url": "https://repo1.maven.org/maven2/junit/junit-dep/4.10/junit-dep-4.10.jar" + }, + { + "coord": "junit:junit-dep:jar:sources:4.10", + "dependencies": [ + "org.hamcrest:hamcrest-core:jar:sources:1.3" + ], + "directDependencies": [ + "org.hamcrest:hamcrest-core:jar:sources:1.3" + ], + "file": "v1/https/repo1.maven.org/maven2/junit/junit-dep/4.10/junit-dep-4.10-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/joda-time/joda-time/2.11.1/joda-time-2.11.1-sources.jar" + "https://repo1.maven.org/maven2/junit/junit-dep/4.10/junit-dep-4.10-sources.jar" ], "packages": [], - "sha256": "da50ee8e473e42531e54396991a12faa8080df9cea76ee40d67452b54d3de2c5", - "url": "https://repo1.maven.org/maven2/joda-time/joda-time/2.11.1/joda-time-2.11.1-sources.jar" + "sha256": "a68d6181b1072b184ea032f2e962990cd1005b5796b8fef719b71e7545586ecd", + "url": "https://repo1.maven.org/maven2/junit/junit-dep/4.10/junit-dep-4.10-sources.jar" }, { - "coord": "junit:junit:4.13.2", + "coord": "junit:junit:4.12", "dependencies": [ "org.hamcrest:hamcrest-core:1.3" ], "directDependencies": [ "org.hamcrest:hamcrest-core:1.3" ], - "file": "v1/https/repo1.maven.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar", + "file": "v1/https/repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar" + "https://repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.jar" ], "packages": [ "junit.extensions", @@ -11199,10 +8640,8 @@ "org.junit.experimental.theories", "org.junit.experimental.theories.internal", "org.junit.experimental.theories.suppliers", - "org.junit.function", "org.junit.internal", "org.junit.internal.builders", - "org.junit.internal.management", "org.junit.internal.matchers", "org.junit.internal.requests", "org.junit.internal.runners", @@ -11219,59 +8658,58 @@ "org.junit.runners.parameterized", "org.junit.validator" ], - "sha256": "8e495b634469d64fb8acfa3495a065cbacc8a0fff55ce1e31007be4c16dc57d3", - "url": "https://repo1.maven.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar" + "sha256": "59721f0805e223d84b90677887d9ff567dc534d7c502ca903c0c2b17f05c116a", + "url": "https://repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.jar" }, { - "coord": "junit:junit:jar:sources:4.13.2", + "coord": "junit:junit:jar:sources:4.12", "dependencies": [ "org.hamcrest:hamcrest-core:jar:sources:1.3" ], "directDependencies": [ "org.hamcrest:hamcrest-core:jar:sources:1.3" ], - "file": "v1/https/repo1.maven.org/maven2/junit/junit/4.13.2/junit-4.13.2-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/junit/junit/4.12/junit-4.12-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/junit/junit/4.13.2/junit-4.13.2-sources.jar" + "https://repo1.maven.org/maven2/junit/junit/4.12/junit-4.12-sources.jar" ], "packages": [], - "sha256": "34181df6482d40ea4c046b063cb53c7ffae94bdf1b1d62695bdf3adf9dea7e3a", - "url": "https://repo1.maven.org/maven2/junit/junit/4.13.2/junit-4.13.2-sources.jar" + "sha256": "9f43fea92033ad82bcad2ae44cec5c82abc9d6ee4b095cab921d11ead98bf2ff", + "url": "https://repo1.maven.org/maven2/junit/junit/4.12/junit-4.12-sources.jar" }, { - "coord": "net.bytebuddy:byte-buddy-agent:1.12.10", + "coord": "net.bytebuddy:byte-buddy-agent:1.10.18", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/net/bytebuddy/byte-buddy-agent/1.12.10/byte-buddy-agent-1.12.10.jar", + "file": "v1/https/repo1.maven.org/maven2/net/bytebuddy/byte-buddy-agent/1.10.18/byte-buddy-agent-1.10.18.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-agent/1.12.10/byte-buddy-agent-1.12.10.jar" + "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-agent/1.10.18/byte-buddy-agent-1.10.18.jar" ], "packages": [ - "net.bytebuddy.agent", - "net.bytebuddy.agent.utility.nullability" + "net.bytebuddy.agent" ], - "sha256": "5e8606d14a844c1ec70d2eb8f50c4009fb16138905dee8ca50a328116c041257", - "url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-agent/1.12.10/byte-buddy-agent-1.12.10.jar" + "sha256": "c5b5f85433a9e281fd1ee82d5b8e142e5c494670b29970e627f13e189ff1dc2e", + "url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-agent/1.10.18/byte-buddy-agent-1.10.18.jar" }, { - "coord": "net.bytebuddy:byte-buddy-agent:jar:sources:1.12.10", + "coord": "net.bytebuddy:byte-buddy-agent:jar:sources:1.10.18", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/net/bytebuddy/byte-buddy-agent/1.12.10/byte-buddy-agent-1.12.10-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/net/bytebuddy/byte-buddy-agent/1.10.18/byte-buddy-agent-1.10.18-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-agent/1.12.10/byte-buddy-agent-1.12.10-sources.jar" + "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-agent/1.10.18/byte-buddy-agent-1.10.18-sources.jar" ], "packages": [], - "sha256": "045cdd499e1156bf20f477df1d9341bde3aecccc66d9cb99432474c4ab39905a", - "url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-agent/1.12.10/byte-buddy-agent-1.12.10-sources.jar" + "sha256": "4e243055c6c71e30191b0721a68371d91213beef8c29f4fafdfa6371755cd1f7", + "url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-agent/1.10.18/byte-buddy-agent-1.10.18-sources.jar" }, { - "coord": "net.bytebuddy:byte-buddy:1.12.14", + "coord": "net.bytebuddy:byte-buddy:1.10.18", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/net/bytebuddy/byte-buddy/1.12.14/byte-buddy-1.12.14.jar", + "file": "v1/https/repo1.maven.org/maven2/net/bytebuddy/byte-buddy/1.10.18/byte-buddy-1.10.18.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy/1.12.14/byte-buddy-1.12.14.jar" + "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy/1.10.18/byte-buddy-1.10.18.jar" ], "packages": [ "net.bytebuddy", @@ -11308,43 +8746,41 @@ "net.bytebuddy.matcher", "net.bytebuddy.pool", "net.bytebuddy.utility", - "net.bytebuddy.utility.dispatcher", - "net.bytebuddy.utility.nullability", "net.bytebuddy.utility.privilege", "net.bytebuddy.utility.visitor" ], - "sha256": "6a1a1ffdf578f54c033f3b139b368be3eb75146bafcd58ee27c2ac090f288001", - "url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy/1.12.14/byte-buddy-1.12.14.jar" + "sha256": "7a1fc6eabf10dd3085e62e7cb3281084f00ab92a736e0980fc99a1460fa1f5ce", + "url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy/1.10.18/byte-buddy-1.10.18.jar" }, { - "coord": "net.bytebuddy:byte-buddy:jar:sources:1.12.14", + "coord": "net.bytebuddy:byte-buddy:jar:sources:1.10.18", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/net/bytebuddy/byte-buddy/1.12.14/byte-buddy-1.12.14-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/net/bytebuddy/byte-buddy/1.10.18/byte-buddy-1.10.18-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy/1.12.14/byte-buddy-1.12.14-sources.jar" + "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy/1.10.18/byte-buddy-1.10.18-sources.jar" ], "packages": [ "net.bytebuddy.build" ], - "sha256": "fcbef6f6bf29fb69a5c4bb694b27d9624325abb11b11ad75dd0865035a2c993b", - "url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy/1.12.14/byte-buddy-1.12.14-sources.jar" + "sha256": "86e873d92ce007d482d87e7db0bb6d0c574e3e3067bb06d109a49db9efcdbf86", + "url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy/1.10.18/byte-buddy-1.10.18-sources.jar" }, { - "coord": "net.debasishg:redisclient_2.13:3.42", + "coord": "net.debasishg:redisclient_2.13:3.30", "dependencies": [ "org.apache.commons:commons-pool2:2.8.0", "org.scala-lang:scala-library:2.13.8", - "org.slf4j:slf4j-api:1.7.36" + "org.slf4j:slf4j-api:1.7.26" ], "directDependencies": [ "org.apache.commons:commons-pool2:2.8.0", "org.scala-lang:scala-library:2.13.8", - "org.slf4j:slf4j-api:1.7.36" + "org.slf4j:slf4j-api:1.7.26" ], - "file": "v1/https/repo1.maven.org/maven2/net/debasishg/redisclient_2.13/3.42/redisclient_2.13-3.42.jar", + "file": "v1/https/repo1.maven.org/maven2/net/debasishg/redisclient_2.13/3.30/redisclient_2.13-3.30.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/net/debasishg/redisclient_2.13/3.42/redisclient_2.13-3.42.jar" + "https://repo1.maven.org/maven2/net/debasishg/redisclient_2.13/3.30/redisclient_2.13-3.30.jar" ], "packages": [ "com.redis", @@ -11353,28 +8789,28 @@ "com.redis.ds", "com.redis.serialization" ], - "sha256": "18e5ce6fa3f7709365fe79f56320e6845970c8e3376fb081725f50ff01e32358", - "url": "https://repo1.maven.org/maven2/net/debasishg/redisclient_2.13/3.42/redisclient_2.13-3.42.jar" + "sha256": "c3ed1f114940fcb61c873afa2507e149182b8434c664158969714d3f7a462ba4", + "url": "https://repo1.maven.org/maven2/net/debasishg/redisclient_2.13/3.30/redisclient_2.13-3.30.jar" }, { - "coord": "net.debasishg:redisclient_2.13:jar:sources:3.42", + "coord": "net.debasishg:redisclient_2.13:jar:sources:3.30", "dependencies": [ "org.apache.commons:commons-pool2:jar:sources:2.8.0", "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], "directDependencies": [ "org.apache.commons:commons-pool2:jar:sources:2.8.0", "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], - "file": "v1/https/repo1.maven.org/maven2/net/debasishg/redisclient_2.13/3.42/redisclient_2.13-3.42-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/net/debasishg/redisclient_2.13/3.30/redisclient_2.13-3.30-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/net/debasishg/redisclient_2.13/3.42/redisclient_2.13-3.42-sources.jar" + "https://repo1.maven.org/maven2/net/debasishg/redisclient_2.13/3.30/redisclient_2.13-3.30-sources.jar" ], "packages": [], - "sha256": "ae9d2871ba37ae45cab30ce5c119fe71baf4bb93dd9cb4f449ee33985a72be53", - "url": "https://repo1.maven.org/maven2/net/debasishg/redisclient_2.13/3.42/redisclient_2.13-3.42-sources.jar" + "sha256": "65a8b79de1c72797d6b41179e8f0ad267b1e352dcfa023e97f86bd55d554c781", + "url": "https://repo1.maven.org/maven2/net/debasishg/redisclient_2.13/3.30/redisclient_2.13-3.30-sources.jar" }, { "coord": "net.java.dev.jna:jna:5.9.0", @@ -11406,42 +8842,18 @@ "url": "https://repo1.maven.org/maven2/net/java/dev/jna/jna/5.9.0/jna-5.9.0-sources.jar" }, { - "coord": "net.jodah:typetools:0.6.3", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/net/jodah/typetools/0.6.3/typetools-0.6.3.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/net/jodah/typetools/0.6.3/typetools-0.6.3.jar" - ], - "packages": [ - "net.jodah.typetools" - ], - "sha256": "408300867804be05d1083cc0287dd3a21295a9e76090e288013ba5a4182dc96d", - "url": "https://repo1.maven.org/maven2/net/jodah/typetools/0.6.3/typetools-0.6.3.jar" - }, - { - "coord": "net.jodah:typetools:jar:sources:0.6.3", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/net/jodah/typetools/0.6.3/typetools-0.6.3-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/net/jodah/typetools/0.6.3/typetools-0.6.3-sources.jar" - ], - "packages": [], - "sha256": "0e95594058f99fc4488ff4fde2fa68b0aa78817b1bf84edeebf1d6dc2b9dfea8", - "url": "https://repo1.maven.org/maven2/net/jodah/typetools/0.6.3/typetools-0.6.3-sources.jar" - }, - { - "coord": "net.logstash.logback:logstash-logback-encoder:7.2", + "coord": "net.logstash.logback:logstash-logback-encoder:6.6", "dependencies": [ - "com.fasterxml.jackson.core:jackson-databind:2.13.4" + "com.fasterxml.jackson.core:jackson-annotations:2.12.0", + "com.fasterxml.jackson.core:jackson-core:2.12.0", + "com.fasterxml.jackson.core:jackson-databind:2.12.0" ], "directDependencies": [ - "com.fasterxml.jackson.core:jackson-databind:2.13.4" + "com.fasterxml.jackson.core:jackson-databind:2.12.0" ], - "file": "v1/https/repo1.maven.org/maven2/net/logstash/logback/logstash-logback-encoder/7.2/logstash-logback-encoder-7.2.jar", + "file": "v1/https/repo1.maven.org/maven2/net/logstash/logback/logstash-logback-encoder/6.6/logstash-logback-encoder-6.6.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/net/logstash/logback/logstash-logback-encoder/7.2/logstash-logback-encoder-7.2.jar" + "https://repo1.maven.org/maven2/net/logstash/logback/logstash-logback-encoder/6.6/logstash-logback-encoder-6.6.jar" ], "packages": [ "net.logstash.logback", @@ -11460,41 +8872,51 @@ "net.logstash.logback.encoder.com.lmax.disruptor", "net.logstash.logback.encoder.com.lmax.disruptor.dsl", "net.logstash.logback.encoder.com.lmax.disruptor.util", + "net.logstash.logback.encoder.org.apache.commons.lang3", + "net.logstash.logback.encoder.org.apache.commons.lang3.builder", + "net.logstash.logback.encoder.org.apache.commons.lang3.exception", + "net.logstash.logback.encoder.org.apache.commons.lang3.math", + "net.logstash.logback.encoder.org.apache.commons.lang3.mutable", + "net.logstash.logback.encoder.org.apache.commons.lang3.text", + "net.logstash.logback.encoder.org.apache.commons.lang3.text.translate", + "net.logstash.logback.encoder.org.apache.commons.lang3.time", + "net.logstash.logback.encoder.org.apache.commons.lang3.tuple", "net.logstash.logback.fieldnames", "net.logstash.logback.layout", "net.logstash.logback.marker", "net.logstash.logback.mask", "net.logstash.logback.pattern", "net.logstash.logback.stacktrace", - "net.logstash.logback.status", - "net.logstash.logback.util" + "net.logstash.logback.status" ], - "sha256": "c19b083fd016f0234dfc5a89b93daffe82431d6c294346f58cf5f3c432e10048", - "url": "https://repo1.maven.org/maven2/net/logstash/logback/logstash-logback-encoder/7.2/logstash-logback-encoder-7.2.jar" + "sha256": "77117d422e17a843f52084cc575aa6cbe3582eae30e9aa57998e35cafcb75ebb", + "url": "https://repo1.maven.org/maven2/net/logstash/logback/logstash-logback-encoder/6.6/logstash-logback-encoder-6.6.jar" }, { - "coord": "net.logstash.logback:logstash-logback-encoder:jar:sources:7.2", + "coord": "net.logstash.logback:logstash-logback-encoder:jar:sources:6.6", "dependencies": [ - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4" + "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.12.0", + "com.fasterxml.jackson.core:jackson-core:jar:sources:2.12.0", + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0" ], "directDependencies": [ - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4" + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0" ], - "file": "v1/https/repo1.maven.org/maven2/net/logstash/logback/logstash-logback-encoder/7.2/logstash-logback-encoder-7.2-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/net/logstash/logback/logstash-logback-encoder/6.6/logstash-logback-encoder-6.6-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/net/logstash/logback/logstash-logback-encoder/7.2/logstash-logback-encoder-7.2-sources.jar" + "https://repo1.maven.org/maven2/net/logstash/logback/logstash-logback-encoder/6.6/logstash-logback-encoder-6.6-sources.jar" ], "packages": [], - "sha256": "d89328f4e3c879ecd6e0b1180e1b54c05eecfbb969fe59960c3c498feaa96d92", - "url": "https://repo1.maven.org/maven2/net/logstash/logback/logstash-logback-encoder/7.2/logstash-logback-encoder-7.2-sources.jar" + "sha256": "c1b024235b9358d4548445b14e2d3abb2e24d0d5292de6f19524bfbb80b9cd93", + "url": "https://repo1.maven.org/maven2/net/logstash/logback/logstash-logback-encoder/6.6/logstash-logback-encoder-6.6-sources.jar" }, { - "coord": "net.sf.saxon:Saxon-HE:10.6", + "coord": "net.sf.saxon:Saxon-HE:10.3", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/10.6/Saxon-HE-10.6.jar", + "file": "v1/https/repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/10.3/Saxon-HE-10.3.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/10.6/Saxon-HE-10.6.jar" + "https://repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/10.3/Saxon-HE-10.3.jar" ], "packages": [ "net.sf.saxon", @@ -11553,28 +8975,28 @@ "net.sf.saxon.xpath", "net.sf.saxon.z" ], - "sha256": "6d08df82e4ed86b6abb1a02c7b74a268fcfc5e004e83bb4ff006ec3a509bd356", - "url": "https://repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/10.6/Saxon-HE-10.6.jar" + "sha256": "660a89162a577cfd73bc3db3c53cbec7e82d4ab2051247f31927f135aff7c908", + "url": "https://repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/10.3/Saxon-HE-10.3.jar" }, { - "coord": "net.sf.saxon:Saxon-HE:jar:sources:10.6", + "coord": "net.sf.saxon:Saxon-HE:jar:sources:10.3", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/10.6/Saxon-HE-10.6-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/10.3/Saxon-HE-10.3-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/10.6/Saxon-HE-10.6-sources.jar" + "https://repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/10.3/Saxon-HE-10.3-sources.jar" ], "packages": [], - "sha256": "c8c7158296c5c57d4eddc2004b9d1871da338769e95dcc0004ef7a3de08e60da", - "url": "https://repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/10.6/Saxon-HE-10.6-sources.jar" + "sha256": "bd0d519f5cdf252d787312be9320f9ef5bdf33d9902899851ae6f22c9c425c63", + "url": "https://repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/10.3/Saxon-HE-10.3-sources.jar" }, { - "coord": "net.sourceforge.htmlunit:htmlunit-core-js:2.40.0", + "coord": "net.sourceforge.htmlunit:htmlunit-core-js:2.39.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.40.0/htmlunit-core-js-2.40.0.jar", + "file": "v1/https/repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.39.0/htmlunit-core-js-2.39.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.40.0/htmlunit-core-js-2.40.0.jar" + "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.39.0/htmlunit-core-js-2.39.0.jar" ], "packages": [ "net.sourceforge.htmlunit.corejs.classfile", @@ -11597,20 +9019,20 @@ "net.sourceforge.htmlunit.corejs.javascript.v8dtoa", "net.sourceforge.htmlunit.corejs.javascript.xml" ], - "sha256": "1c4db375c792e253d29df46b6b999a73a34d247cd206178b58e4bdd998aa1beb", - "url": "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.40.0/htmlunit-core-js-2.40.0.jar" + "sha256": "54e3a7313552127111a48e62353a6cbc1a52214dbc359848e24126f51ef49073", + "url": "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.39.0/htmlunit-core-js-2.39.0.jar" }, { - "coord": "net.sourceforge.htmlunit:htmlunit-core-js:jar:sources:2.40.0", + "coord": "net.sourceforge.htmlunit:htmlunit-core-js:jar:sources:2.39.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.40.0/htmlunit-core-js-2.40.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.39.0/htmlunit-core-js-2.39.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.40.0/htmlunit-core-js-2.40.0-sources.jar" + "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.39.0/htmlunit-core-js-2.39.0-sources.jar" ], "packages": [], - "sha256": "5172e004867e49a9853ac1263e64cde44077c57c8dd804e38c8763476e677322", - "url": "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.40.0/htmlunit-core-js-2.40.0-sources.jar" + "sha256": "63c8263e8d9779eb2d9234ee7972f09e7a5dc2606f18c8bd8fd8ec06264e6275", + "url": "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.39.0/htmlunit-core-js-2.39.0-sources.jar" }, { "coord": "net.sourceforge.htmlunit:htmlunit-cssparser:1.5.0", @@ -11645,46 +9067,51 @@ "url": "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit-cssparser/1.5.0/htmlunit-cssparser-1.5.0-sources.jar" }, { - "coord": "net.sourceforge.htmlunit:htmlunit:2.40.0", + "coord": "net.sourceforge.htmlunit:htmlunit:2.39.0", "dependencies": [ - "com.shapesecurity:salvation:2.7.1", - "commons-codec:commons-codec:1.11", - "commons-io:commons-io:2.11.0", + "commons-codec:commons-codec:1.14", + "commons-io:commons-io:2.5", "commons-logging:commons-logging:1.2", "commons-net:commons-net:3.6", - "net.sourceforge.htmlunit:htmlunit-core-js:2.40.0", + "net.sourceforge.htmlunit:htmlunit-core-js:2.39.0", "net.sourceforge.htmlunit:htmlunit-cssparser:1.5.0", - "net.sourceforge.htmlunit:neko-htmlunit:2.40.0", - "org.apache.commons:commons-lang3:3.12.0", - "org.apache.commons:commons-text:1.10.0", + "net.sourceforge.htmlunit:neko-htmlunit:2.39.0", + "org.apache.commons:commons-lang3:3.9", + "org.apache.commons:commons-text:1.4", "org.apache.httpcomponents:httpclient:4.5.12", "org.apache.httpcomponents:httpcore:4.4.13", "org.apache.httpcomponents:httpmime:4.5.12", "org.brotli:dec:0.1.2", - "org.eclipse.jetty.websocket:websocket-client:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-api:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-client:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-common:9.4.27.v20200227", + "org.eclipse.jetty:jetty-client:9.4.27.v20200227", + "org.eclipse.jetty:jetty-http:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:9.4.27.v20200227", + "org.eclipse.jetty:jetty-util:9.4.27.v20200227", + "org.eclipse.jetty:jetty-xml:9.4.27.v20200227", "xalan:serializer:2.7.2", "xalan:xalan:2.7.2", "xerces:xercesImpl:2.12.0", "xml-apis:xml-apis:1.4.01" ], "directDependencies": [ - "com.shapesecurity:salvation:2.7.1", - "commons-io:commons-io:2.11.0", + "commons-io:commons-io:2.5", "commons-logging:commons-logging:1.2", "commons-net:commons-net:3.6", - "net.sourceforge.htmlunit:htmlunit-core-js:2.40.0", + "net.sourceforge.htmlunit:htmlunit-core-js:2.39.0", "net.sourceforge.htmlunit:htmlunit-cssparser:1.5.0", - "net.sourceforge.htmlunit:neko-htmlunit:2.40.0", - "org.apache.commons:commons-lang3:3.12.0", - "org.apache.commons:commons-text:1.10.0", + "net.sourceforge.htmlunit:neko-htmlunit:2.39.0", + "org.apache.commons:commons-lang3:3.9", + "org.apache.commons:commons-text:1.4", "org.apache.httpcomponents:httpmime:4.5.12", "org.brotli:dec:0.1.2", - "org.eclipse.jetty.websocket:websocket-client:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-client:9.4.27.v20200227", "xalan:xalan:2.7.2" ], - "file": "v1/https/repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit/2.40.0/htmlunit-2.40.0.jar", + "file": "v1/https/repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit/2.39.0/htmlunit-2.39.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit/2.40.0/htmlunit-2.40.0.jar" + "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit/2.39.0/htmlunit-2.39.0.jar" ], "packages": [ "com.gargoylesoftware.htmlunit", @@ -11741,57 +9168,62 @@ "com.gargoylesoftware.htmlunit.xml", "netscape.javascript" ], - "sha256": "27e778959f5bc20bb73f8342f6be9338f3a170b825431688a7c6d2fed51077ff", - "url": "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit/2.40.0/htmlunit-2.40.0.jar" + "sha256": "1e74c7b5f4f990c1507819fd4727be123c9a4c0a79f5e5984f365e143caba61a", + "url": "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit/2.39.0/htmlunit-2.39.0.jar" }, { - "coord": "net.sourceforge.htmlunit:htmlunit:jar:sources:2.40.0", + "coord": "net.sourceforge.htmlunit:htmlunit:jar:sources:2.39.0", "dependencies": [ - "com.shapesecurity:salvation:jar:sources:2.7.1", - "commons-codec:commons-codec:jar:sources:1.11", - "commons-io:commons-io:jar:sources:2.11.0", + "commons-codec:commons-codec:jar:sources:1.14", + "commons-io:commons-io:jar:sources:2.5", "commons-logging:commons-logging:jar:sources:1.2", "commons-net:commons-net:jar:sources:3.6", - "net.sourceforge.htmlunit:htmlunit-core-js:jar:sources:2.40.0", + "net.sourceforge.htmlunit:htmlunit-core-js:jar:sources:2.39.0", "net.sourceforge.htmlunit:htmlunit-cssparser:jar:sources:1.5.0", - "net.sourceforge.htmlunit:neko-htmlunit:jar:sources:2.40.0", - "org.apache.commons:commons-lang3:jar:sources:3.12.0", - "org.apache.commons:commons-text:jar:sources:1.10.0", + "net.sourceforge.htmlunit:neko-htmlunit:jar:sources:2.39.0", + "org.apache.commons:commons-lang3:jar:sources:3.9", + "org.apache.commons:commons-text:jar:sources:1.4", "org.apache.httpcomponents:httpclient:jar:sources:4.5.12", "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", "org.apache.httpcomponents:httpmime:jar:sources:4.5.12", "org.brotli:dec:jar:sources:0.1.2", - "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-client:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-http:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-util:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-xml:jar:sources:9.4.27.v20200227", "xalan:serializer:jar:sources:2.7.2", "xalan:xalan:jar:sources:2.7.2", "xerces:xercesImpl:jar:sources:2.12.0", "xml-apis:xml-apis:jar:sources:1.4.01" ], "directDependencies": [ - "com.shapesecurity:salvation:jar:sources:2.7.1", - "commons-io:commons-io:jar:sources:2.11.0", + "commons-io:commons-io:jar:sources:2.5", "commons-logging:commons-logging:jar:sources:1.2", "commons-net:commons-net:jar:sources:3.6", - "net.sourceforge.htmlunit:htmlunit-core-js:jar:sources:2.40.0", + "net.sourceforge.htmlunit:htmlunit-core-js:jar:sources:2.39.0", "net.sourceforge.htmlunit:htmlunit-cssparser:jar:sources:1.5.0", - "net.sourceforge.htmlunit:neko-htmlunit:jar:sources:2.40.0", - "org.apache.commons:commons-lang3:jar:sources:3.12.0", - "org.apache.commons:commons-text:jar:sources:1.10.0", + "net.sourceforge.htmlunit:neko-htmlunit:jar:sources:2.39.0", + "org.apache.commons:commons-lang3:jar:sources:3.9", + "org.apache.commons:commons-text:jar:sources:1.4", "org.apache.httpcomponents:httpmime:jar:sources:4.5.12", "org.brotli:dec:jar:sources:0.1.2", - "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.27.v20200227", "xalan:xalan:jar:sources:2.7.2" ], - "file": "v1/https/repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit/2.40.0/htmlunit-2.40.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit/2.39.0/htmlunit-2.39.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit/2.40.0/htmlunit-2.40.0-sources.jar" + "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit/2.39.0/htmlunit-2.39.0-sources.jar" ], "packages": [], - "sha256": "56f61f5c63450a9f25d19c53b96500a2cdac60813cf201fe98acac3a85f16598", - "url": "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit/2.40.0/htmlunit-2.40.0-sources.jar" + "sha256": "4818eaa110e97bafc93956abeb212f0721b9ecfe67abb12f89c752aa888c17de", + "url": "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/htmlunit/2.39.0/htmlunit-2.39.0-sources.jar" }, { - "coord": "net.sourceforge.htmlunit:neko-htmlunit:2.40.0", + "coord": "net.sourceforge.htmlunit:neko-htmlunit:2.39.0", "dependencies": [ "xerces:xercesImpl:2.12.0", "xml-apis:xml-apis:1.4.01" @@ -11799,20 +9231,20 @@ "directDependencies": [ "xerces:xercesImpl:2.12.0" ], - "file": "v1/https/repo1.maven.org/maven2/net/sourceforge/htmlunit/neko-htmlunit/2.40.0/neko-htmlunit-2.40.0.jar", + "file": "v1/https/repo1.maven.org/maven2/net/sourceforge/htmlunit/neko-htmlunit/2.39.0/neko-htmlunit-2.39.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/neko-htmlunit/2.40.0/neko-htmlunit-2.40.0.jar" + "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/neko-htmlunit/2.39.0/neko-htmlunit-2.39.0.jar" ], "packages": [ "net.sourceforge.htmlunit.cyberneko", "net.sourceforge.htmlunit.cyberneko.filters", "net.sourceforge.htmlunit.cyberneko.parsers" ], - "sha256": "cbefc9b582c41b7ee6bbb5fe22111aea0e2e32cee4f763c8f25d8e3509492c44", - "url": "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/neko-htmlunit/2.40.0/neko-htmlunit-2.40.0.jar" + "sha256": "3b069756de50ae5446985eba79e42c9a59353b9b3d1e660d53ea2fe1c265c5fb", + "url": "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/neko-htmlunit/2.39.0/neko-htmlunit-2.39.0.jar" }, { - "coord": "net.sourceforge.htmlunit:neko-htmlunit:jar:sources:2.40.0", + "coord": "net.sourceforge.htmlunit:neko-htmlunit:jar:sources:2.39.0", "dependencies": [ "xerces:xercesImpl:jar:sources:2.12.0", "xml-apis:xml-apis:jar:sources:1.4.01" @@ -11820,13 +9252,13 @@ "directDependencies": [ "xerces:xercesImpl:jar:sources:2.12.0" ], - "file": "v1/https/repo1.maven.org/maven2/net/sourceforge/htmlunit/neko-htmlunit/2.40.0/neko-htmlunit-2.40.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/net/sourceforge/htmlunit/neko-htmlunit/2.39.0/neko-htmlunit-2.39.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/neko-htmlunit/2.40.0/neko-htmlunit-2.40.0-sources.jar" + "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/neko-htmlunit/2.39.0/neko-htmlunit-2.39.0-sources.jar" ], "packages": [], - "sha256": "f33f3f1b9a66bf788a7626d97f5f1b246951acb4aeafe964cdb844e5a223d1a4", - "url": "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/neko-htmlunit/2.40.0/neko-htmlunit-2.40.0-sources.jar" + "sha256": "f3700b802aedd2c871d92a52729f300ec1c1c77dc6827029725a4b39c297708a", + "url": "https://repo1.maven.org/maven2/net/sourceforge/htmlunit/neko-htmlunit/2.39.0/neko-htmlunit-2.39.0-sources.jar" }, { "coord": "org.apache.commons:commons-exec:1.3", @@ -11858,46 +9290,42 @@ "url": "https://repo1.maven.org/maven2/org/apache/commons/commons-exec/1.3/commons-exec-1.3-sources.jar" }, { - "coord": "org.apache.commons:commons-lang3:3.12.0", + "coord": "org.apache.commons:commons-lang3:3.9", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.9/commons-lang3-3.9.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar" + "https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.9/commons-lang3-3.9.jar" ], "packages": [ "org.apache.commons.lang3", "org.apache.commons.lang3.arch", "org.apache.commons.lang3.builder", - "org.apache.commons.lang3.compare", "org.apache.commons.lang3.concurrent", - "org.apache.commons.lang3.concurrent.locks", "org.apache.commons.lang3.event", "org.apache.commons.lang3.exception", - "org.apache.commons.lang3.function", "org.apache.commons.lang3.math", "org.apache.commons.lang3.mutable", "org.apache.commons.lang3.reflect", - "org.apache.commons.lang3.stream", "org.apache.commons.lang3.text", "org.apache.commons.lang3.text.translate", "org.apache.commons.lang3.time", "org.apache.commons.lang3.tuple" ], - "sha256": "d919d904486c037f8d193412da0c92e22a9fa24230b9d67a57855c5c31c7e94e", - "url": "https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar" + "sha256": "de2e1dcdcf3ef917a8ce858661a06726a9a944f28e33ad7f9e08bea44dc3c230", + "url": "https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.9/commons-lang3-3.9.jar" }, { - "coord": "org.apache.commons:commons-lang3:jar:sources:3.12.0", + "coord": "org.apache.commons:commons-lang3:jar:sources:3.9", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.9/commons-lang3-3.9-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0-sources.jar" + "https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.9/commons-lang3-3.9-sources.jar" ], "packages": [], - "sha256": "325a4551eee7d99f7616aa05b00ee3ca9d0cdc8face1b252a9864f2d945c58b3", - "url": "https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0-sources.jar" + "sha256": "d97341ce0a7554028db3403e407bb51f4d902bf3287f64f709d7a8156eaf1910", + "url": "https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.9/commons-lang3-3.9-sources.jar" }, { "coord": "org.apache.commons:commons-math3:3.2", @@ -12014,55 +9442,53 @@ "url": "https://repo1.maven.org/maven2/org/apache/commons/commons-pool2/2.8.0/commons-pool2-2.8.0-sources.jar" }, { - "coord": "org.apache.commons:commons-text:1.10.0", + "coord": "org.apache.commons:commons-text:1.4", "dependencies": [ - "org.apache.commons:commons-lang3:3.12.0" + "org.apache.commons:commons-lang3:3.9" ], "directDependencies": [ - "org.apache.commons:commons-lang3:3.12.0" + "org.apache.commons:commons-lang3:3.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar" + "https://repo1.maven.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4.jar" ], "packages": [ "org.apache.commons.text", "org.apache.commons.text.diff", - "org.apache.commons.text.io", "org.apache.commons.text.lookup", "org.apache.commons.text.matcher", - "org.apache.commons.text.numbers", "org.apache.commons.text.similarity", "org.apache.commons.text.translate" ], - "sha256": "770cd903fa7b604d1f7ef7ba17f84108667294b2b478be8ed1af3bffb4ae0018", - "url": "https://repo1.maven.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar" + "sha256": "d624e443240a5fccc93edbfe758df1b69c07d7eaab6fc5e8f98f77d86ced8259", + "url": "https://repo1.maven.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4.jar" }, { - "coord": "org.apache.commons:commons-text:jar:sources:1.10.0", + "coord": "org.apache.commons:commons-text:jar:sources:1.4", "dependencies": [ - "org.apache.commons:commons-lang3:jar:sources:3.12.0" + "org.apache.commons:commons-lang3:jar:sources:3.9" ], "directDependencies": [ - "org.apache.commons:commons-lang3:jar:sources:3.12.0" + "org.apache.commons:commons-lang3:jar:sources:3.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0-sources.jar" + "https://repo1.maven.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4-sources.jar" ], "packages": [], - "sha256": "e767596163da9b22e8fc83ff954e41e19e96744df7625b06f8daac3c4d60f79d", - "url": "https://repo1.maven.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0-sources.jar" + "sha256": "00d006377bbe1667b8fdaa5bb3da35137c0d3bc28e7426276fcb1f5a50630eb2", + "url": "https://repo1.maven.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4-sources.jar" }, { "coord": "org.apache.httpcomponents:httpclient:4.5.12", "dependencies": [ - "commons-codec:commons-codec:1.11", + "commons-codec:commons-codec:1.14", "commons-logging:commons-logging:1.2", "org.apache.httpcomponents:httpcore:4.4.13" ], "directDependencies": [ - "commons-codec:commons-codec:1.11", + "commons-codec:commons-codec:1.14", "commons-logging:commons-logging:1.2", "org.apache.httpcomponents:httpcore:4.4.13" ], @@ -12102,12 +9528,12 @@ { "coord": "org.apache.httpcomponents:httpclient:jar:sources:4.5.12", "dependencies": [ - "commons-codec:commons-codec:jar:sources:1.11", + "commons-codec:commons-codec:jar:sources:1.14", "commons-logging:commons-logging:jar:sources:1.2", "org.apache.httpcomponents:httpcore:jar:sources:4.4.13" ], "directDependencies": [ - "commons-codec:commons-codec:jar:sources:1.11", + "commons-codec:commons-codec:jar:sources:1.14", "commons-logging:commons-logging:jar:sources:1.2", "org.apache.httpcomponents:httpcore:jar:sources:4.4.13" ], @@ -12164,7 +9590,7 @@ { "coord": "org.apache.httpcomponents:httpmime:4.5.12", "dependencies": [ - "commons-codec:commons-codec:1.11", + "commons-codec:commons-codec:1.14", "commons-logging:commons-logging:1.2", "org.apache.httpcomponents:httpclient:4.5.12", "org.apache.httpcomponents:httpcore:4.4.13" @@ -12186,7 +9612,7 @@ { "coord": "org.apache.httpcomponents:httpmime:jar:sources:4.5.12", "dependencies": [ - "commons-codec:commons-codec:jar:sources:1.11", + "commons-codec:commons-codec:jar:sources:1.14", "commons-logging:commons-logging:jar:sources:1.2", "org.apache.httpcomponents:httpclient:jar:sources:4.5.12", "org.apache.httpcomponents:httpcore:jar:sources:4.4.13" @@ -12203,182 +9629,46 @@ "url": "https://repo1.maven.org/maven2/org/apache/httpcomponents/httpmime/4.5.12/httpmime-4.5.12-sources.jar" }, { - "coord": "org.apiguardian:apiguardian-api:1.1.2", + "coord": "org.apiguardian:apiguardian-api:1.0.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar", + "file": "v1/https/repo1.maven.org/maven2/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar" + "https://repo1.maven.org/maven2/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.jar" ], "packages": [ "org.apiguardian.api" ], - "sha256": "b509448ac506d607319f182537f0b35d71007582ec741832a1f111e5b5b70b38", - "url": "https://repo1.maven.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar" + "sha256": "1f58b77470d8d147a0538d515347dd322f49a83b9e884b8970051160464b65b3", + "url": "https://repo1.maven.org/maven2/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.jar" }, { - "coord": "org.apiguardian:apiguardian-api:jar:sources:1.1.2", + "coord": "org.apiguardian:apiguardian-api:jar:sources:1.0.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2-sources.jar" - ], - "packages": [], - "sha256": "277a7a4315412817beb6655b324dc7276621e95ebff00b8bf65e17a27b685e2d", - "url": "https://repo1.maven.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2-sources.jar" - }, - { - "coord": "org.asynchttpclient:async-http-client-netty-utils:2.12.3", - "dependencies": [ - "com.sun.activation:jakarta.activation:1.2.2", - "io.netty:netty-buffer:4.1.79.Final", - "org.slf4j:slf4j-api:1.7.36" - ], - "directDependencies": [ - "com.sun.activation:jakarta.activation:1.2.2", - "io.netty:netty-buffer:4.1.79.Final", - "org.slf4j:slf4j-api:1.7.36" - ], - "file": "v1/https/repo1.maven.org/maven2/org/asynchttpclient/async-http-client-netty-utils/2.12.3/async-http-client-netty-utils-2.12.3.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/asynchttpclient/async-http-client-netty-utils/2.12.3/async-http-client-netty-utils-2.12.3.jar" - ], - "packages": [ - "org.asynchttpclient.netty.util" - ], - "sha256": "e0bb76bbca0c85c68cab25dbed7989b00db5da8627cf69258f398d7d89bc9067", - "url": "https://repo1.maven.org/maven2/org/asynchttpclient/async-http-client-netty-utils/2.12.3/async-http-client-netty-utils-2.12.3.jar" - }, - { - "coord": "org.asynchttpclient:async-http-client-netty-utils:jar:sources:2.12.3", - "dependencies": [ - "com.sun.activation:jakarta.activation:jar:sources:1.2.2", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "org.slf4j:slf4j-api:jar:sources:1.7.36" - ], - "directDependencies": [ - "com.sun.activation:jakarta.activation:jar:sources:1.2.2", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "org.slf4j:slf4j-api:jar:sources:1.7.36" - ], - "file": "v1/https/repo1.maven.org/maven2/org/asynchttpclient/async-http-client-netty-utils/2.12.3/async-http-client-netty-utils-2.12.3-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/asynchttpclient/async-http-client-netty-utils/2.12.3/async-http-client-netty-utils-2.12.3-sources.jar" + "https://repo1.maven.org/maven2/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0-sources.jar" ], "packages": [], - "sha256": "0b66a2867a3e4ea1e101e64d961d677bc6fbbbefa462b8fac461ef9101bec435", - "url": "https://repo1.maven.org/maven2/org/asynchttpclient/async-http-client-netty-utils/2.12.3/async-http-client-netty-utils-2.12.3-sources.jar" - }, - { - "coord": "org.asynchttpclient:async-http-client:2.12.3", - "dependencies": [ - "com.sun.activation:jakarta.activation:1.2.2", - "com.typesafe.netty:netty-reactive-streams:2.0.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec-socks:4.1.79.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-handler:4.1.79.Final", - "org.asynchttpclient:async-http-client-netty-utils:2.12.3", - "org.reactivestreams:reactive-streams:1.0.4", - "org.slf4j:slf4j-api:1.7.36" - ], - "directDependencies": [ - "com.sun.activation:jakarta.activation:1.2.2", - "com.typesafe.netty:netty-reactive-streams:2.0.4", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec-socks:4.1.79.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-handler:4.1.79.Final", - "org.asynchttpclient:async-http-client-netty-utils:2.12.3", - "org.reactivestreams:reactive-streams:1.0.4", - "org.slf4j:slf4j-api:1.7.36" - ], - "file": "v1/https/repo1.maven.org/maven2/org/asynchttpclient/async-http-client/2.12.3/async-http-client-2.12.3.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/asynchttpclient/async-http-client/2.12.3/async-http-client-2.12.3.jar" - ], - "packages": [ - "org.asynchttpclient", - "org.asynchttpclient.channel", - "org.asynchttpclient.config", - "org.asynchttpclient.cookie", - "org.asynchttpclient.exception", - "org.asynchttpclient.filter", - "org.asynchttpclient.handler", - "org.asynchttpclient.handler.resumable", - "org.asynchttpclient.netty", - "org.asynchttpclient.netty.channel", - "org.asynchttpclient.netty.future", - "org.asynchttpclient.netty.handler", - "org.asynchttpclient.netty.handler.intercept", - "org.asynchttpclient.netty.request", - "org.asynchttpclient.netty.request.body", - "org.asynchttpclient.netty.ssl", - "org.asynchttpclient.netty.timeout", - "org.asynchttpclient.netty.ws", - "org.asynchttpclient.ntlm", - "org.asynchttpclient.oauth", - "org.asynchttpclient.proxy", - "org.asynchttpclient.request.body", - "org.asynchttpclient.request.body.generator", - "org.asynchttpclient.request.body.multipart", - "org.asynchttpclient.request.body.multipart.part", - "org.asynchttpclient.resolver", - "org.asynchttpclient.spnego", - "org.asynchttpclient.uri", - "org.asynchttpclient.util", - "org.asynchttpclient.webdav", - "org.asynchttpclient.ws" - ], - "sha256": "107a4ace7a3586f8e8a027c6d7e9933c9ae56eeb1a6df347eed2e7b552e4e5ed", - "url": "https://repo1.maven.org/maven2/org/asynchttpclient/async-http-client/2.12.3/async-http-client-2.12.3.jar" + "sha256": "793b50c98fa62e6eec08cc8fa4364b95d4815c1b17ef17e5e9e59c457e54ce2e", + "url": "https://repo1.maven.org/maven2/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0-sources.jar" }, { - "coord": "org.asynchttpclient:async-http-client:jar:sources:2.12.3", + "coord": "org.awaitility:awaitility:3.1.6", "dependencies": [ - "com.sun.activation:jakarta.activation:jar:sources:1.2.2", - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec-socks:jar:sources:4.1.79.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "org.asynchttpclient:async-http-client-netty-utils:jar:sources:2.12.3", - "org.reactivestreams:reactive-streams:jar:sources:1.0.4", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.hamcrest:hamcrest-core:1.3", + "org.hamcrest:hamcrest-library:1.3", + "org.objenesis:objenesis:3.1" ], "directDependencies": [ - "com.sun.activation:jakarta.activation:jar:sources:1.2.2", - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.4", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec-socks:jar:sources:4.1.79.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "org.asynchttpclient:async-http-client-netty-utils:jar:sources:2.12.3", - "org.reactivestreams:reactive-streams:jar:sources:1.0.4", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.hamcrest:hamcrest-core:1.3", + "org.hamcrest:hamcrest-library:1.3", + "org.objenesis:objenesis:3.1" ], - "file": "v1/https/repo1.maven.org/maven2/org/asynchttpclient/async-http-client/2.12.3/async-http-client-2.12.3-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/awaitility/awaitility/3.1.6/awaitility-3.1.6.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/asynchttpclient/async-http-client/2.12.3/async-http-client-2.12.3-sources.jar" - ], - "packages": [], - "sha256": "fd7d5e61cb6e5adbb06c14b72c10c88e18ebfaf22d401a521eae14123b537900", - "url": "https://repo1.maven.org/maven2/org/asynchttpclient/async-http-client/2.12.3/async-http-client-2.12.3-sources.jar" - }, - { - "coord": "org.awaitility:awaitility:4.2.0", - "dependencies": [ - "org.hamcrest:hamcrest:2.1" - ], - "directDependencies": [ - "org.hamcrest:hamcrest:2.1" - ], - "file": "v1/https/repo1.maven.org/maven2/org/awaitility/awaitility/4.2.0/awaitility-4.2.0.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/awaitility/awaitility/4.2.0/awaitility-4.2.0.jar" + "https://repo1.maven.org/maven2/org/awaitility/awaitility/3.1.6/awaitility-3.1.6.jar" ], "packages": [ "org.awaitility", @@ -12390,24 +9680,28 @@ "org.awaitility.reflect.exception", "org.awaitility.spi" ], - "sha256": "2d23b79211fdd19036f6940cc783543779320aaf86f38d6e385a2ff26da41272", - "url": "https://repo1.maven.org/maven2/org/awaitility/awaitility/4.2.0/awaitility-4.2.0.jar" + "sha256": "694e2e915312b6fe0123c3d532f6675eed3b6d60e4f2ab677d3688fde3defcfc", + "url": "https://repo1.maven.org/maven2/org/awaitility/awaitility/3.1.6/awaitility-3.1.6.jar" }, { - "coord": "org.awaitility:awaitility:jar:sources:4.2.0", + "coord": "org.awaitility:awaitility:jar:sources:3.1.6", "dependencies": [ - "org.hamcrest:hamcrest:jar:sources:2.1" + "org.hamcrest:hamcrest-core:jar:sources:1.3", + "org.hamcrest:hamcrest-library:jar:sources:1.3", + "org.objenesis:objenesis:jar:sources:3.1" ], "directDependencies": [ - "org.hamcrest:hamcrest:jar:sources:2.1" + "org.hamcrest:hamcrest-core:jar:sources:1.3", + "org.hamcrest:hamcrest-library:jar:sources:1.3", + "org.objenesis:objenesis:jar:sources:3.1" ], - "file": "v1/https/repo1.maven.org/maven2/org/awaitility/awaitility/4.2.0/awaitility-4.2.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/awaitility/awaitility/3.1.6/awaitility-3.1.6-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/awaitility/awaitility/4.2.0/awaitility-4.2.0-sources.jar" + "https://repo1.maven.org/maven2/org/awaitility/awaitility/3.1.6/awaitility-3.1.6-sources.jar" ], "packages": [], - "sha256": "26642b9a90d7144d3cca113a3390f316911496735b3f1095f984089426a4fe4d", - "url": "https://repo1.maven.org/maven2/org/awaitility/awaitility/4.2.0/awaitility-4.2.0-sources.jar" + "sha256": "b27e80792fd074992a975c813a9d4d24bd9699741f4fe30c0cc7127fca3aa937", + "url": "https://repo1.maven.org/maven2/org/awaitility/awaitility/3.1.6/awaitility-3.1.6-sources.jar" }, { "coord": "org.beanshell:bsh:2.0b4", @@ -12776,12 +10070,12 @@ "url": "https://repo1.maven.org/maven2/org/brotli/dec/0.1.2/dec-0.1.2-sources.jar" }, { - "coord": "org.checkerframework:checker-qual:3.26.0", + "coord": "org.checkerframework:checker-qual:3.19.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.26.0/checker-qual-3.26.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.19.0/checker-qual-3.19.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/checkerframework/checker-qual/3.26.0/checker-qual-3.26.0.jar" + "https://repo1.maven.org/maven2/org/checkerframework/checker-qual/3.19.0/checker-qual-3.19.0.jar" ], "packages": [ "org.checkerframework.checker.builder.qual", @@ -12815,198 +10109,316 @@ "org.checkerframework.dataflow.qual", "org.checkerframework.framework.qual" ], - "sha256": "13071d3b67326eeec0180d07fcbb1c79b0c27b173f04fea0982203c151160986", - "url": "https://repo1.maven.org/maven2/org/checkerframework/checker-qual/3.26.0/checker-qual-3.26.0.jar" + "sha256": "a827c49183f3a632277d27a0a4673686cb341507447b9d570261094bd748aa68", + "url": "https://repo1.maven.org/maven2/org/checkerframework/checker-qual/3.19.0/checker-qual-3.19.0.jar" }, { - "coord": "org.checkerframework:checker-qual:jar:sources:3.26.0", + "coord": "org.checkerframework:checker-qual:jar:sources:3.19.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.26.0/checker-qual-3.26.0-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/checkerframework/checker-qual/3.26.0/checker-qual-3.26.0-sources.jar" - ], - "packages": [], - "sha256": "bdbe820ebca9bd7c3dcd3fe44ae12cb60f34b0a8e2118a741a5ab0b5e2c34ab0", - "url": "https://repo1.maven.org/maven2/org/checkerframework/checker-qual/3.26.0/checker-qual-3.26.0-sources.jar" - }, - { - "coord": "org.checkerframework:checker-util:3.26.0", - "dependencies": [ - "org.checkerframework:checker-qual:3.26.0" - ], - "directDependencies": [ - "org.checkerframework:checker-qual:3.26.0" - ], - "file": "v1/https/repo1.maven.org/maven2/org/checkerframework/checker-util/3.26.0/checker-util-3.26.0.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/checkerframework/checker-util/3.26.0/checker-util-3.26.0.jar" - ], - "packages": [ - "org.checkerframework.checker.formatter.util", - "org.checkerframework.checker.i18nformatter.util", - "org.checkerframework.checker.nullness.util", - "org.checkerframework.checker.regex.util", - "org.checkerframework.checker.signedness.util", - "org.checkerframework.checker.units.util" - ], - "sha256": "171ae78bb44613c28c903f344c461fb6f689852c151fb2dce36b458e9c140a27", - "url": "https://repo1.maven.org/maven2/org/checkerframework/checker-util/3.26.0/checker-util-3.26.0.jar" - }, - { - "coord": "org.checkerframework:checker-util:jar:sources:3.26.0", - "dependencies": [ - "org.checkerframework:checker-qual:jar:sources:3.26.0" - ], - "directDependencies": [ - "org.checkerframework:checker-qual:jar:sources:3.26.0" - ], - "file": "v1/https/repo1.maven.org/maven2/org/checkerframework/checker-util/3.26.0/checker-util-3.26.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.19.0/checker-qual-3.19.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/checkerframework/checker-util/3.26.0/checker-util-3.26.0-sources.jar" + "https://repo1.maven.org/maven2/org/checkerframework/checker-qual/3.19.0/checker-qual-3.19.0-sources.jar" ], "packages": [], - "sha256": "9b691c49fc12b08f6a0c76b99de8b4d688ed1e7334fad47df32096b15344014c", - "url": "https://repo1.maven.org/maven2/org/checkerframework/checker-util/3.26.0/checker-util-3.26.0-sources.jar" + "sha256": "1f226e2901162475caa0151530496dd010701abd41497ebcf6a77b557bdc363b", + "url": "https://repo1.maven.org/maven2/org/checkerframework/checker-qual/3.19.0/checker-qual-3.19.0-sources.jar" }, { - "coord": "org.checkerframework:checker:3.26.0", - "dependencies": [ - "org.checkerframework:checker-qual:3.26.0", - "org.checkerframework:checker-util:3.26.0" - ], - "directDependencies": [ - "org.checkerframework:checker-qual:3.26.0", - "org.checkerframework:checker-util:3.26.0" - ], - "file": "v1/https/repo1.maven.org/maven2/org/checkerframework/checker/3.26.0/checker-3.26.0.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/checkerframework/checker/3.26.0/checker-3.26.0.jar" - ], - "packages": [ - "com.github.javaparser", - "com.github.javaparser.ast", - "com.github.javaparser.ast.body", - "com.github.javaparser.ast.comments", - "com.github.javaparser.ast.expr", - "com.github.javaparser.ast.modules", - "com.github.javaparser.ast.nodeTypes", - "com.github.javaparser.ast.nodeTypes.modifiers", - "com.github.javaparser.ast.observer", - "com.github.javaparser.ast.stmt", - "com.github.javaparser.ast.type", - "com.github.javaparser.ast.validator", - "com.github.javaparser.ast.validator.language_level_validations", - "com.github.javaparser.ast.validator.language_level_validations.chunks", - "com.github.javaparser.ast.validator.postprocessors", - "com.github.javaparser.ast.visitor", - "com.github.javaparser.javadoc", - "com.github.javaparser.javadoc.description", - "com.github.javaparser.metamodel", - "com.github.javaparser.printer", - "com.github.javaparser.printer.concretesyntaxmodel", - "com.github.javaparser.printer.configuration", - "com.github.javaparser.printer.lexicalpreservation", - "com.github.javaparser.printer.lexicalpreservation.changes", - "com.github.javaparser.resolution", - "com.github.javaparser.resolution.declarations", - "com.github.javaparser.resolution.types", - "com.github.javaparser.resolution.types.parametrization", - "com.github.javaparser.utils", - "org.checkerframework.afu.annotator", - "org.checkerframework.afu.annotator.find", - "org.checkerframework.afu.annotator.scanner", - "org.checkerframework.afu.annotator.specification", - "org.checkerframework.afu.scenelib", - "org.checkerframework.afu.scenelib.el", - "org.checkerframework.afu.scenelib.field", - "org.checkerframework.afu.scenelib.io", - "org.checkerframework.afu.scenelib.io.classfile", - "org.checkerframework.afu.scenelib.tools", - "org.checkerframework.afu.scenelib.toys", - "org.checkerframework.afu.scenelib.type", - "org.checkerframework.afu.scenelib.util", - "org.checkerframework.afu.scenelib.util.coll", - "org.checkerframework.checker.calledmethods", - "org.checkerframework.checker.calledmethods.builder", + "coord": "org.checkerframework:checker:2.5.4", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo1.maven.org/maven2/org/checkerframework/checker/2.5.4/checker-2.5.4.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/org/checkerframework/checker/2.5.4/checker-2.5.4.jar" + ], + "packages": [ + "annotator", + "annotator.find", + "annotator.scanner", + "annotator.specification", + "com.sun.codemodel.internal", + "com.sun.codemodel.internal.fmt", + "com.sun.codemodel.internal.util", + "com.sun.codemodel.internal.writer", + "com.sun.istack.internal.tools", + "com.sun.istack.internal.ws", + "com.sun.jarsigner", + "com.sun.javadoc", + "com.sun.jdi", + "com.sun.jdi.connect", + "com.sun.jdi.connect.spi", + "com.sun.jdi.event", + "com.sun.jdi.request", + "com.sun.mirror.apt", + "com.sun.mirror.declaration", + "com.sun.mirror.type", + "com.sun.mirror.util", + "com.sun.source.doctree", + "com.sun.source.tree", + "com.sun.source.util", + "com.sun.tools.apt", + "com.sun.tools.apt.comp", + "com.sun.tools.apt.main", + "com.sun.tools.apt.mirror", + "com.sun.tools.apt.mirror.apt", + "com.sun.tools.apt.mirror.declaration", + "com.sun.tools.apt.mirror.type", + "com.sun.tools.apt.mirror.util", + "com.sun.tools.apt.resources", + "com.sun.tools.apt.util", + "com.sun.tools.attach", + "com.sun.tools.attach.spi", + "com.sun.tools.classfile", + "com.sun.tools.corba.se.idl", + "com.sun.tools.corba.se.idl.constExpr", + "com.sun.tools.corba.se.idl.som.cff", + "com.sun.tools.corba.se.idl.som.idlemit", + "com.sun.tools.corba.se.idl.toJavaPortable", + "com.sun.tools.doclets", + "com.sun.tools.doclets.formats.html", + "com.sun.tools.doclets.formats.html.markup", + "com.sun.tools.doclets.formats.html.resources", + "com.sun.tools.doclets.internal.toolkit", + "com.sun.tools.doclets.internal.toolkit.builders", + "com.sun.tools.doclets.internal.toolkit.resources", + "com.sun.tools.doclets.internal.toolkit.taglets", + "com.sun.tools.doclets.internal.toolkit.util", + "com.sun.tools.doclets.internal.toolkit.util.links", + "com.sun.tools.doclets.standard", + "com.sun.tools.doclint", + "com.sun.tools.doclint.resources", + "com.sun.tools.example.debug.expr", + "com.sun.tools.example.debug.tty", + "com.sun.tools.extcheck", + "com.sun.tools.hat", + "com.sun.tools.hat.internal.model", + "com.sun.tools.hat.internal.oql", + "com.sun.tools.hat.internal.parser", + "com.sun.tools.hat.internal.server", + "com.sun.tools.hat.internal.util", + "com.sun.tools.internal.jxc", + "com.sun.tools.internal.jxc.apt", + "com.sun.tools.internal.jxc.gen.config", + "com.sun.tools.internal.jxc.model.nav", + "com.sun.tools.internal.ws", + "com.sun.tools.internal.ws.api", + "com.sun.tools.internal.ws.api.wsdl", + "com.sun.tools.internal.ws.processor", + "com.sun.tools.internal.ws.processor.generator", + "com.sun.tools.internal.ws.processor.model", + "com.sun.tools.internal.ws.processor.model.exporter", + "com.sun.tools.internal.ws.processor.model.java", + "com.sun.tools.internal.ws.processor.model.jaxb", + "com.sun.tools.internal.ws.processor.modeler", + "com.sun.tools.internal.ws.processor.modeler.annotation", + "com.sun.tools.internal.ws.processor.modeler.wsdl", + "com.sun.tools.internal.ws.processor.util", + "com.sun.tools.internal.ws.resources", + "com.sun.tools.internal.ws.spi", + "com.sun.tools.internal.ws.util", + "com.sun.tools.internal.ws.util.xml", + "com.sun.tools.internal.ws.wscompile", + "com.sun.tools.internal.ws.wsdl.document", + "com.sun.tools.internal.ws.wsdl.document.http", + "com.sun.tools.internal.ws.wsdl.document.jaxws", + "com.sun.tools.internal.ws.wsdl.document.mime", + "com.sun.tools.internal.ws.wsdl.document.schema", + "com.sun.tools.internal.ws.wsdl.document.soap", + "com.sun.tools.internal.ws.wsdl.framework", + "com.sun.tools.internal.ws.wsdl.parser", + "com.sun.tools.internal.xjc", + "com.sun.tools.internal.xjc.addon.accessors", + "com.sun.tools.internal.xjc.addon.at_generated", + "com.sun.tools.internal.xjc.addon.code_injector", + "com.sun.tools.internal.xjc.addon.episode", + "com.sun.tools.internal.xjc.addon.locator", + "com.sun.tools.internal.xjc.addon.sync", + "com.sun.tools.internal.xjc.api", + "com.sun.tools.internal.xjc.api.impl.j2s", + "com.sun.tools.internal.xjc.api.impl.s2j", + "com.sun.tools.internal.xjc.api.util", + "com.sun.tools.internal.xjc.generator.annotation.ri", + "com.sun.tools.internal.xjc.generator.annotation.spec", + "com.sun.tools.internal.xjc.generator.bean", + "com.sun.tools.internal.xjc.generator.bean.field", + "com.sun.tools.internal.xjc.generator.util", + "com.sun.tools.internal.xjc.model", + "com.sun.tools.internal.xjc.model.nav", + "com.sun.tools.internal.xjc.outline", + "com.sun.tools.internal.xjc.reader", + "com.sun.tools.internal.xjc.reader.dtd", + "com.sun.tools.internal.xjc.reader.dtd.bindinfo", + "com.sun.tools.internal.xjc.reader.gbind", + "com.sun.tools.internal.xjc.reader.internalizer", + "com.sun.tools.internal.xjc.reader.relaxng", + "com.sun.tools.internal.xjc.reader.xmlschema", + "com.sun.tools.internal.xjc.reader.xmlschema.bindinfo", + "com.sun.tools.internal.xjc.reader.xmlschema.ct", + "com.sun.tools.internal.xjc.reader.xmlschema.parser", + "com.sun.tools.internal.xjc.runtime", + "com.sun.tools.internal.xjc.util", + "com.sun.tools.internal.xjc.writer", + "com.sun.tools.javac", + "com.sun.tools.javac.api", + "com.sun.tools.javac.code", + "com.sun.tools.javac.comp", + "com.sun.tools.javac.file", + "com.sun.tools.javac.jvm", + "com.sun.tools.javac.main", + "com.sun.tools.javac.model", + "com.sun.tools.javac.nio", + "com.sun.tools.javac.parser", + "com.sun.tools.javac.processing", + "com.sun.tools.javac.resources", + "com.sun.tools.javac.sym", + "com.sun.tools.javac.tree", + "com.sun.tools.javac.util", + "com.sun.tools.javadoc", + "com.sun.tools.javadoc.resources", + "com.sun.tools.javah", + "com.sun.tools.javah.resources", + "com.sun.tools.javap", + "com.sun.tools.javap.resources", + "com.sun.tools.jdi", + "com.sun.tools.jdi.resources", + "com.sun.tools.script.shell", + "com.sun.xml.internal.dtdparser", + "com.sun.xml.internal.rngom.ast.builder", + "com.sun.xml.internal.rngom.ast.om", + "com.sun.xml.internal.rngom.ast.util", + "com.sun.xml.internal.rngom.binary", + "com.sun.xml.internal.rngom.binary.visitor", + "com.sun.xml.internal.rngom.digested", + "com.sun.xml.internal.rngom.dt", + "com.sun.xml.internal.rngom.dt.builtin", + "com.sun.xml.internal.rngom.nc", + "com.sun.xml.internal.rngom.parse", + "com.sun.xml.internal.rngom.parse.compact", + "com.sun.xml.internal.rngom.parse.host", + "com.sun.xml.internal.rngom.parse.xml", + "com.sun.xml.internal.rngom.util", + "com.sun.xml.internal.rngom.xml.sax", + "com.sun.xml.internal.rngom.xml.util", + "com.sun.xml.internal.xsom", + "com.sun.xml.internal.xsom.impl", + "com.sun.xml.internal.xsom.impl.parser", + "com.sun.xml.internal.xsom.impl.parser.state", + "com.sun.xml.internal.xsom.impl.scd", + "com.sun.xml.internal.xsom.impl.util", + "com.sun.xml.internal.xsom.parser", + "com.sun.xml.internal.xsom.util", + "com.sun.xml.internal.xsom.visitor", + "javax.annotation.processing", + "javax.lang.model", + "javax.lang.model.element", + "javax.lang.model.type", + "javax.lang.model.util", + "javax.tools", + "jdk", "org.checkerframework.checker.compilermsgs", + "org.checkerframework.checker.compilermsgs.qual", "org.checkerframework.checker.fenum", + "org.checkerframework.checker.fenum.qual", "org.checkerframework.checker.formatter", + "org.checkerframework.checker.formatter.qual", "org.checkerframework.checker.guieffect", + "org.checkerframework.checker.guieffect.qual", "org.checkerframework.checker.i18n", + "org.checkerframework.checker.i18n.qual", "org.checkerframework.checker.i18nformatter", + "org.checkerframework.checker.i18nformatter.qual", "org.checkerframework.checker.index", "org.checkerframework.checker.index.inequality", "org.checkerframework.checker.index.lowerbound", + "org.checkerframework.checker.index.qual", "org.checkerframework.checker.index.samelen", "org.checkerframework.checker.index.searchindex", "org.checkerframework.checker.index.substringindex", "org.checkerframework.checker.index.upperbound", "org.checkerframework.checker.initialization", + "org.checkerframework.checker.initialization.qual", "org.checkerframework.checker.interning", + "org.checkerframework.checker.interning.qual", + "org.checkerframework.checker.linear.qual", "org.checkerframework.checker.lock", - "org.checkerframework.checker.mustcall", + "org.checkerframework.checker.lock.qual", "org.checkerframework.checker.nullness", + "org.checkerframework.checker.nullness.compatqual", + "org.checkerframework.checker.nullness.qual", "org.checkerframework.checker.optional", + "org.checkerframework.checker.optional.qual", "org.checkerframework.checker.propkey", + "org.checkerframework.checker.propkey.qual", "org.checkerframework.checker.regex", - "org.checkerframework.checker.resourceleak", + "org.checkerframework.checker.regex.qual", "org.checkerframework.checker.signature", + "org.checkerframework.checker.signature.qual", "org.checkerframework.checker.signedness", + "org.checkerframework.checker.signedness.qual", "org.checkerframework.checker.tainting", + "org.checkerframework.checker.tainting.qual", "org.checkerframework.checker.units", - "org.checkerframework.com.google.common.annotations", + "org.checkerframework.checker.units.qual", + "org.checkerframework.com.github.javaparser", + "org.checkerframework.com.github.javaparser.ast", + "org.checkerframework.com.github.javaparser.ast.body", + "org.checkerframework.com.github.javaparser.ast.comments", + "org.checkerframework.com.github.javaparser.ast.expr", + "org.checkerframework.com.github.javaparser.ast.modules", + "org.checkerframework.com.github.javaparser.ast.nodeTypes", + "org.checkerframework.com.github.javaparser.ast.nodeTypes.modifiers", + "org.checkerframework.com.github.javaparser.ast.observer", + "org.checkerframework.com.github.javaparser.ast.stmt", + "org.checkerframework.com.github.javaparser.ast.type", + "org.checkerframework.com.github.javaparser.ast.validator", + "org.checkerframework.com.github.javaparser.ast.validator.chunks", + "org.checkerframework.com.github.javaparser.ast.visitor", + "org.checkerframework.com.github.javaparser.javadoc", + "org.checkerframework.com.github.javaparser.javadoc.description", + "org.checkerframework.com.github.javaparser.metamodel", + "org.checkerframework.com.github.javaparser.printer", + "org.checkerframework.com.github.javaparser.printer.concretesyntaxmodel", + "org.checkerframework.com.github.javaparser.printer.lexicalpreservation", + "org.checkerframework.com.github.javaparser.printer.lexicalpreservation.changes", + "org.checkerframework.com.github.javaparser.resolution", + "org.checkerframework.com.github.javaparser.resolution.declarations", + "org.checkerframework.com.github.javaparser.resolution.types", + "org.checkerframework.com.github.javaparser.resolution.types.parametrization", + "org.checkerframework.com.github.javaparser.utils", + "org.checkerframework.com.github.javaparser.version", "org.checkerframework.com.google.common.base", "org.checkerframework.com.google.common.base.internal", - "org.checkerframework.com.google.common.cache", "org.checkerframework.com.google.common.collect", "org.checkerframework.com.google.common.escape", - "org.checkerframework.com.google.common.eventbus", - "org.checkerframework.com.google.common.graph", - "org.checkerframework.com.google.common.hash", - "org.checkerframework.com.google.common.html", - "org.checkerframework.com.google.common.io", - "org.checkerframework.com.google.common.math", - "org.checkerframework.com.google.common.net", - "org.checkerframework.com.google.common.primitives", - "org.checkerframework.com.google.common.reflect", - "org.checkerframework.com.google.common.util.concurrent", - "org.checkerframework.com.google.common.xml", - "org.checkerframework.com.google.errorprone.annotations", - "org.checkerframework.com.google.errorprone.annotations.concurrent", - "org.checkerframework.com.google.thirdparty.publicsuffix", - "org.checkerframework.common.accumulation", "org.checkerframework.common.aliasing", + "org.checkerframework.common.aliasing.qual", "org.checkerframework.common.basetype", - "org.checkerframework.common.initializedfields", "org.checkerframework.common.reflection", - "org.checkerframework.common.returnsreceiver", + "org.checkerframework.common.reflection.qual", "org.checkerframework.common.subtyping", "org.checkerframework.common.util", "org.checkerframework.common.util.count", "org.checkerframework.common.util.debug", "org.checkerframework.common.util.report", + "org.checkerframework.common.util.report.qual", "org.checkerframework.common.value", + "org.checkerframework.common.value.qual", "org.checkerframework.common.value.util", "org.checkerframework.common.wholeprograminference", - "org.checkerframework.common.wholeprograminference.scenelib", "org.checkerframework.dataflow.analysis", "org.checkerframework.dataflow.cfg", "org.checkerframework.dataflow.cfg.block", - "org.checkerframework.dataflow.cfg.builder", "org.checkerframework.dataflow.cfg.node", "org.checkerframework.dataflow.cfg.playground", - "org.checkerframework.dataflow.cfg.visualize", "org.checkerframework.dataflow.constantpropagation", - "org.checkerframework.dataflow.expression", - "org.checkerframework.dataflow.livevariable", + "org.checkerframework.dataflow.qual", "org.checkerframework.dataflow.util", - "org.checkerframework.framework.ajava", "org.checkerframework.framework.flow", + "org.checkerframework.framework.qual", "org.checkerframework.framework.source", "org.checkerframework.framework.stub", "org.checkerframework.framework.type", - "org.checkerframework.framework.type.poly", "org.checkerframework.framework.type.treeannotator", "org.checkerframework.framework.type.typeannotator", "org.checkerframework.framework.type.visitor", @@ -13017,89 +10429,107 @@ "org.checkerframework.framework.util.typeinference", "org.checkerframework.framework.util.typeinference.constraint", "org.checkerframework.framework.util.typeinference.solver", - "org.checkerframework.io.github.classgraph", "org.checkerframework.javacutil", "org.checkerframework.javacutil.trees", - "org.checkerframework.nonapi.io.github.classgraph.classloaderhandler", - "org.checkerframework.nonapi.io.github.classgraph.classpath", - "org.checkerframework.nonapi.io.github.classgraph.concurrency", - "org.checkerframework.nonapi.io.github.classgraph.fastzipfilereader", - "org.checkerframework.nonapi.io.github.classgraph.fileslice", - "org.checkerframework.nonapi.io.github.classgraph.fileslice.reader", - "org.checkerframework.nonapi.io.github.classgraph.json", - "org.checkerframework.nonapi.io.github.classgraph.recycler", - "org.checkerframework.nonapi.io.github.classgraph.reflection", - "org.checkerframework.nonapi.io.github.classgraph.scanspec", - "org.checkerframework.nonapi.io.github.classgraph.types", - "org.checkerframework.nonapi.io.github.classgraph.utils", - "org.checkerframework.org.apache.bcel", - "org.checkerframework.org.apache.bcel.classfile", - "org.checkerframework.org.apache.bcel.generic", - "org.checkerframework.org.apache.bcel.util", - "org.checkerframework.org.apache.bcel.verifier", - "org.checkerframework.org.apache.bcel.verifier.exc", - "org.checkerframework.org.apache.bcel.verifier.statics", - "org.checkerframework.org.apache.bcel.verifier.structurals", "org.checkerframework.org.apache.commons.lang3", "org.checkerframework.org.apache.commons.lang3.arch", "org.checkerframework.org.apache.commons.lang3.builder", - "org.checkerframework.org.apache.commons.lang3.compare", "org.checkerframework.org.apache.commons.lang3.concurrent", - "org.checkerframework.org.apache.commons.lang3.concurrent.locks", "org.checkerframework.org.apache.commons.lang3.event", "org.checkerframework.org.apache.commons.lang3.exception", - "org.checkerframework.org.apache.commons.lang3.function", "org.checkerframework.org.apache.commons.lang3.math", "org.checkerframework.org.apache.commons.lang3.mutable", "org.checkerframework.org.apache.commons.lang3.reflect", - "org.checkerframework.org.apache.commons.lang3.stream", "org.checkerframework.org.apache.commons.lang3.text", "org.checkerframework.org.apache.commons.lang3.text.translate", "org.checkerframework.org.apache.commons.lang3.time", "org.checkerframework.org.apache.commons.lang3.tuple", "org.checkerframework.org.apache.commons.text", "org.checkerframework.org.apache.commons.text.diff", - "org.checkerframework.org.apache.commons.text.io", - "org.checkerframework.org.apache.commons.text.lookup", - "org.checkerframework.org.apache.commons.text.matcher", "org.checkerframework.org.apache.commons.text.similarity", "org.checkerframework.org.apache.commons.text.translate", "org.checkerframework.org.objectweb.asm", + "org.checkerframework.org.objectweb.asm.attrs", + "org.checkerframework.org.objectweb.asm.commons", + "org.checkerframework.org.objectweb.asm.optimizer", "org.checkerframework.org.objectweb.asm.signature", - "org.checkerframework.org.plumelib.bcelutil", + "org.checkerframework.org.objectweb.asm.tree", + "org.checkerframework.org.objectweb.asm.tree.analysis", + "org.checkerframework.org.objectweb.asm.util", + "org.checkerframework.org.objectweb.asm.util.attrs", + "org.checkerframework.org.objectweb.asm.xml", "org.checkerframework.org.plumelib.options", - "org.checkerframework.org.plumelib.reflection", "org.checkerframework.org.plumelib.util", - "org.jmlspecs.annotation" - ], - "sha256": "b10658137795df09920577366b55c28a6ad57f54c6e010c63b667170a4c13958", - "url": "https://repo1.maven.org/maven2/org/checkerframework/checker/3.26.0/checker-3.26.0.jar" - }, - { - "coord": "org.checkerframework:checker:jar:sources:3.26.0", - "dependencies": [ - "org.checkerframework:checker-qual:jar:sources:3.26.0", - "org.checkerframework:checker-util:jar:sources:3.26.0" - ], - "directDependencies": [ - "org.checkerframework:checker-qual:jar:sources:3.26.0", - "org.checkerframework:checker-util:jar:sources:3.26.0" - ], - "file": "v1/https/repo1.maven.org/maven2/org/checkerframework/checker/3.26.0/checker-3.26.0-sources.jar", + "org.checkerframework.org.relaxng.datatype", + "org.checkerframework.org.relaxng.datatype.helpers", + "org.jmlspecs.annotation", + "scenelib.annotations", + "scenelib.annotations.el", + "scenelib.annotations.field", + "scenelib.annotations.io", + "scenelib.annotations.io.classfile", + "scenelib.annotations.tools", + "scenelib.annotations.toys", + "scenelib.annotations.util", + "scenelib.annotations.util.coll", + "scenelib.type", + "sun.applet", + "sun.applet.resources", + "sun.jvmstat.monitor", + "sun.jvmstat.monitor.event", + "sun.jvmstat.monitor.remote", + "sun.jvmstat.perfdata.monitor", + "sun.jvmstat.perfdata.monitor.protocol.file", + "sun.jvmstat.perfdata.monitor.protocol.local", + "sun.jvmstat.perfdata.monitor.protocol.rmi", + "sun.jvmstat.perfdata.monitor.v1_0", + "sun.jvmstat.perfdata.monitor.v2_0", + "sun.rmi.rmic", + "sun.rmi.rmic.iiop", + "sun.rmi.rmic.newrmic", + "sun.rmi.rmic.newrmic.jrmp", + "sun.security.tools", + "sun.tools.asm", + "sun.tools.attach", + "sun.tools.jar", + "sun.tools.jar.resources", + "sun.tools.java", + "sun.tools.javac", + "sun.tools.jcmd", + "sun.tools.jinfo", + "sun.tools.jmap", + "sun.tools.jps", + "sun.tools.jstack", + "sun.tools.jstat", + "sun.tools.jstatd", + "sun.tools.native2ascii", + "sun.tools.native2ascii.resources", + "sun.tools.serialver", + "sun.tools.tree", + "sun.tools.util" + ], + "sha256": "2bff93185b4b70cde3f79370621700b3a102823ac9838e5eedf50df2b6124266", + "url": "https://repo1.maven.org/maven2/org/checkerframework/checker/2.5.4/checker-2.5.4.jar" + }, + { + "coord": "org.checkerframework:checker:jar:sources:2.5.4", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo1.maven.org/maven2/org/checkerframework/checker/2.5.4/checker-2.5.4-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/checkerframework/checker/3.26.0/checker-3.26.0-sources.jar" + "https://repo1.maven.org/maven2/org/checkerframework/checker/2.5.4/checker-2.5.4-sources.jar" ], "packages": [], - "sha256": "c2f631bda893b0a165dd04d345bb3a723867d9e20cede8d5497d5298b539d449", - "url": "https://repo1.maven.org/maven2/org/checkerframework/checker/3.26.0/checker-3.26.0-sources.jar" + "sha256": "764f65795e857c36c381e07b76f2e19217a472cef4c352bd40a090ca94305326", + "url": "https://repo1.maven.org/maven2/org/checkerframework/checker/2.5.4/checker-2.5.4-sources.jar" }, { - "coord": "org.codehaus.janino:commons-compiler:3.1.8", + "coord": "org.codehaus.janino:commons-compiler:3.1.4", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/codehaus/janino/commons-compiler/3.1.8/commons-compiler-3.1.8.jar", + "file": "v1/https/repo1.maven.org/maven2/org/codehaus/janino/commons-compiler/3.1.4/commons-compiler-3.1.4.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/codehaus/janino/commons-compiler/3.1.8/commons-compiler-3.1.8.jar" + "https://repo1.maven.org/maven2/org/codehaus/janino/commons-compiler/3.1.4/commons-compiler-3.1.4.jar" ], "packages": [ "org.codehaus.commons.compiler", @@ -13116,93 +10546,91 @@ "org.codehaus.commons.compiler.util.resource", "org.codehaus.commons.nullanalysis" ], - "sha256": "e7b252bb85a6f619e97702aebdc709aaaa6d04a7279eec08829f4d21a24e2eef", - "url": "https://repo1.maven.org/maven2/org/codehaus/janino/commons-compiler/3.1.8/commons-compiler-3.1.8.jar" + "sha256": "5171493e0a2c8ad5e5316a2da1fb48a14f03e154f472112e2bbd75d62e34bfd3", + "url": "https://repo1.maven.org/maven2/org/codehaus/janino/commons-compiler/3.1.4/commons-compiler-3.1.4.jar" }, { - "coord": "org.codehaus.janino:commons-compiler:jar:sources:3.1.8", + "coord": "org.codehaus.janino:commons-compiler:jar:sources:3.1.4", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/codehaus/janino/commons-compiler/3.1.8/commons-compiler-3.1.8-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/codehaus/janino/commons-compiler/3.1.4/commons-compiler-3.1.4-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/codehaus/janino/commons-compiler/3.1.8/commons-compiler-3.1.8-sources.jar" + "https://repo1.maven.org/maven2/org/codehaus/janino/commons-compiler/3.1.4/commons-compiler-3.1.4-sources.jar" ], "packages": [], - "sha256": "9c775362a1e621cc1b299eb5590917a63e46e7e20a406ba6b6c0e1f924377500", - "url": "https://repo1.maven.org/maven2/org/codehaus/janino/commons-compiler/3.1.8/commons-compiler-3.1.8-sources.jar" + "sha256": "9bb6c96054cb61cfa1f215c7893b098ef9b26ac12e218b5595d463cc24d55c8c", + "url": "https://repo1.maven.org/maven2/org/codehaus/janino/commons-compiler/3.1.4/commons-compiler-3.1.4-sources.jar" }, { - "coord": "org.codehaus.janino:janino:3.1.8", + "coord": "org.codehaus.janino:janino:3.1.4", "dependencies": [ - "org.codehaus.janino:commons-compiler:3.1.8" + "org.codehaus.janino:commons-compiler:3.1.4" ], "directDependencies": [ - "org.codehaus.janino:commons-compiler:3.1.8" + "org.codehaus.janino:commons-compiler:3.1.4" ], - "file": "v1/https/repo1.maven.org/maven2/org/codehaus/janino/janino/3.1.8/janino-3.1.8.jar", + "file": "v1/https/repo1.maven.org/maven2/org/codehaus/janino/janino/3.1.4/janino-3.1.4.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/codehaus/janino/janino/3.1.8/janino-3.1.8.jar" + "https://repo1.maven.org/maven2/org/codehaus/janino/janino/3.1.4/janino-3.1.4.jar" ], "packages": [ "org.codehaus.janino", "org.codehaus.janino.samples", "org.codehaus.janino.tools", - "org.codehaus.janino.util", - "org.codehaus.janino.util.charstream", - "org.codehaus.janino.util.signature" + "org.codehaus.janino.util" ], - "sha256": "bd38a9fd77a9e94a7306cea018f2a4786fa2e8cd022edade8f10be2fcfae7037", - "url": "https://repo1.maven.org/maven2/org/codehaus/janino/janino/3.1.8/janino-3.1.8.jar" + "sha256": "234370ad8b26f76e4c6d92fa06340a36876a1157087ee0af26129ffd92103642", + "url": "https://repo1.maven.org/maven2/org/codehaus/janino/janino/3.1.4/janino-3.1.4.jar" }, { - "coord": "org.codehaus.janino:janino:jar:sources:3.1.8", + "coord": "org.codehaus.janino:janino:jar:sources:3.1.4", "dependencies": [ - "org.codehaus.janino:commons-compiler:jar:sources:3.1.8" + "org.codehaus.janino:commons-compiler:jar:sources:3.1.4" ], "directDependencies": [ - "org.codehaus.janino:commons-compiler:jar:sources:3.1.8" + "org.codehaus.janino:commons-compiler:jar:sources:3.1.4" ], - "file": "v1/https/repo1.maven.org/maven2/org/codehaus/janino/janino/3.1.8/janino-3.1.8-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/codehaus/janino/janino/3.1.4/janino-3.1.4-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/codehaus/janino/janino/3.1.8/janino-3.1.8-sources.jar" + "https://repo1.maven.org/maven2/org/codehaus/janino/janino/3.1.4/janino-3.1.4-sources.jar" ], "packages": [], - "sha256": "296c040817f906f53effe7b2d862d5b8cdabe9c26b0257d6b992d12627565447", - "url": "https://repo1.maven.org/maven2/org/codehaus/janino/janino/3.1.8/janino-3.1.8-sources.jar" + "sha256": "f11953511f2c9a900cbb0af533f2156b72a644b54bc488dc24fab645d8f96b87", + "url": "https://repo1.maven.org/maven2/org/codehaus/janino/janino/3.1.4/janino-3.1.4-sources.jar" }, { - "coord": "org.codehaus.mojo:animal-sniffer-annotations:1.21", + "coord": "org.codehaus.mojo:animal-sniffer-annotations:1.19", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.21/animal-sniffer-annotations-1.21.jar", + "file": "v1/https/repo1.maven.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.19/animal-sniffer-annotations-1.19.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.21/animal-sniffer-annotations-1.21.jar" + "https://repo1.maven.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.19/animal-sniffer-annotations-1.19.jar" ], "packages": [ "org.codehaus.mojo.animal_sniffer" ], - "sha256": "2f25841c937e24959a57b630e2c4b8525b3d0f536f2e511c9b2bed30b1651d54", - "url": "https://repo1.maven.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.21/animal-sniffer-annotations-1.21.jar" + "sha256": "e67ec27ceeaf13ab5d54cf5fdbcc544c41b4db8d02d9f006678cca2c7c13ee9d", + "url": "https://repo1.maven.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.19/animal-sniffer-annotations-1.19.jar" }, { - "coord": "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.21", + "coord": "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.19", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.21/animal-sniffer-annotations-1.21-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.19/animal-sniffer-annotations-1.19-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.21/animal-sniffer-annotations-1.21-sources.jar" + "https://repo1.maven.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.19/animal-sniffer-annotations-1.19-sources.jar" ], "packages": [], - "sha256": "b96c0e3e96686e4ace91f416ff2f7c5a53a53f25be6e404fc71bfcf20e9c253e", - "url": "https://repo1.maven.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.21/animal-sniffer-annotations-1.21-sources.jar" + "sha256": "da2e67cba66639197d23c1976e6c27d0967ad4dc69e6228b934e05a0d39e2991", + "url": "https://repo1.maven.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.19/animal-sniffer-annotations-1.19-sources.jar" }, { - "coord": "org.eclipse.jetty.websocket:websocket-api:9.4.48.v20220622", + "coord": "org.eclipse.jetty.websocket:websocket-api:9.4.27.v20200227", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.48.v20220622/websocket-api-9.4.48.v20220622.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.27.v20200227/websocket-api-9.4.27.v20200227.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.48.v20220622/websocket-api-9.4.48.v20220622.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.27.v20200227/websocket-api-9.4.27.v20200227.jar" ], "packages": [ "org.eclipse.jetty.websocket.api", @@ -13210,88 +10638,92 @@ "org.eclipse.jetty.websocket.api.extensions", "org.eclipse.jetty.websocket.api.util" ], - "sha256": "87fb052324d6c5e22f58fb729169913bb318d97921115640c3dca453c7eb19e1", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.48.v20220622/websocket-api-9.4.48.v20220622.jar" + "sha256": "922b76ff73cc6dc29b6eae2e7b3934b48b84cfba65902279966db5f73ee4f3fd", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.27.v20200227/websocket-api-9.4.27.v20200227.jar" }, { - "coord": "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.48.v20220622", + "coord": "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.27.v20200227", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.48.v20220622/websocket-api-9.4.48.v20220622-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.27.v20200227/websocket-api-9.4.27.v20200227-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.48.v20220622/websocket-api-9.4.48.v20220622-sources.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.27.v20200227/websocket-api-9.4.27.v20200227-sources.jar" ], "packages": [], - "sha256": "ac2100ce87ed7a200ca603597ada68cee295a166bb28c4ccebeb3d7c0bac48cc", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.48.v20220622/websocket-api-9.4.48.v20220622-sources.jar" + "sha256": "cc01545ab03e37aa6732debcb1ca31090112616adedea78a77d35122b19db125", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.27.v20200227/websocket-api-9.4.27.v20200227-sources.jar" }, { - "coord": "org.eclipse.jetty.websocket:websocket-client:9.4.48.v20220622", + "coord": "org.eclipse.jetty.websocket:websocket-client:9.4.27.v20200227", "dependencies": [ - "org.eclipse.jetty.websocket:websocket-api:9.4.48.v20220622", - "org.eclipse.jetty.websocket:websocket-common:9.4.48.v20220622", - "org.eclipse.jetty:jetty-client:9.4.48.v20220622", - "org.eclipse.jetty:jetty-http:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + "org.eclipse.jetty.websocket:websocket-api:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-common:9.4.27.v20200227", + "org.eclipse.jetty:jetty-client:9.4.27.v20200227", + "org.eclipse.jetty:jetty-http:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:9.4.27.v20200227", + "org.eclipse.jetty:jetty-util:9.4.27.v20200227", + "org.eclipse.jetty:jetty-xml:9.4.27.v20200227" ], "directDependencies": [ - "org.eclipse.jetty.websocket:websocket-common:9.4.48.v20220622", - "org.eclipse.jetty:jetty-client:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + "org.eclipse.jetty.websocket:websocket-common:9.4.27.v20200227", + "org.eclipse.jetty:jetty-client:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:9.4.27.v20200227", + "org.eclipse.jetty:jetty-util:9.4.27.v20200227", + "org.eclipse.jetty:jetty-xml:9.4.27.v20200227" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.48.v20220622/websocket-client-9.4.48.v20220622.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.27.v20200227/websocket-client-9.4.27.v20200227.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.48.v20220622/websocket-client-9.4.48.v20220622.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.27.v20200227/websocket-client-9.4.27.v20200227.jar" ], "packages": [ "org.eclipse.jetty.websocket.client", "org.eclipse.jetty.websocket.client.io", "org.eclipse.jetty.websocket.client.masks" ], - "sha256": "432d9d85734be8acbdbc3656200d2b1d540574c9bebe0b4f75a3f8bbe402a2f1", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.48.v20220622/websocket-client-9.4.48.v20220622.jar" + "sha256": "24db9c0481734e0a67c2b5a52a23ee31ac05d1376bd1fad24a78e6c96326105e", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.27.v20200227/websocket-client-9.4.27.v20200227.jar" }, { - "coord": "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.48.v20220622", + "coord": "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.27.v20200227", "dependencies": [ - "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-client:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-http:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-client:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-http:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-util:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-xml:jar:sources:9.4.27.v20200227" ], "directDependencies": [ - "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-client:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-client:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-util:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-xml:jar:sources:9.4.27.v20200227" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.48.v20220622/websocket-client-9.4.48.v20220622-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.27.v20200227/websocket-client-9.4.27.v20200227-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.48.v20220622/websocket-client-9.4.48.v20220622-sources.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.27.v20200227/websocket-client-9.4.27.v20200227-sources.jar" ], "packages": [], - "sha256": "884cfe6ff9a190454bb7172efb9c76339300fd3ef247764881375c98beb24655", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.48.v20220622/websocket-client-9.4.48.v20220622-sources.jar" + "sha256": "ac27bf26947ceb4dce81e1eac58563e7f7b033bcfdd3941e3920c1b1418e0220", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.27.v20200227/websocket-client-9.4.27.v20200227-sources.jar" }, { - "coord": "org.eclipse.jetty.websocket:websocket-common:9.4.48.v20220622", + "coord": "org.eclipse.jetty.websocket:websocket-common:9.4.27.v20200227", "dependencies": [ - "org.eclipse.jetty.websocket:websocket-api:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + "org.eclipse.jetty.websocket:websocket-api:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:9.4.27.v20200227", + "org.eclipse.jetty:jetty-util:9.4.27.v20200227" ], "directDependencies": [ - "org.eclipse.jetty.websocket:websocket-api:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + "org.eclipse.jetty.websocket:websocket-api:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:9.4.27.v20200227", + "org.eclipse.jetty:jetty-util:9.4.27.v20200227" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.48.v20220622/websocket-common-9.4.48.v20220622.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.27.v20200227/websocket-common-9.4.27.v20200227.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.48.v20220622/websocket-common-9.4.48.v20220622.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.27.v20200227/websocket-common-9.4.27.v20200227.jar" ], "packages": [ "org.eclipse.jetty.websocket.common", @@ -13309,148 +10741,148 @@ "org.eclipse.jetty.websocket.common.scopes", "org.eclipse.jetty.websocket.common.util" ], - "sha256": "1f630339e7e7f6de5d7f47f9496495d7689ad41fc11565aaf11ce9e22ff6ccda", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.48.v20220622/websocket-common-9.4.48.v20220622.jar" + "sha256": "a4a673ff5966179e402f79427ad59c95c1c02b49aeeac2e7de212c6ac932e046", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.27.v20200227/websocket-common-9.4.27.v20200227.jar" }, { - "coord": "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.48.v20220622", + "coord": "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.27.v20200227", "dependencies": [ - "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-util:jar:sources:9.4.27.v20200227" ], "directDependencies": [ - "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-util:jar:sources:9.4.27.v20200227" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.48.v20220622/websocket-common-9.4.48.v20220622-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.27.v20200227/websocket-common-9.4.27.v20200227-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.48.v20220622/websocket-common-9.4.48.v20220622-sources.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.27.v20200227/websocket-common-9.4.27.v20200227-sources.jar" ], "packages": [], - "sha256": "c28ce24bdf2bae47da7185141046df952e3e86ab0a896b2f52e95fd82eb31e1a", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.48.v20220622/websocket-common-9.4.48.v20220622-sources.jar" + "sha256": "b210d03ee6057e29b58c1e5ab54e2728d58d5d2ff62cd0a0fc47558f20edfc34", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.27.v20200227/websocket-common-9.4.27.v20200227-sources.jar" }, { - "coord": "org.eclipse.jetty.websocket:websocket-server:9.4.48.v20220622", + "coord": "org.eclipse.jetty.websocket:websocket-server:9.4.18.v20190429", "dependencies": [ "javax.servlet:javax.servlet-api:3.1.0", - "org.eclipse.jetty.websocket:websocket-api:9.4.48.v20220622", - "org.eclipse.jetty.websocket:websocket-client:9.4.48.v20220622", - "org.eclipse.jetty.websocket:websocket-common:9.4.48.v20220622", - "org.eclipse.jetty.websocket:websocket-servlet:9.4.48.v20220622", - "org.eclipse.jetty:jetty-client:9.4.48.v20220622", - "org.eclipse.jetty:jetty-http:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:9.4.48.v20220622", - "org.eclipse.jetty:jetty-security:9.4.48.v20220622", - "org.eclipse.jetty:jetty-server:9.4.48.v20220622", - "org.eclipse.jetty:jetty-servlet:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util-ajax:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + "org.eclipse.jetty.websocket:websocket-api:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-client:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-common:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-servlet:9.4.18.v20190429", + "org.eclipse.jetty:jetty-client:9.4.27.v20200227", + "org.eclipse.jetty:jetty-http:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:9.4.27.v20200227", + "org.eclipse.jetty:jetty-security:9.4.18.v20190429", + "org.eclipse.jetty:jetty-server:9.4.18.v20190429", + "org.eclipse.jetty:jetty-servlet:9.4.18.v20190429", + "org.eclipse.jetty:jetty-util:9.4.27.v20200227", + "org.eclipse.jetty:jetty-xml:9.4.27.v20200227" ], "directDependencies": [ - "org.eclipse.jetty.websocket:websocket-client:9.4.48.v20220622", - "org.eclipse.jetty.websocket:websocket-common:9.4.48.v20220622", - "org.eclipse.jetty.websocket:websocket-servlet:9.4.48.v20220622", - "org.eclipse.jetty:jetty-http:9.4.48.v20220622", - "org.eclipse.jetty:jetty-servlet:9.4.48.v20220622" + "org.eclipse.jetty.websocket:websocket-client:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-common:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-servlet:9.4.18.v20190429", + "org.eclipse.jetty:jetty-http:9.4.27.v20200227", + "org.eclipse.jetty:jetty-servlet:9.4.18.v20190429" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-server/9.4.48.v20220622/websocket-server-9.4.48.v20220622.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-server/9.4.18.v20190429/websocket-server-9.4.18.v20190429.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-server/9.4.48.v20220622/websocket-server-9.4.48.v20220622.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-server/9.4.18.v20190429/websocket-server-9.4.18.v20190429.jar" ], "packages": [ "org.eclipse.jetty.websocket.server", "org.eclipse.jetty.websocket.server.pathmap" ], - "sha256": "32ad18b3c610a5036c33d2e6bdf76eb46759fb8e067483d7a96f94e3909a4285", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-server/9.4.48.v20220622/websocket-server-9.4.48.v20220622.jar" + "sha256": "db9bac749a2873ab8266dca5e9cb878943d7ea818932bd1918fcb8ec6a17cfbf", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-server/9.4.18.v20190429/websocket-server-9.4.18.v20190429.jar" }, { - "coord": "org.eclipse.jetty.websocket:websocket-server:jar:sources:9.4.48.v20220622", + "coord": "org.eclipse.jetty.websocket:websocket-server:jar:sources:9.4.18.v20190429", "dependencies": [ "javax.servlet:javax.servlet-api:jar:sources:3.1.0", - "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty.websocket:websocket-servlet:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-client:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-http:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-security:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-server:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-servlet:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util-ajax:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-servlet:jar:sources:9.4.18.v20190429", + "org.eclipse.jetty:jetty-client:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-http:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-security:jar:sources:9.4.18.v20190429", + "org.eclipse.jetty:jetty-server:jar:sources:9.4.18.v20190429", + "org.eclipse.jetty:jetty-servlet:jar:sources:9.4.18.v20190429", + "org.eclipse.jetty:jetty-util:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-xml:jar:sources:9.4.27.v20200227" ], "directDependencies": [ - "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty.websocket:websocket-servlet:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-http:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-servlet:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-servlet:jar:sources:9.4.18.v20190429", + "org.eclipse.jetty:jetty-http:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-servlet:jar:sources:9.4.18.v20190429" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-server/9.4.48.v20220622/websocket-server-9.4.48.v20220622-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-server/9.4.18.v20190429/websocket-server-9.4.18.v20190429-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-server/9.4.48.v20220622/websocket-server-9.4.48.v20220622-sources.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-server/9.4.18.v20190429/websocket-server-9.4.18.v20190429-sources.jar" ], "packages": [], - "sha256": "79433b590b7ad23ed5d96dcfc0875a51b25f08d97ab460c4370517873415c2a8", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-server/9.4.48.v20220622/websocket-server-9.4.48.v20220622-sources.jar" + "sha256": "bd1558c715701bd90fe349cac2bf6c31bb2be74d1bedc219355e196c33989ba1", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-server/9.4.18.v20190429/websocket-server-9.4.18.v20190429-sources.jar" }, { - "coord": "org.eclipse.jetty.websocket:websocket-servlet:9.4.48.v20220622", + "coord": "org.eclipse.jetty.websocket:websocket-servlet:9.4.18.v20190429", "dependencies": [ "javax.servlet:javax.servlet-api:3.1.0", - "org.eclipse.jetty.websocket:websocket-api:9.4.48.v20220622" + "org.eclipse.jetty.websocket:websocket-api:9.4.27.v20200227" ], "directDependencies": [ "javax.servlet:javax.servlet-api:3.1.0", - "org.eclipse.jetty.websocket:websocket-api:9.4.48.v20220622" + "org.eclipse.jetty.websocket:websocket-api:9.4.27.v20200227" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-servlet/9.4.48.v20220622/websocket-servlet-9.4.48.v20220622.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-servlet/9.4.18.v20190429/websocket-servlet-9.4.18.v20190429.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-servlet/9.4.48.v20220622/websocket-servlet-9.4.48.v20220622.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-servlet/9.4.18.v20190429/websocket-servlet-9.4.18.v20190429.jar" ], "packages": [ "org.eclipse.jetty.websocket.servlet" ], - "sha256": "28aeea9ac33a3f6d22e31ed2a6079abc35ce3ec1d5c80e1cc13859f536680b25", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-servlet/9.4.48.v20220622/websocket-servlet-9.4.48.v20220622.jar" + "sha256": "3ca878717f15e052b18563f7796581f4e605874e027265054911cc37feb1ddc7", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-servlet/9.4.18.v20190429/websocket-servlet-9.4.18.v20190429.jar" }, { - "coord": "org.eclipse.jetty.websocket:websocket-servlet:jar:sources:9.4.48.v20220622", + "coord": "org.eclipse.jetty.websocket:websocket-servlet:jar:sources:9.4.18.v20190429", "dependencies": [ "javax.servlet:javax.servlet-api:jar:sources:3.1.0", - "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.27.v20200227" ], "directDependencies": [ "javax.servlet:javax.servlet-api:jar:sources:3.1.0", - "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.27.v20200227" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-servlet/9.4.48.v20220622/websocket-servlet-9.4.48.v20220622-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-servlet/9.4.18.v20190429/websocket-servlet-9.4.18.v20190429-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-servlet/9.4.48.v20220622/websocket-servlet-9.4.48.v20220622-sources.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-servlet/9.4.18.v20190429/websocket-servlet-9.4.18.v20190429-sources.jar" ], "packages": [], - "sha256": "f4e1c40e52a100ba8491026a28e11c30b9683fbc9afccb001a63d8abcb4d9d62", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-servlet/9.4.48.v20220622/websocket-servlet-9.4.48.v20220622-sources.jar" + "sha256": "0b8d7853e1fc97a2e0462476627f47366e3df3b915799aa51060ee5ac93b4e04", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-servlet/9.4.18.v20190429/websocket-servlet-9.4.18.v20190429-sources.jar" }, { - "coord": "org.eclipse.jetty:jetty-client:9.4.48.v20220622", + "coord": "org.eclipse.jetty:jetty-client:9.4.27.v20200227", "dependencies": [ - "org.eclipse.jetty:jetty-http:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + "org.eclipse.jetty:jetty-http:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:9.4.27.v20200227", + "org.eclipse.jetty:jetty-util:9.4.27.v20200227" ], "directDependencies": [ - "org.eclipse.jetty:jetty-http:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:9.4.48.v20220622" + "org.eclipse.jetty:jetty-http:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:9.4.27.v20200227" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-client/9.4.48.v20220622/jetty-client-9.4.48.v20220622.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-client/9.4.27.v20200227/jetty-client-9.4.27.v20200227.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-client/9.4.48.v20220622/jetty-client-9.4.48.v20220622.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-client/9.4.27.v20200227/jetty-client-9.4.27.v20200227.jar" ], "packages": [ "org.eclipse.jetty.client", @@ -13459,162 +10891,161 @@ "org.eclipse.jetty.client.jmx", "org.eclipse.jetty.client.util" ], - "sha256": "7f89fe0900d36b296275999992a6ad76d523be35487d613d8fb56434c34d1d15", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-client/9.4.48.v20220622/jetty-client-9.4.48.v20220622.jar" + "sha256": "44fc761294036d244d40dede16090e304ebc031c905a5d097a6e978de2fda60f", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-client/9.4.27.v20200227/jetty-client-9.4.27.v20200227.jar" }, { - "coord": "org.eclipse.jetty:jetty-client:jar:sources:9.4.48.v20220622", + "coord": "org.eclipse.jetty:jetty-client:jar:sources:9.4.27.v20200227", "dependencies": [ - "org.eclipse.jetty:jetty-http:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty:jetty-http:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-util:jar:sources:9.4.27.v20200227" ], "directDependencies": [ - "org.eclipse.jetty:jetty-http:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty:jetty-http:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:jar:sources:9.4.27.v20200227" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-client/9.4.48.v20220622/jetty-client-9.4.48.v20220622-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-client/9.4.27.v20200227/jetty-client-9.4.27.v20200227-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-client/9.4.48.v20220622/jetty-client-9.4.48.v20220622-sources.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-client/9.4.27.v20200227/jetty-client-9.4.27.v20200227-sources.jar" ], "packages": [], - "sha256": "ea1dc985f22908eec72a654f9448dbc5734c4e6319232e333eb992bd7a62c7e5", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-client/9.4.48.v20220622/jetty-client-9.4.48.v20220622-sources.jar" + "sha256": "2521cc0bec2e110801dab66cb3230431640c7691207ede203ba8540858c90ba9", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-client/9.4.27.v20200227/jetty-client-9.4.27.v20200227-sources.jar" }, { - "coord": "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "coord": "org.eclipse.jetty:jetty-http:9.4.27.v20200227", "dependencies": [ - "org.eclipse.jetty:jetty-io:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + "org.eclipse.jetty:jetty-io:9.4.27.v20200227", + "org.eclipse.jetty:jetty-util:9.4.27.v20200227" ], "directDependencies": [ - "org.eclipse.jetty:jetty-io:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + "org.eclipse.jetty:jetty-io:9.4.27.v20200227", + "org.eclipse.jetty:jetty-util:9.4.27.v20200227" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-http/9.4.27.v20200227/jetty-http-9.4.27.v20200227.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-http/9.4.27.v20200227/jetty-http-9.4.27.v20200227.jar" ], "packages": [ "org.eclipse.jetty.http", "org.eclipse.jetty.http.pathmap" ], - "sha256": "c99914804c25288fde0470530411258ee4bab83b69ad764149c816c984f8175e", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar" + "sha256": "a8a467f9cc69bbd641e35dfcfeb8271ab98cbe886eb5d73bf36d9d014ce7794e", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-http/9.4.27.v20200227/jetty-http-9.4.27.v20200227.jar" }, { - "coord": "org.eclipse.jetty:jetty-http:jar:sources:9.4.48.v20220622", + "coord": "org.eclipse.jetty:jetty-http:jar:sources:9.4.27.v20200227", "dependencies": [ - "org.eclipse.jetty:jetty-io:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty:jetty-io:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-util:jar:sources:9.4.27.v20200227" ], "directDependencies": [ - "org.eclipse.jetty:jetty-io:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty:jetty-io:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-util:jar:sources:9.4.27.v20200227" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-http/9.4.27.v20200227/jetty-http-9.4.27.v20200227-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622-sources.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-http/9.4.27.v20200227/jetty-http-9.4.27.v20200227-sources.jar" ], "packages": [], - "sha256": "899d592c6c96ece02a1d82fc4db78fe3d46d9172e6c377791d5122e1b8538888", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622-sources.jar" + "sha256": "0bb0c8fde2df663153d77f28cf5348a21f47eb9f19f1cf6eb93035da7e385d81", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-http/9.4.27.v20200227/jetty-http-9.4.27.v20200227-sources.jar" }, { - "coord": "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "coord": "org.eclipse.jetty:jetty-io:9.4.27.v20200227", "dependencies": [ - "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + "org.eclipse.jetty:jetty-util:9.4.27.v20200227" ], "directDependencies": [ - "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + "org.eclipse.jetty:jetty-util:9.4.27.v20200227" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-io/9.4.27.v20200227/jetty-io-9.4.27.v20200227.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-io/9.4.27.v20200227/jetty-io-9.4.27.v20200227.jar" ], "packages": [ "org.eclipse.jetty.io", - "org.eclipse.jetty.io.jmx", "org.eclipse.jetty.io.ssl" ], - "sha256": "4d2f60a0348905a0a70bb266d1eb23a29959281391aba54d17d4a3a0460b8b47", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar" + "sha256": "c1dfb7d142c5ef1a6781ba2a4b14f7616506a975f73d66418ba3e1113954363c", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-io/9.4.27.v20200227/jetty-io-9.4.27.v20200227.jar" }, { - "coord": "org.eclipse.jetty:jetty-io:jar:sources:9.4.48.v20220622", + "coord": "org.eclipse.jetty:jetty-io:jar:sources:9.4.27.v20200227", "dependencies": [ - "org.eclipse.jetty:jetty-util:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty:jetty-util:jar:sources:9.4.27.v20200227" ], "directDependencies": [ - "org.eclipse.jetty:jetty-util:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty:jetty-util:jar:sources:9.4.27.v20200227" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-io/9.4.27.v20200227/jetty-io-9.4.27.v20200227-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622-sources.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-io/9.4.27.v20200227/jetty-io-9.4.27.v20200227-sources.jar" ], "packages": [], - "sha256": "6d690e5b36e6137702e8e2bea38374ec5ddd639c51725a2b17f5eab550743314", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622-sources.jar" + "sha256": "a95ef7f361d2155b4c3c601215b20e25ba39416afda53a12b824e9469e1a4b76", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-io/9.4.27.v20200227/jetty-io-9.4.27.v20200227-sources.jar" }, { - "coord": "org.eclipse.jetty:jetty-security:9.4.48.v20220622", + "coord": "org.eclipse.jetty:jetty-security:9.4.18.v20190429", "dependencies": [ "javax.servlet:javax.servlet-api:3.1.0", - "org.eclipse.jetty:jetty-http:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:9.4.48.v20220622", - "org.eclipse.jetty:jetty-server:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + "org.eclipse.jetty:jetty-http:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:9.4.27.v20200227", + "org.eclipse.jetty:jetty-server:9.4.18.v20190429", + "org.eclipse.jetty:jetty-util:9.4.27.v20200227" ], "directDependencies": [ - "org.eclipse.jetty:jetty-server:9.4.48.v20220622" + "org.eclipse.jetty:jetty-server:9.4.18.v20190429" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-security/9.4.18.v20190429/jetty-security-9.4.18.v20190429.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-security/9.4.18.v20190429/jetty-security-9.4.18.v20190429.jar" ], "packages": [ "org.eclipse.jetty.security", "org.eclipse.jetty.security.authentication" ], - "sha256": "43039b0f58a156a7f1b9b7750ad82f7fcdd5dba81717b970c381cb1b8618ff73", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar" + "sha256": "c307c68eb402979b2b6ae75a587476c9fecafbf5f4a53db22125f9af2324926f", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-security/9.4.18.v20190429/jetty-security-9.4.18.v20190429.jar" }, { - "coord": "org.eclipse.jetty:jetty-security:jar:sources:9.4.48.v20220622", + "coord": "org.eclipse.jetty:jetty-security:jar:sources:9.4.18.v20190429", "dependencies": [ "javax.servlet:javax.servlet-api:jar:sources:3.1.0", - "org.eclipse.jetty:jetty-http:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-server:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty:jetty-http:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-server:jar:sources:9.4.18.v20190429", + "org.eclipse.jetty:jetty-util:jar:sources:9.4.27.v20200227" ], "directDependencies": [ - "org.eclipse.jetty:jetty-server:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty:jetty-server:jar:sources:9.4.18.v20190429" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-security/9.4.18.v20190429/jetty-security-9.4.18.v20190429-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622-sources.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-security/9.4.18.v20190429/jetty-security-9.4.18.v20190429-sources.jar" ], "packages": [], - "sha256": "34c40022f8fa2d93b354e811c84281d5641797303e52e0cc31858ae63c0846c3", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622-sources.jar" + "sha256": "f3aa8d83c5d36b77c5bfcaf16bec3e8a519e2c64871c4abbf5b451982a32915c", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-security/9.4.18.v20190429/jetty-security-9.4.18.v20190429-sources.jar" }, { - "coord": "org.eclipse.jetty:jetty-server:9.4.48.v20220622", + "coord": "org.eclipse.jetty:jetty-server:9.4.18.v20190429", "dependencies": [ "javax.servlet:javax.servlet-api:3.1.0", - "org.eclipse.jetty:jetty-http:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + "org.eclipse.jetty:jetty-http:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:9.4.27.v20200227", + "org.eclipse.jetty:jetty-util:9.4.27.v20200227" ], "directDependencies": [ "javax.servlet:javax.servlet-api:3.1.0", - "org.eclipse.jetty:jetty-http:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:9.4.48.v20220622" + "org.eclipse.jetty:jetty-http:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:9.4.27.v20200227" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-server/9.4.18.v20190429/jetty-server-9.4.18.v20190429.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-server/9.4.18.v20190429/jetty-server-9.4.18.v20190429.jar" ], "packages": [ "org.eclipse.jetty.server", @@ -13623,124 +11054,85 @@ "org.eclipse.jetty.server.handler.jmx", "org.eclipse.jetty.server.jmx", "org.eclipse.jetty.server.nio", - "org.eclipse.jetty.server.resource", "org.eclipse.jetty.server.session" ], - "sha256": "dbb2b64216b0f10db591319c313979c1389249a196afb9690c022a923c0f0f77", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar" + "sha256": "2737c60b231e804082cdb68f1118a1aa179c8f92d50345c7444d96391ac005ce", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-server/9.4.18.v20190429/jetty-server-9.4.18.v20190429.jar" }, { - "coord": "org.eclipse.jetty:jetty-server:jar:sources:9.4.48.v20220622", + "coord": "org.eclipse.jetty:jetty-server:jar:sources:9.4.18.v20190429", "dependencies": [ "javax.servlet:javax.servlet-api:jar:sources:3.1.0", - "org.eclipse.jetty:jetty-http:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty:jetty-http:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-util:jar:sources:9.4.27.v20200227" ], "directDependencies": [ "javax.servlet:javax.servlet-api:jar:sources:3.1.0", - "org.eclipse.jetty:jetty-http:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty:jetty-http:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:jar:sources:9.4.27.v20200227" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-server/9.4.18.v20190429/jetty-server-9.4.18.v20190429-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622-sources.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-server/9.4.18.v20190429/jetty-server-9.4.18.v20190429-sources.jar" ], "packages": [], - "sha256": "607832db42832a0a05530041086cff4019e7e0d1887a6a8ad314ba443d80a2cf", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622-sources.jar" + "sha256": "46648b9eb54ade307c869d807e053f63c48ab0d15835fcae0a8197764ae68a67", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-server/9.4.18.v20190429/jetty-server-9.4.18.v20190429-sources.jar" }, { - "coord": "org.eclipse.jetty:jetty-servlet:9.4.48.v20220622", + "coord": "org.eclipse.jetty:jetty-servlet:9.4.18.v20190429", "dependencies": [ "javax.servlet:javax.servlet-api:3.1.0", - "org.eclipse.jetty:jetty-http:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:9.4.48.v20220622", - "org.eclipse.jetty:jetty-security:9.4.48.v20220622", - "org.eclipse.jetty:jetty-server:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util-ajax:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + "org.eclipse.jetty:jetty-http:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:9.4.27.v20200227", + "org.eclipse.jetty:jetty-security:9.4.18.v20190429", + "org.eclipse.jetty:jetty-server:9.4.18.v20190429", + "org.eclipse.jetty:jetty-util:9.4.27.v20200227" ], "directDependencies": [ - "org.eclipse.jetty:jetty-security:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util-ajax:9.4.48.v20220622" + "org.eclipse.jetty:jetty-security:9.4.18.v20190429" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.18.v20190429/jetty-servlet-9.4.18.v20190429.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.18.v20190429/jetty-servlet-9.4.18.v20190429.jar" ], "packages": [ "org.eclipse.jetty.servlet", "org.eclipse.jetty.servlet.jmx", "org.eclipse.jetty.servlet.listener" ], - "sha256": "eabc36f43fb4080b7d02e1fbcad0b437e035d3adc7bfd7a89b3cdeb22247e682", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar" + "sha256": "58b778613867b59bdd6587c57010249e62d10104e01113459453343e9c4ecaa4", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.18.v20190429/jetty-servlet-9.4.18.v20190429.jar" }, { - "coord": "org.eclipse.jetty:jetty-servlet:jar:sources:9.4.48.v20220622", + "coord": "org.eclipse.jetty:jetty-servlet:jar:sources:9.4.18.v20190429", "dependencies": [ "javax.servlet:javax.servlet-api:jar:sources:3.1.0", - "org.eclipse.jetty:jetty-http:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-security:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-server:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util-ajax:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:jar:sources:9.4.48.v20220622" - ], - "directDependencies": [ - "org.eclipse.jetty:jetty-security:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util-ajax:jar:sources:9.4.48.v20220622" - ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622-sources.jar" - ], - "packages": [], - "sha256": "5f22e9199774b731039f2b239754c80b33638f81b1dd860a165b808c5b159e17", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622-sources.jar" - }, - { - "coord": "org.eclipse.jetty:jetty-util-ajax:9.4.48.v20220622", - "dependencies": [ - "org.eclipse.jetty:jetty-util:9.4.48.v20220622" - ], - "directDependencies": [ - "org.eclipse.jetty:jetty-util:9.4.48.v20220622" - ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar" - ], - "packages": [ - "org.eclipse.jetty.util.ajax" - ], - "sha256": "b5d4b40be3cf9f48b3d5f8e5918066724a620cb901684939c9f1dd7ec1b930cb", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar" - }, - { - "coord": "org.eclipse.jetty:jetty-util-ajax:jar:sources:9.4.48.v20220622", - "dependencies": [ - "org.eclipse.jetty:jetty-util:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty:jetty-http:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-security:jar:sources:9.4.18.v20190429", + "org.eclipse.jetty:jetty-server:jar:sources:9.4.18.v20190429", + "org.eclipse.jetty:jetty-util:jar:sources:9.4.27.v20200227" ], "directDependencies": [ - "org.eclipse.jetty:jetty-util:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty:jetty-security:jar:sources:9.4.18.v20190429" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.18.v20190429/jetty-servlet-9.4.18.v20190429-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622-sources.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.18.v20190429/jetty-servlet-9.4.18.v20190429-sources.jar" ], "packages": [], - "sha256": "93593d915fb8b726e63fd77c452ceeafb21cf75a421b60ccda837b7d96164d1e", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622-sources.jar" + "sha256": "b8e08f22e62fb3eda189eaa0f30d092c9651e5a519a8388a6d0a78250677da4b", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.18.v20190429/jetty-servlet-9.4.18.v20190429-sources.jar" }, { - "coord": "org.eclipse.jetty:jetty-util:9.4.48.v20220622", + "coord": "org.eclipse.jetty:jetty-util:9.4.27.v20200227", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-util/9.4.27.v20200227/jetty-util-9.4.27.v20200227.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-util/9.4.27.v20200227/jetty-util-9.4.27.v20200227.jar" ], "packages": [ "org.eclipse.jetty.util", @@ -13756,106 +11148,104 @@ "org.eclipse.jetty.util.thread", "org.eclipse.jetty.util.thread.strategy" ], - "sha256": "24cafd449ca4b4bea9c2792b28fc6fe1c43beb628c0c1a0a72ee33afeac82b87", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar" + "sha256": "a8579bc614fa2f972083eaaa2fbf5b37b446473ee671ff1877ef5a21308a687e", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-util/9.4.27.v20200227/jetty-util-9.4.27.v20200227.jar" }, { - "coord": "org.eclipse.jetty:jetty-util:jar:sources:9.4.48.v20220622", + "coord": "org.eclipse.jetty:jetty-util:jar:sources:9.4.27.v20200227", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-util/9.4.27.v20200227/jetty-util-9.4.27.v20200227-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622-sources.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-util/9.4.27.v20200227/jetty-util-9.4.27.v20200227-sources.jar" ], "packages": [], - "sha256": "0870238eb14a3b6476b1c666da142b91a38012bc6407354e9b85718cf99d9f1f", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622-sources.jar" + "sha256": "1821ad409ad787ce68c7132fb538704b98253099ee2a2af8aa571108a22d464e", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-util/9.4.27.v20200227/jetty-util-9.4.27.v20200227-sources.jar" }, { - "coord": "org.eclipse.jetty:jetty-webapp:9.4.48.v20220622", + "coord": "org.eclipse.jetty:jetty-webapp:9.4.18.v20190429", "dependencies": [ "javax.servlet:javax.servlet-api:3.1.0", - "org.eclipse.jetty:jetty-http:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:9.4.48.v20220622", - "org.eclipse.jetty:jetty-security:9.4.48.v20220622", - "org.eclipse.jetty:jetty-server:9.4.48.v20220622", - "org.eclipse.jetty:jetty-servlet:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util-ajax:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:9.4.48.v20220622", - "org.eclipse.jetty:jetty-xml:9.4.48.v20220622" + "org.eclipse.jetty:jetty-http:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:9.4.27.v20200227", + "org.eclipse.jetty:jetty-security:9.4.18.v20190429", + "org.eclipse.jetty:jetty-server:9.4.18.v20190429", + "org.eclipse.jetty:jetty-servlet:9.4.18.v20190429", + "org.eclipse.jetty:jetty-util:9.4.27.v20200227", + "org.eclipse.jetty:jetty-xml:9.4.27.v20200227" ], "directDependencies": [ - "org.eclipse.jetty:jetty-servlet:9.4.48.v20220622", - "org.eclipse.jetty:jetty-xml:9.4.48.v20220622" + "org.eclipse.jetty:jetty-servlet:9.4.18.v20190429", + "org.eclipse.jetty:jetty-xml:9.4.27.v20200227" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.18.v20190429/jetty-webapp-9.4.18.v20190429.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.18.v20190429/jetty-webapp-9.4.18.v20190429.jar" ], "packages": [ "org.eclipse.jetty.webapp" ], - "sha256": "bdb33dd7e9a30ea428f301010d08c7f69b37ec75dda340b79a86e95149fec0b2", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar" + "sha256": "3e7a715fb8f5ebe79d54b940f630d562629ecf91d1b3fd1403ff9700d0a3e125", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.18.v20190429/jetty-webapp-9.4.18.v20190429.jar" }, { - "coord": "org.eclipse.jetty:jetty-webapp:jar:sources:9.4.48.v20220622", + "coord": "org.eclipse.jetty:jetty-webapp:jar:sources:9.4.18.v20190429", "dependencies": [ "javax.servlet:javax.servlet-api:jar:sources:3.1.0", - "org.eclipse.jetty:jetty-http:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-security:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-server:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-servlet:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util-ajax:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-util:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-xml:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty:jetty-http:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-security:jar:sources:9.4.18.v20190429", + "org.eclipse.jetty:jetty-server:jar:sources:9.4.18.v20190429", + "org.eclipse.jetty:jetty-servlet:jar:sources:9.4.18.v20190429", + "org.eclipse.jetty:jetty-util:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-xml:jar:sources:9.4.27.v20200227" ], "directDependencies": [ - "org.eclipse.jetty:jetty-servlet:jar:sources:9.4.48.v20220622", - "org.eclipse.jetty:jetty-xml:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty:jetty-servlet:jar:sources:9.4.18.v20190429", + "org.eclipse.jetty:jetty-xml:jar:sources:9.4.27.v20200227" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.18.v20190429/jetty-webapp-9.4.18.v20190429-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622-sources.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.18.v20190429/jetty-webapp-9.4.18.v20190429-sources.jar" ], "packages": [], - "sha256": "158e31212a9d2b13d84e92a9ae061bcf1bc665b9e2c62e627936c83d563a8f0a", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622-sources.jar" + "sha256": "8e66f85b20aefda3cd5186ce9a99f93c071cdb54a3847ba836ee0ecdabfd9d6c", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.18.v20190429/jetty-webapp-9.4.18.v20190429-sources.jar" }, { - "coord": "org.eclipse.jetty:jetty-xml:9.4.48.v20220622", + "coord": "org.eclipse.jetty:jetty-xml:9.4.27.v20200227", "dependencies": [ - "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + "org.eclipse.jetty:jetty-util:9.4.27.v20200227" ], "directDependencies": [ - "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + "org.eclipse.jetty:jetty-util:9.4.27.v20200227" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-xml/9.4.27.v20200227/jetty-xml-9.4.27.v20200227.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-xml/9.4.27.v20200227/jetty-xml-9.4.27.v20200227.jar" ], "packages": [ "org.eclipse.jetty.xml" ], - "sha256": "fe94705c7f49fe56194abfc16050fafc44be0faf691a2e6dca13c5d343a2bea5", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar" + "sha256": "688bd6420fe322507f6b914292221dd5fb34bd547cf8f5bdfe920f1bb2dcb4e7", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-xml/9.4.27.v20200227/jetty-xml-9.4.27.v20200227.jar" }, { - "coord": "org.eclipse.jetty:jetty-xml:jar:sources:9.4.48.v20220622", + "coord": "org.eclipse.jetty:jetty-xml:jar:sources:9.4.27.v20200227", "dependencies": [ - "org.eclipse.jetty:jetty-util:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty:jetty-util:jar:sources:9.4.27.v20200227" ], "directDependencies": [ - "org.eclipse.jetty:jetty-util:jar:sources:9.4.48.v20220622" + "org.eclipse.jetty:jetty-util:jar:sources:9.4.27.v20200227" ], - "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/eclipse/jetty/jetty-xml/9.4.27.v20200227/jetty-xml-9.4.27.v20200227-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622-sources.jar" + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-xml/9.4.27.v20200227/jetty-xml-9.4.27.v20200227-sources.jar" ], "packages": [], - "sha256": "14041c61ea4cfaf75bf06190876cb8ea00152a01cede16c69150201437894902", - "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622-sources.jar" + "sha256": "d3af1df29d9e8d7552a8415cc69d74f840233a84b6f9739f5350132437402faa", + "url": "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-xml/9.4.27.v20200227/jetty-xml-9.4.27.v20200227-sources.jar" }, { "coord": "org.flywaydb:flyway-core:8.4.1", @@ -13948,12 +11338,12 @@ "url": "https://repo1.maven.org/maven2/org/flywaydb/flyway-core/8.4.1/flyway-core-8.4.1-sources.jar" }, { - "coord": "org.freemarker:freemarker-gae:2.3.31", + "coord": "org.freemarker:freemarker-gae:2.3.28", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/freemarker/freemarker-gae/2.3.31/freemarker-gae-2.3.31.jar", + "file": "v1/https/repo1.maven.org/maven2/org/freemarker/freemarker-gae/2.3.28/freemarker-gae-2.3.28.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/freemarker/freemarker-gae/2.3.31/freemarker-gae-2.3.31.jar" + "https://repo1.maven.org/maven2/org/freemarker/freemarker-gae/2.3.28/freemarker-gae-2.3.28.jar" ], "packages": [ "freemarker.cache", @@ -13974,20 +11364,20 @@ "freemarker.template", "freemarker.template.utility" ], - "sha256": "20559318f8d45c9c3c8de70743edd87c55d4741aa29db1931ac89946ac1e3aad", - "url": "https://repo1.maven.org/maven2/org/freemarker/freemarker-gae/2.3.31/freemarker-gae-2.3.31.jar" + "sha256": "23dbccd3037b099ee103b24e1a3afaf4de2f6ed1392af829b214e8768f00c7af", + "url": "https://repo1.maven.org/maven2/org/freemarker/freemarker-gae/2.3.28/freemarker-gae-2.3.28.jar" }, { - "coord": "org.freemarker:freemarker-gae:jar:sources:2.3.31", + "coord": "org.freemarker:freemarker-gae:jar:sources:2.3.28", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/freemarker/freemarker-gae/2.3.31/freemarker-gae-2.3.31-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/freemarker/freemarker-gae/2.3.28/freemarker-gae-2.3.28-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/freemarker/freemarker-gae/2.3.31/freemarker-gae-2.3.31-sources.jar" + "https://repo1.maven.org/maven2/org/freemarker/freemarker-gae/2.3.28/freemarker-gae-2.3.28-sources.jar" ], "packages": [], - "sha256": "ab30295b30a945a958337241e1473d3df618b81fc92f28ea4b679eb0179157f9", - "url": "https://repo1.maven.org/maven2/org/freemarker/freemarker-gae/2.3.31/freemarker-gae-2.3.31-sources.jar" + "sha256": "ef71f902b3b1505e40a83a4e1e08a13b21ecf2ee29693f5b5709591d5d6b9d83", + "url": "https://repo1.maven.org/maven2/org/freemarker/freemarker-gae/2.3.28/freemarker-gae-2.3.28-sources.jar" }, { "coord": "org.hamcrest:hamcrest-core:1.3", @@ -14018,40 +11408,44 @@ "url": "https://repo1.maven.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar" }, { - "coord": "org.hamcrest:hamcrest:2.1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/hamcrest/hamcrest/2.1/hamcrest-2.1.jar", + "coord": "org.hamcrest:hamcrest-library:1.3", + "dependencies": [ + "org.hamcrest:hamcrest-core:1.3" + ], + "directDependencies": [ + "org.hamcrest:hamcrest-core:1.3" + ], + "file": "v1/https/repo1.maven.org/maven2/org/hamcrest/hamcrest-library/1.3/hamcrest-library-1.3.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/hamcrest/hamcrest/2.1/hamcrest-2.1.jar" + "https://repo1.maven.org/maven2/org/hamcrest/hamcrest-library/1.3/hamcrest-library-1.3.jar" ], "packages": [ "org.hamcrest", "org.hamcrest.beans", "org.hamcrest.collection", - "org.hamcrest.comparator", - "org.hamcrest.core", - "org.hamcrest.internal", - "org.hamcrest.io", "org.hamcrest.number", "org.hamcrest.object", "org.hamcrest.text", "org.hamcrest.xml" ], - "sha256": "ba93b2e3a562322ba432f0a1b53addcc55cb188253319a020ed77f824e692050", - "url": "https://repo1.maven.org/maven2/org/hamcrest/hamcrest/2.1/hamcrest-2.1.jar" + "sha256": "711d64522f9ec410983bd310934296da134be4254a125080a0416ec178dfad1c", + "url": "https://repo1.maven.org/maven2/org/hamcrest/hamcrest-library/1.3/hamcrest-library-1.3.jar" }, { - "coord": "org.hamcrest:hamcrest:jar:sources:2.1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/hamcrest/hamcrest/2.1/hamcrest-2.1-sources.jar", + "coord": "org.hamcrest:hamcrest-library:jar:sources:1.3", + "dependencies": [ + "org.hamcrest:hamcrest-core:jar:sources:1.3" + ], + "directDependencies": [ + "org.hamcrest:hamcrest-core:jar:sources:1.3" + ], + "file": "v1/https/repo1.maven.org/maven2/org/hamcrest/hamcrest-library/1.3/hamcrest-library-1.3-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/hamcrest/hamcrest/2.1/hamcrest-2.1-sources.jar" + "https://repo1.maven.org/maven2/org/hamcrest/hamcrest-library/1.3/hamcrest-library-1.3-sources.jar" ], "packages": [], - "sha256": "70ddd82a79f885022cae5320082cf3219055d1bd0f74406f814c67da29a74d31", - "url": "https://repo1.maven.org/maven2/org/hamcrest/hamcrest/2.1/hamcrest-2.1-sources.jar" + "sha256": "1c0ff84455f539eb3c29a8c430de1f6f6f1ba4b9ab39ca19b195f33203cd539c", + "url": "https://repo1.maven.org/maven2/org/hamcrest/hamcrest-library/1.3/hamcrest-library-1.3-sources.jar" }, { "coord": "org.hdrhistogram:HdrHistogram:2.1.12", @@ -14081,12 +11475,12 @@ "url": "https://repo1.maven.org/maven2/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12-sources.jar" }, { - "coord": "org.javassist:javassist:3.28.0-GA", + "coord": "org.javassist:javassist:3.26.0-GA", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.jar", + "file": "v1/https/repo1.maven.org/maven2/org/javassist/javassist/3.26.0-GA/javassist-3.26.0-GA.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.jar" + "https://repo1.maven.org/maven2/org/javassist/javassist/3.26.0-GA/javassist-3.26.0-GA.jar" ], "packages": [ "javassist", @@ -14107,32 +11501,32 @@ "javassist.util", "javassist.util.proxy" ], - "sha256": "57d0a9e9286f82f4eaa851125186997f811befce0e2060ff0a15a77f5a9dd9a7", - "url": "https://repo1.maven.org/maven2/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.jar" + "sha256": "ca5625874ff0a34f2422173a511b33c225218c146a3c961b18940efff430462d", + "url": "https://repo1.maven.org/maven2/org/javassist/javassist/3.26.0-GA/javassist-3.26.0-GA.jar" }, { - "coord": "org.javassist:javassist:jar:sources:3.28.0-GA", + "coord": "org.javassist:javassist:jar:sources:3.26.0-GA", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/javassist/javassist/3.26.0-GA/javassist-3.26.0-GA-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA-sources.jar" + "https://repo1.maven.org/maven2/org/javassist/javassist/3.26.0-GA/javassist-3.26.0-GA-sources.jar" ], "packages": [], - "sha256": "0b6cf0d138dc208263a2a0a39b1daae217707d58d79d7a4973a68ce62f8c2d1f", - "url": "https://repo1.maven.org/maven2/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA-sources.jar" + "sha256": "32f4ae4e803fb6964ba5c4104e0e997a0d05e07da99b454cf13a63b85e3697f1", + "url": "https://repo1.maven.org/maven2/org/javassist/javassist/3.26.0-GA/javassist-3.26.0-GA-sources.jar" }, { - "coord": "org.jline:jline-reader:3.21.0", + "coord": "org.jline:jline-reader:3.7.1", "dependencies": [ - "org.jline:jline-terminal:3.21.0" + "org.jline:jline-terminal:3.7.1" ], "directDependencies": [ - "org.jline:jline-terminal:3.21.0" + "org.jline:jline-terminal:3.7.1" ], - "file": "v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.21.0/jline-reader-3.21.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.7.1/jline-reader-3.7.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/jline/jline-reader/3.21.0/jline-reader-3.21.0.jar" + "https://repo1.maven.org/maven2/org/jline/jline-reader/3.7.1/jline-reader-3.7.1.jar" ], "packages": [ "org.jline.keymap", @@ -14141,32 +11535,32 @@ "org.jline.reader.impl.completer", "org.jline.reader.impl.history" ], - "sha256": "670129bd110cbf9b4b99daeca38b9dbe46361bdd82470e92a9a7464a756dfba7", - "url": "https://repo1.maven.org/maven2/org/jline/jline-reader/3.21.0/jline-reader-3.21.0.jar" + "sha256": "f3436bdf8365ff7203bd5badf3ab1ff844b6d0eada367f7ed7fe07bfbad9324b", + "url": "https://repo1.maven.org/maven2/org/jline/jline-reader/3.7.1/jline-reader-3.7.1.jar" }, { - "coord": "org.jline:jline-reader:jar:sources:3.21.0", + "coord": "org.jline:jline-reader:jar:sources:3.7.1", "dependencies": [ - "org.jline:jline-terminal:jar:sources:3.21.0" + "org.jline:jline-terminal:jar:sources:3.7.1" ], "directDependencies": [ - "org.jline:jline-terminal:jar:sources:3.21.0" + "org.jline:jline-terminal:jar:sources:3.7.1" ], - "file": "v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.21.0/jline-reader-3.21.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.7.1/jline-reader-3.7.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/jline/jline-reader/3.21.0/jline-reader-3.21.0-sources.jar" + "https://repo1.maven.org/maven2/org/jline/jline-reader/3.7.1/jline-reader-3.7.1-sources.jar" ], "packages": [], - "sha256": "40b8a03c887e5971127b38eab7e0a7c9d066252eae755e6ab6043ec469fe4851", - "url": "https://repo1.maven.org/maven2/org/jline/jline-reader/3.21.0/jline-reader-3.21.0-sources.jar" + "sha256": "34d58577ce7877487cd64bcfead0e850a6d4a978573639024c19f8f622593ac8", + "url": "https://repo1.maven.org/maven2/org/jline/jline-reader/3.7.1/jline-reader-3.7.1-sources.jar" }, { - "coord": "org.jline:jline-terminal:3.21.0", + "coord": "org.jline:jline-terminal:3.7.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.21.0/jline-terminal-3.21.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.7.1/jline-terminal-3.7.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/jline/jline-terminal/3.21.0/jline-terminal-3.21.0.jar" + "https://repo1.maven.org/maven2/org/jline/jline-terminal/3.7.1/jline-terminal-3.7.1.jar" ], "packages": [ "org.jline.terminal", @@ -14174,35 +11568,33 @@ "org.jline.terminal.spi", "org.jline.utils" ], - "sha256": "3a05a1602f9d51428908879350f2cf5be87fcefced2f56c6e88d9d76f41a73fe", - "url": "https://repo1.maven.org/maven2/org/jline/jline-terminal/3.21.0/jline-terminal-3.21.0.jar" + "sha256": "4a656a6f409c53d3fab247aa7f33bb19f87c34a8648b0727fbcb446ef4ea3b6c", + "url": "https://repo1.maven.org/maven2/org/jline/jline-terminal/3.7.1/jline-terminal-3.7.1.jar" }, { - "coord": "org.jline:jline-terminal:jar:sources:3.21.0", + "coord": "org.jline:jline-terminal:jar:sources:3.7.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.21.0/jline-terminal-3.21.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.7.1/jline-terminal-3.7.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/jline/jline-terminal/3.21.0/jline-terminal-3.21.0-sources.jar" + "https://repo1.maven.org/maven2/org/jline/jline-terminal/3.7.1/jline-terminal-3.7.1-sources.jar" ], "packages": [], - "sha256": "7d725e0ed04f78ab8c670e789e2b8f8cd91937c412b348257689fc071ecb325e", - "url": "https://repo1.maven.org/maven2/org/jline/jline-terminal/3.21.0/jline-terminal-3.21.0-sources.jar" + "sha256": "7573c84d99993f0a72231a27ba84b32294fb680feafbcc2beafefc3a94a3ff0f", + "url": "https://repo1.maven.org/maven2/org/jline/jline-terminal/3.7.1/jline-terminal-3.7.1-sources.jar" }, { - "coord": "org.jline:jline:3.21.0", + "coord": "org.jline:jline:3.7.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/jline/jline/3.21.0/jline-3.21.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/jline/jline/3.7.1/jline-3.7.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/jline/jline/3.21.0/jline-3.21.0.jar" + "https://repo1.maven.org/maven2/org/jline/jline/3.7.1/jline-3.7.1.jar" ], "packages": [ "org.jline.builtins", "org.jline.builtins.ssh", "org.jline.builtins.telnet", - "org.jline.console", - "org.jline.console.impl", "org.jline.keymap", "org.jline.reader", "org.jline.reader.impl", @@ -14224,64 +11616,63 @@ "org.jline.terminal.impl.jna.solaris", "org.jline.terminal.impl.jna.win", "org.jline.terminal.spi", - "org.jline.utils", - "org.jline.widget" + "org.jline.utils" ], - "sha256": "1e7d63a2bd1c26354ca1987e55469ea4327c4a3845c10d7a7790ca9729c49c02", - "url": "https://repo1.maven.org/maven2/org/jline/jline/3.21.0/jline-3.21.0.jar" + "sha256": "1a386eef254e5d484a8ad8dd4479004b860701a38d127505f3b3121843edc8d0", + "url": "https://repo1.maven.org/maven2/org/jline/jline/3.7.1/jline-3.7.1.jar" }, { - "coord": "org.jline:jline:jar:sources:3.21.0", + "coord": "org.jline:jline:jar:sources:3.7.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/jline/jline/3.21.0/jline-3.21.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/jline/jline/3.7.1/jline-3.7.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/jline/jline/3.21.0/jline-3.21.0-sources.jar" + "https://repo1.maven.org/maven2/org/jline/jline/3.7.1/jline-3.7.1-sources.jar" ], "packages": [], - "sha256": "9d1f5958a0cff8f0b1729cd10b3bbe71d2587a0ec9537ece87cca45d21ba3db3", - "url": "https://repo1.maven.org/maven2/org/jline/jline/3.21.0/jline-3.21.0-sources.jar" + "sha256": "6b0b70c0674d8d84de1bd02350f5b402b54685670b84425c9ec5b7ff00b1769e", + "url": "https://repo1.maven.org/maven2/org/jline/jline/3.7.1/jline-3.7.1-sources.jar" }, { - "coord": "org.joda:joda-convert:2.2.2", + "coord": "org.joda:joda-convert:2.2.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/joda/joda-convert/2.2.2/joda-convert-2.2.2.jar", + "file": "v1/https/repo1.maven.org/maven2/org/joda/joda-convert/2.2.1/joda-convert-2.2.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/joda/joda-convert/2.2.2/joda-convert-2.2.2.jar" + "https://repo1.maven.org/maven2/org/joda/joda-convert/2.2.1/joda-convert-2.2.1.jar" ], "packages": [ "org.joda.convert", "org.joda.convert.factory" ], - "sha256": "97cbd24639cc4e67cb7b096b9f650cedea6943dd89d4b233e71c438a83e1748a", - "url": "https://repo1.maven.org/maven2/org/joda/joda-convert/2.2.2/joda-convert-2.2.2.jar" + "sha256": "994db5e743c4598e6798f495cc320cfeda4393d06bd9dfb1b8a44ae0b5e10b85", + "url": "https://repo1.maven.org/maven2/org/joda/joda-convert/2.2.1/joda-convert-2.2.1.jar" }, { - "coord": "org.joda:joda-convert:jar:sources:2.2.2", + "coord": "org.joda:joda-convert:jar:sources:2.2.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/joda/joda-convert/2.2.2/joda-convert-2.2.2-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/joda/joda-convert/2.2.1/joda-convert-2.2.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/joda/joda-convert/2.2.2/joda-convert-2.2.2-sources.jar" + "https://repo1.maven.org/maven2/org/joda/joda-convert/2.2.1/joda-convert-2.2.1-sources.jar" ], "packages": [], - "sha256": "ab6becf816113f23619275fb08b5567024056523e7e75828ac700d860e1a5ff1", - "url": "https://repo1.maven.org/maven2/org/joda/joda-convert/2.2.2/joda-convert-2.2.2-sources.jar" + "sha256": "abd0b6b201b5b4450274937a6be176622ac13c8dd22530fb6fc9cfd5db567114", + "url": "https://repo1.maven.org/maven2/org/joda/joda-convert/2.2.1/joda-convert-2.2.1-sources.jar" }, { - "coord": "org.jodd:jodd-lagarto:6.0.6", + "coord": "org.jodd:jodd-lagarto:6.0.3", "dependencies": [ - "org.jodd:jodd-util:6.1.0", - "org.slf4j:slf4j-api:1.7.36" + "org.jodd:jodd-util:6.0.0", + "org.slf4j:slf4j-api:1.7.26" ], "directDependencies": [ - "org.jodd:jodd-util:6.1.0", - "org.slf4j:slf4j-api:1.7.36" + "org.jodd:jodd-util:6.0.0", + "org.slf4j:slf4j-api:1.7.26" ], - "file": "v1/https/repo1.maven.org/maven2/org/jodd/jodd-lagarto/6.0.6/jodd-lagarto-6.0.6.jar", + "file": "v1/https/repo1.maven.org/maven2/org/jodd/jodd-lagarto/6.0.3/jodd-lagarto-6.0.3.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/jodd/jodd-lagarto/6.0.6/jodd-lagarto-6.0.6.jar" + "https://repo1.maven.org/maven2/org/jodd/jodd-lagarto/6.0.3/jodd-lagarto-6.0.3.jar" ], "packages": [ "jodd.csselly", @@ -14293,39 +11684,38 @@ "jodd.lagarto.dom.render", "jodd.lagarto.visitor" ], - "sha256": "d6f4088eb3be9f9056f2aabeb6d17991f42cbcd1fcf5145b538b8a77a9ed11c0", - "url": "https://repo1.maven.org/maven2/org/jodd/jodd-lagarto/6.0.6/jodd-lagarto-6.0.6.jar" + "sha256": "4b07959a76af552e045a8ffb9f632a50f058c180344646f3ddb9f8c77bc77505", + "url": "https://repo1.maven.org/maven2/org/jodd/jodd-lagarto/6.0.3/jodd-lagarto-6.0.3.jar" }, { - "coord": "org.jodd:jodd-lagarto:jar:sources:6.0.6", + "coord": "org.jodd:jodd-lagarto:jar:sources:6.0.3", "dependencies": [ - "org.jodd:jodd-util:jar:sources:6.1.0", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.jodd:jodd-util:jar:sources:6.0.0", + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], "directDependencies": [ - "org.jodd:jodd-util:jar:sources:6.1.0", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.jodd:jodd-util:jar:sources:6.0.0", + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], - "file": "v1/https/repo1.maven.org/maven2/org/jodd/jodd-lagarto/6.0.6/jodd-lagarto-6.0.6-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/jodd/jodd-lagarto/6.0.3/jodd-lagarto-6.0.3-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/jodd/jodd-lagarto/6.0.6/jodd-lagarto-6.0.6-sources.jar" + "https://repo1.maven.org/maven2/org/jodd/jodd-lagarto/6.0.3/jodd-lagarto-6.0.3-sources.jar" ], "packages": [], - "sha256": "e9f6d12a7253dfeb7f02681d26154d2109c94fbc1ea5c6955774157466c92af0", - "url": "https://repo1.maven.org/maven2/org/jodd/jodd-lagarto/6.0.6/jodd-lagarto-6.0.6-sources.jar" + "sha256": "6fee2746eef0acb86c4b00be6bd2597a4ed65be2861eae5f2779ee2c534c1149", + "url": "https://repo1.maven.org/maven2/org/jodd/jodd-lagarto/6.0.3/jodd-lagarto-6.0.3-sources.jar" }, { - "coord": "org.jodd:jodd-util:6.1.0", + "coord": "org.jodd:jodd-util:6.0.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/jodd/jodd-util/6.1.0/jodd-util-6.1.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/jodd/jodd-util/6.0.0/jodd-util-6.0.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/jodd/jodd-util/6.1.0/jodd-util-6.1.0.jar" + "https://repo1.maven.org/maven2/org/jodd/jodd-util/6.0.0/jodd-util-6.0.0.jar" ], "packages": [ "jodd", "jodd.bean", - "jodd.bean.exception", "jodd.exception", "jodd.introspector", "jodd.io", @@ -14335,495 +11725,517 @@ "jodd.typeconverter.impl", "jodd.util" ], - "sha256": "8416b4d849aa07d58b86b1a7fb5447ef976af18fa4d68012862b8677f5ff67c2", - "url": "https://repo1.maven.org/maven2/org/jodd/jodd-util/6.1.0/jodd-util-6.1.0.jar" + "sha256": "0637812b5dc437762157a681b102ad45b4bc7f0d304736aa88459e0934b0d48a", + "url": "https://repo1.maven.org/maven2/org/jodd/jodd-util/6.0.0/jodd-util-6.0.0.jar" }, { - "coord": "org.jodd:jodd-util:jar:sources:6.1.0", + "coord": "org.jodd:jodd-util:jar:sources:6.0.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/jodd/jodd-util/6.1.0/jodd-util-6.1.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/jodd/jodd-util/6.0.0/jodd-util-6.0.0-sources.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/org/jodd/jodd-util/6.0.0/jodd-util-6.0.0-sources.jar" + ], + "packages": [], + "sha256": "be3eb0b4906c35fc7b86bf621017c2acb5d2570ddd24de4870cb66b1f6fd02db", + "url": "https://repo1.maven.org/maven2/org/jodd/jodd-util/6.0.0/jodd-util-6.0.0-sources.jar" + }, + { + "coord": "org.json4s:json4s-ast_2.13:3.6.11", + "dependencies": [ + "org.scala-lang:scala-library:2.13.8" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.8" + ], + "file": "v1/https/repo1.maven.org/maven2/org/json4s/json4s-ast_2.13/3.6.11/json4s-ast_2.13-3.6.11.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.13/3.6.11/json4s-ast_2.13-3.6.11.jar" + ], + "packages": [ + "org.json4s" + ], + "sha256": "af1b7adb10216a73705da3496c9a7e7c0ada53f89ee068bd7937cb010efdfd60", + "url": "https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.13/3.6.11/json4s-ast_2.13-3.6.11.jar" + }, + { + "coord": "org.json4s:json4s-ast_2.13:jar:sources:3.6.11", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.8" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.8" + ], + "file": "v1/https/repo1.maven.org/maven2/org/json4s/json4s-ast_2.13/3.6.11/json4s-ast_2.13-3.6.11-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/jodd/jodd-util/6.1.0/jodd-util-6.1.0-sources.jar" + "https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.13/3.6.11/json4s-ast_2.13-3.6.11-sources.jar" ], "packages": [], - "sha256": "92ec9eda871bf6cd23f0f9dbbcdce9b79a8bebfbf84a44757f7c64fde7be5183", - "url": "https://repo1.maven.org/maven2/org/jodd/jodd-util/6.1.0/jodd-util-6.1.0-sources.jar" + "sha256": "15bc2b254ca74cf7189f0e73554ff79295b83db1823ef0e2f68aab1a43d97cdb", + "url": "https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.13/3.6.11/json4s-ast_2.13-3.6.11-sources.jar" }, { - "coord": "org.json4s:json4s-ast_2.13:4.0.1", + "coord": "org.json4s:json4s-core_2.13:3.6.11", "dependencies": [ + "com.thoughtworks.paranamer:paranamer:2.8", + "org.json4s:json4s-ast_2.13:3.6.11", + "org.json4s:json4s-scalap_2.13:3.6.11", "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ + "com.thoughtworks.paranamer:paranamer:2.8", + "org.json4s:json4s-ast_2.13:3.6.11", + "org.json4s:json4s-scalap_2.13:3.6.11", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/json4s/json4s-ast_2.13/4.0.1/json4s-ast_2.13-4.0.1.jar", + "file": "v1/https/repo1.maven.org/maven2/org/json4s/json4s-core_2.13/3.6.11/json4s-core_2.13-3.6.11.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.13/4.0.1/json4s-ast_2.13-4.0.1.jar" + "https://repo1.maven.org/maven2/org/json4s/json4s-core_2.13/3.6.11/json4s-core_2.13-3.6.11.jar" ], "packages": [ "org.json4s", - "org.json4s.prefs" + "org.json4s.prefs", + "org.json4s.reflect" ], - "sha256": "f98007bfc771ad3edc536e42480217f4d6e15f5dbea2618f4a61380e03937fa6", - "url": "https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.13/4.0.1/json4s-ast_2.13-4.0.1.jar" + "sha256": "cf44f6aad121c90d493fb955c0667e8ca98b023fc3249b2558641037e795fb82", + "url": "https://repo1.maven.org/maven2/org/json4s/json4s-core_2.13/3.6.11/json4s-core_2.13-3.6.11.jar" }, { - "coord": "org.json4s:json4s-ast_2.13:jar:sources:4.0.1", + "coord": "org.json4s:json4s-core_2.13:jar:sources:3.6.11", "dependencies": [ + "com.thoughtworks.paranamer:paranamer:jar:sources:2.8", + "org.json4s:json4s-ast_2.13:jar:sources:3.6.11", + "org.json4s:json4s-scalap_2.13:jar:sources:3.6.11", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ + "com.thoughtworks.paranamer:paranamer:jar:sources:2.8", + "org.json4s:json4s-ast_2.13:jar:sources:3.6.11", + "org.json4s:json4s-scalap_2.13:jar:sources:3.6.11", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/json4s/json4s-ast_2.13/4.0.1/json4s-ast_2.13-4.0.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/json4s/json4s-core_2.13/3.6.11/json4s-core_2.13-3.6.11-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.13/4.0.1/json4s-ast_2.13-4.0.1-sources.jar" + "https://repo1.maven.org/maven2/org/json4s/json4s-core_2.13/3.6.11/json4s-core_2.13-3.6.11-sources.jar" ], "packages": [], - "sha256": "393104646ebc93c438f5ec1bb6f714c6ef8cd3d47bb6977081d17a492e1d2990", - "url": "https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.13/4.0.1/json4s-ast_2.13-4.0.1-sources.jar" + "sha256": "88fb5f13f27eb46c135eae10423283e426ac0e2073f0e1320539d06bfb665edf", + "url": "https://repo1.maven.org/maven2/org/json4s/json4s-core_2.13/3.6.11/json4s-core_2.13-3.6.11-sources.jar" }, { - "coord": "org.json4s:json4s-jackson-core_2.13:4.0.1", + "coord": "org.json4s:json4s-jackson_2.13:3.6.11", "dependencies": [ - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "org.json4s:json4s-ast_2.13:4.0.1", + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "com.thoughtworks.paranamer:paranamer:2.8", + "org.json4s:json4s-ast_2.13:3.6.11", + "org.json4s:json4s-core_2.13:3.6.11", + "org.json4s:json4s-scalap_2.13:3.6.11", "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ - "com.fasterxml.jackson.core:jackson-databind:2.13.4", - "org.json4s:json4s-ast_2.13:4.0.1", + "com.fasterxml.jackson.core:jackson-databind:2.12.0", + "org.json4s:json4s-core_2.13:3.6.11", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/json4s/json4s-jackson-core_2.13/4.0.1/json4s-jackson-core_2.13-4.0.1.jar", + "file": "v1/https/repo1.maven.org/maven2/org/json4s/json4s-jackson_2.13/3.6.11/json4s-jackson_2.13-3.6.11.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/json4s/json4s-jackson-core_2.13/4.0.1/json4s-jackson-core_2.13-4.0.1.jar" + "https://repo1.maven.org/maven2/org/json4s/json4s-jackson_2.13/3.6.11/json4s-jackson_2.13-3.6.11.jar" ], "packages": [ "org.json4s.jackson" ], - "sha256": "4500284a603988eba8070cd54020b24023b5ebd6388d2ee50bc553e861cf6d02", - "url": "https://repo1.maven.org/maven2/org/json4s/json4s-jackson-core_2.13/4.0.1/json4s-jackson-core_2.13-4.0.1.jar" + "sha256": "9c5e02fd8d18699b13c8fb33b948c7f0436b9f1e38ab7105e249a8df83c41332", + "url": "https://repo1.maven.org/maven2/org/json4s/json4s-jackson_2.13/3.6.11/json4s-jackson_2.13-3.6.11.jar" + }, + { + "coord": "org.json4s:json4s-jackson_2.13:jar:sources:3.6.11", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "com.thoughtworks.paranamer:paranamer:jar:sources:2.8", + "org.json4s:json4s-ast_2.13:jar:sources:3.6.11", + "org.json4s:json4s-core_2.13:jar:sources:3.6.11", + "org.json4s:json4s-scalap_2.13:jar:sources:3.6.11", + "org.scala-lang:scala-library:jar:sources:2.13.8" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.12.0", + "org.json4s:json4s-core_2.13:jar:sources:3.6.11", + "org.scala-lang:scala-library:jar:sources:2.13.8" + ], + "file": "v1/https/repo1.maven.org/maven2/org/json4s/json4s-jackson_2.13/3.6.11/json4s-jackson_2.13-3.6.11-sources.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/org/json4s/json4s-jackson_2.13/3.6.11/json4s-jackson_2.13-3.6.11-sources.jar" + ], + "packages": [], + "sha256": "926f17ad1a3ac8da513ef962f27d159df3e9f1897ef449889f85e7f4065b6289", + "url": "https://repo1.maven.org/maven2/org/json4s/json4s-jackson_2.13/3.6.11/json4s-jackson_2.13-3.6.11-sources.jar" + }, + { + "coord": "org.json4s:json4s-scalap_2.13:3.6.11", + "dependencies": [ + "org.scala-lang:scala-library:2.13.8" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.8" + ], + "file": "v1/https/repo1.maven.org/maven2/org/json4s/json4s-scalap_2.13/3.6.11/json4s-scalap_2.13-3.6.11.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.13/3.6.11/json4s-scalap_2.13-3.6.11.jar" + ], + "packages": [ + "org.json4s.scalap", + "org.json4s.scalap.scalasig" + ], + "sha256": "21bde53e4f5b31783d08d635e09e2d774bd806765435fc796930aa2146c0a123", + "url": "https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.13/3.6.11/json4s-scalap_2.13-3.6.11.jar" }, { - "coord": "org.json4s:json4s-jackson-core_2.13:jar:sources:4.0.1", + "coord": "org.json4s:json4s-scalap_2.13:jar:sources:3.6.11", "dependencies": [ - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "org.json4s:json4s-ast_2.13:jar:sources:4.0.1", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.13.4", - "org.json4s:json4s-ast_2.13:jar:sources:4.0.1", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/json4s/json4s-jackson-core_2.13/4.0.1/json4s-jackson-core_2.13-4.0.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/json4s/json4s-scalap_2.13/3.6.11/json4s-scalap_2.13-3.6.11-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/json4s/json4s-jackson-core_2.13/4.0.1/json4s-jackson-core_2.13-4.0.1-sources.jar" + "https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.13/3.6.11/json4s-scalap_2.13-3.6.11-sources.jar" ], "packages": [], - "sha256": "54eb610a68a23695b2058ccff523183dfa743182fae78bf1b0a01aaa92ec85e0", - "url": "https://repo1.maven.org/maven2/org/json4s/json4s-jackson-core_2.13/4.0.1/json4s-jackson-core_2.13-4.0.1-sources.jar" + "sha256": "5f05df22939bcec85726db47fdc95c08ab42bf65ec6387a369a014ecd62e69dd", + "url": "https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.13/3.6.11/json4s-scalap_2.13-3.6.11-sources.jar" }, { - "coord": "org.junit.jupiter:junit-jupiter-api:5.9.1", + "coord": "org.junit.jupiter:junit-jupiter-api:5.0.0", "dependencies": [ - "org.apiguardian:apiguardian-api:1.1.2", - "org.junit.platform:junit-platform-commons:1.9.1", - "org.opentest4j:opentest4j:1.2.0" + "org.apiguardian:apiguardian-api:1.0.0", + "org.junit.platform:junit-platform-commons:1.0.0", + "org.opentest4j:opentest4j:1.0.0" ], "directDependencies": [ - "org.apiguardian:apiguardian-api:1.1.2", - "org.junit.platform:junit-platform-commons:1.9.1", - "org.opentest4j:opentest4j:1.2.0" + "org.apiguardian:apiguardian-api:1.0.0", + "org.junit.platform:junit-platform-commons:1.0.0", + "org.opentest4j:opentest4j:1.0.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-api/5.9.1/junit-jupiter-api-5.9.1.jar", + "file": "v1/https/repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-api/5.0.0/junit-jupiter-api-5.0.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-api/5.9.1/junit-jupiter-api-5.9.1.jar" + "https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-api/5.0.0/junit-jupiter-api-5.0.0.jar" ], "packages": [ "org.junit.jupiter.api", - "org.junit.jupiter.api.condition", "org.junit.jupiter.api.extension", - "org.junit.jupiter.api.extension.support", - "org.junit.jupiter.api.function", - "org.junit.jupiter.api.io", - "org.junit.jupiter.api.parallel" + "org.junit.jupiter.api.function" ], - "sha256": "5d2fe4d719dffb25a95d77e9c7a34893cbbb1b4cc6c86f2726af7e0fb7035b2f", - "url": "https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-api/5.9.1/junit-jupiter-api-5.9.1.jar" + "sha256": "559826fb47a05d541edd6a0034d2bbb9ad27078f49fb5fe76c0f07e23816b660", + "url": "https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-api/5.0.0/junit-jupiter-api-5.0.0.jar" }, { - "coord": "org.junit.jupiter:junit-jupiter-api:jar:sources:5.9.1", + "coord": "org.junit.jupiter:junit-jupiter-api:jar:sources:5.0.0", "dependencies": [ - "org.apiguardian:apiguardian-api:jar:sources:1.1.2", - "org.junit.platform:junit-platform-commons:jar:sources:1.9.1", - "org.opentest4j:opentest4j:jar:sources:1.2.0" + "org.apiguardian:apiguardian-api:jar:sources:1.0.0", + "org.junit.platform:junit-platform-commons:jar:sources:1.0.0", + "org.opentest4j:opentest4j:jar:sources:1.0.0" ], "directDependencies": [ - "org.apiguardian:apiguardian-api:jar:sources:1.1.2", - "org.junit.platform:junit-platform-commons:jar:sources:1.9.1", - "org.opentest4j:opentest4j:jar:sources:1.2.0" + "org.apiguardian:apiguardian-api:jar:sources:1.0.0", + "org.junit.platform:junit-platform-commons:jar:sources:1.0.0", + "org.opentest4j:opentest4j:jar:sources:1.0.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-api/5.9.1/junit-jupiter-api-5.9.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-api/5.0.0/junit-jupiter-api-5.0.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-api/5.9.1/junit-jupiter-api-5.9.1-sources.jar" + "https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-api/5.0.0/junit-jupiter-api-5.0.0-sources.jar" ], "packages": [], - "sha256": "de2acca1273731093e74eec6d267c36b80c34cfdd7b0e7c7708163604c17770e", - "url": "https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-api/5.9.1/junit-jupiter-api-5.9.1-sources.jar" + "sha256": "124a0efee42f84bceb30f265272f60793d7838bd28c32f56d1756a9b052c6e07", + "url": "https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-api/5.0.0/junit-jupiter-api-5.0.0-sources.jar" }, { - "coord": "org.junit.jupiter:junit-jupiter-engine:5.9.1", + "coord": "org.junit.jupiter:junit-jupiter-engine:5.0.0", "dependencies": [ - "org.apiguardian:apiguardian-api:1.1.2", - "org.junit.jupiter:junit-jupiter-api:5.9.1", - "org.junit.platform:junit-platform-commons:1.9.1", - "org.junit.platform:junit-platform-engine:1.9.1", - "org.opentest4j:opentest4j:1.2.0" + "org.apiguardian:apiguardian-api:1.0.0", + "org.junit.jupiter:junit-jupiter-api:5.0.0", + "org.junit.platform:junit-platform-commons:1.0.0", + "org.junit.platform:junit-platform-engine:1.0.0", + "org.opentest4j:opentest4j:1.0.0" ], "directDependencies": [ - "org.apiguardian:apiguardian-api:1.1.2", - "org.junit.jupiter:junit-jupiter-api:5.9.1", - "org.junit.platform:junit-platform-engine:1.9.1" + "org.apiguardian:apiguardian-api:1.0.0", + "org.junit.jupiter:junit-jupiter-api:5.0.0", + "org.junit.platform:junit-platform-engine:1.0.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.9.1/junit-jupiter-engine-5.9.1.jar", + "file": "v1/https/repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.0.0/junit-jupiter-engine-5.0.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.9.1/junit-jupiter-engine-5.9.1.jar" + "https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.0.0/junit-jupiter-engine-5.0.0.jar" ], "packages": [ "org.junit.jupiter.engine", - "org.junit.jupiter.engine.config", "org.junit.jupiter.engine.descriptor", "org.junit.jupiter.engine.discovery", "org.junit.jupiter.engine.discovery.predicates", "org.junit.jupiter.engine.execution", - "org.junit.jupiter.engine.extension", - "org.junit.jupiter.engine.support" + "org.junit.jupiter.engine.extension" ], - "sha256": "8bbc506b4f603ede1f6bafd8eee69a9cc43de0c26a0ee8d40d583d3feeedc2e9", - "url": "https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.9.1/junit-jupiter-engine-5.9.1.jar" + "sha256": "906a6cc73dccf91beb328838092f6a1249a98731aa1958190b98b8b07ee50fe9", + "url": "https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.0.0/junit-jupiter-engine-5.0.0.jar" }, { - "coord": "org.junit.jupiter:junit-jupiter-engine:jar:sources:5.9.1", + "coord": "org.junit.jupiter:junit-jupiter-engine:jar:sources:5.0.0", "dependencies": [ - "org.apiguardian:apiguardian-api:jar:sources:1.1.2", - "org.junit.jupiter:junit-jupiter-api:jar:sources:5.9.1", - "org.junit.platform:junit-platform-commons:jar:sources:1.9.1", - "org.junit.platform:junit-platform-engine:jar:sources:1.9.1", - "org.opentest4j:opentest4j:jar:sources:1.2.0" + "org.apiguardian:apiguardian-api:jar:sources:1.0.0", + "org.junit.jupiter:junit-jupiter-api:jar:sources:5.0.0", + "org.junit.platform:junit-platform-commons:jar:sources:1.0.0", + "org.junit.platform:junit-platform-engine:jar:sources:1.0.0", + "org.opentest4j:opentest4j:jar:sources:1.0.0" ], "directDependencies": [ - "org.apiguardian:apiguardian-api:jar:sources:1.1.2", - "org.junit.jupiter:junit-jupiter-api:jar:sources:5.9.1", - "org.junit.platform:junit-platform-engine:jar:sources:1.9.1" + "org.apiguardian:apiguardian-api:jar:sources:1.0.0", + "org.junit.jupiter:junit-jupiter-api:jar:sources:5.0.0", + "org.junit.platform:junit-platform-engine:jar:sources:1.0.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.9.1/junit-jupiter-engine-5.9.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.0.0/junit-jupiter-engine-5.0.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.9.1/junit-jupiter-engine-5.9.1-sources.jar" + "https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.0.0/junit-jupiter-engine-5.0.0-sources.jar" ], "packages": [], - "sha256": "4f4fea40fbb51f08e381fed9fe5934488933dc239d64632b26cd228960159bba", - "url": "https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.9.1/junit-jupiter-engine-5.9.1-sources.jar" + "sha256": "7ae10d5b66a883ad15b8119a1edbac75e5693a1ec10d91c0af2c375aa3904e7e", + "url": "https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.0.0/junit-jupiter-engine-5.0.0-sources.jar" }, { - "coord": "org.junit.platform:junit-platform-commons:1.9.1", + "coord": "org.junit.platform:junit-platform-commons:1.0.0", "dependencies": [ - "org.apiguardian:apiguardian-api:1.1.2" + "org.apiguardian:apiguardian-api:1.0.0" ], "directDependencies": [ - "org.apiguardian:apiguardian-api:1.1.2" + "org.apiguardian:apiguardian-api:1.0.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/junit/platform/junit-platform-commons/1.9.1/junit-platform-commons-1.9.1.jar", + "file": "v1/https/repo1.maven.org/maven2/org/junit/platform/junit-platform-commons/1.0.0/junit-platform-commons-1.0.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-commons/1.9.1/junit-platform-commons-1.9.1.jar" + "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-commons/1.0.0/junit-platform-commons-1.0.0.jar" ], "packages": [ "org.junit.platform.commons", "org.junit.platform.commons.annotation", - "org.junit.platform.commons.function", "org.junit.platform.commons.logging", "org.junit.platform.commons.support", "org.junit.platform.commons.util" ], - "sha256": "a8e82d510bbbce5fe1777b2ecf7bc68401e9ae8327009e029b2db5798403d25e", - "url": "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-commons/1.9.1/junit-platform-commons-1.9.1.jar" + "sha256": "ffa95e7d2180aa5c5f14df2e710cbb71bc479b47e3ac5a95be71e932e9d8bba7", + "url": "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-commons/1.0.0/junit-platform-commons-1.0.0.jar" }, { - "coord": "org.junit.platform:junit-platform-commons:jar:sources:1.9.1", + "coord": "org.junit.platform:junit-platform-commons:jar:sources:1.0.0", "dependencies": [ - "org.apiguardian:apiguardian-api:jar:sources:1.1.2" + "org.apiguardian:apiguardian-api:jar:sources:1.0.0" ], "directDependencies": [ - "org.apiguardian:apiguardian-api:jar:sources:1.1.2" + "org.apiguardian:apiguardian-api:jar:sources:1.0.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/junit/platform/junit-platform-commons/1.9.1/junit-platform-commons-1.9.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/junit/platform/junit-platform-commons/1.0.0/junit-platform-commons-1.0.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-commons/1.9.1/junit-platform-commons-1.9.1-sources.jar" + "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-commons/1.0.0/junit-platform-commons-1.0.0-sources.jar" ], "packages": [], - "sha256": "fcfdc6414619e323031ebeb2ecca00e230b3817019be08a588c6492ece5aa204", - "url": "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-commons/1.9.1/junit-platform-commons-1.9.1-sources.jar" + "sha256": "efadb2ccdf297aac87714cf5ba89cf43c4a0620699a226dffcb5f82937e92c42", + "url": "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-commons/1.0.0/junit-platform-commons-1.0.0-sources.jar" }, { - "coord": "org.junit.platform:junit-platform-engine:1.9.1", + "coord": "org.junit.platform:junit-platform-engine:1.0.0", "dependencies": [ - "org.apiguardian:apiguardian-api:1.1.2", - "org.junit.platform:junit-platform-commons:1.9.1", - "org.opentest4j:opentest4j:1.2.0" + "org.apiguardian:apiguardian-api:1.0.0", + "org.junit.platform:junit-platform-commons:1.0.0", + "org.opentest4j:opentest4j:1.0.0" ], "directDependencies": [ - "org.apiguardian:apiguardian-api:1.1.2", - "org.junit.platform:junit-platform-commons:1.9.1", - "org.opentest4j:opentest4j:1.2.0" + "org.apiguardian:apiguardian-api:1.0.0", + "org.junit.platform:junit-platform-commons:1.0.0", + "org.opentest4j:opentest4j:1.0.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/junit/platform/junit-platform-engine/1.9.1/junit-platform-engine-1.9.1.jar", + "file": "v1/https/repo1.maven.org/maven2/org/junit/platform/junit-platform-engine/1.0.0/junit-platform-engine-1.0.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-engine/1.9.1/junit-platform-engine-1.9.1.jar" + "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-engine/1.0.0/junit-platform-engine-1.0.0.jar" ], "packages": [ "org.junit.platform.engine", "org.junit.platform.engine.discovery", "org.junit.platform.engine.reporting", - "org.junit.platform.engine.support.config", "org.junit.platform.engine.support.descriptor", - "org.junit.platform.engine.support.discovery", "org.junit.platform.engine.support.filter", "org.junit.platform.engine.support.hierarchical" ], - "sha256": "f59c3a67087f2b9bbb17a9c06dd416697989b2c53b38843874ebbbbcb0afc23f", - "url": "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-engine/1.9.1/junit-platform-engine-1.9.1.jar" + "sha256": "36d6f7afe4ae00012c91efb3def6bd98347c900335ebffbdc1a90254bd812fa7", + "url": "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-engine/1.0.0/junit-platform-engine-1.0.0.jar" }, { - "coord": "org.junit.platform:junit-platform-engine:jar:sources:1.9.1", + "coord": "org.junit.platform:junit-platform-engine:jar:sources:1.0.0", "dependencies": [ - "org.apiguardian:apiguardian-api:jar:sources:1.1.2", - "org.junit.platform:junit-platform-commons:jar:sources:1.9.1", - "org.opentest4j:opentest4j:jar:sources:1.2.0" + "org.apiguardian:apiguardian-api:jar:sources:1.0.0", + "org.junit.platform:junit-platform-commons:jar:sources:1.0.0", + "org.opentest4j:opentest4j:jar:sources:1.0.0" ], "directDependencies": [ - "org.apiguardian:apiguardian-api:jar:sources:1.1.2", - "org.junit.platform:junit-platform-commons:jar:sources:1.9.1", - "org.opentest4j:opentest4j:jar:sources:1.2.0" + "org.apiguardian:apiguardian-api:jar:sources:1.0.0", + "org.junit.platform:junit-platform-commons:jar:sources:1.0.0", + "org.opentest4j:opentest4j:jar:sources:1.0.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/junit/platform/junit-platform-engine/1.9.1/junit-platform-engine-1.9.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/junit/platform/junit-platform-engine/1.0.0/junit-platform-engine-1.0.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-engine/1.9.1/junit-platform-engine-1.9.1-sources.jar" + "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-engine/1.0.0/junit-platform-engine-1.0.0-sources.jar" ], "packages": [], - "sha256": "1e6b32b1c01edbe23ce929f778b304296a698618bd53f04d9039167c0a63f8fb", - "url": "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-engine/1.9.1/junit-platform-engine-1.9.1-sources.jar" + "sha256": "7dd3b5a84c0db4ed3c82846d1dd83a3d4df674e0cd3dc23b66c1270eac430a85", + "url": "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-engine/1.0.0/junit-platform-engine-1.0.0-sources.jar" }, { - "coord": "org.junit.platform:junit-platform-launcher:1.9.1", + "coord": "org.junit.platform:junit-platform-launcher:1.0.0", "dependencies": [ - "org.apiguardian:apiguardian-api:1.1.2", - "org.junit.platform:junit-platform-commons:1.9.1", - "org.junit.platform:junit-platform-engine:1.9.1", - "org.opentest4j:opentest4j:1.2.0" + "org.apiguardian:apiguardian-api:1.0.0", + "org.junit.platform:junit-platform-commons:1.0.0", + "org.junit.platform:junit-platform-engine:1.0.0", + "org.opentest4j:opentest4j:1.0.0" ], "directDependencies": [ - "org.apiguardian:apiguardian-api:1.1.2", - "org.junit.platform:junit-platform-engine:1.9.1" + "org.apiguardian:apiguardian-api:1.0.0", + "org.junit.platform:junit-platform-engine:1.0.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/junit/platform/junit-platform-launcher/1.9.1/junit-platform-launcher-1.9.1.jar", + "file": "v1/https/repo1.maven.org/maven2/org/junit/platform/junit-platform-launcher/1.0.0/junit-platform-launcher-1.0.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-launcher/1.9.1/junit-platform-launcher-1.9.1.jar" + "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-launcher/1.0.0/junit-platform-launcher-1.0.0.jar" ], "packages": [ "org.junit.platform.launcher", "org.junit.platform.launcher.core", - "org.junit.platform.launcher.listeners", - "org.junit.platform.launcher.listeners.discovery", - "org.junit.platform.launcher.listeners.session", - "org.junit.platform.launcher.tagexpression" + "org.junit.platform.launcher.listeners" ], - "sha256": "5fb50ef56168358892e1bd0a080e2e5bb74dc882b2ecc2a9bad0eadb5a6a449e", - "url": "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-launcher/1.9.1/junit-platform-launcher-1.9.1.jar" + "sha256": "6c660f6e41149921e6865d5a7715f08f414eb0a49c96874d3cc9c05ccfcbb0e3", + "url": "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-launcher/1.0.0/junit-platform-launcher-1.0.0.jar" }, { - "coord": "org.junit.platform:junit-platform-launcher:jar:sources:1.9.1", + "coord": "org.junit.platform:junit-platform-launcher:jar:sources:1.0.0", "dependencies": [ - "org.apiguardian:apiguardian-api:jar:sources:1.1.2", - "org.junit.platform:junit-platform-commons:jar:sources:1.9.1", - "org.junit.platform:junit-platform-engine:jar:sources:1.9.1", - "org.opentest4j:opentest4j:jar:sources:1.2.0" + "org.apiguardian:apiguardian-api:jar:sources:1.0.0", + "org.junit.platform:junit-platform-commons:jar:sources:1.0.0", + "org.junit.platform:junit-platform-engine:jar:sources:1.0.0", + "org.opentest4j:opentest4j:jar:sources:1.0.0" ], "directDependencies": [ - "org.apiguardian:apiguardian-api:jar:sources:1.1.2", - "org.junit.platform:junit-platform-engine:jar:sources:1.9.1" + "org.apiguardian:apiguardian-api:jar:sources:1.0.0", + "org.junit.platform:junit-platform-engine:jar:sources:1.0.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/junit/platform/junit-platform-launcher/1.9.1/junit-platform-launcher-1.9.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/junit/platform/junit-platform-launcher/1.0.0/junit-platform-launcher-1.0.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-launcher/1.9.1/junit-platform-launcher-1.9.1-sources.jar" + "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-launcher/1.0.0/junit-platform-launcher-1.0.0-sources.jar" ], "packages": [], - "sha256": "4c43f3e6507841c13bc105f0c2c4af146a33ddaa691f3973536e6bfaa424eed2", - "url": "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-launcher/1.9.1/junit-platform-launcher-1.9.1-sources.jar" + "sha256": "c5c1f9dbadcfd91e8ba4ed8ab31fecf4e60b0e2bbaa22b59d4f8c48deeea76a4", + "url": "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-launcher/1.0.0/junit-platform-launcher-1.0.0-sources.jar" }, { - "coord": "org.junit.platform:junit-platform-runner:1.9.1", + "coord": "org.junit.platform:junit-platform-runner:1.0.0", "dependencies": [ - "junit:junit:4.13.2", - "org.apiguardian:apiguardian-api:1.1.2", + "junit:junit:4.12", + "org.apiguardian:apiguardian-api:1.0.0", "org.hamcrest:hamcrest-core:1.3", - "org.junit.platform:junit-platform-commons:1.9.1", - "org.junit.platform:junit-platform-engine:1.9.1", - "org.junit.platform:junit-platform-launcher:1.9.1", - "org.junit.platform:junit-platform-suite-api:1.9.1", - "org.junit.platform:junit-platform-suite-commons:1.9.1", - "org.opentest4j:opentest4j:1.2.0" + "org.junit.platform:junit-platform-commons:1.0.0", + "org.junit.platform:junit-platform-engine:1.0.0", + "org.junit.platform:junit-platform-launcher:1.0.0", + "org.junit.platform:junit-platform-suite-api:1.0.0", + "org.opentest4j:opentest4j:1.0.0" ], "directDependencies": [ - "junit:junit:4.13.2", - "org.apiguardian:apiguardian-api:1.1.2", - "org.junit.platform:junit-platform-launcher:1.9.1", - "org.junit.platform:junit-platform-suite-api:1.9.1", - "org.junit.platform:junit-platform-suite-commons:1.9.1" + "junit:junit:4.12", + "org.apiguardian:apiguardian-api:1.0.0", + "org.junit.platform:junit-platform-launcher:1.0.0", + "org.junit.platform:junit-platform-suite-api:1.0.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/junit/platform/junit-platform-runner/1.9.1/junit-platform-runner-1.9.1.jar", + "file": "v1/https/repo1.maven.org/maven2/org/junit/platform/junit-platform-runner/1.0.0/junit-platform-runner-1.0.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-runner/1.9.1/junit-platform-runner-1.9.1.jar" + "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-runner/1.0.0/junit-platform-runner-1.0.0.jar" ], "packages": [ "org.junit.platform.runner" ], - "sha256": "75a02f0c5c6d6ee80cb4d911def083104283b594695a0bb2cd426a5f9ced6b26", - "url": "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-runner/1.9.1/junit-platform-runner-1.9.1.jar" + "sha256": "6e1acc7c300452d05b9df3da529a5a885620c15258d4244d1027033e6d44aa38", + "url": "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-runner/1.0.0/junit-platform-runner-1.0.0.jar" }, { - "coord": "org.junit.platform:junit-platform-runner:jar:sources:1.9.1", + "coord": "org.junit.platform:junit-platform-runner:jar:sources:1.0.0", "dependencies": [ - "junit:junit:jar:sources:4.13.2", - "org.apiguardian:apiguardian-api:jar:sources:1.1.2", + "junit:junit:jar:sources:4.12", + "org.apiguardian:apiguardian-api:jar:sources:1.0.0", "org.hamcrest:hamcrest-core:jar:sources:1.3", - "org.junit.platform:junit-platform-commons:jar:sources:1.9.1", - "org.junit.platform:junit-platform-engine:jar:sources:1.9.1", - "org.junit.platform:junit-platform-launcher:jar:sources:1.9.1", - "org.junit.platform:junit-platform-suite-api:jar:sources:1.9.1", - "org.junit.platform:junit-platform-suite-commons:jar:sources:1.9.1", - "org.opentest4j:opentest4j:jar:sources:1.2.0" + "org.junit.platform:junit-platform-commons:jar:sources:1.0.0", + "org.junit.platform:junit-platform-engine:jar:sources:1.0.0", + "org.junit.platform:junit-platform-launcher:jar:sources:1.0.0", + "org.junit.platform:junit-platform-suite-api:jar:sources:1.0.0", + "org.opentest4j:opentest4j:jar:sources:1.0.0" ], "directDependencies": [ - "junit:junit:jar:sources:4.13.2", - "org.apiguardian:apiguardian-api:jar:sources:1.1.2", - "org.junit.platform:junit-platform-launcher:jar:sources:1.9.1", - "org.junit.platform:junit-platform-suite-api:jar:sources:1.9.1", - "org.junit.platform:junit-platform-suite-commons:jar:sources:1.9.1" + "junit:junit:jar:sources:4.12", + "org.apiguardian:apiguardian-api:jar:sources:1.0.0", + "org.junit.platform:junit-platform-launcher:jar:sources:1.0.0", + "org.junit.platform:junit-platform-suite-api:jar:sources:1.0.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/junit/platform/junit-platform-runner/1.9.1/junit-platform-runner-1.9.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/junit/platform/junit-platform-runner/1.0.0/junit-platform-runner-1.0.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-runner/1.9.1/junit-platform-runner-1.9.1-sources.jar" + "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-runner/1.0.0/junit-platform-runner-1.0.0-sources.jar" ], "packages": [], - "sha256": "4c0c9eafb797d47ad55c32030f225b287911bea1de0ac2f20cf42ecd9445e066", - "url": "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-runner/1.9.1/junit-platform-runner-1.9.1-sources.jar" + "sha256": "420634db48f5962bb5b55e61419895ab038ae7df538a2c701cb0e2d059af4026", + "url": "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-runner/1.0.0/junit-platform-runner-1.0.0-sources.jar" }, { - "coord": "org.junit.platform:junit-platform-suite-api:1.9.1", + "coord": "org.junit.platform:junit-platform-suite-api:1.0.0", "dependencies": [ - "org.apiguardian:apiguardian-api:1.1.2", - "org.junit.platform:junit-platform-commons:1.9.1" + "org.apiguardian:apiguardian-api:1.0.0", + "org.junit.platform:junit-platform-commons:1.0.0" ], "directDependencies": [ - "org.apiguardian:apiguardian-api:1.1.2", - "org.junit.platform:junit-platform-commons:1.9.1" + "org.apiguardian:apiguardian-api:1.0.0", + "org.junit.platform:junit-platform-commons:1.0.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/junit/platform/junit-platform-suite-api/1.9.1/junit-platform-suite-api-1.9.1.jar", + "file": "v1/https/repo1.maven.org/maven2/org/junit/platform/junit-platform-suite-api/1.0.0/junit-platform-suite-api-1.0.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-suite-api/1.9.1/junit-platform-suite-api-1.9.1.jar" + "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-suite-api/1.0.0/junit-platform-suite-api-1.0.0.jar" ], "packages": [ "org.junit.platform.suite.api" ], - "sha256": "f49e2a8983a52e2e5566a16828d634a02592ab8bf51d23c5c091214bc15e57b4", - "url": "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-suite-api/1.9.1/junit-platform-suite-api-1.9.1.jar" - }, - { - "coord": "org.junit.platform:junit-platform-suite-api:jar:sources:1.9.1", - "dependencies": [ - "org.apiguardian:apiguardian-api:jar:sources:1.1.2", - "org.junit.platform:junit-platform-commons:jar:sources:1.9.1" - ], - "directDependencies": [ - "org.apiguardian:apiguardian-api:jar:sources:1.1.2", - "org.junit.platform:junit-platform-commons:jar:sources:1.9.1" - ], - "file": "v1/https/repo1.maven.org/maven2/org/junit/platform/junit-platform-suite-api/1.9.1/junit-platform-suite-api-1.9.1-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-suite-api/1.9.1/junit-platform-suite-api-1.9.1-sources.jar" - ], - "packages": [], - "sha256": "20d749d6257496257670a00b70a9239cbb7f805bb6a9e3796e62c8dd0752ff3c", - "url": "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-suite-api/1.9.1/junit-platform-suite-api-1.9.1-sources.jar" - }, - { - "coord": "org.junit.platform:junit-platform-suite-commons:1.9.1", - "dependencies": [ - "org.apiguardian:apiguardian-api:1.1.2", - "org.junit.platform:junit-platform-commons:1.9.1", - "org.junit.platform:junit-platform-engine:1.9.1", - "org.junit.platform:junit-platform-launcher:1.9.1", - "org.junit.platform:junit-platform-suite-api:1.9.1", - "org.opentest4j:opentest4j:1.2.0" - ], - "directDependencies": [ - "org.apiguardian:apiguardian-api:1.1.2", - "org.junit.platform:junit-platform-engine:1.9.1", - "org.junit.platform:junit-platform-launcher:1.9.1", - "org.junit.platform:junit-platform-suite-api:1.9.1" - ], - "file": "v1/https/repo1.maven.org/maven2/org/junit/platform/junit-platform-suite-commons/1.9.1/junit-platform-suite-commons-1.9.1.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-suite-commons/1.9.1/junit-platform-suite-commons-1.9.1.jar" - ], - "packages": [ - "org.junit.platform.suite.commons" - ], - "sha256": "8279775f6a9b075e394a888b8ab1226307c86fb925b4414270be9518cf07377c", - "url": "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-suite-commons/1.9.1/junit-platform-suite-commons-1.9.1.jar" + "sha256": "aac9a2bdf9b4a4b946fe32d87fdaa87a41638519f2e604237340452818148e45", + "url": "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-suite-api/1.0.0/junit-platform-suite-api-1.0.0.jar" }, { - "coord": "org.junit.platform:junit-platform-suite-commons:jar:sources:1.9.1", + "coord": "org.junit.platform:junit-platform-suite-api:jar:sources:1.0.0", "dependencies": [ - "org.apiguardian:apiguardian-api:jar:sources:1.1.2", - "org.junit.platform:junit-platform-commons:jar:sources:1.9.1", - "org.junit.platform:junit-platform-engine:jar:sources:1.9.1", - "org.junit.platform:junit-platform-launcher:jar:sources:1.9.1", - "org.junit.platform:junit-platform-suite-api:jar:sources:1.9.1", - "org.opentest4j:opentest4j:jar:sources:1.2.0" + "org.apiguardian:apiguardian-api:jar:sources:1.0.0", + "org.junit.platform:junit-platform-commons:jar:sources:1.0.0" ], "directDependencies": [ - "org.apiguardian:apiguardian-api:jar:sources:1.1.2", - "org.junit.platform:junit-platform-engine:jar:sources:1.9.1", - "org.junit.platform:junit-platform-launcher:jar:sources:1.9.1", - "org.junit.platform:junit-platform-suite-api:jar:sources:1.9.1" + "org.apiguardian:apiguardian-api:jar:sources:1.0.0", + "org.junit.platform:junit-platform-commons:jar:sources:1.0.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/junit/platform/junit-platform-suite-commons/1.9.1/junit-platform-suite-commons-1.9.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/junit/platform/junit-platform-suite-api/1.0.0/junit-platform-suite-api-1.0.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-suite-commons/1.9.1/junit-platform-suite-commons-1.9.1-sources.jar" + "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-suite-api/1.0.0/junit-platform-suite-api-1.0.0-sources.jar" ], "packages": [], - "sha256": "f04a7dcc7802ce1c967177ba1c0cfcea849f7344fd350d8a6cd90c4e5f7cd1b3", - "url": "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-suite-commons/1.9.1/junit-platform-suite-commons-1.9.1-sources.jar" + "sha256": "d9359c6d987d2209f8dc5fb510d7a0e748d0ef80f34ab3a040c4d70324da31c7", + "url": "https://repo1.maven.org/maven2/org/junit/platform/junit-platform-suite-api/1.0.0/junit-platform-suite-api-1.0.0-sources.jar" }, { - "coord": "org.mockito:mockito-core:4.6.1", + "coord": "org.mockito:mockito-core:3.6.28", "dependencies": [ - "net.bytebuddy:byte-buddy-agent:1.12.10", - "net.bytebuddy:byte-buddy:1.12.14", - "org.objenesis:objenesis:3.2" + "net.bytebuddy:byte-buddy-agent:1.10.18", + "net.bytebuddy:byte-buddy:1.10.18", + "org.objenesis:objenesis:3.1" ], "directDependencies": [ - "net.bytebuddy:byte-buddy-agent:1.12.10", - "net.bytebuddy:byte-buddy:1.12.14", - "org.objenesis:objenesis:3.2" + "net.bytebuddy:byte-buddy-agent:1.10.18", + "net.bytebuddy:byte-buddy:1.10.18", + "org.objenesis:objenesis:3.1" ], - "file": "v1/https/repo1.maven.org/maven2/org/mockito/mockito-core/4.6.1/mockito-core-4.6.1.jar", + "file": "v1/https/repo1.maven.org/maven2/org/mockito/mockito-core/3.6.28/mockito-core-3.6.28.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/mockito/mockito-core/4.6.1/mockito-core-4.6.1.jar" + "https://repo1.maven.org/maven2/org/mockito/mockito-core/3.6.28/mockito-core-3.6.28.jar" ], "packages": [ "org.mockito", @@ -14846,7 +12258,6 @@ "org.mockito.internal.creation", "org.mockito.internal.creation.bytebuddy", "org.mockito.internal.creation.instance", - "org.mockito.internal.creation.proxy", "org.mockito.internal.creation.settings", "org.mockito.internal.creation.util", "org.mockito.internal.debugging", @@ -14860,6 +12271,7 @@ "org.mockito.internal.invocation.finder", "org.mockito.internal.invocation.mockref", "org.mockito.internal.junit", + "org.mockito.internal.junit.util", "org.mockito.internal.listeners", "org.mockito.internal.matchers", "org.mockito.internal.matchers.apachecommons", @@ -14887,95 +12299,93 @@ "org.mockito.mock", "org.mockito.plugins", "org.mockito.quality", + "org.mockito.runners", "org.mockito.session", "org.mockito.stubbing", "org.mockito.verification" ], - "sha256": "ee3b91cdf4c23cff92960c32364371c683ee6415f1ec4678317bcea79c9f9819", - "url": "https://repo1.maven.org/maven2/org/mockito/mockito-core/4.6.1/mockito-core-4.6.1.jar" + "sha256": "8f6bb5d54f0de3453215745f2844b1f0dc00b24abcb41c97059562743a83a9b2", + "url": "https://repo1.maven.org/maven2/org/mockito/mockito-core/3.6.28/mockito-core-3.6.28.jar" }, { - "coord": "org.mockito:mockito-core:jar:sources:4.6.1", + "coord": "org.mockito:mockito-core:jar:sources:3.6.28", "dependencies": [ - "net.bytebuddy:byte-buddy-agent:jar:sources:1.12.10", - "net.bytebuddy:byte-buddy:jar:sources:1.12.14", - "org.objenesis:objenesis:jar:sources:3.2" + "net.bytebuddy:byte-buddy-agent:jar:sources:1.10.18", + "net.bytebuddy:byte-buddy:jar:sources:1.10.18", + "org.objenesis:objenesis:jar:sources:3.1" ], "directDependencies": [ - "net.bytebuddy:byte-buddy-agent:jar:sources:1.12.10", - "net.bytebuddy:byte-buddy:jar:sources:1.12.14", - "org.objenesis:objenesis:jar:sources:3.2" + "net.bytebuddy:byte-buddy-agent:jar:sources:1.10.18", + "net.bytebuddy:byte-buddy:jar:sources:1.10.18", + "org.objenesis:objenesis:jar:sources:3.1" ], - "file": "v1/https/repo1.maven.org/maven2/org/mockito/mockito-core/4.6.1/mockito-core-4.6.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/mockito/mockito-core/3.6.28/mockito-core-3.6.28-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/mockito/mockito-core/4.6.1/mockito-core-4.6.1-sources.jar" + "https://repo1.maven.org/maven2/org/mockito/mockito-core/3.6.28/mockito-core-3.6.28-sources.jar" ], "packages": [], - "sha256": "b99d5e077dd58e2d1ece4e5ffbf9b59496e8ecb624a1767a43ac92fc9dcc4e24", - "url": "https://repo1.maven.org/maven2/org/mockito/mockito-core/4.6.1/mockito-core-4.6.1-sources.jar" + "sha256": "9d89c444abd0760845501681cf89c7eba8af6c623af7df4d3839e5b435f81113", + "url": "https://repo1.maven.org/maven2/org/mockito/mockito-core/3.6.28/mockito-core-3.6.28-sources.jar" }, { - "coord": "org.mockito:mockito-inline:4.6.1", + "coord": "org.mockito:mockito-inline:3.6.28", "dependencies": [ - "net.bytebuddy:byte-buddy-agent:1.12.10", - "net.bytebuddy:byte-buddy:1.12.14", - "org.mockito:mockito-core:4.6.1", - "org.objenesis:objenesis:3.2" + "net.bytebuddy:byte-buddy-agent:1.10.18", + "net.bytebuddy:byte-buddy:1.10.18", + "org.mockito:mockito-core:3.6.28", + "org.objenesis:objenesis:3.1" ], "directDependencies": [ - "org.mockito:mockito-core:4.6.1" + "org.mockito:mockito-core:3.6.28" ], - "file": "v1/https/repo1.maven.org/maven2/org/mockito/mockito-inline/4.6.1/mockito-inline-4.6.1.jar", + "file": "v1/https/repo1.maven.org/maven2/org/mockito/mockito-inline/3.6.28/mockito-inline-3.6.28.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/mockito/mockito-inline/4.6.1/mockito-inline-4.6.1.jar" + "https://repo1.maven.org/maven2/org/mockito/mockito-inline/3.6.28/mockito-inline-3.6.28.jar" ], "packages": [], "sha256": "ee52e1c299a632184fba274a9370993e09140429f5e516e6c5570fd6574b297f", - "url": "https://repo1.maven.org/maven2/org/mockito/mockito-inline/4.6.1/mockito-inline-4.6.1.jar" + "url": "https://repo1.maven.org/maven2/org/mockito/mockito-inline/3.6.28/mockito-inline-3.6.28.jar" }, { - "coord": "org.mockito:mockito-inline:jar:sources:4.6.1", + "coord": "org.mockito:mockito-inline:jar:sources:3.6.28", "dependencies": [ - "net.bytebuddy:byte-buddy-agent:jar:sources:1.12.10", - "net.bytebuddy:byte-buddy:jar:sources:1.12.14", - "org.mockito:mockito-core:jar:sources:4.6.1", - "org.objenesis:objenesis:jar:sources:3.2" + "net.bytebuddy:byte-buddy-agent:jar:sources:1.10.18", + "net.bytebuddy:byte-buddy:jar:sources:1.10.18", + "org.mockito:mockito-core:jar:sources:3.6.28", + "org.objenesis:objenesis:jar:sources:3.1" ], "directDependencies": [ - "org.mockito:mockito-core:jar:sources:4.6.1" + "org.mockito:mockito-core:jar:sources:3.6.28" ], - "file": "v1/https/repo1.maven.org/maven2/org/mockito/mockito-inline/4.6.1/mockito-inline-4.6.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/mockito/mockito-inline/3.6.28/mockito-inline-3.6.28-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/mockito/mockito-inline/4.6.1/mockito-inline-4.6.1-sources.jar" + "https://repo1.maven.org/maven2/org/mockito/mockito-inline/3.6.28/mockito-inline-3.6.28-sources.jar" ], "packages": [], "sha256": "ee52e1c299a632184fba274a9370993e09140429f5e516e6c5570fd6574b297f", - "url": "https://repo1.maven.org/maven2/org/mockito/mockito-inline/4.6.1/mockito-inline-4.6.1-sources.jar" + "url": "https://repo1.maven.org/maven2/org/mockito/mockito-inline/3.6.28/mockito-inline-3.6.28-sources.jar" }, { - "coord": "org.mockito:mockito-scala_2.13:1.17.12", + "coord": "org.mockito:mockito-scala_2.13:1.16.3", "dependencies": [ - "net.bytebuddy:byte-buddy-agent:1.12.10", - "net.bytebuddy:byte-buddy:1.12.14", - "org.mockito:mockito-core:4.6.1", - "org.objenesis:objenesis:3.2", - "org.scala-lang.modules:scala-parallel-collections_2.13:1.0.4", + "org.mockito:mockito-core:3.6.28", + "org.scala-lang.modules:scala-parallel-collections_2.13:1.0.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalactic:scalactic_2.13:3.2.10", + "org.scalactic:scalactic_2.13:3.2.9", "ru.vyarus:generics-resolver:3.0.3" ], "directDependencies": [ - "org.mockito:mockito-core:4.6.1", - "org.scala-lang.modules:scala-parallel-collections_2.13:1.0.4", + "org.mockito:mockito-core:3.6.28", + "org.scala-lang.modules:scala-parallel-collections_2.13:1.0.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalactic:scalactic_2.13:3.2.10", + "org.scalactic:scalactic_2.13:3.2.9", "ru.vyarus:generics-resolver:3.0.3" ], - "file": "v1/https/repo1.maven.org/maven2/org/mockito/mockito-scala_2.13/1.17.12/mockito-scala_2.13-1.17.12.jar", + "file": "v1/https/repo1.maven.org/maven2/org/mockito/mockito-scala_2.13/1.16.3/mockito-scala_2.13-1.16.3.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/mockito/mockito-scala_2.13/1.17.12/mockito-scala_2.13-1.17.12.jar" + "https://repo1.maven.org/maven2/org/mockito/mockito-scala_2.13/1.16.3/mockito-scala_2.13-1.16.3.jar" ], "packages": [ "org.mockito", @@ -14989,45 +12399,42 @@ "org.mockito.matchers", "org.mockito.stubbing" ], - "sha256": "70cdaba2d0148c756f3bac333a30eaf9ec5d585f50a02dcbaee5a90ea25eb2b9", - "url": "https://repo1.maven.org/maven2/org/mockito/mockito-scala_2.13/1.17.12/mockito-scala_2.13-1.17.12.jar" + "sha256": "1f74363b52e429a9f73762b7dbecc1483efcfc09032cfd6b3743aa8d2bcfc2ee", + "url": "https://repo1.maven.org/maven2/org/mockito/mockito-scala_2.13/1.16.3/mockito-scala_2.13-1.16.3.jar" }, { - "coord": "org.mockito:mockito-scala_2.13:jar:sources:1.17.12", + "coord": "org.mockito:mockito-scala_2.13:jar:sources:1.16.3", "dependencies": [ - "net.bytebuddy:byte-buddy-agent:jar:sources:1.12.10", - "net.bytebuddy:byte-buddy:jar:sources:1.12.14", - "org.mockito:mockito-core:jar:sources:4.6.1", - "org.objenesis:objenesis:jar:sources:3.2", - "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:1.0.4", + "org.mockito:mockito-core:jar:sources:3.6.28", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:1.0.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalactic:scalactic_2.13:jar:sources:3.2.10", + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", "ru.vyarus:generics-resolver:jar:sources:3.0.3" ], "directDependencies": [ - "org.mockito:mockito-core:jar:sources:4.6.1", - "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:1.0.4", + "org.mockito:mockito-core:jar:sources:3.6.28", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:1.0.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalactic:scalactic_2.13:jar:sources:3.2.10", + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", "ru.vyarus:generics-resolver:jar:sources:3.0.3" ], - "file": "v1/https/repo1.maven.org/maven2/org/mockito/mockito-scala_2.13/1.17.12/mockito-scala_2.13-1.17.12-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/mockito/mockito-scala_2.13/1.16.3/mockito-scala_2.13-1.16.3-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/mockito/mockito-scala_2.13/1.17.12/mockito-scala_2.13-1.17.12-sources.jar" + "https://repo1.maven.org/maven2/org/mockito/mockito-scala_2.13/1.16.3/mockito-scala_2.13-1.16.3-sources.jar" ], "packages": [], - "sha256": "b29d7c7c9d4a2718264ebc3b454b736c9fa2c9e472075016c55646b08e5802f2", - "url": "https://repo1.maven.org/maven2/org/mockito/mockito-scala_2.13/1.17.12/mockito-scala_2.13-1.17.12-sources.jar" + "sha256": "b5ce3dc50835e9169814245fa140b1d8ff2c671f31d3cc7829020cddd419f6f0", + "url": "https://repo1.maven.org/maven2/org/mockito/mockito-scala_2.13/1.16.3/mockito-scala_2.13-1.16.3-sources.jar" }, { - "coord": "org.objenesis:objenesis:3.2", + "coord": "org.objenesis:objenesis:3.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/objenesis/objenesis/3.2/objenesis-3.2.jar", + "file": "v1/https/repo1.maven.org/maven2/org/objenesis/objenesis/3.1/objenesis-3.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/objenesis/objenesis/3.2/objenesis-3.2.jar" + "https://repo1.maven.org/maven2/org/objenesis/objenesis/3.1/objenesis-3.1.jar" ], "packages": [ "org.objenesis", @@ -15041,46 +12448,46 @@ "org.objenesis.instantiator.util", "org.objenesis.strategy" ], - "sha256": "03d960bd5aef03c653eb000413ada15eb77cdd2b8e4448886edf5692805e35f3", - "url": "https://repo1.maven.org/maven2/org/objenesis/objenesis/3.2/objenesis-3.2.jar" + "sha256": "cdb3d038c188de6f46ffd5cd930be2d5e5dba59c53b26437995d534e3db2fb80", + "url": "https://repo1.maven.org/maven2/org/objenesis/objenesis/3.1/objenesis-3.1.jar" }, { - "coord": "org.objenesis:objenesis:jar:sources:3.2", + "coord": "org.objenesis:objenesis:jar:sources:3.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/objenesis/objenesis/3.2/objenesis-3.2-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/objenesis/objenesis/3.1/objenesis-3.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/objenesis/objenesis/3.2/objenesis-3.2-sources.jar" + "https://repo1.maven.org/maven2/org/objenesis/objenesis/3.1/objenesis-3.1-sources.jar" ], "packages": [], - "sha256": "56a7987f5746bd809c363e29055c41f5472a086b0e0e32248693e064d10bc306", - "url": "https://repo1.maven.org/maven2/org/objenesis/objenesis/3.2/objenesis-3.2-sources.jar" + "sha256": "a7a2e9fb069d4d713e0f1628352467c509478f6176b2dc580a1887cde05b44ef", + "url": "https://repo1.maven.org/maven2/org/objenesis/objenesis/3.1/objenesis-3.1-sources.jar" }, { - "coord": "org.opentest4j:opentest4j:1.2.0", + "coord": "org.opentest4j:opentest4j:1.0.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/opentest4j/opentest4j/1.0.0/opentest4j-1.0.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar" + "https://repo1.maven.org/maven2/org/opentest4j/opentest4j/1.0.0/opentest4j-1.0.0.jar" ], "packages": [ "org.opentest4j" ], - "sha256": "58812de60898d976fb81ef3b62da05c6604c18fd4a249f5044282479fc286af2", - "url": "https://repo1.maven.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar" + "sha256": "6a05b14e8764a1fa51551ccef29e7271681d65fa907a8136136b94de92a0b862", + "url": "https://repo1.maven.org/maven2/org/opentest4j/opentest4j/1.0.0/opentest4j-1.0.0.jar" }, { - "coord": "org.opentest4j:opentest4j:jar:sources:1.2.0", + "coord": "org.opentest4j:opentest4j:jar:sources:1.0.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/opentest4j/opentest4j/1.0.0/opentest4j-1.0.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0-sources.jar" + "https://repo1.maven.org/maven2/org/opentest4j/opentest4j/1.0.0/opentest4j-1.0.0-sources.jar" ], "packages": [], - "sha256": "b63495ef700fb2af2cdee8dd68659b27822650058234a602f9ed1d14b909a1a8", - "url": "https://repo1.maven.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0-sources.jar" + "sha256": "68e5bbe7dbe3b8cfe2b98976a3271830a366ac5c5f5a450ed301c6b4f08bb822", + "url": "https://repo1.maven.org/maven2/org/opentest4j/opentest4j/1.0.0/opentest4j-1.0.0-sources.jar" }, { "coord": "org.ow2.asm:asm:5.0.4", @@ -15110,120 +12517,121 @@ "url": "https://repo1.maven.org/maven2/org/ow2/asm/asm/5.0.4/asm-5.0.4-sources.jar" }, { - "coord": "org.parboiled:parboiled_2.13:2.4.0", + "coord": "org.parboiled:parboiled_2.13:2.1.8", "dependencies": [ + "com.chuusai:shapeless_2.13:2.3.3", "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ + "com.chuusai:shapeless_2.13:2.3.3", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/parboiled/parboiled_2.13/2.4.0/parboiled_2.13-2.4.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/parboiled/parboiled_2.13/2.1.8/parboiled_2.13-2.1.8.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/parboiled/parboiled_2.13/2.4.0/parboiled_2.13-2.4.0.jar" + "https://repo1.maven.org/maven2/org/parboiled/parboiled_2.13/2.1.8/parboiled_2.13-2.1.8.jar" ], "packages": [ "org.parboiled2", "org.parboiled2.support", - "org.parboiled2.support.hlist", - "org.parboiled2.support.hlist.ops", - "org.parboiled2.support.hlist.syntax", "org.parboiled2.util" ], - "sha256": "2a1422099ac7311baca0d622278c1ceb34426d15ef3ae739c06482793f1fb9bd", - "url": "https://repo1.maven.org/maven2/org/parboiled/parboiled_2.13/2.4.0/parboiled_2.13-2.4.0.jar" + "sha256": "c0787744d9b68cdb21cc4fbe669edd12faf6c4b9404e421641a6f71c01efa579", + "url": "https://repo1.maven.org/maven2/org/parboiled/parboiled_2.13/2.1.8/parboiled_2.13-2.1.8.jar" }, { - "coord": "org.parboiled:parboiled_2.13:jar:sources:2.4.0", + "coord": "org.parboiled:parboiled_2.13:jar:sources:2.1.8", "dependencies": [ + "com.chuusai:shapeless_2.13:jar:sources:2.3.3", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ + "com.chuusai:shapeless_2.13:jar:sources:2.3.3", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/parboiled/parboiled_2.13/2.4.0/parboiled_2.13-2.4.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/parboiled/parboiled_2.13/2.1.8/parboiled_2.13-2.1.8-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/parboiled/parboiled_2.13/2.4.0/parboiled_2.13-2.4.0-sources.jar" + "https://repo1.maven.org/maven2/org/parboiled/parboiled_2.13/2.1.8/parboiled_2.13-2.1.8-sources.jar" ], "packages": [], - "sha256": "2f5d5c1564cdc787ec499741086366adf50421cc7c501cf3ee2a340738b80c0f", - "url": "https://repo1.maven.org/maven2/org/parboiled/parboiled_2.13/2.4.0/parboiled_2.13-2.4.0-sources.jar" + "sha256": "8cd26625113db193410d27fea8996bc5430ae290aae9bb46b7ac66f13af059d5", + "url": "https://repo1.maven.org/maven2/org/parboiled/parboiled_2.13/2.1.8/parboiled_2.13-2.1.8-sources.jar" }, { - "coord": "org.pcollections:pcollections:3.2.0", + "coord": "org.pcollections:pcollections:2.1.3", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/pcollections/pcollections/3.2.0/pcollections-3.2.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/pcollections/pcollections/2.1.3/pcollections-2.1.3.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/pcollections/pcollections/3.2.0/pcollections-3.2.0.jar" + "https://repo1.maven.org/maven2/org/pcollections/pcollections/2.1.3/pcollections-2.1.3.jar" ], "packages": [ "org.pcollections" ], - "sha256": "6c1447309cd47560924dbf4939b37756c53b15febc0191ec52d6e0b53b6cc62a", - "url": "https://repo1.maven.org/maven2/org/pcollections/pcollections/3.2.0/pcollections-3.2.0.jar" + "sha256": "f94a44a953006ea13f0ea989881ae17fa1c0378ed855d3ba9fef44b71f71a8d1", + "url": "https://repo1.maven.org/maven2/org/pcollections/pcollections/2.1.3/pcollections-2.1.3.jar" }, { - "coord": "org.pcollections:pcollections:jar:sources:3.2.0", + "coord": "org.pcollections:pcollections:jar:sources:2.1.3", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/pcollections/pcollections/3.2.0/pcollections-3.2.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/pcollections/pcollections/2.1.3/pcollections-2.1.3-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/pcollections/pcollections/3.2.0/pcollections-3.2.0-sources.jar" + "https://repo1.maven.org/maven2/org/pcollections/pcollections/2.1.3/pcollections-2.1.3-sources.jar" ], "packages": [], - "sha256": "96d483d27fdf6b9ae3eea19f82869a48c27908b0e95bfe113bc9608d7325471e", - "url": "https://repo1.maven.org/maven2/org/pcollections/pcollections/3.2.0/pcollections-3.2.0-sources.jar" + "sha256": "326b66bf9a18727c59fdd77306cd2f22dfcf678049998b4f823dd29c632ccc0a", + "url": "https://repo1.maven.org/maven2/org/pcollections/pcollections/2.1.3/pcollections-2.1.3-sources.jar" }, { - "coord": "org.playframework.anorm:anorm-akka_2.13:2.7.0", + "coord": "org.playframework.anorm:anorm-akka_2.13:2.6.8", "dependencies": [ - "joda-time:joda-time:2.11.1", - "org.joda:joda-convert:2.2.2", - "org.playframework.anorm:anorm-tokenizer_2.13:2.7.0", - "org.playframework.anorm:anorm_2.13:2.7.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", + "joda-time:joda-time:2.10.8", + "org.joda:joda-convert:2.2.1", + "org.playframework.anorm:anorm-tokenizer_2.13:2.6.8", + "org.playframework.anorm:anorm_2.13:2.6.8", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8" ], "directDependencies": [ - "org.playframework.anorm:anorm_2.13:2.7.0", + "org.playframework.anorm:anorm_2.13:2.6.8", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/playframework/anorm/anorm-akka_2.13/2.7.0/anorm-akka_2.13-2.7.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/playframework/anorm/anorm-akka_2.13/2.6.8/anorm-akka_2.13-2.6.8.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/playframework/anorm/anorm-akka_2.13/2.7.0/anorm-akka_2.13-2.7.0.jar" + "https://repo1.maven.org/maven2/org/playframework/anorm/anorm-akka_2.13/2.6.8/anorm-akka_2.13-2.6.8.jar" ], "packages": [ "anorm" ], - "sha256": "835ec053e470927c8cd6b0e8d435de160add5bbdee5653c38547770e89e12654", - "url": "https://repo1.maven.org/maven2/org/playframework/anorm/anorm-akka_2.13/2.7.0/anorm-akka_2.13-2.7.0.jar" + "sha256": "445f774d5ab596d7ce175c551ae3b823e0221e07dab4fa47f6c49bbab5a63bb7", + "url": "https://repo1.maven.org/maven2/org/playframework/anorm/anorm-akka_2.13/2.6.8/anorm-akka_2.13-2.6.8.jar" }, { - "coord": "org.playframework.anorm:anorm-akka_2.13:jar:sources:2.7.0", + "coord": "org.playframework.anorm:anorm-akka_2.13:jar:sources:2.6.8", "dependencies": [ - "joda-time:joda-time:jar:sources:2.11.1", - "org.joda:joda-convert:jar:sources:2.2.2", - "org.playframework.anorm:anorm-tokenizer_2.13:jar:sources:2.7.0", - "org.playframework.anorm:anorm_2.13:jar:sources:2.7.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "joda-time:joda-time:jar:sources:2.10.8", + "org.joda:joda-convert:jar:sources:2.2.1", + "org.playframework.anorm:anorm-tokenizer_2.13:jar:sources:2.6.8", + "org.playframework.anorm:anorm_2.13:jar:sources:2.6.8", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8" ], "directDependencies": [ - "org.playframework.anorm:anorm_2.13:jar:sources:2.7.0", + "org.playframework.anorm:anorm_2.13:jar:sources:2.6.8", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/playframework/anorm/anorm-akka_2.13/2.7.0/anorm-akka_2.13-2.7.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/playframework/anorm/anorm-akka_2.13/2.6.8/anorm-akka_2.13-2.6.8-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/playframework/anorm/anorm-akka_2.13/2.7.0/anorm-akka_2.13-2.7.0-sources.jar" + "https://repo1.maven.org/maven2/org/playframework/anorm/anorm-akka_2.13/2.6.8/anorm-akka_2.13-2.6.8-sources.jar" ], "packages": [], - "sha256": "d15edc6a2afa7f57fe54b71d6683e4a11d18bdf22c9bcfe81ca381e082a66fd2", - "url": "https://repo1.maven.org/maven2/org/playframework/anorm/anorm-akka_2.13/2.7.0/anorm-akka_2.13-2.7.0-sources.jar" + "sha256": "95ee965af652e71c5a1d836780794a3c129e9e5a4af7f9dcc0bcc53798a560f4", + "url": "https://repo1.maven.org/maven2/org/playframework/anorm/anorm-akka_2.13/2.6.8/anorm-akka_2.13-2.6.8-sources.jar" }, { - "coord": "org.playframework.anorm:anorm-tokenizer_2.13:2.7.0", + "coord": "org.playframework.anorm:anorm-tokenizer_2.13:2.6.8", "dependencies": [ "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8" @@ -15232,18 +12640,18 @@ "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/playframework/anorm/anorm-tokenizer_2.13/2.7.0/anorm-tokenizer_2.13-2.7.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/playframework/anorm/anorm-tokenizer_2.13/2.6.8/anorm-tokenizer_2.13-2.6.8.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/playframework/anorm/anorm-tokenizer_2.13/2.7.0/anorm-tokenizer_2.13-2.7.0.jar" + "https://repo1.maven.org/maven2/org/playframework/anorm/anorm-tokenizer_2.13/2.6.8/anorm-tokenizer_2.13-2.6.8.jar" ], "packages": [ "anorm" ], - "sha256": "245b1a529cc738873f0c265940df30ed32db8a2d705f1019335ca7794e4a41b4", - "url": "https://repo1.maven.org/maven2/org/playframework/anorm/anorm-tokenizer_2.13/2.7.0/anorm-tokenizer_2.13-2.7.0.jar" + "sha256": "a9aa8ccf9c2567b08ae26cbd04669565c95c31c7c79e669bb31abf65aa8f463d", + "url": "https://repo1.maven.org/maven2/org/playframework/anorm/anorm-tokenizer_2.13/2.6.8/anorm-tokenizer_2.13-2.6.8.jar" }, { - "coord": "org.playframework.anorm:anorm-tokenizer_2.13:jar:sources:2.7.0", + "coord": "org.playframework.anorm:anorm-tokenizer_2.13:jar:sources:2.6.8", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8" @@ -15252,34 +12660,34 @@ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/playframework/anorm/anorm-tokenizer_2.13/2.7.0/anorm-tokenizer_2.13-2.7.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/playframework/anorm/anorm-tokenizer_2.13/2.6.8/anorm-tokenizer_2.13-2.6.8-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/playframework/anorm/anorm-tokenizer_2.13/2.7.0/anorm-tokenizer_2.13-2.7.0-sources.jar" + "https://repo1.maven.org/maven2/org/playframework/anorm/anorm-tokenizer_2.13/2.6.8/anorm-tokenizer_2.13-2.6.8-sources.jar" ], "packages": [], - "sha256": "3ef147630e1bedf34dab4ee7fbaf6b8b3e183142a6161f04fe2b6fb92a5ebbf2", - "url": "https://repo1.maven.org/maven2/org/playframework/anorm/anorm-tokenizer_2.13/2.7.0/anorm-tokenizer_2.13-2.7.0-sources.jar" + "sha256": "3ff5e61ee9c7e953fdcc202b61a608cb0bee16d845bec4cd0a99ee040e4d913e", + "url": "https://repo1.maven.org/maven2/org/playframework/anorm/anorm-tokenizer_2.13/2.6.8/anorm-tokenizer_2.13-2.6.8-sources.jar" }, { - "coord": "org.playframework.anorm:anorm_2.13:2.7.0", + "coord": "org.playframework.anorm:anorm_2.13:2.6.8", "dependencies": [ - "joda-time:joda-time:2.11.1", - "org.joda:joda-convert:2.2.2", - "org.playframework.anorm:anorm-tokenizer_2.13:2.7.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", + "joda-time:joda-time:2.10.8", + "org.joda:joda-convert:2.2.1", + "org.playframework.anorm:anorm-tokenizer_2.13:2.6.8", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8" ], "directDependencies": [ - "joda-time:joda-time:2.11.1", - "org.joda:joda-convert:2.2.2", - "org.playframework.anorm:anorm-tokenizer_2.13:2.7.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", + "joda-time:joda-time:2.10.8", + "org.joda:joda-convert:2.2.1", + "org.playframework.anorm:anorm-tokenizer_2.13:2.6.8", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/playframework/anorm/anorm_2.13/2.7.0/anorm_2.13-2.7.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/playframework/anorm/anorm_2.13/2.6.8/anorm_2.13-2.6.8.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/playframework/anorm/anorm_2.13/2.7.0/anorm_2.13-2.7.0.jar" + "https://repo1.maven.org/maven2/org/playframework/anorm/anorm_2.13/2.6.8/anorm_2.13-2.6.8.jar" ], "packages": [ "anorm", @@ -15287,52 +12695,51 @@ "resource", "resource.jta" ], - "sha256": "3ac150292934d42c371170b8711782d5c58805ede13236b7f97364cf91a5877c", - "url": "https://repo1.maven.org/maven2/org/playframework/anorm/anorm_2.13/2.7.0/anorm_2.13-2.7.0.jar" + "sha256": "133a120344d712c6365efb327d814fcb06275de3a4ad4f0e041fe52c0ddb5971", + "url": "https://repo1.maven.org/maven2/org/playframework/anorm/anorm_2.13/2.6.8/anorm_2.13-2.6.8.jar" }, { - "coord": "org.playframework.anorm:anorm_2.13:jar:sources:2.7.0", + "coord": "org.playframework.anorm:anorm_2.13:jar:sources:2.6.8", "dependencies": [ - "joda-time:joda-time:jar:sources:2.11.1", - "org.joda:joda-convert:jar:sources:2.2.2", - "org.playframework.anorm:anorm-tokenizer_2.13:jar:sources:2.7.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "joda-time:joda-time:jar:sources:2.10.8", + "org.joda:joda-convert:jar:sources:2.2.1", + "org.playframework.anorm:anorm-tokenizer_2.13:jar:sources:2.6.8", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8" ], "directDependencies": [ - "joda-time:joda-time:jar:sources:2.11.1", - "org.joda:joda-convert:jar:sources:2.2.2", - "org.playframework.anorm:anorm-tokenizer_2.13:jar:sources:2.7.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "joda-time:joda-time:jar:sources:2.10.8", + "org.joda:joda-convert:jar:sources:2.2.1", + "org.playframework.anorm:anorm-tokenizer_2.13:jar:sources:2.6.8", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/playframework/anorm/anorm_2.13/2.7.0/anorm_2.13-2.7.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/playframework/anorm/anorm_2.13/2.6.8/anorm_2.13-2.6.8-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/playframework/anorm/anorm_2.13/2.7.0/anorm_2.13-2.7.0-sources.jar" + "https://repo1.maven.org/maven2/org/playframework/anorm/anorm_2.13/2.6.8/anorm_2.13-2.6.8-sources.jar" ], "packages": [], - "sha256": "fc96b51756ac3af7c069588f853b2c638cc21ddbeef1154d381071747b2f45b3", - "url": "https://repo1.maven.org/maven2/org/playframework/anorm/anorm_2.13/2.7.0/anorm_2.13-2.7.0-sources.jar" + "sha256": "38b04710c18147b4f9601cfbf5c71cfdc45d58bbff2ee718b61ed9e3412dfaa9", + "url": "https://repo1.maven.org/maven2/org/playframework/anorm/anorm_2.13/2.6.8/anorm_2.13-2.6.8-sources.jar" }, { - "coord": "org.postgresql:postgresql:42.5.0", + "coord": "org.postgresql:postgresql:42.2.25", "dependencies": [ - "org.checkerframework:checker-qual:3.26.0" + "org.checkerframework:checker-qual:3.19.0" ], "directDependencies": [ - "org.checkerframework:checker-qual:3.26.0" + "org.checkerframework:checker-qual:3.19.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/postgresql/postgresql/42.5.0/postgresql-42.5.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/postgresql/postgresql/42.2.25/postgresql-42.2.25.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/postgresql/postgresql/42.5.0/postgresql-42.5.0.jar" + "https://repo1.maven.org/maven2/org/postgresql/postgresql/42.2.25/postgresql-42.2.25.jar" ], "packages": [ "org.postgresql", "org.postgresql.copy", "org.postgresql.core", "org.postgresql.core.v3", - "org.postgresql.core.v3.adaptivefetch", "org.postgresql.core.v3.replication", "org.postgresql.ds", "org.postgresql.ds.common", @@ -15347,7 +12754,6 @@ "org.postgresql.jre7.sasl", "org.postgresql.largeobject", "org.postgresql.osgi", - "org.postgresql.plugin", "org.postgresql.replication", "org.postgresql.replication.fluent", "org.postgresql.replication.fluent.logical", @@ -15372,560 +12778,423 @@ "org.postgresql.xa", "org.postgresql.xml" ], - "sha256": "a4d18b5ab1aeb9285a8b17b365f424f268445229cabf8e412115db6152b7dee3", - "url": "https://repo1.maven.org/maven2/org/postgresql/postgresql/42.5.0/postgresql-42.5.0.jar" + "sha256": "e97fafe15bee2358cf8d0ede26f80e31d4e6387a58e194fd7cc0f203f648a9f2", + "url": "https://repo1.maven.org/maven2/org/postgresql/postgresql/42.2.25/postgresql-42.2.25.jar" }, { - "coord": "org.postgresql:postgresql:jar:sources:42.5.0", + "coord": "org.postgresql:postgresql:jar:sources:42.2.25", "dependencies": [ - "org.checkerframework:checker-qual:jar:sources:3.26.0" + "org.checkerframework:checker-qual:jar:sources:3.19.0" ], "directDependencies": [ - "org.checkerframework:checker-qual:jar:sources:3.26.0" + "org.checkerframework:checker-qual:jar:sources:3.19.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/postgresql/postgresql/42.5.0/postgresql-42.5.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/postgresql/postgresql/42.2.25/postgresql-42.2.25-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/postgresql/postgresql/42.5.0/postgresql-42.5.0-sources.jar" + "https://repo1.maven.org/maven2/org/postgresql/postgresql/42.2.25/postgresql-42.2.25-sources.jar" ], "packages": [], - "sha256": "7ae7ef3959abc711761e8ce44cf7142fcc5e940e048f791e0b63989dddf13915", - "url": "https://repo1.maven.org/maven2/org/postgresql/postgresql/42.5.0/postgresql-42.5.0-sources.jar" + "sha256": "30b74f39e7f6a065c35000a29256cda4a116e9799d950a3de1fb5ab79691c044", + "url": "https://repo1.maven.org/maven2/org/postgresql/postgresql/42.2.25/postgresql-42.2.25-sources.jar" }, { - "coord": "org.reactivestreams:reactive-streams-examples:1.0.4", + "coord": "org.reactivestreams:reactive-streams-examples:1.0.2", "dependencies": [ - "org.reactivestreams:reactive-streams:1.0.4" + "org.reactivestreams:reactive-streams:1.0.2" ], "directDependencies": [ - "org.reactivestreams:reactive-streams:1.0.4" + "org.reactivestreams:reactive-streams:1.0.2" ], - "file": "v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams-examples/1.0.4/reactive-streams-examples-1.0.4.jar", + "file": "v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams-examples/1.0.2/reactive-streams-examples-1.0.2.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams-examples/1.0.4/reactive-streams-examples-1.0.4.jar" + "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams-examples/1.0.2/reactive-streams-examples-1.0.2.jar" ], "packages": [ "org.reactivestreams.example.unicast" ], - "sha256": "95f5f682e67fe791c6ff47a96281c22521961d317550c7110cd0b0e11dc4d9c2", - "url": "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams-examples/1.0.4/reactive-streams-examples-1.0.4.jar" + "sha256": "b0285302f2b372f6423977a21344549b2aa0e4c8c053f66c9bdc478d632779b3", + "url": "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams-examples/1.0.2/reactive-streams-examples-1.0.2.jar" }, { - "coord": "org.reactivestreams:reactive-streams-examples:jar:sources:1.0.4", + "coord": "org.reactivestreams:reactive-streams-examples:jar:sources:1.0.2", "dependencies": [ - "org.reactivestreams:reactive-streams:jar:sources:1.0.4" + "org.reactivestreams:reactive-streams:jar:sources:1.0.2" ], "directDependencies": [ - "org.reactivestreams:reactive-streams:jar:sources:1.0.4" + "org.reactivestreams:reactive-streams:jar:sources:1.0.2" ], - "file": "v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams-examples/1.0.4/reactive-streams-examples-1.0.4-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams-examples/1.0.2/reactive-streams-examples-1.0.2-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams-examples/1.0.4/reactive-streams-examples-1.0.4-sources.jar" + "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams-examples/1.0.2/reactive-streams-examples-1.0.2-sources.jar" ], "packages": [], - "sha256": "6b8dfa2c18898d275817bfe098dbd01b45d41742de979011f03b04a91c9b7c5f", - "url": "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams-examples/1.0.4/reactive-streams-examples-1.0.4-sources.jar" + "sha256": "33b5499acdd9be206d6657c18026a02a77c3150967d8ef04e396ee9132c0764a", + "url": "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams-examples/1.0.2/reactive-streams-examples-1.0.2-sources.jar" }, { - "coord": "org.reactivestreams:reactive-streams-tck:1.0.4", + "coord": "org.reactivestreams:reactive-streams-tck:1.0.2", "dependencies": [ - "org.reactivestreams:reactive-streams-examples:1.0.4", - "org.reactivestreams:reactive-streams:1.0.4", + "org.reactivestreams:reactive-streams-examples:1.0.2", + "org.reactivestreams:reactive-streams:1.0.2", "org.testng:testng:6.7" ], "directDependencies": [ - "org.reactivestreams:reactive-streams-examples:1.0.4", - "org.reactivestreams:reactive-streams:1.0.4", + "org.reactivestreams:reactive-streams-examples:1.0.2", + "org.reactivestreams:reactive-streams:1.0.2", "org.testng:testng:6.7" ], - "file": "v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams-tck/1.0.4/reactive-streams-tck-1.0.4.jar", + "file": "v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams-tck/1.0.2/reactive-streams-tck-1.0.2.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams-tck/1.0.4/reactive-streams-tck-1.0.4.jar" + "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams-tck/1.0.2/reactive-streams-tck-1.0.2.jar" ], "packages": [ "org.reactivestreams.tck", "org.reactivestreams.tck.flow.support" ], - "sha256": "8423b5062b3f3c5600a85cfad5a6ccbda88129a822be82b2e364d737d53c9836", - "url": "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams-tck/1.0.4/reactive-streams-tck-1.0.4.jar" + "sha256": "67fa341c934ad75587f2274af1f4d156935ec7da44784d12d6f7cb6155aa338e", + "url": "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams-tck/1.0.2/reactive-streams-tck-1.0.2.jar" }, { - "coord": "org.reactivestreams:reactive-streams-tck:jar:sources:1.0.4", + "coord": "org.reactivestreams:reactive-streams-tck:jar:sources:1.0.2", "dependencies": [ - "org.reactivestreams:reactive-streams-examples:jar:sources:1.0.4", - "org.reactivestreams:reactive-streams:jar:sources:1.0.4", + "org.reactivestreams:reactive-streams-examples:jar:sources:1.0.2", + "org.reactivestreams:reactive-streams:jar:sources:1.0.2", "org.testng:testng:jar:sources:6.7" ], "directDependencies": [ - "org.reactivestreams:reactive-streams-examples:jar:sources:1.0.4", - "org.reactivestreams:reactive-streams:jar:sources:1.0.4", + "org.reactivestreams:reactive-streams-examples:jar:sources:1.0.2", + "org.reactivestreams:reactive-streams:jar:sources:1.0.2", "org.testng:testng:jar:sources:6.7" ], - "file": "v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams-tck/1.0.4/reactive-streams-tck-1.0.4-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams-tck/1.0.4/reactive-streams-tck-1.0.4-sources.jar" - ], - "packages": [], - "sha256": "9bf5402ba7ab26cd5904ea8480434829533558db53192c76e0bce2b9b8f9671f", - "url": "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams-tck/1.0.4/reactive-streams-tck-1.0.4-sources.jar" - }, - { - "coord": "org.reactivestreams:reactive-streams:1.0.4", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar" - ], - "packages": [ - "org.reactivestreams" - ], - "sha256": "f75ca597789b3dac58f61857b9ac2e1034a68fa672db35055a8fb4509e325f28", - "url": "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar" - }, - { - "coord": "org.reactivestreams:reactive-streams:jar:sources:1.0.4", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4-sources.jar" - ], - "packages": [], - "sha256": "5a7a36ae9536698c434ebe119feb374d721210fee68eb821a37ef3859b64b708", - "url": "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4-sources.jar" - }, - { - "coord": "org.reflections:reflections:0.10.2", - "dependencies": [ - "com.google.code.findbugs:jsr305:3.0.2", - "org.javassist:javassist:3.28.0-GA", - "org.slf4j:slf4j-api:1.7.36" - ], - "directDependencies": [ - "com.google.code.findbugs:jsr305:3.0.2", - "org.javassist:javassist:3.28.0-GA", - "org.slf4j:slf4j-api:1.7.36" - ], - "file": "v1/https/repo1.maven.org/maven2/org/reflections/reflections/0.10.2/reflections-0.10.2.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/reflections/reflections/0.10.2/reflections-0.10.2.jar" - ], - "packages": [ - "org.reflections", - "org.reflections.scanners", - "org.reflections.serializers", - "org.reflections.util", - "org.reflections.vfs" - ], - "sha256": "938a2d08fe54050d7610b944d8ddc3a09355710d9e6be0aac838dbc04e9a2825", - "url": "https://repo1.maven.org/maven2/org/reflections/reflections/0.10.2/reflections-0.10.2.jar" - }, - { - "coord": "org.reflections:reflections:jar:sources:0.10.2", - "dependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "org.javassist:javassist:jar:sources:3.28.0-GA", - "org.slf4j:slf4j-api:jar:sources:1.7.36" - ], - "directDependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "org.javassist:javassist:jar:sources:3.28.0-GA", - "org.slf4j:slf4j-api:jar:sources:1.7.36" - ], - "file": "v1/https/repo1.maven.org/maven2/org/reflections/reflections/0.10.2/reflections-0.10.2-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/reflections/reflections/0.10.2/reflections-0.10.2-sources.jar" - ], - "packages": [], - "sha256": "7c8f0b91e298556ac8eebcbbb33de537baa146d80a7e5a6500e44cd8f76a91f4", - "url": "https://repo1.maven.org/maven2/org/reflections/reflections/0.10.2/reflections-0.10.2-sources.jar" - }, - { - "coord": "org.sangria-graphql:macro-visit_2.13:0.2.0-RC1", - "dependencies": [ - "org.scala-lang:scala-library:2.13.8", - "org.scala-lang:scala-reflect:2.13.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.13.8", - "org.scala-lang:scala-reflect:2.13.8" - ], - "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/macro-visit_2.13/0.2.0-RC1/macro-visit_2.13-0.2.0-RC1.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/sangria-graphql/macro-visit_2.13/0.2.0-RC1/macro-visit_2.13-0.2.0-RC1.jar" - ], - "packages": [ - "sangria.visitor" - ], - "sha256": "e8c87bbe3173a79b0539eb808fba41823531dc1c1eab7a4571214db8108dffb9", - "url": "https://repo1.maven.org/maven2/org/sangria-graphql/macro-visit_2.13/0.2.0-RC1/macro-visit_2.13-0.2.0-RC1.jar" - }, - { - "coord": "org.sangria-graphql:macro-visit_2.13:jar:sources:0.2.0-RC1", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.scala-lang:scala-reflect:jar:sources:2.13.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.scala-lang:scala-reflect:jar:sources:2.13.8" - ], - "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/macro-visit_2.13/0.2.0-RC1/macro-visit_2.13-0.2.0-RC1-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/sangria-graphql/macro-visit_2.13/0.2.0-RC1/macro-visit_2.13-0.2.0-RC1-sources.jar" - ], - "packages": [], - "sha256": "2c9a1c1817314e1eec7a1c90ba97597423ff6a03df777218189bc1062a44c171", - "url": "https://repo1.maven.org/maven2/org/sangria-graphql/macro-visit_2.13/0.2.0-RC1/macro-visit_2.13-0.2.0-RC1-sources.jar" - }, - { - "coord": "org.sangria-graphql:sangria-ast_2.13:3.4.0", - "dependencies": [ - "org.scala-lang:scala-library:2.13.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.13.8" + "file": "v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams-tck/1.0.2/reactive-streams-tck-1.0.2-sources.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams-tck/1.0.2/reactive-streams-tck-1.0.2-sources.jar" ], - "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/sangria-ast_2.13/3.4.0/sangria-ast_2.13-3.4.0.jar", + "packages": [], + "sha256": "091743da053ddffbf632a77e9e583441b8ef8c0e4814ceedb7e6b35d6bc181a5", + "url": "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams-tck/1.0.2/reactive-streams-tck-1.0.2-sources.jar" + }, + { + "coord": "org.reactivestreams:reactive-streams:1.0.2", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-ast_2.13/3.4.0/sangria-ast_2.13-3.4.0.jar" + "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar" ], "packages": [ - "sangria.ast" + "org.reactivestreams" ], - "sha256": "4b32341bbcff1c8e4481c09efc540e8ea75b60cbeb4c26f505d8f919b02449be", - "url": "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-ast_2.13/3.4.0/sangria-ast_2.13-3.4.0.jar" + "sha256": "cc09ab0b140e0d0496c2165d4b32ce24f4d6446c0a26c5dc77b06bdf99ee8fae", + "url": "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar" }, { - "coord": "org.sangria-graphql:sangria-ast_2.13:jar:sources:3.4.0", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.8" - ], - "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/sangria-ast_2.13/3.4.0/sangria-ast_2.13-3.4.0-sources.jar", + "coord": "org.reactivestreams:reactive-streams:jar:sources:1.0.2", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-ast_2.13/3.4.0/sangria-ast_2.13-3.4.0-sources.jar" + "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2-sources.jar" ], "packages": [], - "sha256": "02b477de12b82e34349834cec55b76e42e7187b39f98748819f7088191242fa9", - "url": "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-ast_2.13/3.4.0/sangria-ast_2.13-3.4.0-sources.jar" + "sha256": "963a6480f46a64013d0f144ba41c6c6e63c4d34b655761717a436492886f3667", + "url": "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2-sources.jar" }, { - "coord": "org.sangria-graphql:sangria-core_2.13:3.4.0", + "coord": "org.reflections:reflections:0.9.12", "dependencies": [ - "org.parboiled:parboiled_2.13:2.4.0", - "org.sangria-graphql:macro-visit_2.13:0.2.0-RC1", - "org.sangria-graphql:sangria-ast_2.13:3.4.0", - "org.sangria-graphql:sangria-marshalling-api_2.13:1.0.8", - "org.sangria-graphql:sangria-parser_2.13:3.4.0", - "org.sangria-graphql:sangria-streaming-api_2.13:1.0.3", - "org.scala-lang:scala-library:2.13.8", - "org.scala-lang:scala-reflect:2.13.8" + "org.javassist:javassist:3.26.0-GA" ], "directDependencies": [ - "org.sangria-graphql:macro-visit_2.13:0.2.0-RC1", - "org.sangria-graphql:sangria-marshalling-api_2.13:1.0.8", - "org.sangria-graphql:sangria-parser_2.13:3.4.0", - "org.sangria-graphql:sangria-streaming-api_2.13:1.0.3", - "org.scala-lang:scala-library:2.13.8", - "org.scala-lang:scala-reflect:2.13.8" + "org.javassist:javassist:3.26.0-GA" ], - "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/sangria-core_2.13/3.4.0/sangria-core_2.13-3.4.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/reflections/reflections/0.9.12/reflections-0.9.12.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-core_2.13/3.4.0/sangria-core_2.13-3.4.0.jar" + "https://repo1.maven.org/maven2/org/reflections/reflections/0.9.12/reflections-0.9.12.jar" ], "packages": [ - "sangria", - "sangria.annotations", - "sangria.ast", - "sangria.execution", - "sangria.execution.batch", - "sangria.execution.deferred", - "sangria.introspection", - "sangria.macros", - "sangria.marshalling", - "sangria.renderer", - "sangria.schema", - "sangria.util", - "sangria.validation", - "sangria.validation.rules", - "sangria.validation.rules.overlappingfields" + "org.reflections", + "org.reflections.adapters", + "org.reflections.scanners", + "org.reflections.serializers", + "org.reflections.util", + "org.reflections.vfs" ], - "sha256": "dd1ca186ec52a63e265f77b10e32012a45fa01f8b0890ce8817166918f5f862a", - "url": "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-core_2.13/3.4.0/sangria-core_2.13-3.4.0.jar" + "sha256": "d168f58d32f2ae7ac5a8d5d9092adeee526c604b41125dcb45eea877960a99cf", + "url": "https://repo1.maven.org/maven2/org/reflections/reflections/0.9.12/reflections-0.9.12.jar" }, { - "coord": "org.sangria-graphql:sangria-core_2.13:jar:sources:3.4.0", + "coord": "org.reflections:reflections:jar:sources:0.9.12", "dependencies": [ - "org.parboiled:parboiled_2.13:jar:sources:2.4.0", - "org.sangria-graphql:macro-visit_2.13:jar:sources:0.2.0-RC1", - "org.sangria-graphql:sangria-ast_2.13:jar:sources:3.4.0", - "org.sangria-graphql:sangria-marshalling-api_2.13:jar:sources:1.0.8", - "org.sangria-graphql:sangria-parser_2.13:jar:sources:3.4.0", - "org.sangria-graphql:sangria-streaming-api_2.13:jar:sources:1.0.3", - "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.scala-lang:scala-reflect:jar:sources:2.13.8" + "org.javassist:javassist:jar:sources:3.26.0-GA" ], "directDependencies": [ - "org.sangria-graphql:macro-visit_2.13:jar:sources:0.2.0-RC1", - "org.sangria-graphql:sangria-marshalling-api_2.13:jar:sources:1.0.8", - "org.sangria-graphql:sangria-parser_2.13:jar:sources:3.4.0", - "org.sangria-graphql:sangria-streaming-api_2.13:jar:sources:1.0.3", - "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.scala-lang:scala-reflect:jar:sources:2.13.8" + "org.javassist:javassist:jar:sources:3.26.0-GA" ], - "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/sangria-core_2.13/3.4.0/sangria-core_2.13-3.4.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/reflections/reflections/0.9.12/reflections-0.9.12-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-core_2.13/3.4.0/sangria-core_2.13-3.4.0-sources.jar" + "https://repo1.maven.org/maven2/org/reflections/reflections/0.9.12/reflections-0.9.12-sources.jar" ], "packages": [], - "sha256": "575f7171ff99bd8b5ce3ac87f60f207c9d0c0ddf26affca9d8225eba20790eb4", - "url": "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-core_2.13/3.4.0/sangria-core_2.13-3.4.0-sources.jar" + "sha256": "2128daae26594a3fa006b93048cc0f9d19a3c6f42de4f96274fc04623a866c16", + "url": "https://repo1.maven.org/maven2/org/reflections/reflections/0.9.12/reflections-0.9.12-sources.jar" }, { - "coord": "org.sangria-graphql:sangria-derivation_2.13:3.4.0", + "coord": "org.sangria-graphql:macro-visit_2.13:0.1.2", "dependencies": [ - "org.parboiled:parboiled_2.13:2.4.0", - "org.sangria-graphql:macro-visit_2.13:0.2.0-RC1", - "org.sangria-graphql:sangria-ast_2.13:3.4.0", - "org.sangria-graphql:sangria-core_2.13:3.4.0", - "org.sangria-graphql:sangria-marshalling-api_2.13:1.0.8", - "org.sangria-graphql:sangria-parser_2.13:3.4.0", - "org.sangria-graphql:sangria-streaming-api_2.13:1.0.3", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8" ], "directDependencies": [ - "org.sangria-graphql:sangria-core_2.13:3.4.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/sangria-derivation_2.13/3.4.0/sangria-derivation_2.13-3.4.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/macro-visit_2.13/0.1.2/macro-visit_2.13-0.1.2.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-derivation_2.13/3.4.0/sangria-derivation_2.13-3.4.0.jar" + "https://repo1.maven.org/maven2/org/sangria-graphql/macro-visit_2.13/0.1.2/macro-visit_2.13-0.1.2.jar" ], "packages": [ - "sangria.macros.derive" + "sangria.visitor" ], - "sha256": "52d7b3054658ac7c382192e0f6212a2489cc6a6966ee613edd222fb653d854a5", - "url": "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-derivation_2.13/3.4.0/sangria-derivation_2.13-3.4.0.jar" + "sha256": "4ab7e3c2162cbdc8bbec17388b900681f4b6192662e8f4179042b563c1d2cff8", + "url": "https://repo1.maven.org/maven2/org/sangria-graphql/macro-visit_2.13/0.1.2/macro-visit_2.13-0.1.2.jar" }, { - "coord": "org.sangria-graphql:sangria-derivation_2.13:jar:sources:3.4.0", + "coord": "org.sangria-graphql:macro-visit_2.13:jar:sources:0.1.2", "dependencies": [ - "org.parboiled:parboiled_2.13:jar:sources:2.4.0", - "org.sangria-graphql:macro-visit_2.13:jar:sources:0.2.0-RC1", - "org.sangria-graphql:sangria-ast_2.13:jar:sources:3.4.0", - "org.sangria-graphql:sangria-core_2.13:jar:sources:3.4.0", - "org.sangria-graphql:sangria-marshalling-api_2.13:jar:sources:1.0.8", - "org.sangria-graphql:sangria-parser_2.13:jar:sources:3.4.0", - "org.sangria-graphql:sangria-streaming-api_2.13:jar:sources:1.0.3", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8" ], "directDependencies": [ - "org.sangria-graphql:sangria-core_2.13:jar:sources:3.4.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/sangria-derivation_2.13/3.4.0/sangria-derivation_2.13-3.4.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/macro-visit_2.13/0.1.2/macro-visit_2.13-0.1.2-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-derivation_2.13/3.4.0/sangria-derivation_2.13-3.4.0-sources.jar" + "https://repo1.maven.org/maven2/org/sangria-graphql/macro-visit_2.13/0.1.2/macro-visit_2.13-0.1.2-sources.jar" ], "packages": [], - "sha256": "8a5a8deefb3c81f084a4821c39a3c114c3e102a09256176fba0d2bbf9d42813d", - "url": "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-derivation_2.13/3.4.0/sangria-derivation_2.13-3.4.0-sources.jar" + "sha256": "30b4ce9dfe92949c28148305c29ab4ba7f47345bcd4c1bfb96f35a513c9987b6", + "url": "https://repo1.maven.org/maven2/org/sangria-graphql/macro-visit_2.13/0.1.2/macro-visit_2.13-0.1.2-sources.jar" }, { - "coord": "org.sangria-graphql:sangria-marshalling-api_2.13:1.0.8", + "coord": "org.sangria-graphql:sangria-marshalling-api_2.13:1.0.4", "dependencies": [ "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/sangria-marshalling-api_2.13/1.0.8/sangria-marshalling-api_2.13-1.0.8.jar", + "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/sangria-marshalling-api_2.13/1.0.4/sangria-marshalling-api_2.13-1.0.4.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-marshalling-api_2.13/1.0.8/sangria-marshalling-api_2.13-1.0.8.jar" + "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-marshalling-api_2.13/1.0.4/sangria-marshalling-api_2.13-1.0.4.jar" ], "packages": [ "sangria.marshalling", "sangria.util" ], - "sha256": "97a4f0453136353679c6185d82a6702e83b316a5e2acee676c249fa141969b5e", - "url": "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-marshalling-api_2.13/1.0.8/sangria-marshalling-api_2.13-1.0.8.jar" + "sha256": "a5c8948dbb702bdd0fe7a79c5bdb7f5a544522271ee53144cad4230cec3f1062", + "url": "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-marshalling-api_2.13/1.0.4/sangria-marshalling-api_2.13-1.0.4.jar" }, { - "coord": "org.sangria-graphql:sangria-marshalling-api_2.13:jar:sources:1.0.8", + "coord": "org.sangria-graphql:sangria-marshalling-api_2.13:jar:sources:1.0.4", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/sangria-marshalling-api_2.13/1.0.8/sangria-marshalling-api_2.13-1.0.8-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/sangria-marshalling-api_2.13/1.0.4/sangria-marshalling-api_2.13-1.0.4-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-marshalling-api_2.13/1.0.8/sangria-marshalling-api_2.13-1.0.8-sources.jar" + "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-marshalling-api_2.13/1.0.4/sangria-marshalling-api_2.13-1.0.4-sources.jar" ], "packages": [], - "sha256": "670e2aeeea882a6b8f88e0fde3e38f1f6b199ccf3fd3e7695875496a30a6be3a", - "url": "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-marshalling-api_2.13/1.0.8/sangria-marshalling-api_2.13-1.0.8-sources.jar" + "sha256": "009c5a5e2a753d88e0f3722518b52e1b68cfb2799f86bc41797a372fa29756be", + "url": "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-marshalling-api_2.13/1.0.4/sangria-marshalling-api_2.13-1.0.4-sources.jar" }, { - "coord": "org.sangria-graphql:sangria-parser_2.13:3.4.0", + "coord": "org.sangria-graphql:sangria-spray-json_2.13:1.0.2", "dependencies": [ - "org.parboiled:parboiled_2.13:2.4.0", - "org.sangria-graphql:sangria-ast_2.13:3.4.0", + "io.spray:spray-json_2.13:1.3.5", + "org.sangria-graphql:sangria-marshalling-api_2.13:1.0.4", "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ - "org.parboiled:parboiled_2.13:2.4.0", - "org.sangria-graphql:sangria-ast_2.13:3.4.0", + "io.spray:spray-json_2.13:1.3.5", + "org.sangria-graphql:sangria-marshalling-api_2.13:1.0.4", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/sangria-parser_2.13/3.4.0/sangria-parser_2.13-3.4.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/sangria-spray-json_2.13/1.0.2/sangria-spray-json_2.13-1.0.2.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-parser_2.13/3.4.0/sangria-parser_2.13-3.4.0.jar" + "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-spray-json_2.13/1.0.2/sangria-spray-json_2.13-1.0.2.jar" ], "packages": [ - "sangria.parser" + "sangria.marshalling" ], - "sha256": "016bd7d35f8be1dab499276f6d1e5d9e38b1cd6fbf3b973d49cd55d54dbedc79", - "url": "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-parser_2.13/3.4.0/sangria-parser_2.13-3.4.0.jar" + "sha256": "36e94fc9aa6aa4f2eb778d6be1bd7f4d7f81f3f639cb56dc9bcf80a85c652f8c", + "url": "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-spray-json_2.13/1.0.2/sangria-spray-json_2.13-1.0.2.jar" }, { - "coord": "org.sangria-graphql:sangria-parser_2.13:jar:sources:3.4.0", + "coord": "org.sangria-graphql:sangria-spray-json_2.13:jar:sources:1.0.2", "dependencies": [ - "org.parboiled:parboiled_2.13:jar:sources:2.4.0", - "org.sangria-graphql:sangria-ast_2.13:jar:sources:3.4.0", + "io.spray:spray-json_2.13:jar:sources:1.3.5", + "org.sangria-graphql:sangria-marshalling-api_2.13:jar:sources:1.0.4", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ - "org.parboiled:parboiled_2.13:jar:sources:2.4.0", - "org.sangria-graphql:sangria-ast_2.13:jar:sources:3.4.0", + "io.spray:spray-json_2.13:jar:sources:1.3.5", + "org.sangria-graphql:sangria-marshalling-api_2.13:jar:sources:1.0.4", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/sangria-parser_2.13/3.4.0/sangria-parser_2.13-3.4.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/sangria-spray-json_2.13/1.0.2/sangria-spray-json_2.13-1.0.2-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-parser_2.13/3.4.0/sangria-parser_2.13-3.4.0-sources.jar" + "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-spray-json_2.13/1.0.2/sangria-spray-json_2.13-1.0.2-sources.jar" ], "packages": [], - "sha256": "323610e2bd55534353ceda28140f2abbd6dbf5b1d43413b7c6c613514da6224d", - "url": "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-parser_2.13/3.4.0/sangria-parser_2.13-3.4.0-sources.jar" + "sha256": "5de87880e1bf10ba60e46f18b08b11269e153384dfdfdaeed785a50960390162", + "url": "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-spray-json_2.13/1.0.2/sangria-spray-json_2.13-1.0.2-sources.jar" }, { - "coord": "org.sangria-graphql:sangria-spray-json_2.13:1.0.3", + "coord": "org.sangria-graphql:sangria-streaming-api_2.13:1.0.1", "dependencies": [ - "io.spray:spray-json_2.13:1.3.6", - "org.sangria-graphql:sangria-marshalling-api_2.13:1.0.8", "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ - "io.spray:spray-json_2.13:1.3.6", - "org.sangria-graphql:sangria-marshalling-api_2.13:1.0.8", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/sangria-spray-json_2.13/1.0.3/sangria-spray-json_2.13-1.0.3.jar", + "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/sangria-streaming-api_2.13/1.0.1/sangria-streaming-api_2.13-1.0.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-spray-json_2.13/1.0.3/sangria-spray-json_2.13-1.0.3.jar" + "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-streaming-api_2.13/1.0.1/sangria-streaming-api_2.13-1.0.1.jar" ], "packages": [ - "sangria.marshalling" + "sangria.streaming" ], - "sha256": "952a2d905247b9c98359bbb985d7ac01b3507db5ca2f97fce8d164b7d956a036", - "url": "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-spray-json_2.13/1.0.3/sangria-spray-json_2.13-1.0.3.jar" + "sha256": "6971329c4a58a3db11fdded9514326c0717fff5844e0c678c48ad0c8d590311f", + "url": "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-streaming-api_2.13/1.0.1/sangria-streaming-api_2.13-1.0.1.jar" }, { - "coord": "org.sangria-graphql:sangria-spray-json_2.13:jar:sources:1.0.3", + "coord": "org.sangria-graphql:sangria-streaming-api_2.13:jar:sources:1.0.1", "dependencies": [ - "io.spray:spray-json_2.13:jar:sources:1.3.6", - "org.sangria-graphql:sangria-marshalling-api_2.13:jar:sources:1.0.8", "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ - "io.spray:spray-json_2.13:jar:sources:1.3.6", - "org.sangria-graphql:sangria-marshalling-api_2.13:jar:sources:1.0.8", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/sangria-spray-json_2.13/1.0.3/sangria-spray-json_2.13-1.0.3-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/sangria-streaming-api_2.13/1.0.1/sangria-streaming-api_2.13-1.0.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-spray-json_2.13/1.0.3/sangria-spray-json_2.13-1.0.3-sources.jar" + "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-streaming-api_2.13/1.0.1/sangria-streaming-api_2.13-1.0.1-sources.jar" ], "packages": [], - "sha256": "5eefd18860ee466684d244a61d6323a9f7b5a9a05353966a2143e9c71dc993ee", - "url": "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-spray-json_2.13/1.0.3/sangria-spray-json_2.13-1.0.3-sources.jar" + "sha256": "3b39946f6e2932beb3cd344ed8009283380d0dca0d3fb7b05612d55abf26d039", + "url": "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-streaming-api_2.13/1.0.1/sangria-streaming-api_2.13-1.0.1-sources.jar" }, { - "coord": "org.sangria-graphql:sangria-streaming-api_2.13:1.0.3", + "coord": "org.sangria-graphql:sangria_2.13:2.0.1", "dependencies": [ - "org.scala-lang:scala-library:2.13.8" + "com.chuusai:shapeless_2.13:2.3.3", + "org.parboiled:parboiled_2.13:2.1.8", + "org.sangria-graphql:macro-visit_2.13:0.1.2", + "org.sangria-graphql:sangria-marshalling-api_2.13:1.0.4", + "org.sangria-graphql:sangria-streaming-api_2.13:1.0.1", + "org.scala-lang:scala-library:2.13.8", + "org.scala-lang:scala-reflect:2.13.8" ], "directDependencies": [ - "org.scala-lang:scala-library:2.13.8" + "org.parboiled:parboiled_2.13:2.1.8", + "org.sangria-graphql:macro-visit_2.13:0.1.2", + "org.sangria-graphql:sangria-marshalling-api_2.13:1.0.4", + "org.sangria-graphql:sangria-streaming-api_2.13:1.0.1", + "org.scala-lang:scala-library:2.13.8", + "org.scala-lang:scala-reflect:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/sangria-streaming-api_2.13/1.0.3/sangria-streaming-api_2.13-1.0.3.jar", + "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/sangria_2.13/2.0.1/sangria_2.13-2.0.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-streaming-api_2.13/1.0.3/sangria-streaming-api_2.13-1.0.3.jar" + "https://repo1.maven.org/maven2/org/sangria-graphql/sangria_2.13/2.0.1/sangria_2.13-2.0.1.jar" ], "packages": [ - "sangria.streaming" + "sangria.annotations", + "sangria.ast", + "sangria.execution", + "sangria.execution.batch", + "sangria.execution.deferred", + "sangria.introspection", + "sangria.macros", + "sangria.macros.derive", + "sangria.marshalling", + "sangria.parser", + "sangria.renderer", + "sangria.schema", + "sangria.util", + "sangria.validation", + "sangria.validation.rules", + "sangria.validation.rules.experimental", + "sangria.validation.rules.experimental.overlappingfields" ], - "sha256": "a6653bf803e3238029fdac6cc86ae79b34dc46f575fb4f36030279ed4cab26e3", - "url": "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-streaming-api_2.13/1.0.3/sangria-streaming-api_2.13-1.0.3.jar" + "sha256": "9f974f32cbccd8e0551baa78004fc0db1bd131c316b4428192cc20563569f1be", + "url": "https://repo1.maven.org/maven2/org/sangria-graphql/sangria_2.13/2.0.1/sangria_2.13-2.0.1.jar" }, { - "coord": "org.sangria-graphql:sangria-streaming-api_2.13:jar:sources:1.0.3", + "coord": "org.sangria-graphql:sangria_2.13:jar:sources:2.0.1", "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.8" + "com.chuusai:shapeless_2.13:jar:sources:2.3.3", + "org.parboiled:parboiled_2.13:jar:sources:2.1.8", + "org.sangria-graphql:macro-visit_2.13:jar:sources:0.1.2", + "org.sangria-graphql:sangria-marshalling-api_2.13:jar:sources:1.0.4", + "org.sangria-graphql:sangria-streaming-api_2.13:jar:sources:1.0.1", + "org.scala-lang:scala-library:jar:sources:2.13.8", + "org.scala-lang:scala-reflect:jar:sources:2.13.8" ], "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.8" + "org.parboiled:parboiled_2.13:jar:sources:2.1.8", + "org.sangria-graphql:macro-visit_2.13:jar:sources:0.1.2", + "org.sangria-graphql:sangria-marshalling-api_2.13:jar:sources:1.0.4", + "org.sangria-graphql:sangria-streaming-api_2.13:jar:sources:1.0.1", + "org.scala-lang:scala-library:jar:sources:2.13.8", + "org.scala-lang:scala-reflect:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/sangria-streaming-api_2.13/1.0.3/sangria-streaming-api_2.13-1.0.3-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/sangria-graphql/sangria_2.13/2.0.1/sangria_2.13-2.0.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-streaming-api_2.13/1.0.3/sangria-streaming-api_2.13-1.0.3-sources.jar" + "https://repo1.maven.org/maven2/org/sangria-graphql/sangria_2.13/2.0.1/sangria_2.13-2.0.1-sources.jar" ], "packages": [], - "sha256": "44c26fdda36dd26e4989480fa71d79f046c9345ecbd1f622b1a3a077c881d269", - "url": "https://repo1.maven.org/maven2/org/sangria-graphql/sangria-streaming-api_2.13/1.0.3/sangria-streaming-api_2.13-1.0.3-sources.jar" + "sha256": "0d47479e465b4f759927b3c5ef34f453536c9b255b61ddb7f1e75260abc95bc3", + "url": "https://repo1.maven.org/maven2/org/sangria-graphql/sangria_2.13/2.0.1/sangria_2.13-2.0.1-sources.jar" }, { - "coord": "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0", + "coord": "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", "dependencies": [ "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.7.0/scala-collection-compat_2.13-2.7.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.6.0/scala-collection-compat_2.13-2.6.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.7.0/scala-collection-compat_2.13-2.7.0.jar" + "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.6.0/scala-collection-compat_2.13-2.6.0.jar" ], "packages": [ "scala.collection.compat", "scala.collection.compat.immutable", "scala.util.control.compat" ], - "sha256": "936510670822c634f34ef793ef937a75e220f28824e591b220867c2f14943ad6", - "url": "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.7.0/scala-collection-compat_2.13-2.7.0.jar" + "sha256": "7358248dc7c58b118e4d830f4128a6e72773cb0048587182c3db3414a4177b44", + "url": "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.6.0/scala-collection-compat_2.13-2.6.0.jar" }, { - "coord": "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0", + "coord": "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.7.0/scala-collection-compat_2.13-2.7.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.6.0/scala-collection-compat_2.13-2.6.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.7.0/scala-collection-compat_2.13-2.7.0-sources.jar" + "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.6.0/scala-collection-compat_2.13-2.6.0-sources.jar" ], "packages": [], - "sha256": "e40e976633cc2862ceb5bb95d4baa06fa0ed2ed0b4809ef5b207268f93df21a0", - "url": "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.7.0/scala-collection-compat_2.13-2.7.0-sources.jar" + "sha256": "7c1168b952f74a75da10001d032f298ae249d8b486c61d609511dd1ae041cbad", + "url": "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.6.0/scala-collection-compat_2.13-2.6.0-sources.jar" }, { "coord": "org.scala-lang.modules:scala-java8-compat_2.13:1.0.0", @@ -15968,16 +13237,16 @@ "url": "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-java8-compat_2.13/1.0.0/scala-java8-compat_2.13-1.0.0-sources.jar" }, { - "coord": "org.scala-lang.modules:scala-parallel-collections_2.13:1.0.4", + "coord": "org.scala-lang.modules:scala-parallel-collections_2.13:1.0.0", "dependencies": [ "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/1.0.4/scala-parallel-collections_2.13-1.0.4.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/1.0.0/scala-parallel-collections_2.13-1.0.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/1.0.4/scala-parallel-collections_2.13-1.0.4.jar" + "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/1.0.0/scala-parallel-collections_2.13-1.0.0.jar" ], "packages": [ "scala.collection", @@ -15988,62 +13257,63 @@ "scala.collection.parallel.immutable", "scala.collection.parallel.mutable" ], - "sha256": "68f266c4fa37cb20a76e905ad940e241190ce288b7e4a9877f1dd1261cd1a9a7", - "url": "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/1.0.4/scala-parallel-collections_2.13-1.0.4.jar" + "sha256": "fc08be49e91db44d7fe5c1ff95a322ad4500805a525cc2c4b1b91693f041c8e4", + "url": "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/1.0.0/scala-parallel-collections_2.13-1.0.0.jar" }, { - "coord": "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:1.0.4", + "coord": "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:1.0.0", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/1.0.4/scala-parallel-collections_2.13-1.0.4-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/1.0.0/scala-parallel-collections_2.13-1.0.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/1.0.4/scala-parallel-collections_2.13-1.0.4-sources.jar" + "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/1.0.0/scala-parallel-collections_2.13-1.0.0-sources.jar" ], "packages": [], - "sha256": "7f190cd21b0a2de3e0509920b5d548174c2c4a791108b854673ea40f3ea331d2", - "url": "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/1.0.4/scala-parallel-collections_2.13-1.0.4-sources.jar" + "sha256": "b3f1272481c4f76d3ad1093bc9c88161a40bfc2a202345c8009569b5381992e6", + "url": "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/1.0.0/scala-parallel-collections_2.13-1.0.0-sources.jar" }, { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.13:2.1.1", + "coord": "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "dependencies": [ "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.1.1/scala-parser-combinators_2.13-2.1.1.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.1.1/scala-parser-combinators_2.13-2.1.1.jar" + "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2.jar" ], "packages": [ "scala.util.parsing.combinator", "scala.util.parsing.combinator.lexical", "scala.util.parsing.combinator.syntactical", "scala.util.parsing.combinator.token", - "scala.util.parsing.input" + "scala.util.parsing.input", + "scala.util.parsing.json" ], - "sha256": "8d4f17587cc87b2e176f50d56d5e3b348bac55b8ca2fb6ce92b3a04b22bd82cd", - "url": "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.1.1/scala-parser-combinators_2.13-2.1.1.jar" + "sha256": "5c285b72e6dc0a98e99ae0a1ceeb4027dab9adfa441844046bd3f19e0efdcb54", + "url": "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2.jar" }, { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.1.1", + "coord": "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.1.1/scala-parser-combinators_2.13-2.1.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.1.1/scala-parser-combinators_2.13-2.1.1-sources.jar" + "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2-sources.jar" ], "packages": [], - "sha256": "9a60bdb5512f2e74d87a3cd907b2bdde1520ba279ff6361e6428f570ec151629", - "url": "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.1.1/scala-parser-combinators_2.13-2.1.1-sources.jar" + "sha256": "a5cdd33bc2dcd8917e4fea30d31ea19d0d70cc5f6951c5a913428930ced8391a", + "url": "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2-sources.jar" }, { "coord": "org.scala-lang.modules:scala-swing_2.13:3.0.0", @@ -16127,13 +13397,13 @@ "coord": "org.scala-lang:scala-compiler:2.13.8", "dependencies": [ "net.java.dev.jna:jna:5.9.0", - "org.jline:jline:3.21.0", + "org.jline:jline:3.7.1", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8" ], "directDependencies": [ "net.java.dev.jna:jna:5.9.0", - "org.jline:jline:3.21.0", + "org.jline:jline:3.7.1", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8" ], @@ -16210,13 +13480,13 @@ "coord": "org.scala-lang:scala-compiler:jar:sources:2.13.8", "dependencies": [ "net.java.dev.jna:jna:jar:sources:5.9.0", - "org.jline:jline:jar:sources:3.21.0", + "org.jline:jline:jar:sources:3.7.1", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8" ], "directDependencies": [ "net.java.dev.jna:jna:jar:sources:5.9.0", - "org.jline:jline:jar:sources:3.21.0", + "org.jline:jline:jar:sources:3.7.1", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8" ], @@ -16400,7 +13670,7 @@ "url": "https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.13/1.15.4/scalacheck_2.13-1.15.4-sources.jar" }, { - "coord": "org.scalactic:scalactic_2.13:3.2.10", + "coord": "org.scalactic:scalactic_2.13:3.2.9", "dependencies": [ "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8" @@ -16409,9 +13679,9 @@ "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalactic/scalactic_2.13/3.2.10/scalactic_2.13-3.2.10.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalactic/scalactic_2.13/3.2.10/scalactic_2.13-3.2.10.jar" + "https://repo1.maven.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9.jar" ], "packages": [ "org.scalactic", @@ -16419,11 +13689,11 @@ "org.scalactic.exceptions", "org.scalactic.source" ], - "sha256": "73a094a12ad95e2aff2b4861e1b8dcf78a724e3979ee3eb9bafdab878c79199e", - "url": "https://repo1.maven.org/maven2/org/scalactic/scalactic_2.13/3.2.10/scalactic_2.13-3.2.10.jar" + "sha256": "dcb853409202fee6f8e7216b363aab5b68edc07a51d27b61d5bf3fdf4418c9da", + "url": "https://repo1.maven.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9.jar" }, { - "coord": "org.scalactic:scalactic_2.13:jar:sources:3.2.10", + "coord": "org.scalactic:scalactic_2.13:jar:sources:3.2.9", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8" @@ -16432,71 +13702,68 @@ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalactic/scalactic_2.13/3.2.10/scalactic_2.13-3.2.10-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalactic/scalactic_2.13/3.2.10/scalactic_2.13-3.2.10-sources.jar" + "https://repo1.maven.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9-sources.jar" ], "packages": [], - "sha256": "ff09325756b05a23785ada69a4b5c2fc630d7308609e52bd6dfad356b47d7b09", - "url": "https://repo1.maven.org/maven2/org/scalactic/scalactic_2.13/3.2.10/scalactic_2.13-3.2.10-sources.jar" + "sha256": "c721a35914b328e30c2773de52b2e16a5565c136b4cec1692e6668e5c75d98b7", + "url": "https://repo1.maven.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9-sources.jar" }, { - "coord": "org.scalameta:junit-interface:0.7.29", + "coord": "org.scalameta:junit-interface:0.7.26", "dependencies": [ - "junit:junit:4.13.2", - "org.hamcrest:hamcrest-core:1.3", + "junit:junit:4.12", "org.scala-sbt:test-interface:1.0" ], "directDependencies": [ - "junit:junit:4.13.2", + "junit:junit:4.12", "org.scala-sbt:test-interface:1.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalameta/junit-interface/0.7.29/junit-interface-0.7.29.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalameta/junit-interface/0.7.26/junit-interface-0.7.26.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalameta/junit-interface/0.7.29/junit-interface-0.7.29.jar" + "https://repo1.maven.org/maven2/org/scalameta/junit-interface/0.7.26/junit-interface-0.7.26.jar" ], "packages": [ "munit.internal.junitinterface" ], - "sha256": "6854812008a16978b8498428748b7afb64a2c604b57c06c86040ea767c84dec4", - "url": "https://repo1.maven.org/maven2/org/scalameta/junit-interface/0.7.29/junit-interface-0.7.29.jar" + "sha256": "84f85aa90c32d30115a850d040b6249efe161a15b2f784d1376918a2bf7426ca", + "url": "https://repo1.maven.org/maven2/org/scalameta/junit-interface/0.7.26/junit-interface-0.7.26.jar" }, { - "coord": "org.scalameta:junit-interface:jar:sources:0.7.29", + "coord": "org.scalameta:junit-interface:jar:sources:0.7.26", "dependencies": [ - "junit:junit:jar:sources:4.13.2", - "org.hamcrest:hamcrest-core:jar:sources:1.3", + "junit:junit:jar:sources:4.12", "org.scala-sbt:test-interface:jar:sources:1.0" ], "directDependencies": [ - "junit:junit:jar:sources:4.13.2", + "junit:junit:jar:sources:4.12", "org.scala-sbt:test-interface:jar:sources:1.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalameta/junit-interface/0.7.29/junit-interface-0.7.29-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalameta/junit-interface/0.7.26/junit-interface-0.7.26-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalameta/junit-interface/0.7.29/junit-interface-0.7.29-sources.jar" + "https://repo1.maven.org/maven2/org/scalameta/junit-interface/0.7.26/junit-interface-0.7.26-sources.jar" ], "packages": [], - "sha256": "8a500de3d742879ef44e766554e682ae492f73d5d5ef4726117e068ce4f67b90", - "url": "https://repo1.maven.org/maven2/org/scalameta/junit-interface/0.7.29/junit-interface-0.7.29-sources.jar" + "sha256": "56b90c50f614b16ba51013bb9de45b192867e6a8f8992c9d9cf6efd6a6777fda", + "url": "https://repo1.maven.org/maven2/org/scalameta/junit-interface/0.7.26/junit-interface-0.7.26-sources.jar" }, { - "coord": "org.scalameta:munit_2.13:0.7.29", + "coord": "org.scalameta:munit_2.13:0.7.26", "dependencies": [ - "junit:junit:4.13.2", - "org.hamcrest:hamcrest-core:1.3", + "junit:junit:4.12", "org.scala-lang:scala-library:2.13.8", "org.scala-sbt:test-interface:1.0", - "org.scalameta:junit-interface:0.7.29" + "org.scalameta:junit-interface:0.7.26" ], "directDependencies": [ - "junit:junit:4.13.2", + "junit:junit:4.12", "org.scala-lang:scala-library:2.13.8", - "org.scalameta:junit-interface:0.7.29" + "org.scalameta:junit-interface:0.7.26" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalameta/munit_2.13/0.7.29/munit_2.13-0.7.29.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalameta/munit_2.13/0.7.26/munit_2.13-0.7.26.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalameta/munit_2.13/0.7.29/munit_2.13-0.7.29.jar" + "https://repo1.maven.org/maven2/org/scalameta/munit_2.13/0.7.26/munit_2.13-0.7.26.jar" ], "packages": [ "munit", @@ -16504,76 +13771,75 @@ "munit.internal.console", "munit.internal.difflib" ], - "sha256": "21144cdf7d4d7727d494df77fd5f858c8ad01ab89bed4a2815ef9d11f9e3748d", - "url": "https://repo1.maven.org/maven2/org/scalameta/munit_2.13/0.7.29/munit_2.13-0.7.29.jar" + "sha256": "0b83c9a932941d18ac8131a1c9fbb398915816033247bf7b1506b58fd2f3726c", + "url": "https://repo1.maven.org/maven2/org/scalameta/munit_2.13/0.7.26/munit_2.13-0.7.26.jar" }, { - "coord": "org.scalameta:munit_2.13:jar:sources:0.7.29", + "coord": "org.scalameta:munit_2.13:jar:sources:0.7.26", "dependencies": [ - "junit:junit:jar:sources:4.13.2", - "org.hamcrest:hamcrest-core:jar:sources:1.3", + "junit:junit:jar:sources:4.12", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-sbt:test-interface:jar:sources:1.0", - "org.scalameta:junit-interface:jar:sources:0.7.29" + "org.scalameta:junit-interface:jar:sources:0.7.26" ], "directDependencies": [ - "junit:junit:jar:sources:4.13.2", + "junit:junit:jar:sources:4.12", "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.scalameta:junit-interface:jar:sources:0.7.29" + "org.scalameta:junit-interface:jar:sources:0.7.26" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalameta/munit_2.13/0.7.29/munit_2.13-0.7.29-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalameta/munit_2.13/0.7.26/munit_2.13-0.7.26-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalameta/munit_2.13/0.7.29/munit_2.13-0.7.29-sources.jar" + "https://repo1.maven.org/maven2/org/scalameta/munit_2.13/0.7.26/munit_2.13-0.7.26-sources.jar" ], "packages": [], - "sha256": "3d44e67629ef8304528b04ea66b665689cff378090f330db8ef2b7e57d9a4b42", - "url": "https://repo1.maven.org/maven2/org/scalameta/munit_2.13/0.7.29/munit_2.13-0.7.29-sources.jar" + "sha256": "351104b4b482b426ad1526f7e126d1ab27bae0055b5c1ed671c7f88a818f33e9", + "url": "https://repo1.maven.org/maven2/org/scalameta/munit_2.13/0.7.26/munit_2.13-0.7.26-sources.jar" }, { - "coord": "org.scalatest:scalatest-compatible:3.2.10", + "coord": "org.scalatest:scalatest-compatible:3.2.9", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.10/scalatest-compatible-3.2.10.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.10/scalatest-compatible-3.2.10.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar" ], "packages": [ "org.scalatest.compatible" ], - "sha256": "fbc803990b400f41f48fb64d169a66eb5645a667e05a6d73d835a8cbe6c31c06", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.10/scalatest-compatible-3.2.10.jar" + "sha256": "7e5f1193af2fd88c432c4b80ce3641e4b1d062f421d8a0fcc43af9a19bb7c2eb", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar" }, { - "coord": "org.scalatest:scalatest-compatible:jar:sources:3.2.10", + "coord": "org.scalatest:scalatest-compatible:jar:sources:3.2.9", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.10/scalatest-compatible-3.2.10-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.10/scalatest-compatible-3.2.10-sources.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar" ], "packages": [], - "sha256": "2b5ec27a37de6b96715cf7e5e10caab520f064aa89a88ae94db0fd55f3ead9bb", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.10/scalatest-compatible-3.2.10-sources.jar" + "sha256": "2d2d8645e812f6acae111ea36f6f53a970692e8927a2846886a024286538217d", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar" }, { - "coord": "org.scalatest:scalatest-core_2.13:3.2.10", + "coord": "org.scalatest:scalatest-core_2.13:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:1.3.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalactic:scalactic_2.13:3.2.10", - "org.scalatest:scalatest-compatible:3.2.10" + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9" ], "directDependencies": [ "org.scala-lang.modules:scala-xml_2.13:1.3.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalactic:scalactic_2.13:3.2.10", - "org.scalatest:scalatest-compatible:3.2.10" + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-core_2.13/3.2.10/scalatest-core_2.13-3.2.10.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-core_2.13/3.2.10/scalatest-core_2.13-3.2.10.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9.jar" ], "packages": [ "org.scalatest", @@ -16589,789 +13855,801 @@ "org.scalatest.tools", "org.scalatest.verbs" ], - "sha256": "b760c723768346792d7a041b9bdf3f61b58bef34f996ebe1b7f1318d8da1ea96", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-core_2.13/3.2.10/scalatest-core_2.13-3.2.10.jar" + "sha256": "b238f0e42edd471c8d066d25fa925d4c0cfae33b8db1ea79d14ff42047263e5d", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9.jar" }, { - "coord": "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10", + "coord": "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.3.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalactic:scalactic_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-compatible:jar:sources:3.2.10" + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9" ], "directDependencies": [ "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.3.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalactic:scalactic_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-compatible:jar:sources:3.2.10" + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-core_2.13/3.2.10/scalatest-core_2.13-3.2.10-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-core_2.13/3.2.10/scalatest-core_2.13-3.2.10-sources.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9-sources.jar" ], "packages": [], - "sha256": "627ad53eb7b333f00d7cf4767ed5d94e492ac89e8e907f196176734e1aee81f1", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-core_2.13/3.2.10/scalatest-core_2.13-3.2.10-sources.jar" + "sha256": "c1c1e7e939a43a59f1919c87b7574e6afb6911bce9ee54dc3a19e8c8a5074234", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9-sources.jar" }, { - "coord": "org.scalatest:scalatest-diagrams_2.13:3.2.10", + "coord": "org.scalatest:scalatest-diagrams_2.13:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:1.3.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalactic:scalactic_2.13:3.2.10", - "org.scalatest:scalatest-compatible:3.2.10", - "org.scalatest:scalatest-core_2.13:3.2.10" + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalatest:scalatest-core_2.13:3.2.10" + "org.scalatest:scalatest-core_2.13:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.10/scalatest-diagrams_2.13-3.2.10.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.10/scalatest-diagrams_2.13-3.2.10.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9.jar" ], "packages": [ "org.scalatest.diagrams" ], - "sha256": "a31d872c4e18cd4c2a0e1af0318c8b2f5837e28553cca88e95260b1d8fabd77b", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.10/scalatest-diagrams_2.13-3.2.10.jar" + "sha256": "803d4f2ce03b581ed5435a097a20882809dfe48b87ed232f13a98e718ceb731d", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9.jar" }, { - "coord": "org.scalatest:scalatest-diagrams_2.13:jar:sources:3.2.10", + "coord": "org.scalatest:scalatest-diagrams_2.13:jar:sources:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.3.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalactic:scalactic_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-compatible:jar:sources:3.2.10", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10" + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.10/scalatest-diagrams_2.13-3.2.10-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.10/scalatest-diagrams_2.13-3.2.10-sources.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9-sources.jar" ], "packages": [], - "sha256": "508e679d52b005f31553ce9a624e85cad942625676844448d4efcb22a854458b", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.10/scalatest-diagrams_2.13-3.2.10-sources.jar" + "sha256": "b6c5c8c1d658385a5508f495ad58bebae10623c5d04eb3c12ce08b80de9290e1", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9-sources.jar" }, { - "coord": "org.scalatest:scalatest-featurespec_2.13:3.2.10", + "coord": "org.scalatest:scalatest-featurespec_2.13:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:1.3.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalactic:scalactic_2.13:3.2.10", - "org.scalatest:scalatest-compatible:3.2.10", - "org.scalatest:scalatest-core_2.13:3.2.10" + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalatest:scalatest-core_2.13:3.2.10" + "org.scalatest:scalatest-core_2.13:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.10/scalatest-featurespec_2.13-3.2.10.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.10/scalatest-featurespec_2.13-3.2.10.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9.jar" ], "packages": [ "org.scalatest.featurespec" ], - "sha256": "04927c2a5507c4d64944be91ac2376f51600a35f805d054c68b4b6c46ff86f01", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.10/scalatest-featurespec_2.13-3.2.10.jar" + "sha256": "f8ec83a39554c1e44f6ef5e13d9b87bf8257067b0dad8ee6012fec36e318036d", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9.jar" }, { - "coord": "org.scalatest:scalatest-featurespec_2.13:jar:sources:3.2.10", + "coord": "org.scalatest:scalatest-featurespec_2.13:jar:sources:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.3.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalactic:scalactic_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-compatible:jar:sources:3.2.10", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10" + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.10/scalatest-featurespec_2.13-3.2.10-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.10/scalatest-featurespec_2.13-3.2.10-sources.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9-sources.jar" ], "packages": [], - "sha256": "71dcbe6e8d72b6957859850bf0d9d24fefc1ed6056b13f5b7179e92363f18e75", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.10/scalatest-featurespec_2.13-3.2.10-sources.jar" + "sha256": "1099311e9e617be58951e474e8bec1580cd027996c3330a5d236a7d5b527f7ef", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9-sources.jar" }, { - "coord": "org.scalatest:scalatest-flatspec_2.13:3.2.10", + "coord": "org.scalatest:scalatest-flatspec_2.13:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:1.3.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalactic:scalactic_2.13:3.2.10", - "org.scalatest:scalatest-compatible:3.2.10", - "org.scalatest:scalatest-core_2.13:3.2.10" + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalatest:scalatest-core_2.13:3.2.10" + "org.scalatest:scalatest-core_2.13:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.10/scalatest-flatspec_2.13-3.2.10.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.10/scalatest-flatspec_2.13-3.2.10.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9.jar" ], "packages": [ "org.scalatest.flatspec" ], - "sha256": "7657ee10a6e8b03e96835988438f1c0901968b089657cf124f57abdb7bc7c20c", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.10/scalatest-flatspec_2.13-3.2.10.jar" + "sha256": "6a1bc2f522105b4eda53c225f3d5cbdabbf3e9375136dde57a5b43846369f75a", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9.jar" }, { - "coord": "org.scalatest:scalatest-flatspec_2.13:jar:sources:3.2.10", + "coord": "org.scalatest:scalatest-flatspec_2.13:jar:sources:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.3.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalactic:scalactic_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-compatible:jar:sources:3.2.10", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10" + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.10/scalatest-flatspec_2.13-3.2.10-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.10/scalatest-flatspec_2.13-3.2.10-sources.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9-sources.jar" ], "packages": [], - "sha256": "96a5a3e84f770581e9da8c3d0b3522b87ce3aa8a72ebb2aad5b9213eac331042", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.10/scalatest-flatspec_2.13-3.2.10-sources.jar" + "sha256": "81ab486a9418c0584b21d23ebe356c3dc5304728303254cd3ce71dc46c9a83f4", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9-sources.jar" }, { - "coord": "org.scalatest:scalatest-freespec_2.13:3.2.10", + "coord": "org.scalatest:scalatest-freespec_2.13:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:1.3.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalactic:scalactic_2.13:3.2.10", - "org.scalatest:scalatest-compatible:3.2.10", - "org.scalatest:scalatest-core_2.13:3.2.10" + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalatest:scalatest-core_2.13:3.2.10" + "org.scalatest:scalatest-core_2.13:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.10/scalatest-freespec_2.13-3.2.10.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.10/scalatest-freespec_2.13-3.2.10.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9.jar" ], "packages": [ "org.scalatest.freespec" ], - "sha256": "822b3a9a1e2189b6a3e4a43f87b9627d446f764d3b86d0e93f21e0bf7fb3c229", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.10/scalatest-freespec_2.13-3.2.10.jar" + "sha256": "db3467bb0b34c1ca8d9830cf40179e2900ac01d5119f7a1b6bdcef30adb62214", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9.jar" }, { - "coord": "org.scalatest:scalatest-freespec_2.13:jar:sources:3.2.10", + "coord": "org.scalatest:scalatest-freespec_2.13:jar:sources:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.3.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalactic:scalactic_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-compatible:jar:sources:3.2.10", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10" + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.10/scalatest-freespec_2.13-3.2.10-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.10/scalatest-freespec_2.13-3.2.10-sources.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9-sources.jar" ], "packages": [], - "sha256": "1e346b00271c709c6e2247ef12ac2a277054f366f2bb0a636baaf7ee4072df4a", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.10/scalatest-freespec_2.13-3.2.10-sources.jar" + "sha256": "607f5aae82a6a342b14ba788188e6a0fbccea126e104370630e5513b976ebbf0", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9-sources.jar" }, { - "coord": "org.scalatest:scalatest-funspec_2.13:3.2.10", + "coord": "org.scalatest:scalatest-funspec_2.13:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:1.3.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalactic:scalactic_2.13:3.2.10", - "org.scalatest:scalatest-compatible:3.2.10", - "org.scalatest:scalatest-core_2.13:3.2.10" + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalatest:scalatest-core_2.13:3.2.10" + "org.scalatest:scalatest-core_2.13:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.10/scalatest-funspec_2.13-3.2.10.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.10/scalatest-funspec_2.13-3.2.10.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9.jar" ], "packages": [ "org.scalatest.funspec" ], - "sha256": "b77764eb1149d76ad6ba671d2d27140a35d1c6f2055e8c946fcc02ad7490e08d", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.10/scalatest-funspec_2.13-3.2.10.jar" + "sha256": "821d13ced0bf96d1470538cbcca3109694148f2637961e5c502639e16ab7eee9", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9.jar" }, { - "coord": "org.scalatest:scalatest-funspec_2.13:jar:sources:3.2.10", + "coord": "org.scalatest:scalatest-funspec_2.13:jar:sources:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.3.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalactic:scalactic_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-compatible:jar:sources:3.2.10", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10" + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.10/scalatest-funspec_2.13-3.2.10-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.10/scalatest-funspec_2.13-3.2.10-sources.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9-sources.jar" ], "packages": [], - "sha256": "17be6aaa79cc39473abe367b96355b0c08c8342e27820f51f79acd5981684b4b", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.10/scalatest-funspec_2.13-3.2.10-sources.jar" + "sha256": "04414a6d5ca438f72fcf35ac91ced9c4e382a1a090a77146c7ff6f4902cd7f3a", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9-sources.jar" }, { - "coord": "org.scalatest:scalatest-funsuite_2.13:3.2.10", + "coord": "org.scalatest:scalatest-funsuite_2.13:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:1.3.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalactic:scalactic_2.13:3.2.10", - "org.scalatest:scalatest-compatible:3.2.10", - "org.scalatest:scalatest-core_2.13:3.2.10" + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalatest:scalatest-core_2.13:3.2.10" + "org.scalatest:scalatest-core_2.13:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.10/scalatest-funsuite_2.13-3.2.10.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.10/scalatest-funsuite_2.13-3.2.10.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9.jar" ], "packages": [ "org.scalatest.funsuite" ], - "sha256": "e948d33c6526c0da3bf5cc9b0bb127dad76ce82d0edf1220b2c6b7cff23a5a69", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.10/scalatest-funsuite_2.13-3.2.10.jar" + "sha256": "d6455470fabc9f3a5a7a50770f6e1a4f4d0114122885637f3df684e5bb501f9d", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9.jar" }, { - "coord": "org.scalatest:scalatest-funsuite_2.13:jar:sources:3.2.10", + "coord": "org.scalatest:scalatest-funsuite_2.13:jar:sources:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.3.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalactic:scalactic_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-compatible:jar:sources:3.2.10", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10" + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.10/scalatest-funsuite_2.13-3.2.10-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.10/scalatest-funsuite_2.13-3.2.10-sources.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9-sources.jar" ], "packages": [], - "sha256": "088a0dd94710783da47cc4c354a18599759ca850493a522013d78177711db733", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.10/scalatest-funsuite_2.13-3.2.10-sources.jar" + "sha256": "8faa4e26f7f86e518fa1743e0ea1f87c298525408b9f02b0e8f4fd8e36f02711", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9-sources.jar" }, { - "coord": "org.scalatest:scalatest-matchers-core_2.13:3.2.10", + "coord": "org.scalatest:scalatest-matchers-core_2.13:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:1.3.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalactic:scalactic_2.13:3.2.10", - "org.scalatest:scalatest-compatible:3.2.10", - "org.scalatest:scalatest-core_2.13:3.2.10" + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalatest:scalatest-core_2.13:3.2.10" + "org.scalatest:scalatest-core_2.13:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.10/scalatest-matchers-core_2.13-3.2.10.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.10/scalatest-matchers-core_2.13-3.2.10.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9.jar" ], "packages": [ "org.scalatest.matchers", "org.scalatest.matchers.dsl" ], - "sha256": "6a23c628c711f257cc4f346429cacc463dd065f8b0039ad5f063cba0b6db8518", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.10/scalatest-matchers-core_2.13-3.2.10.jar" + "sha256": "b86ed6f0986d005f4d54af5effdb73a18fe5741533f6663631d17a0731b9616f", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9.jar" }, { - "coord": "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.10", + "coord": "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.3.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalactic:scalactic_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-compatible:jar:sources:3.2.10", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10" + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.10/scalatest-matchers-core_2.13-3.2.10-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.10/scalatest-matchers-core_2.13-3.2.10-sources.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9-sources.jar" ], "packages": [], - "sha256": "9df23d2487dd9c2bae8f9bb1f4318bcc5f1dc672e5c2684859395fd32dcfe292", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.10/scalatest-matchers-core_2.13-3.2.10-sources.jar" + "sha256": "3f6eafe9c3ed756ac5b25641c6dfa354f49a88a845b73830490598a6607e36fc", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9-sources.jar" }, { - "coord": "org.scalatest:scalatest-mustmatchers_2.13:3.2.10", + "coord": "org.scalatest:scalatest-mustmatchers_2.13:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:1.3.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalactic:scalactic_2.13:3.2.10", - "org.scalatest:scalatest-compatible:3.2.10", - "org.scalatest:scalatest-core_2.13:3.2.10", - "org.scalatest:scalatest-matchers-core_2.13:3.2.10" + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9", + "org.scalatest:scalatest-matchers-core_2.13:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalatest:scalatest-matchers-core_2.13:3.2.10" + "org.scalatest:scalatest-matchers-core_2.13:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.10/scalatest-mustmatchers_2.13-3.2.10.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.10/scalatest-mustmatchers_2.13-3.2.10.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9.jar" ], "packages": [ "org.scalatest.matchers.must" ], - "sha256": "f994a1b0e9cb77beb0174bf171083b502125507989c3efcfb2d29a8476041bbf", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.10/scalatest-mustmatchers_2.13-3.2.10.jar" + "sha256": "e170d4ff75f0e96458b7ec072accd40ff585f9e444b5831ba84287ff2da70f2c", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9.jar" }, { - "coord": "org.scalatest:scalatest-mustmatchers_2.13:jar:sources:3.2.10", + "coord": "org.scalatest:scalatest-mustmatchers_2.13:jar:sources:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.3.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalactic:scalactic_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-compatible:jar:sources:3.2.10", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.10" + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.10" + "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.10/scalatest-mustmatchers_2.13-3.2.10-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.10/scalatest-mustmatchers_2.13-3.2.10-sources.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9-sources.jar" ], "packages": [], - "sha256": "6d6946754334ec6978f89c49972ee3bde41118cdb58d894bec13fcadc67995fc", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.10/scalatest-mustmatchers_2.13-3.2.10-sources.jar" + "sha256": "7c34f2459f03636999a1b1d1c6c76054901b43ce4e94d79e2c56b3f965476b35", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9-sources.jar" }, { - "coord": "org.scalatest:scalatest-propspec_2.13:3.2.10", + "coord": "org.scalatest:scalatest-propspec_2.13:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:1.3.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalactic:scalactic_2.13:3.2.10", - "org.scalatest:scalatest-compatible:3.2.10", - "org.scalatest:scalatest-core_2.13:3.2.10" + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalatest:scalatest-core_2.13:3.2.10" + "org.scalatest:scalatest-core_2.13:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.10/scalatest-propspec_2.13-3.2.10.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.10/scalatest-propspec_2.13-3.2.10.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9.jar" ], "packages": [ "org.scalatest.propspec" ], - "sha256": "621fb80fb18b58e3fa44691f6d2e5606d5aea2d471433e94f5910dea200ae86f", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.10/scalatest-propspec_2.13-3.2.10.jar" + "sha256": "f08355a14c5afece8130016a9f8e5bbc4196f4b612fefefb2acf223fb9f92607", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9.jar" }, { - "coord": "org.scalatest:scalatest-propspec_2.13:jar:sources:3.2.10", + "coord": "org.scalatest:scalatest-propspec_2.13:jar:sources:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.3.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalactic:scalactic_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-compatible:jar:sources:3.2.10", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10" + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.10/scalatest-propspec_2.13-3.2.10-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.10/scalatest-propspec_2.13-3.2.10-sources.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9-sources.jar" ], "packages": [], - "sha256": "9e2d0fe52e1218636b3232a1c7f5d01ff42e61e226e76aae755fed818e017966", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.10/scalatest-propspec_2.13-3.2.10-sources.jar" + "sha256": "968b121c006575a83590edfc6909c992ee5b22ec99230ed53b53c21d06958826", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9-sources.jar" }, { - "coord": "org.scalatest:scalatest-refspec_2.13:3.2.10", + "coord": "org.scalatest:scalatest-refspec_2.13:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:1.3.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalactic:scalactic_2.13:3.2.10", - "org.scalatest:scalatest-compatible:3.2.10", - "org.scalatest:scalatest-core_2.13:3.2.10" + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalatest:scalatest-core_2.13:3.2.10" + "org.scalatest:scalatest-core_2.13:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.10/scalatest-refspec_2.13-3.2.10.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.10/scalatest-refspec_2.13-3.2.10.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9.jar" ], "packages": [ "org.scalatest.refspec" ], - "sha256": "c850db9983aed1c541d7489ec6a316e2abdaa88287cd85a747f92116ee3f8b7f", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.10/scalatest-refspec_2.13-3.2.10.jar" + "sha256": "edd37859e64c4f18ef266a28603ac7d85649f3f3cc26c14eb093d60199eaec03", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9.jar" }, { - "coord": "org.scalatest:scalatest-refspec_2.13:jar:sources:3.2.10", + "coord": "org.scalatest:scalatest-refspec_2.13:jar:sources:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.3.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalactic:scalactic_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-compatible:jar:sources:3.2.10", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10" + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.10/scalatest-refspec_2.13-3.2.10-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.10/scalatest-refspec_2.13-3.2.10-sources.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9-sources.jar" ], "packages": [], - "sha256": "a8a9d49e66441d50095c9fc279b1eeae31911b7c1f423e8918577d7d21630644", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.10/scalatest-refspec_2.13-3.2.10-sources.jar" + "sha256": "1959d3a0f9f9b117c7b09f9a69f589e3e904363912e7017c3a6e3e328a81c0f1", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9-sources.jar" }, { - "coord": "org.scalatest:scalatest-shouldmatchers_2.13:3.2.10", + "coord": "org.scalatest:scalatest-shouldmatchers_2.13:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:1.3.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalactic:scalactic_2.13:3.2.10", - "org.scalatest:scalatest-compatible:3.2.10", - "org.scalatest:scalatest-core_2.13:3.2.10", - "org.scalatest:scalatest-matchers-core_2.13:3.2.10" + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9", + "org.scalatest:scalatest-matchers-core_2.13:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalatest:scalatest-matchers-core_2.13:3.2.10" + "org.scalatest:scalatest-matchers-core_2.13:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.10/scalatest-shouldmatchers_2.13-3.2.10.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.10/scalatest-shouldmatchers_2.13-3.2.10.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9.jar" ], "packages": [ "org.scalatest.matchers.should" ], - "sha256": "175266bf78309ac99d58f571d17b0505b30d0a638912248965e0699a1376405d", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.10/scalatest-shouldmatchers_2.13-3.2.10.jar" + "sha256": "39a4eefa409fed5a32eff3647aa4f80628202d966e3cb6a9f01e88dcfae75e4c", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9.jar" }, { - "coord": "org.scalatest:scalatest-shouldmatchers_2.13:jar:sources:3.2.10", + "coord": "org.scalatest:scalatest-shouldmatchers_2.13:jar:sources:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.3.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalactic:scalactic_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-compatible:jar:sources:3.2.10", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.10" + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.10" + "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.10/scalatest-shouldmatchers_2.13-3.2.10-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.10/scalatest-shouldmatchers_2.13-3.2.10-sources.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9-sources.jar" ], "packages": [], - "sha256": "a1ba125bb778ca0dd391d2c095f905cb2a457cf22568f21ba13dbc7d9a54f945", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.10/scalatest-shouldmatchers_2.13-3.2.10-sources.jar" + "sha256": "0bf2b1b0143a9668bac6f2eedf3637bf223a4937c53818d193232f7d9d2f5ff2", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9-sources.jar" }, { - "coord": "org.scalatest:scalatest-wordspec_2.13:3.2.10", + "coord": "org.scalatest:scalatest-wordspec_2.13:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:1.3.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalactic:scalactic_2.13:3.2.10", - "org.scalatest:scalatest-compatible:3.2.10", - "org.scalatest:scalatest-core_2.13:3.2.10" + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalatest:scalatest-core_2.13:3.2.10" + "org.scalatest:scalatest-core_2.13:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.10/scalatest-wordspec_2.13-3.2.10.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.10/scalatest-wordspec_2.13-3.2.10.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9.jar" ], "packages": [ "org.scalatest.wordspec" ], - "sha256": "08f983b45ef2306eaca35e9280aae2b8691a063e1f2d04b0f5d38f910cda7c19", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.10/scalatest-wordspec_2.13-3.2.10.jar" + "sha256": "c5d5424bc43f02df9720bd83c57daa982af02ad7ae468875956ebe183f836277", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9.jar" }, { - "coord": "org.scalatest:scalatest-wordspec_2.13:jar:sources:3.2.10", + "coord": "org.scalatest:scalatest-wordspec_2.13:jar:sources:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.3.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalactic:scalactic_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-compatible:jar:sources:3.2.10", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10" + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.10/scalatest-wordspec_2.13-3.2.10-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.10/scalatest-wordspec_2.13-3.2.10-sources.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9-sources.jar" ], "packages": [], - "sha256": "169c5a26e6c9ce93461020a946208e7dfc1d16a5f2533f49abd13cb1ddcf18cb", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.10/scalatest-wordspec_2.13-3.2.10-sources.jar" + "sha256": "8a6f23594cf387e6c30f188ea308752e6da469e0477b7a11423d9f9999f2b66f", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9-sources.jar" }, { - "coord": "org.scalatest:scalatest_2.13:3.2.10", + "coord": "org.scalatest:scalatest_2.13:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:1.3.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalactic:scalactic_2.13:3.2.10", - "org.scalatest:scalatest-compatible:3.2.10", - "org.scalatest:scalatest-core_2.13:3.2.10", - "org.scalatest:scalatest-diagrams_2.13:3.2.10", - "org.scalatest:scalatest-featurespec_2.13:3.2.10", - "org.scalatest:scalatest-flatspec_2.13:3.2.10", - "org.scalatest:scalatest-freespec_2.13:3.2.10", - "org.scalatest:scalatest-funspec_2.13:3.2.10", - "org.scalatest:scalatest-funsuite_2.13:3.2.10", - "org.scalatest:scalatest-matchers-core_2.13:3.2.10", - "org.scalatest:scalatest-mustmatchers_2.13:3.2.10", - "org.scalatest:scalatest-propspec_2.13:3.2.10", - "org.scalatest:scalatest-refspec_2.13:3.2.10", - "org.scalatest:scalatest-shouldmatchers_2.13:3.2.10", - "org.scalatest:scalatest-wordspec_2.13:3.2.10" + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9", + "org.scalatest:scalatest-diagrams_2.13:3.2.9", + "org.scalatest:scalatest-featurespec_2.13:3.2.9", + "org.scalatest:scalatest-flatspec_2.13:3.2.9", + "org.scalatest:scalatest-freespec_2.13:3.2.9", + "org.scalatest:scalatest-funspec_2.13:3.2.9", + "org.scalatest:scalatest-funsuite_2.13:3.2.9", + "org.scalatest:scalatest-matchers-core_2.13:3.2.9", + "org.scalatest:scalatest-mustmatchers_2.13:3.2.9", + "org.scalatest:scalatest-propspec_2.13:3.2.9", + "org.scalatest:scalatest-refspec_2.13:3.2.9", + "org.scalatest:scalatest-shouldmatchers_2.13:3.2.9", + "org.scalatest:scalatest-wordspec_2.13:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalatest:scalatest-core_2.13:3.2.10", - "org.scalatest:scalatest-diagrams_2.13:3.2.10", - "org.scalatest:scalatest-featurespec_2.13:3.2.10", - "org.scalatest:scalatest-flatspec_2.13:3.2.10", - "org.scalatest:scalatest-freespec_2.13:3.2.10", - "org.scalatest:scalatest-funspec_2.13:3.2.10", - "org.scalatest:scalatest-funsuite_2.13:3.2.10", - "org.scalatest:scalatest-matchers-core_2.13:3.2.10", - "org.scalatest:scalatest-mustmatchers_2.13:3.2.10", - "org.scalatest:scalatest-propspec_2.13:3.2.10", - "org.scalatest:scalatest-refspec_2.13:3.2.10", - "org.scalatest:scalatest-shouldmatchers_2.13:3.2.10", - "org.scalatest:scalatest-wordspec_2.13:3.2.10" + "org.scalatest:scalatest-core_2.13:3.2.9", + "org.scalatest:scalatest-diagrams_2.13:3.2.9", + "org.scalatest:scalatest-featurespec_2.13:3.2.9", + "org.scalatest:scalatest-flatspec_2.13:3.2.9", + "org.scalatest:scalatest-freespec_2.13:3.2.9", + "org.scalatest:scalatest-funspec_2.13:3.2.9", + "org.scalatest:scalatest-funsuite_2.13:3.2.9", + "org.scalatest:scalatest-matchers-core_2.13:3.2.9", + "org.scalatest:scalatest-mustmatchers_2.13:3.2.9", + "org.scalatest:scalatest-propspec_2.13:3.2.9", + "org.scalatest:scalatest-refspec_2.13:3.2.9", + "org.scalatest:scalatest-shouldmatchers_2.13:3.2.9", + "org.scalatest:scalatest-wordspec_2.13:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest_2.13/3.2.10/scalatest_2.13-3.2.10.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest_2.13/3.2.10/scalatest_2.13-3.2.10.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9.jar" ], "packages": [], - "sha256": "5cdde7f43bd4e287cd9302c2a80c5badc82cd442b392d6aaf28f16b4d6f1321c", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest_2.13/3.2.10/scalatest_2.13-3.2.10.jar" + "sha256": "c5d283a5ec028bf06f83d70e2b88d70a149dd574d19e79e8389b49483914b08b", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9.jar" }, { - "coord": "org.scalatest:scalatest_2.13:jar:sources:3.2.10", + "coord": "org.scalatest:scalatest_2.13:jar:sources:3.2.9", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.3.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalactic:scalactic_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-compatible:jar:sources:3.2.10", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-diagrams_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-featurespec_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-flatspec_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-freespec_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-funspec_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-funsuite_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-mustmatchers_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-propspec_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-refspec_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-shouldmatchers_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-wordspec_2.13:jar:sources:3.2.10" + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-diagrams_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-featurespec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-flatspec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-freespec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-funspec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-funsuite_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-mustmatchers_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-propspec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-refspec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-shouldmatchers_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-wordspec_2.13:jar:sources:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-diagrams_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-featurespec_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-flatspec_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-freespec_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-funspec_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-funsuite_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-mustmatchers_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-propspec_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-refspec_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-shouldmatchers_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-wordspec_2.13:jar:sources:3.2.10" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-diagrams_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-featurespec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-flatspec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-freespec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-funspec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-funsuite_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-mustmatchers_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-propspec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-refspec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-shouldmatchers_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-wordspec_2.13:jar:sources:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest_2.13/3.2.10/scalatest_2.13-3.2.10-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatest/scalatest_2.13/3.2.10/scalatest_2.13-3.2.10-sources.jar" + "https://repo1.maven.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9-sources.jar" ], "packages": [], - "sha256": "822909a703cdfedf27c528ee494e91ec284215e7c2efc5bbfe286b5546e9842a", - "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest_2.13/3.2.10/scalatest_2.13-3.2.10-sources.jar" + "sha256": "825a948573fc0cd462a92b7efab0fd3f740e00947158a9afce53458cbb285611", + "url": "https://repo1.maven.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9-sources.jar" }, { - "coord": "org.scalatestplus:scalacheck-1-15_2.13:3.2.10.0", + "coord": "org.scalatestplus:scalacheck-1-15_2.13:3.2.9.0", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:1.3.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", "org.scala-sbt:test-interface:1.0", "org.scalacheck:scalacheck_2.13:1.15.4", - "org.scalactic:scalactic_2.13:3.2.10", - "org.scalatest:scalatest-compatible:3.2.10", - "org.scalatest:scalatest-core_2.13:3.2.10" + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", "org.scalacheck:scalacheck_2.13:1.15.4", - "org.scalatest:scalatest-core_2.13:3.2.10" + "org.scalatest:scalatest-core_2.13:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatestplus/scalacheck-1-15_2.13/3.2.10.0/scalacheck-1-15_2.13-3.2.10.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatestplus/scalacheck-1-15_2.13/3.2.9.0/scalacheck-1-15_2.13-3.2.9.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatestplus/scalacheck-1-15_2.13/3.2.10.0/scalacheck-1-15_2.13-3.2.10.0.jar" + "https://repo1.maven.org/maven2/org/scalatestplus/scalacheck-1-15_2.13/3.2.9.0/scalacheck-1-15_2.13-3.2.9.0.jar" ], "packages": [ "org.scalatestplus.scalacheck" ], - "sha256": "c2e7f010a41e2c19392f6aae35975678dc26fa6af9e22efaebb648c8e2e2d87e", - "url": "https://repo1.maven.org/maven2/org/scalatestplus/scalacheck-1-15_2.13/3.2.10.0/scalacheck-1-15_2.13-3.2.10.0.jar" + "sha256": "83e4b4c5d721c8a63471084b151463b3491e966d54d84f45e517fadd8ae05caa", + "url": "https://repo1.maven.org/maven2/org/scalatestplus/scalacheck-1-15_2.13/3.2.9.0/scalacheck-1-15_2.13-3.2.9.0.jar" }, { - "coord": "org.scalatestplus:scalacheck-1-15_2.13:jar:sources:3.2.10.0", + "coord": "org.scalatestplus:scalacheck-1-15_2.13:jar:sources:3.2.9.0", "dependencies": [ "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.3.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", "org.scala-sbt:test-interface:jar:sources:1.0", "org.scalacheck:scalacheck_2.13:jar:sources:1.15.4", - "org.scalactic:scalactic_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-compatible:jar:sources:3.2.10", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10" + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scalacheck:scalacheck_2.13:jar:sources:1.15.4", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatestplus/scalacheck-1-15_2.13/3.2.10.0/scalacheck-1-15_2.13-3.2.10.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatestplus/scalacheck-1-15_2.13/3.2.9.0/scalacheck-1-15_2.13-3.2.9.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatestplus/scalacheck-1-15_2.13/3.2.10.0/scalacheck-1-15_2.13-3.2.10.0-sources.jar" + "https://repo1.maven.org/maven2/org/scalatestplus/scalacheck-1-15_2.13/3.2.9.0/scalacheck-1-15_2.13-3.2.9.0-sources.jar" ], "packages": [], - "sha256": "53530c1f1ff8c98ef9f4d7c1c1a0256368b472c5ae929e7057f974d3ddb226f0", - "url": "https://repo1.maven.org/maven2/org/scalatestplus/scalacheck-1-15_2.13/3.2.10.0/scalacheck-1-15_2.13-3.2.10.0-sources.jar" + "sha256": "9f0f9208e8290e106338f997d8b01d27409333be225abdc91926776b10e7dbb0", + "url": "https://repo1.maven.org/maven2/org/scalatestplus/scalacheck-1-15_2.13/3.2.9.0/scalacheck-1-15_2.13-3.2.9.0-sources.jar" }, { - "coord": "org.scalatestplus:selenium-3-141_2.13:3.2.10.0", + "coord": "org.scalatestplus:selenium-3-141_2.13:3.2.9.0", "dependencies": [ - "com.shapesecurity:salvation:2.7.1", - "commons-codec:commons-codec:1.11", - "commons-io:commons-io:2.11.0", + "com.google.guava:guava:31.0.1-jre", + "com.squareup.okhttp3:okhttp:3.11.0", + "com.squareup.okio:okio:1.14.0", + "commons-codec:commons-codec:1.14", + "commons-io:commons-io:2.5", "commons-logging:commons-logging:1.2", "commons-net:commons-net:3.6", - "net.sourceforge.htmlunit:htmlunit-core-js:2.40.0", + "net.bytebuddy:byte-buddy:1.10.18", + "net.sourceforge.htmlunit:htmlunit-core-js:2.39.0", "net.sourceforge.htmlunit:htmlunit-cssparser:1.5.0", - "net.sourceforge.htmlunit:htmlunit:2.40.0", - "net.sourceforge.htmlunit:neko-htmlunit:2.40.0", - "org.apache.commons:commons-lang3:3.12.0", - "org.apache.commons:commons-text:1.10.0", + "net.sourceforge.htmlunit:htmlunit:2.39.0", + "net.sourceforge.htmlunit:neko-htmlunit:2.39.0", + "org.apache.commons:commons-exec:1.3", + "org.apache.commons:commons-lang3:3.9", + "org.apache.commons:commons-text:1.4", "org.apache.httpcomponents:httpclient:4.5.12", "org.apache.httpcomponents:httpcore:4.4.13", "org.apache.httpcomponents:httpmime:4.5.12", "org.brotli:dec:0.1.2", - "org.eclipse.jetty.websocket:websocket-client:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-api:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-client:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-common:9.4.27.v20200227", + "org.eclipse.jetty:jetty-client:9.4.27.v20200227", + "org.eclipse.jetty:jetty-http:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:9.4.27.v20200227", + "org.eclipse.jetty:jetty-util:9.4.27.v20200227", + "org.eclipse.jetty:jetty-xml:9.4.27.v20200227", "org.scala-lang.modules:scala-xml_2.13:1.3.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalactic:scalactic_2.13:3.2.10", - "org.scalatest:scalatest-compatible:3.2.10", - "org.scalatest:scalatest-core_2.13:3.2.10", - "org.seleniumhq.selenium:htmlunit-driver:2.40.0", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-java:4.5.0", - "org.seleniumhq.selenium:selenium-support:4.5.0", + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9", + "org.seleniumhq.selenium:htmlunit-driver:2.39.0", + "org.seleniumhq.selenium:selenium-api:3.141.59", + "org.seleniumhq.selenium:selenium-java:3.12.0", + "org.seleniumhq.selenium:selenium-remote-driver:3.141.59", + "org.seleniumhq.selenium:selenium-support:3.141.59", "xalan:serializer:2.7.2", "xalan:xalan:2.7.2", "xerces:xercesImpl:2.12.0", @@ -17379,49 +14657,61 @@ ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", - "org.scalatest:scalatest-core_2.13:3.2.10", - "org.seleniumhq.selenium:htmlunit-driver:2.40.0", - "org.seleniumhq.selenium:selenium-java:4.5.0" + "org.scalatest:scalatest-core_2.13:3.2.9", + "org.seleniumhq.selenium:htmlunit-driver:2.39.0", + "org.seleniumhq.selenium:selenium-java:3.12.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatestplus/selenium-3-141_2.13/3.2.10.0/selenium-3-141_2.13-3.2.10.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatestplus/selenium-3-141_2.13/3.2.9.0/selenium-3-141_2.13-3.2.9.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatestplus/selenium-3-141_2.13/3.2.10.0/selenium-3-141_2.13-3.2.10.0.jar" + "https://repo1.maven.org/maven2/org/scalatestplus/selenium-3-141_2.13/3.2.9.0/selenium-3-141_2.13-3.2.9.0.jar" ], "packages": [ "org.scalatestplus.selenium" ], - "sha256": "9ed71011f0a5149778f0802787e524d5a2cb9668acedfc61e5ef62fd4b8dfd79", - "url": "https://repo1.maven.org/maven2/org/scalatestplus/selenium-3-141_2.13/3.2.10.0/selenium-3-141_2.13-3.2.10.0.jar" + "sha256": "61899c8ec87e56bbcd95089971225a5a85ec62ccfc07aae00de44842e9556b5e", + "url": "https://repo1.maven.org/maven2/org/scalatestplus/selenium-3-141_2.13/3.2.9.0/selenium-3-141_2.13-3.2.9.0.jar" }, { - "coord": "org.scalatestplus:selenium-3-141_2.13:jar:sources:3.2.10.0", + "coord": "org.scalatestplus:selenium-3-141_2.13:jar:sources:3.2.9.0", "dependencies": [ - "com.shapesecurity:salvation:jar:sources:2.7.1", - "commons-codec:commons-codec:jar:sources:1.11", - "commons-io:commons-io:jar:sources:2.11.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", + "com.squareup.okio:okio:jar:sources:1.14.0", + "commons-codec:commons-codec:jar:sources:1.14", + "commons-io:commons-io:jar:sources:2.5", "commons-logging:commons-logging:jar:sources:1.2", "commons-net:commons-net:jar:sources:3.6", - "net.sourceforge.htmlunit:htmlunit-core-js:jar:sources:2.40.0", + "net.bytebuddy:byte-buddy:jar:sources:1.10.18", + "net.sourceforge.htmlunit:htmlunit-core-js:jar:sources:2.39.0", "net.sourceforge.htmlunit:htmlunit-cssparser:jar:sources:1.5.0", - "net.sourceforge.htmlunit:htmlunit:jar:sources:2.40.0", - "net.sourceforge.htmlunit:neko-htmlunit:jar:sources:2.40.0", - "org.apache.commons:commons-lang3:jar:sources:3.12.0", - "org.apache.commons:commons-text:jar:sources:1.10.0", + "net.sourceforge.htmlunit:htmlunit:jar:sources:2.39.0", + "net.sourceforge.htmlunit:neko-htmlunit:jar:sources:2.39.0", + "org.apache.commons:commons-exec:jar:sources:1.3", + "org.apache.commons:commons-lang3:jar:sources:3.9", + "org.apache.commons:commons-text:jar:sources:1.4", "org.apache.httpcomponents:httpclient:jar:sources:4.5.12", "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", "org.apache.httpcomponents:httpmime:jar:sources:4.5.12", "org.brotli:dec:jar:sources:0.1.2", - "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-client:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-http:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-util:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-xml:jar:sources:9.4.27.v20200227", "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.3.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalactic:scalactic_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-compatible:jar:sources:3.2.10", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10", - "org.seleniumhq.selenium:htmlunit-driver:jar:sources:2.40.0", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-java:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-support:jar:sources:4.5.0", + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9", + "org.seleniumhq.selenium:htmlunit-driver:jar:sources:2.39.0", + "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", + "org.seleniumhq.selenium:selenium-java:jar:sources:3.12.0", + "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", + "org.seleniumhq.selenium:selenium-support:jar:sources:3.141.59", "xalan:serializer:jar:sources:2.7.2", "xalan:xalan:jar:sources:2.7.2", "xerces:xercesImpl:jar:sources:2.12.0", @@ -17429,129 +14719,129 @@ ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10", - "org.seleniumhq.selenium:htmlunit-driver:jar:sources:2.40.0", - "org.seleniumhq.selenium:selenium-java:jar:sources:4.5.0" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9", + "org.seleniumhq.selenium:htmlunit-driver:jar:sources:2.39.0", + "org.seleniumhq.selenium:selenium-java:jar:sources:3.12.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatestplus/selenium-3-141_2.13/3.2.10.0/selenium-3-141_2.13-3.2.10.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatestplus/selenium-3-141_2.13/3.2.9.0/selenium-3-141_2.13-3.2.9.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatestplus/selenium-3-141_2.13/3.2.10.0/selenium-3-141_2.13-3.2.10.0-sources.jar" + "https://repo1.maven.org/maven2/org/scalatestplus/selenium-3-141_2.13/3.2.9.0/selenium-3-141_2.13-3.2.9.0-sources.jar" ], "packages": [], - "sha256": "9b83411a33d9775ce14d26e2f020abe1410db6448304af093abc01a55b7e9d6b", - "url": "https://repo1.maven.org/maven2/org/scalatestplus/selenium-3-141_2.13/3.2.10.0/selenium-3-141_2.13-3.2.10.0-sources.jar" + "sha256": "8c42589f0c1cf6530bc1e3ac9cb75e45ffd454c702f7942288e61f76b15b87bb", + "url": "https://repo1.maven.org/maven2/org/scalatestplus/selenium-3-141_2.13/3.2.9.0/selenium-3-141_2.13-3.2.9.0-sources.jar" }, { - "coord": "org.scalatestplus:testng-6-7_2.13:3.2.10.0", + "coord": "org.scalatestplus:testng-6-7_2.13:3.2.9.0", "dependencies": [ - "com.beust:jcommander:1.82", - "junit:junit:4.13.2", + "com.beust:jcommander:1.12", + "junit:junit:4.12", "org.beanshell:bsh:2.0b4", "org.scala-lang.modules:scala-xml_2.13:1.3.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.scalactic:scalactic_2.13:3.2.10", - "org.scalatest:scalatest-compatible:3.2.10", - "org.scalatest:scalatest-core_2.13:3.2.10", + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9", "org.testng:testng:6.7", - "org.yaml:snakeyaml:1.28" + "org.yaml:snakeyaml:1.26" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", - "org.scalatest:scalatest-core_2.13:3.2.10", + "org.scalatest:scalatest-core_2.13:3.2.9", "org.testng:testng:6.7" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatestplus/testng-6-7_2.13/3.2.10.0/testng-6-7_2.13-3.2.10.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatestplus/testng-6-7_2.13/3.2.9.0/testng-6-7_2.13-3.2.9.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatestplus/testng-6-7_2.13/3.2.10.0/testng-6-7_2.13-3.2.10.0.jar" + "https://repo1.maven.org/maven2/org/scalatestplus/testng-6-7_2.13/3.2.9.0/testng-6-7_2.13-3.2.9.0.jar" ], "packages": [ "org.scalatestplus.testng" ], - "sha256": "f2d19e15faac0a3ae7c89a9b0020be9438ab47306d69f40fcf1d6c2486e6c4d0", - "url": "https://repo1.maven.org/maven2/org/scalatestplus/testng-6-7_2.13/3.2.10.0/testng-6-7_2.13-3.2.10.0.jar" + "sha256": "eb72f4c34bd16c098d43149b98bd94114817abb4637e272dbd9eee02d303ec18", + "url": "https://repo1.maven.org/maven2/org/scalatestplus/testng-6-7_2.13/3.2.9.0/testng-6-7_2.13-3.2.9.0.jar" }, { - "coord": "org.scalatestplus:testng-6-7_2.13:jar:sources:3.2.10.0", + "coord": "org.scalatestplus:testng-6-7_2.13:jar:sources:3.2.9.0", "dependencies": [ - "com.beust:jcommander:jar:sources:1.82", - "junit:junit:jar:sources:4.13.2", + "com.beust:jcommander:jar:sources:1.12", + "junit:junit:jar:sources:4.12", "org.beanshell:bsh:jar:sources:2.0b4", "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.3.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.scalactic:scalactic_2.13:jar:sources:3.2.10", - "org.scalatest:scalatest-compatible:jar:sources:3.2.10", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10", + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9", "org.testng:testng:jar:sources:6.7", - "org.yaml:snakeyaml:jar:sources:1.28" + "org.yaml:snakeyaml:jar:sources:1.26" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.10", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9", "org.testng:testng:jar:sources:6.7" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalatestplus/testng-6-7_2.13/3.2.10.0/testng-6-7_2.13-3.2.10.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalatestplus/testng-6-7_2.13/3.2.9.0/testng-6-7_2.13-3.2.9.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalatestplus/testng-6-7_2.13/3.2.10.0/testng-6-7_2.13-3.2.10.0-sources.jar" + "https://repo1.maven.org/maven2/org/scalatestplus/testng-6-7_2.13/3.2.9.0/testng-6-7_2.13-3.2.9.0-sources.jar" ], "packages": [], - "sha256": "a925aaeedb8286ff637b352768905c5065f7edbbcb3665e0feff8db8add74cad", - "url": "https://repo1.maven.org/maven2/org/scalatestplus/testng-6-7_2.13/3.2.10.0/testng-6-7_2.13-3.2.10.0-sources.jar" + "sha256": "a247b5e9d99b678069b481ee4b2c49a8d9d863d9a3da693b03de03918043e200", + "url": "https://repo1.maven.org/maven2/org/scalatestplus/testng-6-7_2.13/3.2.9.0/testng-6-7_2.13-3.2.9.0-sources.jar" }, { - "coord": "org.scalaz:scalaz-concurrent_2.13:7.2.34", + "coord": "org.scalaz:scalaz-concurrent_2.13:7.2.33", "dependencies": [ "org.scala-lang:scala-library:2.13.8", - "org.scalaz:scalaz-core_2.13:7.2.34", - "org.scalaz:scalaz-effect_2.13:7.2.34" + "org.scalaz:scalaz-core_2.13:7.2.33", + "org.scalaz:scalaz-effect_2.13:7.2.33" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", - "org.scalaz:scalaz-core_2.13:7.2.34", - "org.scalaz:scalaz-effect_2.13:7.2.34" + "org.scalaz:scalaz-core_2.13:7.2.33", + "org.scalaz:scalaz-effect_2.13:7.2.33" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalaz/scalaz-concurrent_2.13/7.2.34/scalaz-concurrent_2.13-7.2.34.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalaz/scalaz-concurrent_2.13/7.2.33/scalaz-concurrent_2.13-7.2.33.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalaz/scalaz-concurrent_2.13/7.2.34/scalaz-concurrent_2.13-7.2.34.jar" + "https://repo1.maven.org/maven2/org/scalaz/scalaz-concurrent_2.13/7.2.33/scalaz-concurrent_2.13-7.2.33.jar" ], "packages": [ "scalaz.concurrent" ], - "sha256": "d1a575651699dd7735b8f333f34ac9f9cb607929a295852a6ffe989c884860e2", - "url": "https://repo1.maven.org/maven2/org/scalaz/scalaz-concurrent_2.13/7.2.34/scalaz-concurrent_2.13-7.2.34.jar" + "sha256": "68b27c7da1165d69fdb3f990182e1e26249dbed46302d441a5f5d06049165a3e", + "url": "https://repo1.maven.org/maven2/org/scalaz/scalaz-concurrent_2.13/7.2.33/scalaz-concurrent_2.13-7.2.33.jar" }, { - "coord": "org.scalaz:scalaz-concurrent_2.13:jar:sources:7.2.34", + "coord": "org.scalaz:scalaz-concurrent_2.13:jar:sources:7.2.33", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.scalaz:scalaz-core_2.13:jar:sources:7.2.34", - "org.scalaz:scalaz-effect_2.13:jar:sources:7.2.34" + "org.scalaz:scalaz-core_2.13:jar:sources:7.2.33", + "org.scalaz:scalaz-effect_2.13:jar:sources:7.2.33" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.scalaz:scalaz-core_2.13:jar:sources:7.2.34", - "org.scalaz:scalaz-effect_2.13:jar:sources:7.2.34" + "org.scalaz:scalaz-core_2.13:jar:sources:7.2.33", + "org.scalaz:scalaz-effect_2.13:jar:sources:7.2.33" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalaz/scalaz-concurrent_2.13/7.2.34/scalaz-concurrent_2.13-7.2.34-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalaz/scalaz-concurrent_2.13/7.2.33/scalaz-concurrent_2.13-7.2.33-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalaz/scalaz-concurrent_2.13/7.2.34/scalaz-concurrent_2.13-7.2.34-sources.jar" + "https://repo1.maven.org/maven2/org/scalaz/scalaz-concurrent_2.13/7.2.33/scalaz-concurrent_2.13-7.2.33-sources.jar" ], "packages": [], - "sha256": "a62faf3ccd88998d1522b395ba54d29516d497a4494f9e6a353d23bb80fceee0", - "url": "https://repo1.maven.org/maven2/org/scalaz/scalaz-concurrent_2.13/7.2.34/scalaz-concurrent_2.13-7.2.34-sources.jar" + "sha256": "3edabb4a280840ed29c52d53d2fb2a6870272e3accf781e20ca48c02c0314c70", + "url": "https://repo1.maven.org/maven2/org/scalaz/scalaz-concurrent_2.13/7.2.33/scalaz-concurrent_2.13-7.2.33-sources.jar" }, { - "coord": "org.scalaz:scalaz-core_2.13:7.2.34", + "coord": "org.scalaz:scalaz-core_2.13:7.2.33", "dependencies": [ "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalaz/scalaz-core_2.13/7.2.34/scalaz-core_2.13-7.2.34.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalaz/scalaz-core_2.13/7.2.33/scalaz-core_2.13-7.2.33.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalaz/scalaz-core_2.13/7.2.34/scalaz-core_2.13-7.2.34.jar" + "https://repo1.maven.org/maven2/org/scalaz/scalaz-core_2.13/7.2.33/scalaz-core_2.13-7.2.33.jar" ], "packages": [ "scalaz", @@ -17565,38 +14855,38 @@ "scalaz.syntax", "scalaz.syntax.std" ], - "sha256": "e1286fc27023f7d28db188fc109b8d4b19371bbc42c2553448dd41295a2e0244", - "url": "https://repo1.maven.org/maven2/org/scalaz/scalaz-core_2.13/7.2.34/scalaz-core_2.13-7.2.34.jar" + "sha256": "8543e05b3b5e62adb998088aa1ee70a1248fd0dc74b394b4eea97f08c946e86e", + "url": "https://repo1.maven.org/maven2/org/scalaz/scalaz-core_2.13/7.2.33/scalaz-core_2.13-7.2.33.jar" }, { - "coord": "org.scalaz:scalaz-core_2.13:jar:sources:7.2.34", + "coord": "org.scalaz:scalaz-core_2.13:jar:sources:7.2.33", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalaz/scalaz-core_2.13/7.2.34/scalaz-core_2.13-7.2.34-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalaz/scalaz-core_2.13/7.2.33/scalaz-core_2.13-7.2.33-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalaz/scalaz-core_2.13/7.2.34/scalaz-core_2.13-7.2.34-sources.jar" + "https://repo1.maven.org/maven2/org/scalaz/scalaz-core_2.13/7.2.33/scalaz-core_2.13-7.2.33-sources.jar" ], "packages": [], - "sha256": "c41f5afdcd9f14f9ac361955466763560e15a77897150564770d4dfe8a477963", - "url": "https://repo1.maven.org/maven2/org/scalaz/scalaz-core_2.13/7.2.34/scalaz-core_2.13-7.2.34-sources.jar" + "sha256": "b12d6c7a4ef873786173d5456cbae653068c9475a45a7498736e2f2630fd0085", + "url": "https://repo1.maven.org/maven2/org/scalaz/scalaz-core_2.13/7.2.33/scalaz-core_2.13-7.2.33-sources.jar" }, { - "coord": "org.scalaz:scalaz-effect_2.13:7.2.34", + "coord": "org.scalaz:scalaz-effect_2.13:7.2.33", "dependencies": [ "org.scala-lang:scala-library:2.13.8", - "org.scalaz:scalaz-core_2.13:7.2.34" + "org.scalaz:scalaz-core_2.13:7.2.33" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", - "org.scalaz:scalaz-core_2.13:7.2.34" + "org.scalaz:scalaz-core_2.13:7.2.33" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalaz/scalaz-effect_2.13/7.2.34/scalaz-effect_2.13-7.2.34.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalaz/scalaz-effect_2.13/7.2.33/scalaz-effect_2.13-7.2.33.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalaz/scalaz-effect_2.13/7.2.34/scalaz-effect_2.13-7.2.34.jar" + "https://repo1.maven.org/maven2/org/scalaz/scalaz-effect_2.13/7.2.33/scalaz-effect_2.13-7.2.33.jar" ], "packages": [ "scalaz.effect", @@ -17604,120 +14894,120 @@ "scalaz.std.effect.sql", "scalaz.syntax.effect" ], - "sha256": "700a96ce78270953cb381b4607d537bc60b98569e6a22495f5dd3097222dc297", - "url": "https://repo1.maven.org/maven2/org/scalaz/scalaz-effect_2.13/7.2.34/scalaz-effect_2.13-7.2.34.jar" + "sha256": "96a3485e3a09943be6ac18ac0ee99b5f568911094c2c6e30f41ef9acd24f322e", + "url": "https://repo1.maven.org/maven2/org/scalaz/scalaz-effect_2.13/7.2.33/scalaz-effect_2.13-7.2.33.jar" }, { - "coord": "org.scalaz:scalaz-effect_2.13:jar:sources:7.2.34", + "coord": "org.scalaz:scalaz-effect_2.13:jar:sources:7.2.33", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.scalaz:scalaz-core_2.13:jar:sources:7.2.34" + "org.scalaz:scalaz-core_2.13:jar:sources:7.2.33" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.scalaz:scalaz-core_2.13:jar:sources:7.2.34" + "org.scalaz:scalaz-core_2.13:jar:sources:7.2.33" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalaz/scalaz-effect_2.13/7.2.34/scalaz-effect_2.13-7.2.34-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalaz/scalaz-effect_2.13/7.2.33/scalaz-effect_2.13-7.2.33-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalaz/scalaz-effect_2.13/7.2.34/scalaz-effect_2.13-7.2.34-sources.jar" + "https://repo1.maven.org/maven2/org/scalaz/scalaz-effect_2.13/7.2.33/scalaz-effect_2.13-7.2.33-sources.jar" ], "packages": [], - "sha256": "d53fafce70e1dec079f7da5611d89713e6faf547cc9543fe0d2df1cfa02e8ba3", - "url": "https://repo1.maven.org/maven2/org/scalaz/scalaz-effect_2.13/7.2.34/scalaz-effect_2.13-7.2.34-sources.jar" + "sha256": "bb448dbecacba82e555134c947fa8c8011e7bd1df7fee5cd7759f561babe081f", + "url": "https://repo1.maven.org/maven2/org/scalaz/scalaz-effect_2.13/7.2.33/scalaz-effect_2.13-7.2.33-sources.jar" }, { - "coord": "org.scalaz:scalaz-iteratee_2.13:7.2.34", + "coord": "org.scalaz:scalaz-iteratee_2.13:7.2.33", "dependencies": [ "org.scala-lang:scala-library:2.13.8", - "org.scalaz:scalaz-core_2.13:7.2.34", - "org.scalaz:scalaz-effect_2.13:7.2.34" + "org.scalaz:scalaz-core_2.13:7.2.33", + "org.scalaz:scalaz-effect_2.13:7.2.33" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", - "org.scalaz:scalaz-core_2.13:7.2.34", - "org.scalaz:scalaz-effect_2.13:7.2.34" + "org.scalaz:scalaz-core_2.13:7.2.33", + "org.scalaz:scalaz-effect_2.13:7.2.33" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalaz/scalaz-iteratee_2.13/7.2.34/scalaz-iteratee_2.13-7.2.34.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalaz/scalaz-iteratee_2.13/7.2.33/scalaz-iteratee_2.13-7.2.33.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalaz/scalaz-iteratee_2.13/7.2.34/scalaz-iteratee_2.13-7.2.34.jar" + "https://repo1.maven.org/maven2/org/scalaz/scalaz-iteratee_2.13/7.2.33/scalaz-iteratee_2.13-7.2.33.jar" ], "packages": [ "scalaz.iteratee" ], - "sha256": "091e71852910a69464c32a7ffe3f27fd8a2a28a8176e7007f0ad4835bdf070d0", - "url": "https://repo1.maven.org/maven2/org/scalaz/scalaz-iteratee_2.13/7.2.34/scalaz-iteratee_2.13-7.2.34.jar" + "sha256": "719ff755e6d9163c8291891c699ce002eeec6705f2ad6eff64bfa5acc7d79aac", + "url": "https://repo1.maven.org/maven2/org/scalaz/scalaz-iteratee_2.13/7.2.33/scalaz-iteratee_2.13-7.2.33.jar" }, { - "coord": "org.scalaz:scalaz-iteratee_2.13:jar:sources:7.2.34", + "coord": "org.scalaz:scalaz-iteratee_2.13:jar:sources:7.2.33", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.scalaz:scalaz-core_2.13:jar:sources:7.2.34", - "org.scalaz:scalaz-effect_2.13:jar:sources:7.2.34" + "org.scalaz:scalaz-core_2.13:jar:sources:7.2.33", + "org.scalaz:scalaz-effect_2.13:jar:sources:7.2.33" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.scalaz:scalaz-core_2.13:jar:sources:7.2.34", - "org.scalaz:scalaz-effect_2.13:jar:sources:7.2.34" + "org.scalaz:scalaz-core_2.13:jar:sources:7.2.33", + "org.scalaz:scalaz-effect_2.13:jar:sources:7.2.33" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalaz/scalaz-iteratee_2.13/7.2.34/scalaz-iteratee_2.13-7.2.34-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalaz/scalaz-iteratee_2.13/7.2.33/scalaz-iteratee_2.13-7.2.33-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalaz/scalaz-iteratee_2.13/7.2.34/scalaz-iteratee_2.13-7.2.34-sources.jar" + "https://repo1.maven.org/maven2/org/scalaz/scalaz-iteratee_2.13/7.2.33/scalaz-iteratee_2.13-7.2.33-sources.jar" ], "packages": [], - "sha256": "fed48f5b79f7b66ab480ea88b47207dd6dee844e5352da256e0a14f01249bddb", - "url": "https://repo1.maven.org/maven2/org/scalaz/scalaz-iteratee_2.13/7.2.34/scalaz-iteratee_2.13-7.2.34-sources.jar" + "sha256": "2b8ddacfb6fe28477e1bdf5de6f25c98dae58a87b71d02a97beddba3d0559934", + "url": "https://repo1.maven.org/maven2/org/scalaz/scalaz-iteratee_2.13/7.2.33/scalaz-iteratee_2.13-7.2.33-sources.jar" }, { - "coord": "org.scalaz:scalaz-scalacheck-binding_2.13:7.2.34-scalacheck-1.15", + "coord": "org.scalaz:scalaz-scalacheck-binding_2.13:7.2.33-scalacheck-1.15", "dependencies": [ "org.scala-lang:scala-library:2.13.8", "org.scalacheck:scalacheck_2.13:1.15.4", - "org.scalaz:scalaz-concurrent_2.13:7.2.34", - "org.scalaz:scalaz-core_2.13:7.2.34", - "org.scalaz:scalaz-effect_2.13:7.2.34", - "org.scalaz:scalaz-iteratee_2.13:7.2.34" + "org.scalaz:scalaz-concurrent_2.13:7.2.33", + "org.scalaz:scalaz-core_2.13:7.2.33", + "org.scalaz:scalaz-effect_2.13:7.2.33", + "org.scalaz:scalaz-iteratee_2.13:7.2.33" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", "org.scalacheck:scalacheck_2.13:1.15.4", - "org.scalaz:scalaz-concurrent_2.13:7.2.34", - "org.scalaz:scalaz-core_2.13:7.2.34", - "org.scalaz:scalaz-iteratee_2.13:7.2.34" + "org.scalaz:scalaz-concurrent_2.13:7.2.33", + "org.scalaz:scalaz-core_2.13:7.2.33", + "org.scalaz:scalaz-iteratee_2.13:7.2.33" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalaz/scalaz-scalacheck-binding_2.13/7.2.34-scalacheck-1.15/scalaz-scalacheck-binding_2.13-7.2.34-scalacheck-1.15.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalaz/scalaz-scalacheck-binding_2.13/7.2.33-scalacheck-1.15/scalaz-scalacheck-binding_2.13-7.2.33-scalacheck-1.15.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalaz/scalaz-scalacheck-binding_2.13/7.2.34-scalacheck-1.15/scalaz-scalacheck-binding_2.13-7.2.34-scalacheck-1.15.jar" + "https://repo1.maven.org/maven2/org/scalaz/scalaz-scalacheck-binding_2.13/7.2.33-scalacheck-1.15/scalaz-scalacheck-binding_2.13-7.2.33-scalacheck-1.15.jar" ], "packages": [ "scalaz.scalacheck" ], - "sha256": "9a77f9e939e4c14d7a3d9357ca3c8ca57cf2fc67ff8ff92c95bda850674a1b28", - "url": "https://repo1.maven.org/maven2/org/scalaz/scalaz-scalacheck-binding_2.13/7.2.34-scalacheck-1.15/scalaz-scalacheck-binding_2.13-7.2.34-scalacheck-1.15.jar" + "sha256": "b25e56ec68f83be265fefcd769a21534f58c66a9b5613b6c5409244f0f7b48b1", + "url": "https://repo1.maven.org/maven2/org/scalaz/scalaz-scalacheck-binding_2.13/7.2.33-scalacheck-1.15/scalaz-scalacheck-binding_2.13-7.2.33-scalacheck-1.15.jar" }, { - "coord": "org.scalaz:scalaz-scalacheck-binding_2.13:jar:sources:7.2.34-scalacheck-1.15", + "coord": "org.scalaz:scalaz-scalacheck-binding_2.13:jar:sources:7.2.33-scalacheck-1.15", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scalacheck:scalacheck_2.13:jar:sources:1.15.4", - "org.scalaz:scalaz-concurrent_2.13:jar:sources:7.2.34", - "org.scalaz:scalaz-core_2.13:jar:sources:7.2.34", - "org.scalaz:scalaz-effect_2.13:jar:sources:7.2.34", - "org.scalaz:scalaz-iteratee_2.13:jar:sources:7.2.34" + "org.scalaz:scalaz-concurrent_2.13:jar:sources:7.2.33", + "org.scalaz:scalaz-core_2.13:jar:sources:7.2.33", + "org.scalaz:scalaz-effect_2.13:jar:sources:7.2.33", + "org.scalaz:scalaz-iteratee_2.13:jar:sources:7.2.33" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scalacheck:scalacheck_2.13:jar:sources:1.15.4", - "org.scalaz:scalaz-concurrent_2.13:jar:sources:7.2.34", - "org.scalaz:scalaz-core_2.13:jar:sources:7.2.34", - "org.scalaz:scalaz-iteratee_2.13:jar:sources:7.2.34" + "org.scalaz:scalaz-concurrent_2.13:jar:sources:7.2.33", + "org.scalaz:scalaz-core_2.13:jar:sources:7.2.33", + "org.scalaz:scalaz-iteratee_2.13:jar:sources:7.2.33" ], - "file": "v1/https/repo1.maven.org/maven2/org/scalaz/scalaz-scalacheck-binding_2.13/7.2.34-scalacheck-1.15/scalaz-scalacheck-binding_2.13-7.2.34-scalacheck-1.15-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/scalaz/scalaz-scalacheck-binding_2.13/7.2.33-scalacheck-1.15/scalaz-scalacheck-binding_2.13-7.2.33-scalacheck-1.15-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/scalaz/scalaz-scalacheck-binding_2.13/7.2.34-scalacheck-1.15/scalaz-scalacheck-binding_2.13-7.2.34-scalacheck-1.15-sources.jar" + "https://repo1.maven.org/maven2/org/scalaz/scalaz-scalacheck-binding_2.13/7.2.33-scalacheck-1.15/scalaz-scalacheck-binding_2.13-7.2.33-scalacheck-1.15-sources.jar" ], "packages": [], - "sha256": "70b7adcf3672212e59bb64950c6cee23477f6ce01eafe223fd8dc49a671b4131", - "url": "https://repo1.maven.org/maven2/org/scalaz/scalaz-scalacheck-binding_2.13/7.2.34-scalacheck-1.15/scalaz-scalacheck-binding_2.13-7.2.34-scalacheck-1.15-sources.jar" + "sha256": "25c873614cb5e2ce32c7d40b55567595be359b711fa99fba153aafd4a5f27a7f", + "url": "https://repo1.maven.org/maven2/org/scalaz/scalaz-scalacheck-binding_2.13/7.2.33-scalacheck-1.15/scalaz-scalacheck-binding_2.13-7.2.33-scalacheck-1.15-sources.jar" }, { "coord": "org.scodec:scodec-bits_2.13:1.1.27", @@ -17754,2528 +15044,843 @@ "url": "https://repo1.maven.org/maven2/org/scodec/scodec-bits_2.13/1.1.27/scodec-bits_2.13-1.1.27-sources.jar" }, { - "coord": "org.seleniumhq.selenium:htmlunit-driver:2.40.0", + "coord": "org.seleniumhq.selenium:htmlunit-driver:2.39.0", "dependencies": [ - "com.shapesecurity:salvation:2.7.1", - "commons-codec:commons-codec:1.11", - "commons-io:commons-io:2.11.0", + "com.google.guava:guava:31.0.1-jre", + "com.squareup.okhttp3:okhttp:3.11.0", + "com.squareup.okio:okio:1.14.0", + "commons-codec:commons-codec:1.14", + "commons-io:commons-io:2.5", "commons-logging:commons-logging:1.2", "commons-net:commons-net:3.6", - "net.sourceforge.htmlunit:htmlunit-core-js:2.40.0", + "net.bytebuddy:byte-buddy:1.10.18", + "net.sourceforge.htmlunit:htmlunit-core-js:2.39.0", "net.sourceforge.htmlunit:htmlunit-cssparser:1.5.0", - "net.sourceforge.htmlunit:htmlunit:2.40.0", - "net.sourceforge.htmlunit:neko-htmlunit:2.40.0", - "org.apache.commons:commons-lang3:3.12.0", - "org.apache.commons:commons-text:1.10.0", + "net.sourceforge.htmlunit:htmlunit:2.39.0", + "net.sourceforge.htmlunit:neko-htmlunit:2.39.0", + "org.apache.commons:commons-exec:1.3", + "org.apache.commons:commons-lang3:3.9", + "org.apache.commons:commons-text:1.4", "org.apache.httpcomponents:httpclient:4.5.12", "org.apache.httpcomponents:httpcore:4.4.13", "org.apache.httpcomponents:httpmime:4.5.12", "org.brotli:dec:0.1.2", - "org.eclipse.jetty.websocket:websocket-client:9.4.48.v20220622", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-support:4.5.0", + "org.eclipse.jetty.websocket:websocket-api:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-client:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-common:9.4.27.v20200227", + "org.eclipse.jetty:jetty-client:9.4.27.v20200227", + "org.eclipse.jetty:jetty-http:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:9.4.27.v20200227", + "org.eclipse.jetty:jetty-util:9.4.27.v20200227", + "org.eclipse.jetty:jetty-xml:9.4.27.v20200227", + "org.seleniumhq.selenium:selenium-api:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:3.141.59", + "org.seleniumhq.selenium:selenium-support:3.141.59", "xalan:serializer:2.7.2", "xalan:xalan:2.7.2", "xerces:xercesImpl:2.12.0", "xml-apis:xml-apis:1.4.01" ], "directDependencies": [ - "net.sourceforge.htmlunit:htmlunit:2.40.0", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-support:4.5.0" + "net.sourceforge.htmlunit:htmlunit:2.39.0", + "org.seleniumhq.selenium:selenium-api:3.141.59", + "org.seleniumhq.selenium:selenium-support:3.141.59" ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/htmlunit-driver/2.40.0/htmlunit-driver-2.40.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/htmlunit-driver/2.39.0/htmlunit-driver-2.39.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/htmlunit-driver/2.40.0/htmlunit-driver-2.40.0.jar" + "https://repo1.maven.org/maven2/org/seleniumhq/selenium/htmlunit-driver/2.39.0/htmlunit-driver-2.39.0.jar" ], "packages": [ "org.openqa.selenium.htmlunit", "org.openqa.selenium.htmlunit.logging" ], - "sha256": "9aa19cd2682c77133a3b8f0133c18b144e5a0937bdb8f09505c37399a6eb77c2", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/htmlunit-driver/2.40.0/htmlunit-driver-2.40.0.jar" + "sha256": "ddb1783d4cb4cf0329cfb313b1fa7ccea74cec0ae1befcd8c2a934def4c33862", + "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/htmlunit-driver/2.39.0/htmlunit-driver-2.39.0.jar" }, { - "coord": "org.seleniumhq.selenium:htmlunit-driver:jar:sources:2.40.0", + "coord": "org.seleniumhq.selenium:htmlunit-driver:jar:sources:2.39.0", "dependencies": [ - "com.shapesecurity:salvation:jar:sources:2.7.1", - "commons-codec:commons-codec:jar:sources:1.11", - "commons-io:commons-io:jar:sources:2.11.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", + "com.squareup.okio:okio:jar:sources:1.14.0", + "commons-codec:commons-codec:jar:sources:1.14", + "commons-io:commons-io:jar:sources:2.5", "commons-logging:commons-logging:jar:sources:1.2", "commons-net:commons-net:jar:sources:3.6", - "net.sourceforge.htmlunit:htmlunit-core-js:jar:sources:2.40.0", + "net.bytebuddy:byte-buddy:jar:sources:1.10.18", + "net.sourceforge.htmlunit:htmlunit-core-js:jar:sources:2.39.0", "net.sourceforge.htmlunit:htmlunit-cssparser:jar:sources:1.5.0", - "net.sourceforge.htmlunit:htmlunit:jar:sources:2.40.0", - "net.sourceforge.htmlunit:neko-htmlunit:jar:sources:2.40.0", - "org.apache.commons:commons-lang3:jar:sources:3.12.0", - "org.apache.commons:commons-text:jar:sources:1.10.0", + "net.sourceforge.htmlunit:htmlunit:jar:sources:2.39.0", + "net.sourceforge.htmlunit:neko-htmlunit:jar:sources:2.39.0", + "org.apache.commons:commons-exec:jar:sources:1.3", + "org.apache.commons:commons-lang3:jar:sources:3.9", + "org.apache.commons:commons-text:jar:sources:1.4", "org.apache.httpcomponents:httpclient:jar:sources:4.5.12", "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", "org.apache.httpcomponents:httpmime:jar:sources:4.5.12", "org.brotli:dec:jar:sources:0.1.2", - "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.48.v20220622", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-support:jar:sources:4.5.0", + "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-client:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-http:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-io:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-util:jar:sources:9.4.27.v20200227", + "org.eclipse.jetty:jetty-xml:jar:sources:9.4.27.v20200227", + "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", + "org.seleniumhq.selenium:selenium-support:jar:sources:3.141.59", "xalan:serializer:jar:sources:2.7.2", "xalan:xalan:jar:sources:2.7.2", "xerces:xercesImpl:jar:sources:2.12.0", "xml-apis:xml-apis:jar:sources:1.4.01" ], "directDependencies": [ - "net.sourceforge.htmlunit:htmlunit:jar:sources:2.40.0", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-support:jar:sources:4.5.0" + "net.sourceforge.htmlunit:htmlunit:jar:sources:2.39.0", + "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", + "org.seleniumhq.selenium:selenium-support:jar:sources:3.141.59" ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/htmlunit-driver/2.40.0/htmlunit-driver-2.40.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/htmlunit-driver/2.39.0/htmlunit-driver-2.39.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/htmlunit-driver/2.40.0/htmlunit-driver-2.40.0-sources.jar" + "https://repo1.maven.org/maven2/org/seleniumhq/selenium/htmlunit-driver/2.39.0/htmlunit-driver-2.39.0-sources.jar" ], "packages": [], - "sha256": "aa8ff3235acc1d60d42e446c8335697b23470eaa0a2e39096eb41d05232590a3", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/htmlunit-driver/2.40.0/htmlunit-driver-2.40.0-sources.jar" + "sha256": "51dbc1f2717d7ffd857434e5a6bb2683b1607ea88987363d9b4031bfa74c97c1", + "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/htmlunit-driver/2.39.0/htmlunit-driver-2.39.0-sources.jar" }, { - "coord": "org.seleniumhq.selenium:selenium-api:4.5.0", + "coord": "org.seleniumhq.selenium:selenium-api:3.141.59", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-api/4.5.0/selenium-api-4.5.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-api/3.141.59/selenium-api-3.141.59.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-api/4.5.0/selenium-api-4.5.0.jar" + "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-api/3.141.59/selenium-api-3.141.59.jar" ], "packages": [ "org.openqa.selenium", "org.openqa.selenium.html5", "org.openqa.selenium.interactions", + "org.openqa.selenium.interactions.internal", + "org.openqa.selenium.interactions.touch", "org.openqa.selenium.internal", "org.openqa.selenium.logging", "org.openqa.selenium.logging.profiler", - "org.openqa.selenium.mobile", - "org.openqa.selenium.net", - "org.openqa.selenium.print", - "org.openqa.selenium.virtualauthenticator" - ], - "sha256": "b933bbefabada2812b6869660d1bcbad1910cb1da9256466c36e06f153cb5f90", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-api/4.5.0/selenium-api-4.5.0.jar" - }, - { - "coord": "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-api/4.5.0/selenium-api-4.5.0-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-api/4.5.0/selenium-api-4.5.0-sources.jar" - ], - "packages": [], - "sha256": "059961f3cd5e41e0aa912fceaffdf83dea614914c3de295fe108809651a4e96c", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-api/4.5.0/selenium-api-4.5.0-sources.jar" - }, - { - "coord": "org.seleniumhq.selenium:selenium-chrome-driver:4.5.0", - "dependencies": [ - "com.beust:jcommander:1.82", - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.auto:auto-common:1.2", - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.guava:guava:31.1-jre", - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:1.3", - "com.sun.activation:jakarta.activation:1.2.2", - "com.typesafe.netty:netty-reactive-streams:2.0.4", - "dev.failsafe:failsafe:3.2.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec-socks:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-epoll:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-context:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:1.12.0", - "io.opentelemetry:opentelemetry-sdk:1.17.0", - "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha", - "io.ous:jtoml:2.0.0", - "net.bytebuddy:byte-buddy:1.12.14", - "org.apache.commons:commons-exec:1.3", - "org.asynchttpclient:async-http-client-netty-utils:2.12.3", - "org.asynchttpclient:async-http-client:2.12.3", - "org.checkerframework:checker-qual:3.26.0", - "org.reactivestreams:reactive-streams:1.0.4", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-chromium-driver:4.5.0", - "org.seleniumhq.selenium:selenium-http:4.5.0", - "org.seleniumhq.selenium:selenium-json:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0", - "org.slf4j:slf4j-api:1.7.36" - ], - "directDependencies": [ - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.guava:guava:31.1-jre", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-chromium-driver:4.5.0", - "org.seleniumhq.selenium:selenium-json:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0" - ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-chrome-driver/4.5.0/selenium-chrome-driver-4.5.0.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-chrome-driver/4.5.0/selenium-chrome-driver-4.5.0.jar" - ], - "packages": [ - "org.openqa.selenium.chrome" - ], - "sha256": "b6a718dfc547465049215efd9e4f12a36f68e68c44a3108bfeb1959f4f9956b0", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-chrome-driver/4.5.0/selenium-chrome-driver-4.5.0.jar" - }, - { - "coord": "org.seleniumhq.selenium:selenium-chrome-driver:jar:sources:4.5.0", - "dependencies": [ - "com.beust:jcommander:jar:sources:1.82", - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.auto:auto-common:jar:sources:1.2", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:jar:sources:1.3", - "com.sun.activation:jakarta.activation:jar:sources:1.2.2", - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.4", - "dev.failsafe:failsafe:jar:sources:3.2.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec-socks:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-context:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha", - "io.ous:jtoml:jar:sources:2.0.0", - "net.bytebuddy:byte-buddy:jar:sources:1.12.14", - "org.apache.commons:commons-exec:jar:sources:1.3", - "org.asynchttpclient:async-http-client-netty-utils:jar:sources:2.12.3", - "org.asynchttpclient:async-http-client:jar:sources:2.12.3", - "org.checkerframework:checker-qual:jar:sources:3.26.0", - "org.reactivestreams:reactive-streams:jar:sources:1.0.4", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-chromium-driver:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-http:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0", - "org.slf4j:slf4j-api:jar:sources:1.7.36" - ], - "directDependencies": [ - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-chromium-driver:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0" - ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-chrome-driver/4.5.0/selenium-chrome-driver-4.5.0-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-chrome-driver/4.5.0/selenium-chrome-driver-4.5.0-sources.jar" - ], - "packages": [], - "sha256": "06e50e8f8ccff4dadf32b5fb76415e6d70a53bf57bcb5e2edea950d1b0fc056f", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-chrome-driver/4.5.0/selenium-chrome-driver-4.5.0-sources.jar" - }, - { - "coord": "org.seleniumhq.selenium:selenium-chromium-driver:4.5.0", - "dependencies": [ - "com.beust:jcommander:1.82", - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.auto:auto-common:1.2", - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.guava:guava:31.1-jre", - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:1.3", - "com.sun.activation:jakarta.activation:1.2.2", - "com.typesafe.netty:netty-reactive-streams:2.0.4", - "dev.failsafe:failsafe:3.2.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec-socks:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-epoll:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-context:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:1.12.0", - "io.opentelemetry:opentelemetry-sdk:1.17.0", - "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha", - "io.ous:jtoml:2.0.0", - "net.bytebuddy:byte-buddy:1.12.14", - "org.apache.commons:commons-exec:1.3", - "org.asynchttpclient:async-http-client-netty-utils:2.12.3", - "org.asynchttpclient:async-http-client:2.12.3", - "org.checkerframework:checker-qual:3.26.0", - "org.reactivestreams:reactive-streams:1.0.4", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-http:4.5.0", - "org.seleniumhq.selenium:selenium-json:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0", - "org.slf4j:slf4j-api:1.7.36" - ], - "directDependencies": [ - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.guava:guava:31.1-jre", - "org.seleniumhq.selenium:selenium-json:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0" - ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-chromium-driver/4.5.0/selenium-chromium-driver-4.5.0.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-chromium-driver/4.5.0/selenium-chromium-driver-4.5.0.jar" - ], - "packages": [ - "org.openqa.selenium.chromium" - ], - "sha256": "c3d8b1d02206aba3fefaa36740c262f1a0d45759790c7e430d89364afbb27bcb", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-chromium-driver/4.5.0/selenium-chromium-driver-4.5.0.jar" - }, - { - "coord": "org.seleniumhq.selenium:selenium-chromium-driver:jar:sources:4.5.0", - "dependencies": [ - "com.beust:jcommander:jar:sources:1.82", - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.auto:auto-common:jar:sources:1.2", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:jar:sources:1.3", - "com.sun.activation:jakarta.activation:jar:sources:1.2.2", - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.4", - "dev.failsafe:failsafe:jar:sources:3.2.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec-socks:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-context:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha", - "io.ous:jtoml:jar:sources:2.0.0", - "net.bytebuddy:byte-buddy:jar:sources:1.12.14", - "org.apache.commons:commons-exec:jar:sources:1.3", - "org.asynchttpclient:async-http-client-netty-utils:jar:sources:2.12.3", - "org.asynchttpclient:async-http-client:jar:sources:2.12.3", - "org.checkerframework:checker-qual:jar:sources:3.26.0", - "org.reactivestreams:reactive-streams:jar:sources:1.0.4", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-http:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0", - "org.slf4j:slf4j-api:jar:sources:1.7.36" - ], - "directDependencies": [ - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0" - ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-chromium-driver/4.5.0/selenium-chromium-driver-4.5.0-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-chromium-driver/4.5.0/selenium-chromium-driver-4.5.0-sources.jar" - ], - "packages": [], - "sha256": "283c89f12fc0f42cc3e96a2e4e276e76bcaa4d03a77771cfffc7b3be0ffe6f74", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-chromium-driver/4.5.0/selenium-chromium-driver-4.5.0-sources.jar" - }, - { - "coord": "org.seleniumhq.selenium:selenium-devtools-v104:4.5.0", - "dependencies": [ - "com.beust:jcommander:1.82", - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.auto:auto-common:1.2", - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.guava:guava:31.1-jre", - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:1.3", - "com.sun.activation:jakarta.activation:1.2.2", - "com.typesafe.netty:netty-reactive-streams:2.0.4", - "dev.failsafe:failsafe:3.2.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec-socks:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-epoll:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-context:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:1.12.0", - "io.opentelemetry:opentelemetry-sdk:1.17.0", - "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha", - "io.ous:jtoml:2.0.0", - "net.bytebuddy:byte-buddy:1.12.14", - "org.apache.commons:commons-exec:1.3", - "org.asynchttpclient:async-http-client-netty-utils:2.12.3", - "org.asynchttpclient:async-http-client:2.12.3", - "org.checkerframework:checker-qual:3.26.0", - "org.reactivestreams:reactive-streams:1.0.4", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-http:4.5.0", - "org.seleniumhq.selenium:selenium-json:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0", - "org.slf4j:slf4j-api:1.7.36" - ], - "directDependencies": [ - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.guava:guava:31.1-jre", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-json:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0" - ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v104/4.5.0/selenium-devtools-v104-4.5.0.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v104/4.5.0/selenium-devtools-v104-4.5.0.jar" - ], - "packages": [ - "org.openqa.selenium.devtools.v104", - "org.openqa.selenium.devtools.v104.accessibility", - "org.openqa.selenium.devtools.v104.accessibility.model", - "org.openqa.selenium.devtools.v104.animation", - "org.openqa.selenium.devtools.v104.animation.model", - "org.openqa.selenium.devtools.v104.audits", - "org.openqa.selenium.devtools.v104.audits.model", - "org.openqa.selenium.devtools.v104.backgroundservice", - "org.openqa.selenium.devtools.v104.backgroundservice.model", - "org.openqa.selenium.devtools.v104.browser", - "org.openqa.selenium.devtools.v104.browser.model", - "org.openqa.selenium.devtools.v104.cachestorage", - "org.openqa.selenium.devtools.v104.cachestorage.model", - "org.openqa.selenium.devtools.v104.cast", - "org.openqa.selenium.devtools.v104.cast.model", - "org.openqa.selenium.devtools.v104.console", - "org.openqa.selenium.devtools.v104.console.model", - "org.openqa.selenium.devtools.v104.css", - "org.openqa.selenium.devtools.v104.css.model", - "org.openqa.selenium.devtools.v104.database", - "org.openqa.selenium.devtools.v104.database.model", - "org.openqa.selenium.devtools.v104.debugger", - "org.openqa.selenium.devtools.v104.debugger.model", - "org.openqa.selenium.devtools.v104.deviceorientation", - "org.openqa.selenium.devtools.v104.dom", - "org.openqa.selenium.devtools.v104.dom.model", - "org.openqa.selenium.devtools.v104.domdebugger", - "org.openqa.selenium.devtools.v104.domdebugger.model", - "org.openqa.selenium.devtools.v104.domsnapshot", - "org.openqa.selenium.devtools.v104.domsnapshot.model", - "org.openqa.selenium.devtools.v104.domstorage", - "org.openqa.selenium.devtools.v104.domstorage.model", - "org.openqa.selenium.devtools.v104.emulation", - "org.openqa.selenium.devtools.v104.emulation.model", - "org.openqa.selenium.devtools.v104.eventbreakpoints", - "org.openqa.selenium.devtools.v104.fetch", - "org.openqa.selenium.devtools.v104.fetch.model", - "org.openqa.selenium.devtools.v104.headlessexperimental", - "org.openqa.selenium.devtools.v104.headlessexperimental.model", - "org.openqa.selenium.devtools.v104.heapprofiler", - "org.openqa.selenium.devtools.v104.heapprofiler.model", - "org.openqa.selenium.devtools.v104.indexeddb", - "org.openqa.selenium.devtools.v104.indexeddb.model", - "org.openqa.selenium.devtools.v104.input", - "org.openqa.selenium.devtools.v104.input.model", - "org.openqa.selenium.devtools.v104.inspector", - "org.openqa.selenium.devtools.v104.io", - "org.openqa.selenium.devtools.v104.io.model", - "org.openqa.selenium.devtools.v104.layertree", - "org.openqa.selenium.devtools.v104.layertree.model", - "org.openqa.selenium.devtools.v104.log", - "org.openqa.selenium.devtools.v104.log.model", - "org.openqa.selenium.devtools.v104.media", - "org.openqa.selenium.devtools.v104.media.model", - "org.openqa.selenium.devtools.v104.memory", - "org.openqa.selenium.devtools.v104.memory.model", - "org.openqa.selenium.devtools.v104.network", - "org.openqa.selenium.devtools.v104.network.model", - "org.openqa.selenium.devtools.v104.overlay", - "org.openqa.selenium.devtools.v104.overlay.model", - "org.openqa.selenium.devtools.v104.page", - "org.openqa.selenium.devtools.v104.page.model", - "org.openqa.selenium.devtools.v104.performance", - "org.openqa.selenium.devtools.v104.performance.model", - "org.openqa.selenium.devtools.v104.performancetimeline", - "org.openqa.selenium.devtools.v104.performancetimeline.model", - "org.openqa.selenium.devtools.v104.profiler", - "org.openqa.selenium.devtools.v104.profiler.model", - "org.openqa.selenium.devtools.v104.runtime", - "org.openqa.selenium.devtools.v104.runtime.model", - "org.openqa.selenium.devtools.v104.schema", - "org.openqa.selenium.devtools.v104.schema.model", - "org.openqa.selenium.devtools.v104.security", - "org.openqa.selenium.devtools.v104.security.model", - "org.openqa.selenium.devtools.v104.serviceworker", - "org.openqa.selenium.devtools.v104.serviceworker.model", - "org.openqa.selenium.devtools.v104.storage", - "org.openqa.selenium.devtools.v104.storage.model", - "org.openqa.selenium.devtools.v104.systeminfo", - "org.openqa.selenium.devtools.v104.systeminfo.model", - "org.openqa.selenium.devtools.v104.target", - "org.openqa.selenium.devtools.v104.target.model", - "org.openqa.selenium.devtools.v104.tethering", - "org.openqa.selenium.devtools.v104.tethering.model", - "org.openqa.selenium.devtools.v104.tracing", - "org.openqa.selenium.devtools.v104.tracing.model", - "org.openqa.selenium.devtools.v104.webaudio", - "org.openqa.selenium.devtools.v104.webaudio.model", - "org.openqa.selenium.devtools.v104.webauthn", - "org.openqa.selenium.devtools.v104.webauthn.model" - ], - "sha256": "5d67f622dac68db32744c98ee90d807c1abc02713ee765522e313e808d409bda", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v104/4.5.0/selenium-devtools-v104-4.5.0.jar" - }, - { - "coord": "org.seleniumhq.selenium:selenium-devtools-v104:jar:sources:4.5.0", - "dependencies": [ - "com.beust:jcommander:jar:sources:1.82", - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.auto:auto-common:jar:sources:1.2", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:jar:sources:1.3", - "com.sun.activation:jakarta.activation:jar:sources:1.2.2", - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.4", - "dev.failsafe:failsafe:jar:sources:3.2.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec-socks:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-context:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha", - "io.ous:jtoml:jar:sources:2.0.0", - "net.bytebuddy:byte-buddy:jar:sources:1.12.14", - "org.apache.commons:commons-exec:jar:sources:1.3", - "org.asynchttpclient:async-http-client-netty-utils:jar:sources:2.12.3", - "org.asynchttpclient:async-http-client:jar:sources:2.12.3", - "org.checkerframework:checker-qual:jar:sources:3.26.0", - "org.reactivestreams:reactive-streams:jar:sources:1.0.4", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-http:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0", - "org.slf4j:slf4j-api:jar:sources:1.7.36" - ], - "directDependencies": [ - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0" - ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v104/4.5.0/selenium-devtools-v104-4.5.0-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v104/4.5.0/selenium-devtools-v104-4.5.0-sources.jar" - ], - "packages": [], - "sha256": "cefec2423f62f94ff708d54b8b887a4c316ee8a82b8008030ab6b4d1521e923d", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v104/4.5.0/selenium-devtools-v104-4.5.0-sources.jar" - }, - { - "coord": "org.seleniumhq.selenium:selenium-devtools-v105:4.5.0", - "dependencies": [ - "com.beust:jcommander:1.82", - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.auto:auto-common:1.2", - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.guava:guava:31.1-jre", - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:1.3", - "com.sun.activation:jakarta.activation:1.2.2", - "com.typesafe.netty:netty-reactive-streams:2.0.4", - "dev.failsafe:failsafe:3.2.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec-socks:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-epoll:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-context:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:1.12.0", - "io.opentelemetry:opentelemetry-sdk:1.17.0", - "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha", - "io.ous:jtoml:2.0.0", - "net.bytebuddy:byte-buddy:1.12.14", - "org.apache.commons:commons-exec:1.3", - "org.asynchttpclient:async-http-client-netty-utils:2.12.3", - "org.asynchttpclient:async-http-client:2.12.3", - "org.checkerframework:checker-qual:3.26.0", - "org.reactivestreams:reactive-streams:1.0.4", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-http:4.5.0", - "org.seleniumhq.selenium:selenium-json:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0", - "org.slf4j:slf4j-api:1.7.36" - ], - "directDependencies": [ - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.guava:guava:31.1-jre", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-json:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0" - ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v105/4.5.0/selenium-devtools-v105-4.5.0.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v105/4.5.0/selenium-devtools-v105-4.5.0.jar" - ], - "packages": [ - "org.openqa.selenium.devtools.v105", - "org.openqa.selenium.devtools.v105.accessibility", - "org.openqa.selenium.devtools.v105.accessibility.model", - "org.openqa.selenium.devtools.v105.animation", - "org.openqa.selenium.devtools.v105.animation.model", - "org.openqa.selenium.devtools.v105.audits", - "org.openqa.selenium.devtools.v105.audits.model", - "org.openqa.selenium.devtools.v105.backgroundservice", - "org.openqa.selenium.devtools.v105.backgroundservice.model", - "org.openqa.selenium.devtools.v105.browser", - "org.openqa.selenium.devtools.v105.browser.model", - "org.openqa.selenium.devtools.v105.cachestorage", - "org.openqa.selenium.devtools.v105.cachestorage.model", - "org.openqa.selenium.devtools.v105.cast", - "org.openqa.selenium.devtools.v105.cast.model", - "org.openqa.selenium.devtools.v105.console", - "org.openqa.selenium.devtools.v105.console.model", - "org.openqa.selenium.devtools.v105.css", - "org.openqa.selenium.devtools.v105.css.model", - "org.openqa.selenium.devtools.v105.database", - "org.openqa.selenium.devtools.v105.database.model", - "org.openqa.selenium.devtools.v105.debugger", - "org.openqa.selenium.devtools.v105.debugger.model", - "org.openqa.selenium.devtools.v105.deviceorientation", - "org.openqa.selenium.devtools.v105.dom", - "org.openqa.selenium.devtools.v105.dom.model", - "org.openqa.selenium.devtools.v105.domdebugger", - "org.openqa.selenium.devtools.v105.domdebugger.model", - "org.openqa.selenium.devtools.v105.domsnapshot", - "org.openqa.selenium.devtools.v105.domsnapshot.model", - "org.openqa.selenium.devtools.v105.domstorage", - "org.openqa.selenium.devtools.v105.domstorage.model", - "org.openqa.selenium.devtools.v105.emulation", - "org.openqa.selenium.devtools.v105.emulation.model", - "org.openqa.selenium.devtools.v105.eventbreakpoints", - "org.openqa.selenium.devtools.v105.fetch", - "org.openqa.selenium.devtools.v105.fetch.model", - "org.openqa.selenium.devtools.v105.headlessexperimental", - "org.openqa.selenium.devtools.v105.headlessexperimental.model", - "org.openqa.selenium.devtools.v105.heapprofiler", - "org.openqa.selenium.devtools.v105.heapprofiler.model", - "org.openqa.selenium.devtools.v105.indexeddb", - "org.openqa.selenium.devtools.v105.indexeddb.model", - "org.openqa.selenium.devtools.v105.input", - "org.openqa.selenium.devtools.v105.input.model", - "org.openqa.selenium.devtools.v105.inspector", - "org.openqa.selenium.devtools.v105.io", - "org.openqa.selenium.devtools.v105.io.model", - "org.openqa.selenium.devtools.v105.layertree", - "org.openqa.selenium.devtools.v105.layertree.model", - "org.openqa.selenium.devtools.v105.log", - "org.openqa.selenium.devtools.v105.log.model", - "org.openqa.selenium.devtools.v105.media", - "org.openqa.selenium.devtools.v105.media.model", - "org.openqa.selenium.devtools.v105.memory", - "org.openqa.selenium.devtools.v105.memory.model", - "org.openqa.selenium.devtools.v105.network", - "org.openqa.selenium.devtools.v105.network.model", - "org.openqa.selenium.devtools.v105.overlay", - "org.openqa.selenium.devtools.v105.overlay.model", - "org.openqa.selenium.devtools.v105.page", - "org.openqa.selenium.devtools.v105.page.model", - "org.openqa.selenium.devtools.v105.performance", - "org.openqa.selenium.devtools.v105.performance.model", - "org.openqa.selenium.devtools.v105.performancetimeline", - "org.openqa.selenium.devtools.v105.performancetimeline.model", - "org.openqa.selenium.devtools.v105.profiler", - "org.openqa.selenium.devtools.v105.profiler.model", - "org.openqa.selenium.devtools.v105.runtime", - "org.openqa.selenium.devtools.v105.runtime.model", - "org.openqa.selenium.devtools.v105.schema", - "org.openqa.selenium.devtools.v105.schema.model", - "org.openqa.selenium.devtools.v105.security", - "org.openqa.selenium.devtools.v105.security.model", - "org.openqa.selenium.devtools.v105.serviceworker", - "org.openqa.selenium.devtools.v105.serviceworker.model", - "org.openqa.selenium.devtools.v105.storage", - "org.openqa.selenium.devtools.v105.storage.model", - "org.openqa.selenium.devtools.v105.systeminfo", - "org.openqa.selenium.devtools.v105.systeminfo.model", - "org.openqa.selenium.devtools.v105.target", - "org.openqa.selenium.devtools.v105.target.model", - "org.openqa.selenium.devtools.v105.tethering", - "org.openqa.selenium.devtools.v105.tethering.model", - "org.openqa.selenium.devtools.v105.tracing", - "org.openqa.selenium.devtools.v105.tracing.model", - "org.openqa.selenium.devtools.v105.webaudio", - "org.openqa.selenium.devtools.v105.webaudio.model", - "org.openqa.selenium.devtools.v105.webauthn", - "org.openqa.selenium.devtools.v105.webauthn.model" - ], - "sha256": "6e82177cd295c65d99b2cf524eb58f70ac9bfb00d5e6158abae67a12cde3ee73", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v105/4.5.0/selenium-devtools-v105-4.5.0.jar" - }, - { - "coord": "org.seleniumhq.selenium:selenium-devtools-v105:jar:sources:4.5.0", - "dependencies": [ - "com.beust:jcommander:jar:sources:1.82", - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.auto:auto-common:jar:sources:1.2", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:jar:sources:1.3", - "com.sun.activation:jakarta.activation:jar:sources:1.2.2", - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.4", - "dev.failsafe:failsafe:jar:sources:3.2.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec-socks:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-context:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha", - "io.ous:jtoml:jar:sources:2.0.0", - "net.bytebuddy:byte-buddy:jar:sources:1.12.14", - "org.apache.commons:commons-exec:jar:sources:1.3", - "org.asynchttpclient:async-http-client-netty-utils:jar:sources:2.12.3", - "org.asynchttpclient:async-http-client:jar:sources:2.12.3", - "org.checkerframework:checker-qual:jar:sources:3.26.0", - "org.reactivestreams:reactive-streams:jar:sources:1.0.4", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-http:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0", - "org.slf4j:slf4j-api:jar:sources:1.7.36" - ], - "directDependencies": [ - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0" - ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v105/4.5.0/selenium-devtools-v105-4.5.0-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v105/4.5.0/selenium-devtools-v105-4.5.0-sources.jar" - ], - "packages": [], - "sha256": "b9f8bf9c9520205a9aaa36dc6bb5cde8b60984451919fd8ffd8b6b3359871f9b", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v105/4.5.0/selenium-devtools-v105-4.5.0-sources.jar" - }, - { - "coord": "org.seleniumhq.selenium:selenium-devtools-v106:4.5.0", - "dependencies": [ - "com.beust:jcommander:1.82", - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.auto:auto-common:1.2", - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.guava:guava:31.1-jre", - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:1.3", - "com.sun.activation:jakarta.activation:1.2.2", - "com.typesafe.netty:netty-reactive-streams:2.0.4", - "dev.failsafe:failsafe:3.2.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec-socks:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-epoll:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-context:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:1.12.0", - "io.opentelemetry:opentelemetry-sdk:1.17.0", - "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha", - "io.ous:jtoml:2.0.0", - "net.bytebuddy:byte-buddy:1.12.14", - "org.apache.commons:commons-exec:1.3", - "org.asynchttpclient:async-http-client-netty-utils:2.12.3", - "org.asynchttpclient:async-http-client:2.12.3", - "org.checkerframework:checker-qual:3.26.0", - "org.reactivestreams:reactive-streams:1.0.4", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-http:4.5.0", - "org.seleniumhq.selenium:selenium-json:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0", - "org.slf4j:slf4j-api:1.7.36" - ], - "directDependencies": [ - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.guava:guava:31.1-jre", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-json:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0" - ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v106/4.5.0/selenium-devtools-v106-4.5.0.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v106/4.5.0/selenium-devtools-v106-4.5.0.jar" - ], - "packages": [ - "org.openqa.selenium.devtools.v106", - "org.openqa.selenium.devtools.v106.accessibility", - "org.openqa.selenium.devtools.v106.accessibility.model", - "org.openqa.selenium.devtools.v106.animation", - "org.openqa.selenium.devtools.v106.animation.model", - "org.openqa.selenium.devtools.v106.audits", - "org.openqa.selenium.devtools.v106.audits.model", - "org.openqa.selenium.devtools.v106.backgroundservice", - "org.openqa.selenium.devtools.v106.backgroundservice.model", - "org.openqa.selenium.devtools.v106.browser", - "org.openqa.selenium.devtools.v106.browser.model", - "org.openqa.selenium.devtools.v106.cachestorage", - "org.openqa.selenium.devtools.v106.cachestorage.model", - "org.openqa.selenium.devtools.v106.cast", - "org.openqa.selenium.devtools.v106.cast.model", - "org.openqa.selenium.devtools.v106.console", - "org.openqa.selenium.devtools.v106.console.model", - "org.openqa.selenium.devtools.v106.css", - "org.openqa.selenium.devtools.v106.css.model", - "org.openqa.selenium.devtools.v106.database", - "org.openqa.selenium.devtools.v106.database.model", - "org.openqa.selenium.devtools.v106.debugger", - "org.openqa.selenium.devtools.v106.debugger.model", - "org.openqa.selenium.devtools.v106.deviceorientation", - "org.openqa.selenium.devtools.v106.dom", - "org.openqa.selenium.devtools.v106.dom.model", - "org.openqa.selenium.devtools.v106.domdebugger", - "org.openqa.selenium.devtools.v106.domdebugger.model", - "org.openqa.selenium.devtools.v106.domsnapshot", - "org.openqa.selenium.devtools.v106.domsnapshot.model", - "org.openqa.selenium.devtools.v106.domstorage", - "org.openqa.selenium.devtools.v106.domstorage.model", - "org.openqa.selenium.devtools.v106.emulation", - "org.openqa.selenium.devtools.v106.emulation.model", - "org.openqa.selenium.devtools.v106.eventbreakpoints", - "org.openqa.selenium.devtools.v106.fetch", - "org.openqa.selenium.devtools.v106.fetch.model", - "org.openqa.selenium.devtools.v106.headlessexperimental", - "org.openqa.selenium.devtools.v106.headlessexperimental.model", - "org.openqa.selenium.devtools.v106.heapprofiler", - "org.openqa.selenium.devtools.v106.heapprofiler.model", - "org.openqa.selenium.devtools.v106.indexeddb", - "org.openqa.selenium.devtools.v106.indexeddb.model", - "org.openqa.selenium.devtools.v106.input", - "org.openqa.selenium.devtools.v106.input.model", - "org.openqa.selenium.devtools.v106.inspector", - "org.openqa.selenium.devtools.v106.io", - "org.openqa.selenium.devtools.v106.io.model", - "org.openqa.selenium.devtools.v106.layertree", - "org.openqa.selenium.devtools.v106.layertree.model", - "org.openqa.selenium.devtools.v106.log", - "org.openqa.selenium.devtools.v106.log.model", - "org.openqa.selenium.devtools.v106.media", - "org.openqa.selenium.devtools.v106.media.model", - "org.openqa.selenium.devtools.v106.memory", - "org.openqa.selenium.devtools.v106.memory.model", - "org.openqa.selenium.devtools.v106.network", - "org.openqa.selenium.devtools.v106.network.model", - "org.openqa.selenium.devtools.v106.overlay", - "org.openqa.selenium.devtools.v106.overlay.model", - "org.openqa.selenium.devtools.v106.page", - "org.openqa.selenium.devtools.v106.page.model", - "org.openqa.selenium.devtools.v106.performance", - "org.openqa.selenium.devtools.v106.performance.model", - "org.openqa.selenium.devtools.v106.performancetimeline", - "org.openqa.selenium.devtools.v106.performancetimeline.model", - "org.openqa.selenium.devtools.v106.profiler", - "org.openqa.selenium.devtools.v106.profiler.model", - "org.openqa.selenium.devtools.v106.runtime", - "org.openqa.selenium.devtools.v106.runtime.model", - "org.openqa.selenium.devtools.v106.schema", - "org.openqa.selenium.devtools.v106.schema.model", - "org.openqa.selenium.devtools.v106.security", - "org.openqa.selenium.devtools.v106.security.model", - "org.openqa.selenium.devtools.v106.serviceworker", - "org.openqa.selenium.devtools.v106.serviceworker.model", - "org.openqa.selenium.devtools.v106.storage", - "org.openqa.selenium.devtools.v106.storage.model", - "org.openqa.selenium.devtools.v106.systeminfo", - "org.openqa.selenium.devtools.v106.systeminfo.model", - "org.openqa.selenium.devtools.v106.target", - "org.openqa.selenium.devtools.v106.target.model", - "org.openqa.selenium.devtools.v106.tethering", - "org.openqa.selenium.devtools.v106.tethering.model", - "org.openqa.selenium.devtools.v106.tracing", - "org.openqa.selenium.devtools.v106.tracing.model", - "org.openqa.selenium.devtools.v106.webaudio", - "org.openqa.selenium.devtools.v106.webaudio.model", - "org.openqa.selenium.devtools.v106.webauthn", - "org.openqa.selenium.devtools.v106.webauthn.model" - ], - "sha256": "c9b2b145477222411cd0e203e5ce64287d384617b250bfacdf4e9631760c0bd8", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v106/4.5.0/selenium-devtools-v106-4.5.0.jar" - }, - { - "coord": "org.seleniumhq.selenium:selenium-devtools-v106:jar:sources:4.5.0", - "dependencies": [ - "com.beust:jcommander:jar:sources:1.82", - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.auto:auto-common:jar:sources:1.2", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:jar:sources:1.3", - "com.sun.activation:jakarta.activation:jar:sources:1.2.2", - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.4", - "dev.failsafe:failsafe:jar:sources:3.2.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec-socks:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-context:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha", - "io.ous:jtoml:jar:sources:2.0.0", - "net.bytebuddy:byte-buddy:jar:sources:1.12.14", - "org.apache.commons:commons-exec:jar:sources:1.3", - "org.asynchttpclient:async-http-client-netty-utils:jar:sources:2.12.3", - "org.asynchttpclient:async-http-client:jar:sources:2.12.3", - "org.checkerframework:checker-qual:jar:sources:3.26.0", - "org.reactivestreams:reactive-streams:jar:sources:1.0.4", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-http:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0", - "org.slf4j:slf4j-api:jar:sources:1.7.36" - ], - "directDependencies": [ - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0" + "org.openqa.selenium.mobile" ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v106/4.5.0/selenium-devtools-v106-4.5.0-sources.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v106/4.5.0/selenium-devtools-v106-4.5.0-sources.jar" - ], - "packages": [], - "sha256": "bdb6a6f9c6333b3f1b9438a2f47749ebe29c041d3b2ef116a0a855f4c5a3b810", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v106/4.5.0/selenium-devtools-v106-4.5.0-sources.jar" + "sha256": "8bfd5a736eccfc08866301ffc9b7f529e55976355c5799bed8392486df64dee5", + "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-api/3.141.59/selenium-api-3.141.59.jar" }, - { - "coord": "org.seleniumhq.selenium:selenium-devtools-v85:4.5.0", - "dependencies": [ - "com.beust:jcommander:1.82", - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.auto:auto-common:1.2", - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.guava:guava:31.1-jre", - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:1.3", - "com.sun.activation:jakarta.activation:1.2.2", - "com.typesafe.netty:netty-reactive-streams:2.0.4", - "dev.failsafe:failsafe:3.2.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec-socks:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-epoll:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-context:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:1.12.0", - "io.opentelemetry:opentelemetry-sdk:1.17.0", - "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha", - "io.ous:jtoml:2.0.0", - "net.bytebuddy:byte-buddy:1.12.14", - "org.apache.commons:commons-exec:1.3", - "org.asynchttpclient:async-http-client-netty-utils:2.12.3", - "org.asynchttpclient:async-http-client:2.12.3", - "org.checkerframework:checker-qual:3.26.0", - "org.reactivestreams:reactive-streams:1.0.4", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-http:4.5.0", - "org.seleniumhq.selenium:selenium-json:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0", - "org.slf4j:slf4j-api:1.7.36" - ], - "directDependencies": [ - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.guava:guava:31.1-jre", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-json:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0" - ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v85/4.5.0/selenium-devtools-v85-4.5.0.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v85/4.5.0/selenium-devtools-v85-4.5.0.jar" - ], - "packages": [ - "org.openqa.selenium.devtools.v85", - "org.openqa.selenium.devtools.v85.accessibility", - "org.openqa.selenium.devtools.v85.accessibility.model", - "org.openqa.selenium.devtools.v85.animation", - "org.openqa.selenium.devtools.v85.animation.model", - "org.openqa.selenium.devtools.v85.applicationcache", - "org.openqa.selenium.devtools.v85.applicationcache.model", - "org.openqa.selenium.devtools.v85.audits", - "org.openqa.selenium.devtools.v85.audits.model", - "org.openqa.selenium.devtools.v85.backgroundservice", - "org.openqa.selenium.devtools.v85.backgroundservice.model", - "org.openqa.selenium.devtools.v85.browser", - "org.openqa.selenium.devtools.v85.browser.model", - "org.openqa.selenium.devtools.v85.cachestorage", - "org.openqa.selenium.devtools.v85.cachestorage.model", - "org.openqa.selenium.devtools.v85.cast", - "org.openqa.selenium.devtools.v85.cast.model", - "org.openqa.selenium.devtools.v85.console", - "org.openqa.selenium.devtools.v85.console.model", - "org.openqa.selenium.devtools.v85.css", - "org.openqa.selenium.devtools.v85.css.model", - "org.openqa.selenium.devtools.v85.database", - "org.openqa.selenium.devtools.v85.database.model", - "org.openqa.selenium.devtools.v85.debugger", - "org.openqa.selenium.devtools.v85.debugger.model", - "org.openqa.selenium.devtools.v85.deviceorientation", - "org.openqa.selenium.devtools.v85.dom", - "org.openqa.selenium.devtools.v85.dom.model", - "org.openqa.selenium.devtools.v85.domdebugger", - "org.openqa.selenium.devtools.v85.domdebugger.model", - "org.openqa.selenium.devtools.v85.domsnapshot", - "org.openqa.selenium.devtools.v85.domsnapshot.model", - "org.openqa.selenium.devtools.v85.domstorage", - "org.openqa.selenium.devtools.v85.domstorage.model", - "org.openqa.selenium.devtools.v85.emulation", - "org.openqa.selenium.devtools.v85.emulation.model", - "org.openqa.selenium.devtools.v85.fetch", - "org.openqa.selenium.devtools.v85.fetch.model", - "org.openqa.selenium.devtools.v85.headlessexperimental", - "org.openqa.selenium.devtools.v85.headlessexperimental.model", - "org.openqa.selenium.devtools.v85.heapprofiler", - "org.openqa.selenium.devtools.v85.heapprofiler.model", - "org.openqa.selenium.devtools.v85.indexeddb", - "org.openqa.selenium.devtools.v85.indexeddb.model", - "org.openqa.selenium.devtools.v85.input", - "org.openqa.selenium.devtools.v85.input.model", - "org.openqa.selenium.devtools.v85.inspector", - "org.openqa.selenium.devtools.v85.io", - "org.openqa.selenium.devtools.v85.io.model", - "org.openqa.selenium.devtools.v85.layertree", - "org.openqa.selenium.devtools.v85.layertree.model", - "org.openqa.selenium.devtools.v85.log", - "org.openqa.selenium.devtools.v85.log.model", - "org.openqa.selenium.devtools.v85.media", - "org.openqa.selenium.devtools.v85.media.model", - "org.openqa.selenium.devtools.v85.memory", - "org.openqa.selenium.devtools.v85.memory.model", - "org.openqa.selenium.devtools.v85.network", - "org.openqa.selenium.devtools.v85.network.model", - "org.openqa.selenium.devtools.v85.overlay", - "org.openqa.selenium.devtools.v85.overlay.model", - "org.openqa.selenium.devtools.v85.page", - "org.openqa.selenium.devtools.v85.page.model", - "org.openqa.selenium.devtools.v85.performance", - "org.openqa.selenium.devtools.v85.performance.model", - "org.openqa.selenium.devtools.v85.profiler", - "org.openqa.selenium.devtools.v85.profiler.model", - "org.openqa.selenium.devtools.v85.runtime", - "org.openqa.selenium.devtools.v85.runtime.model", - "org.openqa.selenium.devtools.v85.schema", - "org.openqa.selenium.devtools.v85.schema.model", - "org.openqa.selenium.devtools.v85.security", - "org.openqa.selenium.devtools.v85.security.model", - "org.openqa.selenium.devtools.v85.serviceworker", - "org.openqa.selenium.devtools.v85.serviceworker.model", - "org.openqa.selenium.devtools.v85.storage", - "org.openqa.selenium.devtools.v85.storage.model", - "org.openqa.selenium.devtools.v85.systeminfo", - "org.openqa.selenium.devtools.v85.systeminfo.model", - "org.openqa.selenium.devtools.v85.target", - "org.openqa.selenium.devtools.v85.target.model", - "org.openqa.selenium.devtools.v85.tethering", - "org.openqa.selenium.devtools.v85.tethering.model", - "org.openqa.selenium.devtools.v85.tracing", - "org.openqa.selenium.devtools.v85.tracing.model", - "org.openqa.selenium.devtools.v85.webaudio", - "org.openqa.selenium.devtools.v85.webaudio.model", - "org.openqa.selenium.devtools.v85.webauthn", - "org.openqa.selenium.devtools.v85.webauthn.model" - ], - "sha256": "b424555af091de01b59adf65d46e6320910a361c7eaadbb4584aa459243de333", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v85/4.5.0/selenium-devtools-v85-4.5.0.jar" - }, - { - "coord": "org.seleniumhq.selenium:selenium-devtools-v85:jar:sources:4.5.0", - "dependencies": [ - "com.beust:jcommander:jar:sources:1.82", - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.auto:auto-common:jar:sources:1.2", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:jar:sources:1.3", - "com.sun.activation:jakarta.activation:jar:sources:1.2.2", - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.4", - "dev.failsafe:failsafe:jar:sources:3.2.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec-socks:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-context:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha", - "io.ous:jtoml:jar:sources:2.0.0", - "net.bytebuddy:byte-buddy:jar:sources:1.12.14", - "org.apache.commons:commons-exec:jar:sources:1.3", - "org.asynchttpclient:async-http-client-netty-utils:jar:sources:2.12.3", - "org.asynchttpclient:async-http-client:jar:sources:2.12.3", - "org.checkerframework:checker-qual:jar:sources:3.26.0", - "org.reactivestreams:reactive-streams:jar:sources:1.0.4", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-http:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0", - "org.slf4j:slf4j-api:jar:sources:1.7.36" - ], - "directDependencies": [ - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0" - ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v85/4.5.0/selenium-devtools-v85-4.5.0-sources.jar", + { + "coord": "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-api/3.141.59/selenium-api-3.141.59-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v85/4.5.0/selenium-devtools-v85-4.5.0-sources.jar" + "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-api/3.141.59/selenium-api-3.141.59-sources.jar" ], "packages": [], - "sha256": "e7c461aa03dc1a51a61ef0fcc5aa75259d9e77ae421f32001470d9ad9c98975f", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-devtools-v85/4.5.0/selenium-devtools-v85-4.5.0-sources.jar" + "sha256": "91e6c542fbb9b78082a149c8fb012dd439a18b36e69ff25d12279a0392d4c541", + "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-api/3.141.59/selenium-api-3.141.59-sources.jar" }, { - "coord": "org.seleniumhq.selenium:selenium-edge-driver:4.5.0", + "coord": "org.seleniumhq.selenium:selenium-chrome-driver:3.12.0", "dependencies": [ - "com.beust:jcommander:1.82", - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.auto:auto-common:1.2", - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.guava:guava:31.1-jre", - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:1.3", - "com.sun.activation:jakarta.activation:1.2.2", - "com.typesafe.netty:netty-reactive-streams:2.0.4", - "dev.failsafe:failsafe:3.2.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec-socks:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-epoll:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-context:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:1.12.0", - "io.opentelemetry:opentelemetry-sdk:1.17.0", - "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha", - "io.ous:jtoml:2.0.0", - "net.bytebuddy:byte-buddy:1.12.14", + "com.google.code.gson:gson:2.9.0", + "com.google.guava:guava:31.0.1-jre", + "com.squareup.okhttp3:okhttp:3.11.0", + "com.squareup.okio:okio:1.14.0", + "commons-codec:commons-codec:1.14", + "commons-logging:commons-logging:1.2", + "net.bytebuddy:byte-buddy:1.10.18", "org.apache.commons:commons-exec:1.3", - "org.asynchttpclient:async-http-client-netty-utils:2.12.3", - "org.asynchttpclient:async-http-client:2.12.3", - "org.checkerframework:checker-qual:3.26.0", - "org.reactivestreams:reactive-streams:1.0.4", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-chromium-driver:4.5.0", - "org.seleniumhq.selenium:selenium-http:4.5.0", - "org.seleniumhq.selenium:selenium-json:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0", - "org.slf4j:slf4j-api:1.7.36" + "org.apache.httpcomponents:httpclient:4.5.12", + "org.apache.httpcomponents:httpcore:4.4.13", + "org.seleniumhq.selenium:selenium-api:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:3.141.59" ], "directDependencies": [ - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.guava:guava:31.1-jre", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-chromium-driver:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0" + "com.google.code.gson:gson:2.9.0", + "com.google.guava:guava:31.0.1-jre", + "com.squareup.okhttp3:okhttp:3.11.0", + "com.squareup.okio:okio:1.14.0", + "commons-codec:commons-codec:1.14", + "commons-logging:commons-logging:1.2", + "net.bytebuddy:byte-buddy:1.10.18", + "org.apache.commons:commons-exec:1.3", + "org.apache.httpcomponents:httpclient:4.5.12", + "org.apache.httpcomponents:httpcore:4.4.13", + "org.seleniumhq.selenium:selenium-api:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:3.141.59" ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-edge-driver/4.5.0/selenium-edge-driver-4.5.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-chrome-driver/3.12.0/selenium-chrome-driver-3.12.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-edge-driver/4.5.0/selenium-edge-driver-4.5.0.jar" + "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-chrome-driver/3.12.0/selenium-chrome-driver-3.12.0.jar" ], "packages": [ - "org.openqa.selenium.edge" + "org.openqa.selenium.chrome" ], - "sha256": "4c72a4fd3e10a1a7045c9f7dee60b09422146bb1f2d0bd6f511f486319d8cdf6", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-edge-driver/4.5.0/selenium-edge-driver-4.5.0.jar" + "sha256": "e94ab7d85ee2523673aae75fe1dd4e2f9a6509e666ea6edf7fb9ebea8abd732d", + "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-chrome-driver/3.12.0/selenium-chrome-driver-3.12.0.jar" }, { - "coord": "org.seleniumhq.selenium:selenium-edge-driver:jar:sources:4.5.0", + "coord": "org.seleniumhq.selenium:selenium-chrome-driver:jar:sources:3.12.0", "dependencies": [ - "com.beust:jcommander:jar:sources:1.82", - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.auto:auto-common:jar:sources:1.2", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:jar:sources:1.3", - "com.sun.activation:jakarta.activation:jar:sources:1.2.2", - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.4", - "dev.failsafe:failsafe:jar:sources:3.2.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec-socks:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-context:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha", - "io.ous:jtoml:jar:sources:2.0.0", - "net.bytebuddy:byte-buddy:jar:sources:1.12.14", + "com.google.code.gson:gson:jar:sources:2.9.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", + "com.squareup.okio:okio:jar:sources:1.14.0", + "commons-codec:commons-codec:jar:sources:1.14", + "commons-logging:commons-logging:jar:sources:1.2", + "net.bytebuddy:byte-buddy:jar:sources:1.10.18", "org.apache.commons:commons-exec:jar:sources:1.3", - "org.asynchttpclient:async-http-client-netty-utils:jar:sources:2.12.3", - "org.asynchttpclient:async-http-client:jar:sources:2.12.3", - "org.checkerframework:checker-qual:jar:sources:3.26.0", - "org.reactivestreams:reactive-streams:jar:sources:1.0.4", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-chromium-driver:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-http:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.apache.httpcomponents:httpclient:jar:sources:4.5.12", + "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", + "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59" ], "directDependencies": [ - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-chromium-driver:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0" + "com.google.code.gson:gson:jar:sources:2.9.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", + "com.squareup.okio:okio:jar:sources:1.14.0", + "commons-codec:commons-codec:jar:sources:1.14", + "commons-logging:commons-logging:jar:sources:1.2", + "net.bytebuddy:byte-buddy:jar:sources:1.10.18", + "org.apache.commons:commons-exec:jar:sources:1.3", + "org.apache.httpcomponents:httpclient:jar:sources:4.5.12", + "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", + "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59" ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-edge-driver/4.5.0/selenium-edge-driver-4.5.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-chrome-driver/3.12.0/selenium-chrome-driver-3.12.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-edge-driver/4.5.0/selenium-edge-driver-4.5.0-sources.jar" + "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-chrome-driver/3.12.0/selenium-chrome-driver-3.12.0-sources.jar" ], "packages": [], - "sha256": "3e1e26cf0ecdb09a8f841b48e3265e808f8615fa23bcd3a2ec2e02763838b860", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-edge-driver/4.5.0/selenium-edge-driver-4.5.0-sources.jar" + "sha256": "7e61fb4c0b251abbd21e4aee4f7bf1db2d8b273ccd6dbbcd30b614df14a10bf0", + "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-chrome-driver/3.12.0/selenium-chrome-driver-3.12.0-sources.jar" }, { - "coord": "org.seleniumhq.selenium:selenium-firefox-driver:4.5.0", + "coord": "org.seleniumhq.selenium:selenium-edge-driver:3.12.0", "dependencies": [ - "com.beust:jcommander:1.82", - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.auto:auto-common:1.2", - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.guava:guava:31.1-jre", - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:1.3", - "com.sun.activation:jakarta.activation:1.2.2", - "com.typesafe.netty:netty-reactive-streams:2.0.4", - "dev.failsafe:failsafe:3.2.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec-socks:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-epoll:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-context:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:1.12.0", - "io.opentelemetry:opentelemetry-sdk:1.17.0", - "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha", - "io.ous:jtoml:2.0.0", - "net.bytebuddy:byte-buddy:1.12.14", + "com.google.code.gson:gson:2.9.0", + "com.google.guava:guava:31.0.1-jre", + "com.squareup.okhttp3:okhttp:3.11.0", + "com.squareup.okio:okio:1.14.0", + "commons-codec:commons-codec:1.14", + "commons-logging:commons-logging:1.2", + "net.bytebuddy:byte-buddy:1.10.18", "org.apache.commons:commons-exec:1.3", - "org.asynchttpclient:async-http-client-netty-utils:2.12.3", - "org.asynchttpclient:async-http-client:2.12.3", - "org.checkerframework:checker-qual:3.26.0", - "org.reactivestreams:reactive-streams:1.0.4", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-devtools-v85:4.5.0", - "org.seleniumhq.selenium:selenium-http:4.5.0", - "org.seleniumhq.selenium:selenium-json:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0", - "org.slf4j:slf4j-api:1.7.36" + "org.apache.httpcomponents:httpclient:4.5.12", + "org.apache.httpcomponents:httpcore:4.4.13", + "org.seleniumhq.selenium:selenium-api:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:3.141.59" ], "directDependencies": [ - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.guava:guava:31.1-jre", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-devtools-v85:4.5.0", - "org.seleniumhq.selenium:selenium-json:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0" + "com.google.code.gson:gson:2.9.0", + "com.google.guava:guava:31.0.1-jre", + "com.squareup.okhttp3:okhttp:3.11.0", + "com.squareup.okio:okio:1.14.0", + "commons-codec:commons-codec:1.14", + "commons-logging:commons-logging:1.2", + "net.bytebuddy:byte-buddy:1.10.18", + "org.apache.commons:commons-exec:1.3", + "org.apache.httpcomponents:httpclient:4.5.12", + "org.apache.httpcomponents:httpcore:4.4.13", + "org.seleniumhq.selenium:selenium-api:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:3.141.59" ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-firefox-driver/4.5.0/selenium-firefox-driver-4.5.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-edge-driver/3.12.0/selenium-edge-driver-3.12.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-firefox-driver/4.5.0/selenium-firefox-driver-4.5.0.jar" + "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-edge-driver/3.12.0/selenium-edge-driver-3.12.0.jar" ], "packages": [ - "org.openqa.selenium.bidi", - "org.openqa.selenium.bidi.log", - "org.openqa.selenium.firefox" + "org.openqa.selenium.edge" ], - "sha256": "cdc4f8f099478bf964ea58f6d4adf3b3b3fe792e6decc55975dbae677af9fa5d", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-firefox-driver/4.5.0/selenium-firefox-driver-4.5.0.jar" + "sha256": "e36328729d7f5e557f4a9bfaec7b41b42fcca49db7a18411b9392d644e22230b", + "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-edge-driver/3.12.0/selenium-edge-driver-3.12.0.jar" }, { - "coord": "org.seleniumhq.selenium:selenium-firefox-driver:jar:sources:4.5.0", + "coord": "org.seleniumhq.selenium:selenium-edge-driver:jar:sources:3.12.0", "dependencies": [ - "com.beust:jcommander:jar:sources:1.82", - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.auto:auto-common:jar:sources:1.2", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:jar:sources:1.3", - "com.sun.activation:jakarta.activation:jar:sources:1.2.2", - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.4", - "dev.failsafe:failsafe:jar:sources:3.2.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec-socks:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-context:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha", - "io.ous:jtoml:jar:sources:2.0.0", - "net.bytebuddy:byte-buddy:jar:sources:1.12.14", + "com.google.code.gson:gson:jar:sources:2.9.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", + "com.squareup.okio:okio:jar:sources:1.14.0", + "commons-codec:commons-codec:jar:sources:1.14", + "commons-logging:commons-logging:jar:sources:1.2", + "net.bytebuddy:byte-buddy:jar:sources:1.10.18", "org.apache.commons:commons-exec:jar:sources:1.3", - "org.asynchttpclient:async-http-client-netty-utils:jar:sources:2.12.3", - "org.asynchttpclient:async-http-client:jar:sources:2.12.3", - "org.checkerframework:checker-qual:jar:sources:3.26.0", - "org.reactivestreams:reactive-streams:jar:sources:1.0.4", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-devtools-v85:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-http:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.apache.httpcomponents:httpclient:jar:sources:4.5.12", + "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", + "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59" ], "directDependencies": [ - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-devtools-v85:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0" + "com.google.code.gson:gson:jar:sources:2.9.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", + "com.squareup.okio:okio:jar:sources:1.14.0", + "commons-codec:commons-codec:jar:sources:1.14", + "commons-logging:commons-logging:jar:sources:1.2", + "net.bytebuddy:byte-buddy:jar:sources:1.10.18", + "org.apache.commons:commons-exec:jar:sources:1.3", + "org.apache.httpcomponents:httpclient:jar:sources:4.5.12", + "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", + "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59" ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-firefox-driver/4.5.0/selenium-firefox-driver-4.5.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-edge-driver/3.12.0/selenium-edge-driver-3.12.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-firefox-driver/4.5.0/selenium-firefox-driver-4.5.0-sources.jar" + "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-edge-driver/3.12.0/selenium-edge-driver-3.12.0-sources.jar" ], "packages": [], - "sha256": "789ea49a2cf90974a9b36d150e8e4ae6d9c27c7bb7fb7c738eb573af32b01bf7", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-firefox-driver/4.5.0/selenium-firefox-driver-4.5.0-sources.jar" + "sha256": "adfc72646af39c1cc3506dae64e170c8fb44bdfb770dccb7502512188b0b4957", + "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-edge-driver/3.12.0/selenium-edge-driver-3.12.0-sources.jar" }, { - "coord": "org.seleniumhq.selenium:selenium-http:4.5.0", + "coord": "org.seleniumhq.selenium:selenium-firefox-driver:3.12.0", "dependencies": [ - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.guava:guava:31.1-jre", - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:1.3", - "dev.failsafe:failsafe:3.2.4", - "org.checkerframework:checker-qual:3.26.0", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-json:4.5.0" + "com.google.code.gson:gson:2.9.0", + "com.google.guava:guava:31.0.1-jre", + "com.squareup.okhttp3:okhttp:3.11.0", + "com.squareup.okio:okio:1.14.0", + "commons-codec:commons-codec:1.14", + "commons-logging:commons-logging:1.2", + "net.bytebuddy:byte-buddy:1.10.18", + "org.apache.commons:commons-exec:1.3", + "org.apache.httpcomponents:httpclient:4.5.12", + "org.apache.httpcomponents:httpcore:4.4.13", + "org.seleniumhq.selenium:selenium-api:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:3.141.59" ], "directDependencies": [ - "com.google.guava:guava:31.1-jre", - "dev.failsafe:failsafe:3.2.4", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-json:4.5.0" + "com.google.code.gson:gson:2.9.0", + "com.google.guava:guava:31.0.1-jre", + "com.squareup.okhttp3:okhttp:3.11.0", + "com.squareup.okio:okio:1.14.0", + "commons-codec:commons-codec:1.14", + "commons-logging:commons-logging:1.2", + "net.bytebuddy:byte-buddy:1.10.18", + "org.apache.commons:commons-exec:1.3", + "org.apache.httpcomponents:httpclient:4.5.12", + "org.apache.httpcomponents:httpcore:4.4.13", + "org.seleniumhq.selenium:selenium-api:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:3.141.59" ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-http/4.5.0/selenium-http-4.5.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-firefox-driver/3.12.0/selenium-firefox-driver-3.12.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-http/4.5.0/selenium-http-4.5.0.jar" + "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-firefox-driver/3.12.0/selenium-firefox-driver-3.12.0.jar" ], "packages": [ - "org.openqa.selenium.remote.http" + "org.openqa.selenium.firefox", + "org.openqa.selenium.firefox.internal" ], - "sha256": "5f90cdc7afe63f2789cde2773dc65ae6c1d1a61633ddc42e67d168c5a52a71c9", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-http/4.5.0/selenium-http-4.5.0.jar" + "sha256": "315e37cb48ce437d26db085426d2b1c8aa8a2cf3a4cd6b889f2587964649d63f", + "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-firefox-driver/3.12.0/selenium-firefox-driver-3.12.0.jar" }, { - "coord": "org.seleniumhq.selenium:selenium-http:jar:sources:4.5.0", + "coord": "org.seleniumhq.selenium:selenium-firefox-driver:jar:sources:3.12.0", "dependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:jar:sources:1.3", - "dev.failsafe:failsafe:jar:sources:3.2.4", - "org.checkerframework:checker-qual:jar:sources:3.26.0", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0" + "com.google.code.gson:gson:jar:sources:2.9.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", + "com.squareup.okio:okio:jar:sources:1.14.0", + "commons-codec:commons-codec:jar:sources:1.14", + "commons-logging:commons-logging:jar:sources:1.2", + "net.bytebuddy:byte-buddy:jar:sources:1.10.18", + "org.apache.commons:commons-exec:jar:sources:1.3", + "org.apache.httpcomponents:httpclient:jar:sources:4.5.12", + "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", + "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59" ], "directDependencies": [ - "com.google.guava:guava:jar:sources:31.1-jre", - "dev.failsafe:failsafe:jar:sources:3.2.4", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0" + "com.google.code.gson:gson:jar:sources:2.9.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", + "com.squareup.okio:okio:jar:sources:1.14.0", + "commons-codec:commons-codec:jar:sources:1.14", + "commons-logging:commons-logging:jar:sources:1.2", + "net.bytebuddy:byte-buddy:jar:sources:1.10.18", + "org.apache.commons:commons-exec:jar:sources:1.3", + "org.apache.httpcomponents:httpclient:jar:sources:4.5.12", + "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", + "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59" ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-http/4.5.0/selenium-http-4.5.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-firefox-driver/3.12.0/selenium-firefox-driver-3.12.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-http/4.5.0/selenium-http-4.5.0-sources.jar" + "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-firefox-driver/3.12.0/selenium-firefox-driver-3.12.0-sources.jar" ], "packages": [], - "sha256": "7798fe590fb8da3aa6301efec3b5402655dbf3f77ace8dfae99ccae61bb2810e", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-http/4.5.0/selenium-http-4.5.0-sources.jar" + "sha256": "d2354bd60ca2e48dcec0f6ae94b7b8f07e96fd49fb837f08cd685c41d85acd88", + "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-firefox-driver/3.12.0/selenium-firefox-driver-3.12.0-sources.jar" }, { - "coord": "org.seleniumhq.selenium:selenium-ie-driver:4.5.0", + "coord": "org.seleniumhq.selenium:selenium-ie-driver:3.12.0", "dependencies": [ - "com.beust:jcommander:1.82", - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.auto:auto-common:1.2", - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.guava:guava:31.1-jre", - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:1.3", - "com.sun.activation:jakarta.activation:1.2.2", - "com.typesafe.netty:netty-reactive-streams:2.0.4", - "dev.failsafe:failsafe:3.2.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec-socks:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-epoll:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-context:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:1.12.0", - "io.opentelemetry:opentelemetry-sdk:1.17.0", - "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha", - "io.ous:jtoml:2.0.0", - "net.bytebuddy:byte-buddy:1.12.14", + "com.google.code.gson:gson:2.9.0", + "com.google.guava:guava:31.0.1-jre", + "com.squareup.okhttp3:okhttp:3.11.0", + "com.squareup.okio:okio:1.14.0", + "commons-codec:commons-codec:1.14", + "commons-logging:commons-logging:1.2", + "net.bytebuddy:byte-buddy:1.10.18", "org.apache.commons:commons-exec:1.3", - "org.asynchttpclient:async-http-client-netty-utils:2.12.3", - "org.asynchttpclient:async-http-client:2.12.3", - "org.checkerframework:checker-qual:3.26.0", - "org.reactivestreams:reactive-streams:1.0.4", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-http:4.5.0", - "org.seleniumhq.selenium:selenium-json:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0", - "org.slf4j:slf4j-api:1.7.36" + "org.apache.httpcomponents:httpclient:4.5.12", + "org.apache.httpcomponents:httpcore:4.4.13", + "org.seleniumhq.selenium:selenium-api:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:3.141.59" ], "directDependencies": [ - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0" + "com.google.code.gson:gson:2.9.0", + "com.google.guava:guava:31.0.1-jre", + "com.squareup.okhttp3:okhttp:3.11.0", + "com.squareup.okio:okio:1.14.0", + "commons-codec:commons-codec:1.14", + "commons-logging:commons-logging:1.2", + "net.bytebuddy:byte-buddy:1.10.18", + "org.apache.commons:commons-exec:1.3", + "org.apache.httpcomponents:httpclient:4.5.12", + "org.apache.httpcomponents:httpcore:4.4.13", + "org.seleniumhq.selenium:selenium-api:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:3.141.59" ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-ie-driver/4.5.0/selenium-ie-driver-4.5.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-ie-driver/3.12.0/selenium-ie-driver-3.12.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-ie-driver/4.5.0/selenium-ie-driver-4.5.0.jar" + "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-ie-driver/3.12.0/selenium-ie-driver-3.12.0.jar" ], "packages": [ "org.openqa.selenium.ie" ], - "sha256": "976dc48154b73becc6d833f71f1e5aa47dd33953789cdf26f91b5fc1516bd483", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-ie-driver/4.5.0/selenium-ie-driver-4.5.0.jar" + "sha256": "bb482e711422d5b0b72cdf6976cd0cd54f0a80d3e58abe6589861a9095b9e97c", + "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-ie-driver/3.12.0/selenium-ie-driver-3.12.0.jar" }, { - "coord": "org.seleniumhq.selenium:selenium-ie-driver:jar:sources:4.5.0", + "coord": "org.seleniumhq.selenium:selenium-ie-driver:jar:sources:3.12.0", "dependencies": [ - "com.beust:jcommander:jar:sources:1.82", - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.auto:auto-common:jar:sources:1.2", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:jar:sources:1.3", - "com.sun.activation:jakarta.activation:jar:sources:1.2.2", - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.4", - "dev.failsafe:failsafe:jar:sources:3.2.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec-socks:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-context:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha", - "io.ous:jtoml:jar:sources:2.0.0", - "net.bytebuddy:byte-buddy:jar:sources:1.12.14", + "com.google.code.gson:gson:jar:sources:2.9.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", + "com.squareup.okio:okio:jar:sources:1.14.0", + "commons-codec:commons-codec:jar:sources:1.14", + "commons-logging:commons-logging:jar:sources:1.2", + "net.bytebuddy:byte-buddy:jar:sources:1.10.18", "org.apache.commons:commons-exec:jar:sources:1.3", - "org.asynchttpclient:async-http-client-netty-utils:jar:sources:2.12.3", - "org.asynchttpclient:async-http-client:jar:sources:2.12.3", - "org.checkerframework:checker-qual:jar:sources:3.26.0", - "org.reactivestreams:reactive-streams:jar:sources:1.0.4", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-http:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.apache.httpcomponents:httpclient:jar:sources:4.5.12", + "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", + "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59" ], "directDependencies": [ - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0" + "com.google.code.gson:gson:jar:sources:2.9.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", + "com.squareup.okio:okio:jar:sources:1.14.0", + "commons-codec:commons-codec:jar:sources:1.14", + "commons-logging:commons-logging:jar:sources:1.2", + "net.bytebuddy:byte-buddy:jar:sources:1.10.18", + "org.apache.commons:commons-exec:jar:sources:1.3", + "org.apache.httpcomponents:httpclient:jar:sources:4.5.12", + "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", + "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59" ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-ie-driver/4.5.0/selenium-ie-driver-4.5.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-ie-driver/3.12.0/selenium-ie-driver-3.12.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-ie-driver/4.5.0/selenium-ie-driver-4.5.0-sources.jar" + "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-ie-driver/3.12.0/selenium-ie-driver-3.12.0-sources.jar" ], "packages": [], - "sha256": "2f4829f9f86f187b0e8041faa53c82131e0cb5882e520250dc2b20b266786cc3", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-ie-driver/4.5.0/selenium-ie-driver-4.5.0-sources.jar" + "sha256": "b5fb7b5bfdec5d780b9aba348ff13a6e4c4137e780574cab08932a414c76a43c", + "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-ie-driver/3.12.0/selenium-ie-driver-3.12.0-sources.jar" }, { - "coord": "org.seleniumhq.selenium:selenium-java:4.5.0", + "coord": "org.seleniumhq.selenium:selenium-java:3.12.0", "dependencies": [ - "com.beust:jcommander:1.82", - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.auto:auto-common:1.2", - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.guava:guava:31.1-jre", - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:1.3", - "com.sun.activation:jakarta.activation:1.2.2", - "com.typesafe.netty:netty-reactive-streams:2.0.4", - "dev.failsafe:failsafe:3.2.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec-socks:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-epoll:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-context:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:1.12.0", - "io.opentelemetry:opentelemetry-sdk:1.17.0", - "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha", - "io.ous:jtoml:2.0.0", - "net.bytebuddy:byte-buddy:1.12.14", + "com.google.code.gson:gson:2.9.0", + "com.google.guava:guava:31.0.1-jre", + "com.squareup.okhttp3:okhttp:3.11.0", + "com.squareup.okio:okio:1.14.0", + "commons-codec:commons-codec:1.14", + "commons-logging:commons-logging:1.2", + "net.bytebuddy:byte-buddy:1.10.18", "org.apache.commons:commons-exec:1.3", - "org.asynchttpclient:async-http-client-netty-utils:2.12.3", - "org.asynchttpclient:async-http-client:2.12.3", - "org.checkerframework:checker-qual:3.26.0", - "org.reactivestreams:reactive-streams:1.0.4", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-chrome-driver:4.5.0", - "org.seleniumhq.selenium:selenium-chromium-driver:4.5.0", - "org.seleniumhq.selenium:selenium-devtools-v104:4.5.0", - "org.seleniumhq.selenium:selenium-devtools-v105:4.5.0", - "org.seleniumhq.selenium:selenium-devtools-v106:4.5.0", - "org.seleniumhq.selenium:selenium-devtools-v85:4.5.0", - "org.seleniumhq.selenium:selenium-edge-driver:4.5.0", - "org.seleniumhq.selenium:selenium-firefox-driver:4.5.0", - "org.seleniumhq.selenium:selenium-http:4.5.0", - "org.seleniumhq.selenium:selenium-ie-driver:4.5.0", - "org.seleniumhq.selenium:selenium-json:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0", - "org.seleniumhq.selenium:selenium-safari-driver:4.5.0", - "org.seleniumhq.selenium:selenium-support:4.5.0", - "org.slf4j:slf4j-api:1.7.36" - ], - "directDependencies": [ - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-chrome-driver:4.5.0", - "org.seleniumhq.selenium:selenium-devtools-v104:4.5.0", - "org.seleniumhq.selenium:selenium-devtools-v105:4.5.0", - "org.seleniumhq.selenium:selenium-devtools-v106:4.5.0", - "org.seleniumhq.selenium:selenium-devtools-v85:4.5.0", - "org.seleniumhq.selenium:selenium-edge-driver:4.5.0", - "org.seleniumhq.selenium:selenium-firefox-driver:4.5.0", - "org.seleniumhq.selenium:selenium-ie-driver:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0", - "org.seleniumhq.selenium:selenium-safari-driver:4.5.0", - "org.seleniumhq.selenium:selenium-support:4.5.0" - ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-java/4.5.0/selenium-java-4.5.0.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-java/4.5.0/selenium-java-4.5.0.jar" - ], - "packages": [], - "sha256": "ac598f516e3637d09249d432c3a9e139bedd3f7343f5808557083098f7b6e20d", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-java/4.5.0/selenium-java-4.5.0.jar" - }, - { - "coord": "org.seleniumhq.selenium:selenium-java:jar:sources:4.5.0", - "dependencies": [ - "com.beust:jcommander:jar:sources:1.82", - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.auto:auto-common:jar:sources:1.2", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:jar:sources:1.3", - "com.sun.activation:jakarta.activation:jar:sources:1.2.2", - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.4", - "dev.failsafe:failsafe:jar:sources:3.2.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec-socks:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-context:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha", - "io.ous:jtoml:jar:sources:2.0.0", - "net.bytebuddy:byte-buddy:jar:sources:1.12.14", - "org.apache.commons:commons-exec:jar:sources:1.3", - "org.asynchttpclient:async-http-client-netty-utils:jar:sources:2.12.3", - "org.asynchttpclient:async-http-client:jar:sources:2.12.3", - "org.checkerframework:checker-qual:jar:sources:3.26.0", - "org.reactivestreams:reactive-streams:jar:sources:1.0.4", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-chrome-driver:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-chromium-driver:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-devtools-v104:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-devtools-v105:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-devtools-v106:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-devtools-v85:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-edge-driver:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-firefox-driver:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-http:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-ie-driver:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-safari-driver:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-support:jar:sources:4.5.0", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.apache.httpcomponents:httpclient:4.5.12", + "org.apache.httpcomponents:httpcore:4.4.13", + "org.seleniumhq.selenium:selenium-api:3.141.59", + "org.seleniumhq.selenium:selenium-chrome-driver:3.12.0", + "org.seleniumhq.selenium:selenium-edge-driver:3.12.0", + "org.seleniumhq.selenium:selenium-firefox-driver:3.12.0", + "org.seleniumhq.selenium:selenium-ie-driver:3.12.0", + "org.seleniumhq.selenium:selenium-opera-driver:3.12.0", + "org.seleniumhq.selenium:selenium-remote-driver:3.141.59", + "org.seleniumhq.selenium:selenium-safari-driver:3.12.0", + "org.seleniumhq.selenium:selenium-support:3.141.59" + ], + "directDependencies": [ + "com.google.code.gson:gson:2.9.0", + "com.google.guava:guava:31.0.1-jre", + "com.squareup.okhttp3:okhttp:3.11.0", + "com.squareup.okio:okio:1.14.0", + "commons-codec:commons-codec:1.14", + "commons-logging:commons-logging:1.2", + "net.bytebuddy:byte-buddy:1.10.18", + "org.apache.commons:commons-exec:1.3", + "org.apache.httpcomponents:httpclient:4.5.12", + "org.apache.httpcomponents:httpcore:4.4.13", + "org.seleniumhq.selenium:selenium-api:3.141.59", + "org.seleniumhq.selenium:selenium-chrome-driver:3.12.0", + "org.seleniumhq.selenium:selenium-edge-driver:3.12.0", + "org.seleniumhq.selenium:selenium-firefox-driver:3.12.0", + "org.seleniumhq.selenium:selenium-ie-driver:3.12.0", + "org.seleniumhq.selenium:selenium-opera-driver:3.12.0", + "org.seleniumhq.selenium:selenium-remote-driver:3.141.59", + "org.seleniumhq.selenium:selenium-safari-driver:3.12.0", + "org.seleniumhq.selenium:selenium-support:3.141.59" ], - "directDependencies": [ - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-chrome-driver:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-devtools-v104:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-devtools-v105:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-devtools-v106:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-devtools-v85:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-edge-driver:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-firefox-driver:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-ie-driver:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-safari-driver:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-support:jar:sources:4.5.0" + "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-java/3.12.0/selenium-java-3.12.0.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-java/3.12.0/selenium-java-3.12.0.jar" + ], + "packages": [], + "sha256": "68444954199e78a5b73db6957d88dd3e5358cd2b6be36d00947d2445943e020b", + "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-java/3.12.0/selenium-java-3.12.0.jar" + }, + { + "coord": "org.seleniumhq.selenium:selenium-java:jar:sources:3.12.0", + "dependencies": [ + "com.google.code.gson:gson:jar:sources:2.9.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", + "com.squareup.okio:okio:jar:sources:1.14.0", + "commons-codec:commons-codec:jar:sources:1.14", + "commons-logging:commons-logging:jar:sources:1.2", + "net.bytebuddy:byte-buddy:jar:sources:1.10.18", + "org.apache.commons:commons-exec:jar:sources:1.3", + "org.apache.httpcomponents:httpclient:jar:sources:4.5.12", + "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", + "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", + "org.seleniumhq.selenium:selenium-chrome-driver:jar:sources:3.12.0", + "org.seleniumhq.selenium:selenium-edge-driver:jar:sources:3.12.0", + "org.seleniumhq.selenium:selenium-firefox-driver:jar:sources:3.12.0", + "org.seleniumhq.selenium:selenium-ie-driver:jar:sources:3.12.0", + "org.seleniumhq.selenium:selenium-opera-driver:jar:sources:3.12.0", + "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", + "org.seleniumhq.selenium:selenium-safari-driver:jar:sources:3.12.0", + "org.seleniumhq.selenium:selenium-support:jar:sources:3.141.59" + ], + "directDependencies": [ + "com.google.code.gson:gson:jar:sources:2.9.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", + "com.squareup.okio:okio:jar:sources:1.14.0", + "commons-codec:commons-codec:jar:sources:1.14", + "commons-logging:commons-logging:jar:sources:1.2", + "net.bytebuddy:byte-buddy:jar:sources:1.10.18", + "org.apache.commons:commons-exec:jar:sources:1.3", + "org.apache.httpcomponents:httpclient:jar:sources:4.5.12", + "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", + "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", + "org.seleniumhq.selenium:selenium-chrome-driver:jar:sources:3.12.0", + "org.seleniumhq.selenium:selenium-edge-driver:jar:sources:3.12.0", + "org.seleniumhq.selenium:selenium-firefox-driver:jar:sources:3.12.0", + "org.seleniumhq.selenium:selenium-ie-driver:jar:sources:3.12.0", + "org.seleniumhq.selenium:selenium-opera-driver:jar:sources:3.12.0", + "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", + "org.seleniumhq.selenium:selenium-safari-driver:jar:sources:3.12.0", + "org.seleniumhq.selenium:selenium-support:jar:sources:3.141.59" ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-java/4.5.0/selenium-java-4.5.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-java/3.12.0/selenium-java-3.12.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-java/4.5.0/selenium-java-4.5.0-sources.jar" + "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-java/3.12.0/selenium-java-3.12.0-sources.jar" ], "packages": [], - "sha256": "ed92bc1d1af949150304e4eff15d09188886ed5de05caa4801ae18369613d0ae", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-java/4.5.0/selenium-java-4.5.0-sources.jar" + "sha256": "8739c76e681f900923b900c9df0ef75cf421d39cabb54650c4b9ad19b6a76d85", + "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-java/3.12.0/selenium-java-3.12.0-sources.jar" }, { - "coord": "org.seleniumhq.selenium:selenium-json:4.5.0", + "coord": "org.seleniumhq.selenium:selenium-opera-driver:3.12.0", "dependencies": [ - "org.seleniumhq.selenium:selenium-api:4.5.0" + "com.google.code.gson:gson:2.9.0", + "com.google.guava:guava:31.0.1-jre", + "com.squareup.okhttp3:okhttp:3.11.0", + "com.squareup.okio:okio:1.14.0", + "commons-codec:commons-codec:1.14", + "commons-logging:commons-logging:1.2", + "net.bytebuddy:byte-buddy:1.10.18", + "org.apache.commons:commons-exec:1.3", + "org.apache.httpcomponents:httpclient:4.5.12", + "org.apache.httpcomponents:httpcore:4.4.13", + "org.seleniumhq.selenium:selenium-api:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:3.141.59" ], "directDependencies": [ - "org.seleniumhq.selenium:selenium-api:4.5.0" + "com.google.code.gson:gson:2.9.0", + "com.google.guava:guava:31.0.1-jre", + "com.squareup.okhttp3:okhttp:3.11.0", + "com.squareup.okio:okio:1.14.0", + "commons-codec:commons-codec:1.14", + "commons-logging:commons-logging:1.2", + "net.bytebuddy:byte-buddy:1.10.18", + "org.apache.commons:commons-exec:1.3", + "org.apache.httpcomponents:httpclient:4.5.12", + "org.apache.httpcomponents:httpcore:4.4.13", + "org.seleniumhq.selenium:selenium-api:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:3.141.59" ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-json/4.5.0/selenium-json-4.5.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-opera-driver/3.12.0/selenium-opera-driver-3.12.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-json/4.5.0/selenium-json-4.5.0.jar" + "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-opera-driver/3.12.0/selenium-opera-driver-3.12.0.jar" ], "packages": [ - "org.openqa.selenium.json" + "org.openqa.selenium.opera" ], - "sha256": "9e099258177d281d4267d55afe63fe7932585f9c0cce9d43ac5354b256813892", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-json/4.5.0/selenium-json-4.5.0.jar" + "sha256": "e359edf68e09e833d5c7b49e7f445eb19c94cbbf57acf57999d0495b067c0da2", + "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-opera-driver/3.12.0/selenium-opera-driver-3.12.0.jar" }, { - "coord": "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0", + "coord": "org.seleniumhq.selenium:selenium-opera-driver:jar:sources:3.12.0", "dependencies": [ - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0" + "com.google.code.gson:gson:jar:sources:2.9.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", + "com.squareup.okio:okio:jar:sources:1.14.0", + "commons-codec:commons-codec:jar:sources:1.14", + "commons-logging:commons-logging:jar:sources:1.2", + "net.bytebuddy:byte-buddy:jar:sources:1.10.18", + "org.apache.commons:commons-exec:jar:sources:1.3", + "org.apache.httpcomponents:httpclient:jar:sources:4.5.12", + "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", + "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59" ], "directDependencies": [ - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0" + "com.google.code.gson:gson:jar:sources:2.9.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", + "com.squareup.okio:okio:jar:sources:1.14.0", + "commons-codec:commons-codec:jar:sources:1.14", + "commons-logging:commons-logging:jar:sources:1.2", + "net.bytebuddy:byte-buddy:jar:sources:1.10.18", + "org.apache.commons:commons-exec:jar:sources:1.3", + "org.apache.httpcomponents:httpclient:jar:sources:4.5.12", + "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", + "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59" ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-json/4.5.0/selenium-json-4.5.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-opera-driver/3.12.0/selenium-opera-driver-3.12.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-json/4.5.0/selenium-json-4.5.0-sources.jar" + "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-opera-driver/3.12.0/selenium-opera-driver-3.12.0-sources.jar" ], "packages": [], - "sha256": "0f7f79d8605e6aed6be7f4ba9912170d5373da6c62567845c29cc907ecb978db", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-json/4.5.0/selenium-json-4.5.0-sources.jar" + "sha256": "78d7d3ed5757db57c90a3c9b68db2f461e3bb6533a1c7b8b91d8c2de909f171b", + "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-opera-driver/3.12.0/selenium-opera-driver-3.12.0-sources.jar" }, { - "coord": "org.seleniumhq.selenium:selenium-remote-driver:4.5.0", + "coord": "org.seleniumhq.selenium:selenium-remote-driver:3.141.59", "dependencies": [ - "com.beust:jcommander:1.82", - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.auto:auto-common:1.2", - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.guava:guava:31.1-jre", - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:1.3", - "com.sun.activation:jakarta.activation:1.2.2", - "com.typesafe.netty:netty-reactive-streams:2.0.4", - "dev.failsafe:failsafe:3.2.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec-socks:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-epoll:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-context:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:1.12.0", - "io.opentelemetry:opentelemetry-sdk:1.17.0", - "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha", - "io.ous:jtoml:2.0.0", - "net.bytebuddy:byte-buddy:1.12.14", + "com.google.guava:guava:31.0.1-jre", + "com.squareup.okhttp3:okhttp:3.11.0", + "com.squareup.okio:okio:1.14.0", + "net.bytebuddy:byte-buddy:1.10.18", "org.apache.commons:commons-exec:1.3", - "org.asynchttpclient:async-http-client-netty-utils:2.12.3", - "org.asynchttpclient:async-http-client:2.12.3", - "org.checkerframework:checker-qual:3.26.0", - "org.reactivestreams:reactive-streams:1.0.4", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-http:4.5.0", - "org.seleniumhq.selenium:selenium-json:4.5.0", - "org.slf4j:slf4j-api:1.7.36" - ], - "directDependencies": [ - "com.beust:jcommander:1.82", - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.guava:guava:31.1-jre", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-epoll:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-context:1.12.0", - "io.opentelemetry:opentelemetry-exporter-logging:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-trace:1.12.0", - "io.opentelemetry:opentelemetry-sdk:1.17.0", - "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha", - "io.ous:jtoml:2.0.0", - "net.bytebuddy:byte-buddy:1.12.14", + "org.seleniumhq.selenium:selenium-api:3.141.59" + ], + "directDependencies": [ + "com.google.guava:guava:31.0.1-jre", + "com.squareup.okhttp3:okhttp:3.11.0", + "com.squareup.okio:okio:1.14.0", + "net.bytebuddy:byte-buddy:1.10.18", "org.apache.commons:commons-exec:1.3", - "org.asynchttpclient:async-http-client:2.12.3", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-http:4.5.0", - "org.seleniumhq.selenium:selenium-json:4.5.0" - ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-remote-driver/4.5.0/selenium-remote-driver-4.5.0.jar", - "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-remote-driver/4.5.0/selenium-remote-driver-4.5.0.jar" - ], - "packages": [ - "org.openqa.selenium.concurrent", - "org.openqa.selenium.devtools", - "org.openqa.selenium.devtools.events", - "org.openqa.selenium.devtools.idealized", - "org.openqa.selenium.devtools.idealized.browser.model", - "org.openqa.selenium.devtools.idealized.log", - "org.openqa.selenium.devtools.idealized.log.model", - "org.openqa.selenium.devtools.idealized.runtime.model", - "org.openqa.selenium.devtools.idealized.target", - "org.openqa.selenium.devtools.idealized.target.model", - "org.openqa.selenium.devtools.noop", - "org.openqa.selenium.grid.config", + "org.seleniumhq.selenium:selenium-api:3.141.59" + ], + "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-remote-driver/3.141.59/selenium-remote-driver-3.141.59.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-remote-driver/3.141.59/selenium-remote-driver-3.141.59.jar" + ], + "packages": [ "org.openqa.selenium.io", + "org.openqa.selenium.json", + "org.openqa.selenium.net", "org.openqa.selenium.os", "org.openqa.selenium.remote", - "org.openqa.selenium.remote.codec", - "org.openqa.selenium.remote.codec.jwp", - "org.openqa.selenium.remote.codec.w3c", "org.openqa.selenium.remote.html5", - "org.openqa.selenium.remote.http.netty", + "org.openqa.selenium.remote.http", "org.openqa.selenium.remote.internal", - "org.openqa.selenium.remote.locators", "org.openqa.selenium.remote.mobile", "org.openqa.selenium.remote.service", - "org.openqa.selenium.remote.session", - "org.openqa.selenium.remote.tracing", - "org.openqa.selenium.remote.tracing.empty", - "org.openqa.selenium.remote.tracing.opentelemetry" + "org.openqa.selenium.remote.session" ], - "sha256": "16d5074306e261bd2d28bd0deca651452a57cd9a5a5cd70d7b197ae531aac8de", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-remote-driver/4.5.0/selenium-remote-driver-4.5.0.jar" + "sha256": "9829fe57adf36743d785d0c2e7db504ba3ba0a3aacac652b8867cc854d2dfc45", + "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-remote-driver/3.141.59/selenium-remote-driver-3.141.59.jar" }, { - "coord": "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0", + "coord": "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", "dependencies": [ - "com.beust:jcommander:jar:sources:1.82", - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.auto:auto-common:jar:sources:1.2", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:jar:sources:1.3", - "com.sun.activation:jakarta.activation:jar:sources:1.2.2", - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.4", - "dev.failsafe:failsafe:jar:sources:3.2.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec-socks:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-context:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha", - "io.ous:jtoml:jar:sources:2.0.0", - "net.bytebuddy:byte-buddy:jar:sources:1.12.14", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", + "com.squareup.okio:okio:jar:sources:1.14.0", + "net.bytebuddy:byte-buddy:jar:sources:1.10.18", "org.apache.commons:commons-exec:jar:sources:1.3", - "org.asynchttpclient:async-http-client-netty-utils:jar:sources:2.12.3", - "org.asynchttpclient:async-http-client:jar:sources:2.12.3", - "org.checkerframework:checker-qual:jar:sources:3.26.0", - "org.reactivestreams:reactive-streams:jar:sources:1.0.4", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-http:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0", - "org.slf4j:slf4j-api:jar:sources:1.7.36" - ], - "directDependencies": [ - "com.beust:jcommander:jar:sources:1.82", - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-context:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-exporter-logging:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-trace:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha", - "io.ous:jtoml:jar:sources:2.0.0", - "net.bytebuddy:byte-buddy:jar:sources:1.12.14", + "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59" + ], + "directDependencies": [ + "com.google.guava:guava:jar:sources:31.0.1-jre", + "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", + "com.squareup.okio:okio:jar:sources:1.14.0", + "net.bytebuddy:byte-buddy:jar:sources:1.10.18", "org.apache.commons:commons-exec:jar:sources:1.3", - "org.asynchttpclient:async-http-client:jar:sources:2.12.3", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-http:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0" + "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59" ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-remote-driver/4.5.0/selenium-remote-driver-4.5.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-remote-driver/3.141.59/selenium-remote-driver-3.141.59-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-remote-driver/4.5.0/selenium-remote-driver-4.5.0-sources.jar" + "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-remote-driver/3.141.59/selenium-remote-driver-3.141.59-sources.jar" ], "packages": [], - "sha256": "3754a708fb1fcf54f74cc0c50757cf580d8fec9b560154b6a2cf0319a3c37402", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-remote-driver/4.5.0/selenium-remote-driver-4.5.0-sources.jar" + "sha256": "aad98064715728567784c00915692b3075c0c1aad80ca14518340868c8296597", + "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-remote-driver/3.141.59/selenium-remote-driver-3.141.59-sources.jar" }, { - "coord": "org.seleniumhq.selenium:selenium-safari-driver:4.5.0", + "coord": "org.seleniumhq.selenium:selenium-safari-driver:3.12.0", "dependencies": [ - "com.beust:jcommander:1.82", - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.auto:auto-common:1.2", - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.guava:guava:31.1-jre", - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:1.3", - "com.sun.activation:jakarta.activation:1.2.2", - "com.typesafe.netty:netty-reactive-streams:2.0.4", - "dev.failsafe:failsafe:3.2.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec-socks:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-epoll:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-context:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:1.12.0", - "io.opentelemetry:opentelemetry-sdk:1.17.0", - "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha", - "io.ous:jtoml:2.0.0", - "net.bytebuddy:byte-buddy:1.12.14", + "com.google.code.gson:gson:2.9.0", + "com.google.guava:guava:31.0.1-jre", + "com.squareup.okhttp3:okhttp:3.11.0", + "com.squareup.okio:okio:1.14.0", + "commons-codec:commons-codec:1.14", + "commons-logging:commons-logging:1.2", + "net.bytebuddy:byte-buddy:1.10.18", "org.apache.commons:commons-exec:1.3", - "org.asynchttpclient:async-http-client-netty-utils:2.12.3", - "org.asynchttpclient:async-http-client:2.12.3", - "org.checkerframework:checker-qual:3.26.0", - "org.reactivestreams:reactive-streams:1.0.4", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-http:4.5.0", - "org.seleniumhq.selenium:selenium-json:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0", - "org.slf4j:slf4j-api:1.7.36" + "org.apache.httpcomponents:httpclient:4.5.12", + "org.apache.httpcomponents:httpcore:4.4.13", + "org.seleniumhq.selenium:selenium-api:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:3.141.59" ], "directDependencies": [ - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.guava:guava:31.1-jre", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0" + "com.google.code.gson:gson:2.9.0", + "com.google.guava:guava:31.0.1-jre", + "com.squareup.okhttp3:okhttp:3.11.0", + "com.squareup.okio:okio:1.14.0", + "commons-codec:commons-codec:1.14", + "commons-logging:commons-logging:1.2", + "net.bytebuddy:byte-buddy:1.10.18", + "org.apache.commons:commons-exec:1.3", + "org.apache.httpcomponents:httpclient:4.5.12", + "org.apache.httpcomponents:httpcore:4.4.13", + "org.seleniumhq.selenium:selenium-api:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:3.141.59" ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-safari-driver/4.5.0/selenium-safari-driver-4.5.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-safari-driver/3.12.0/selenium-safari-driver-3.12.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-safari-driver/4.5.0/selenium-safari-driver-4.5.0.jar" + "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-safari-driver/3.12.0/selenium-safari-driver-3.12.0.jar" ], "packages": [ "org.openqa.selenium.safari" ], - "sha256": "861c38ca68d6664c5df8897bbe381a27d5595d6f879a5156a1e84a3aa0970676", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-safari-driver/4.5.0/selenium-safari-driver-4.5.0.jar" + "sha256": "926a67e39613aa7b2940aeb201b4f09516c1df62686a59edb29747e59c52350b", + "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-safari-driver/3.12.0/selenium-safari-driver-3.12.0.jar" }, { - "coord": "org.seleniumhq.selenium:selenium-safari-driver:jar:sources:4.5.0", + "coord": "org.seleniumhq.selenium:selenium-safari-driver:jar:sources:3.12.0", "dependencies": [ - "com.beust:jcommander:jar:sources:1.82", - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.auto:auto-common:jar:sources:1.2", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:jar:sources:1.3", - "com.sun.activation:jakarta.activation:jar:sources:1.2.2", - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.4", - "dev.failsafe:failsafe:jar:sources:3.2.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec-socks:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-context:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha", - "io.ous:jtoml:jar:sources:2.0.0", - "net.bytebuddy:byte-buddy:jar:sources:1.12.14", + "com.google.code.gson:gson:jar:sources:2.9.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", + "com.squareup.okio:okio:jar:sources:1.14.0", + "commons-codec:commons-codec:jar:sources:1.14", + "commons-logging:commons-logging:jar:sources:1.2", + "net.bytebuddy:byte-buddy:jar:sources:1.10.18", "org.apache.commons:commons-exec:jar:sources:1.3", - "org.asynchttpclient:async-http-client-netty-utils:jar:sources:2.12.3", - "org.asynchttpclient:async-http-client:jar:sources:2.12.3", - "org.checkerframework:checker-qual:jar:sources:3.26.0", - "org.reactivestreams:reactive-streams:jar:sources:1.0.4", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-http:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.apache.httpcomponents:httpclient:jar:sources:4.5.12", + "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", + "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59" ], "directDependencies": [ - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0" + "com.google.code.gson:gson:jar:sources:2.9.0", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", + "com.squareup.okio:okio:jar:sources:1.14.0", + "commons-codec:commons-codec:jar:sources:1.14", + "commons-logging:commons-logging:jar:sources:1.2", + "net.bytebuddy:byte-buddy:jar:sources:1.10.18", + "org.apache.commons:commons-exec:jar:sources:1.3", + "org.apache.httpcomponents:httpclient:jar:sources:4.5.12", + "org.apache.httpcomponents:httpcore:jar:sources:4.4.13", + "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59" ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-safari-driver/4.5.0/selenium-safari-driver-4.5.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-safari-driver/3.12.0/selenium-safari-driver-3.12.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-safari-driver/4.5.0/selenium-safari-driver-4.5.0-sources.jar" + "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-safari-driver/3.12.0/selenium-safari-driver-3.12.0-sources.jar" ], "packages": [], - "sha256": "eef7a7a6098f6113611977da249c7c8046e6901eb5d049c3241a1c3ab10ab19c", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-safari-driver/4.5.0/selenium-safari-driver-4.5.0-sources.jar" + "sha256": "ceb7f9a9a8769646573f5d01263ab46d900cd7d205788b1b2a4ef37bb7aab37a", + "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-safari-driver/3.12.0/selenium-safari-driver-3.12.0-sources.jar" }, { - "coord": "org.seleniumhq.selenium:selenium-support:4.5.0", + "coord": "org.seleniumhq.selenium:selenium-support:3.141.59", "dependencies": [ - "com.beust:jcommander:1.82", - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.auto:auto-common:1.2", - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.14.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.guava:guava:31.1-jre", - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:1.3", - "com.sun.activation:jakarta.activation:1.2.2", - "com.typesafe.netty:netty-reactive-streams:2.0.4", - "dev.failsafe:failsafe:3.2.4", - "io.netty:netty-buffer:4.1.79.Final", - "io.netty:netty-codec-http:4.1.81.Final", - "io.netty:netty-codec-socks:4.1.79.Final", - "io.netty:netty-common:4.1.81.Final", - "io.netty:netty-handler-proxy:4.1.79.Final", - "io.netty:netty-handler:4.1.79.Final", - "io.netty:netty-resolver:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-epoll:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:4.1.81.Final", - "io.netty:netty-transport:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:1.12.0", - "io.opentelemetry:opentelemetry-context:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:1.12.0", - "io.opentelemetry:opentelemetry-sdk:1.17.0", - "io.opentelemetry:opentelemetry-semconv:1.12.0-alpha", - "io.ous:jtoml:2.0.0", - "net.bytebuddy:byte-buddy:1.12.14", + "com.google.guava:guava:31.0.1-jre", + "com.squareup.okhttp3:okhttp:3.11.0", + "com.squareup.okio:okio:1.14.0", + "net.bytebuddy:byte-buddy:1.10.18", "org.apache.commons:commons-exec:1.3", - "org.asynchttpclient:async-http-client-netty-utils:2.12.3", - "org.asynchttpclient:async-http-client:2.12.3", - "org.checkerframework:checker-qual:3.26.0", - "org.reactivestreams:reactive-streams:1.0.4", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-http:4.5.0", - "org.seleniumhq.selenium:selenium-json:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0", - "org.slf4j:slf4j-api:1.7.36" + "org.seleniumhq.selenium:selenium-api:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:3.141.59" ], "directDependencies": [ - "com.google.auto.service:auto-service-annotations:1.0.1", - "com.google.auto.service:auto-service:1.0.1", - "com.google.guava:guava:31.1-jre", - "net.bytebuddy:byte-buddy:1.12.14", - "org.seleniumhq.selenium:selenium-api:4.5.0", - "org.seleniumhq.selenium:selenium-json:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:4.5.0" + "com.google.guava:guava:31.0.1-jre", + "com.squareup.okhttp3:okhttp:3.11.0", + "com.squareup.okio:okio:1.14.0", + "net.bytebuddy:byte-buddy:1.10.18", + "org.apache.commons:commons-exec:1.3", + "org.seleniumhq.selenium:selenium-api:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:3.141.59" ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-support/4.5.0/selenium-support-4.5.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-support/3.141.59/selenium-support-3.141.59.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-support/4.5.0/selenium-support-4.5.0.jar" + "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-support/3.141.59/selenium-support-3.141.59.jar" ], "packages": [ "org.openqa.selenium.support", - "org.openqa.selenium.support.decorators", "org.openqa.selenium.support.events", - "org.openqa.selenium.support.locators", + "org.openqa.selenium.support.events.internal", "org.openqa.selenium.support.pagefactory", "org.openqa.selenium.support.pagefactory.internal", "org.openqa.selenium.support.ui" ], - "sha256": "8518be351b413b8803cfb9a4dbd7c0af5402b11a43b774f12bb5ecd5656fe242", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-support/4.5.0/selenium-support-4.5.0.jar" + "sha256": "2c74196d15277ce6003454d72fc3434091dbf3ba65060942719ba551509404d8", + "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-support/3.141.59/selenium-support-3.141.59.jar" }, { - "coord": "org.seleniumhq.selenium:selenium-support:jar:sources:4.5.0", + "coord": "org.seleniumhq.selenium:selenium-support:jar:sources:3.141.59", "dependencies": [ - "com.beust:jcommander:jar:sources:1.82", - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.auto:auto-common:jar:sources:1.2", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.14.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:jar:sources:1.3", - "com.sun.activation:jakarta.activation:jar:sources:1.2.2", - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.4", - "dev.failsafe:failsafe:jar:sources:3.2.4", - "io.netty:netty-buffer:jar:sources:4.1.79.Final", - "io.netty:netty-codec-http:jar:sources:4.1.81.Final", - "io.netty:netty-codec-socks:jar:sources:4.1.79.Final", - "io.netty:netty-common:jar:sources:4.1.81.Final", - "io.netty:netty-handler-proxy:jar:sources:4.1.79.Final", - "io.netty:netty-handler:jar:sources:4.1.79.Final", - "io.netty:netty-resolver:jar:sources:4.1.79.Final", - "io.netty:netty-transport-classes-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-classes-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.81.Final", - "io.netty:netty-transport-native-kqueue:jar:sources:4.1.79.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.81.Final", - "io.netty:netty-transport:jar:sources:4.1.81.Final", - "io.opentelemetry:opentelemetry-api:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-context:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-exporter-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-exporter-logging:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-common:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-logs:jar:sources:1.17.0-alpha", - "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-sdk-trace:jar:sources:1.12.0", - "io.opentelemetry:opentelemetry-sdk:jar:sources:1.17.0", - "io.opentelemetry:opentelemetry-semconv:jar:sources:1.12.0-alpha", - "io.ous:jtoml:jar:sources:2.0.0", - "net.bytebuddy:byte-buddy:jar:sources:1.12.14", + "com.google.guava:guava:jar:sources:31.0.1-jre", + "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", + "com.squareup.okio:okio:jar:sources:1.14.0", + "net.bytebuddy:byte-buddy:jar:sources:1.10.18", "org.apache.commons:commons-exec:jar:sources:1.3", - "org.asynchttpclient:async-http-client-netty-utils:jar:sources:2.12.3", - "org.asynchttpclient:async-http-client:jar:sources:2.12.3", - "org.checkerframework:checker-qual:jar:sources:3.26.0", - "org.reactivestreams:reactive-streams:jar:sources:1.0.4", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-http:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0", - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59" ], "directDependencies": [ - "com.google.auto.service:auto-service-annotations:jar:sources:1.0.1", - "com.google.auto.service:auto-service:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:31.1-jre", - "net.bytebuddy:byte-buddy:jar:sources:1.12.14", - "org.seleniumhq.selenium:selenium-api:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-json:jar:sources:4.5.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:4.5.0" + "com.google.guava:guava:jar:sources:31.0.1-jre", + "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", + "com.squareup.okio:okio:jar:sources:1.14.0", + "net.bytebuddy:byte-buddy:jar:sources:1.10.18", + "org.apache.commons:commons-exec:jar:sources:1.3", + "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", + "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59" ], - "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-support/4.5.0/selenium-support-4.5.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-support/3.141.59/selenium-support-3.141.59-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-support/4.5.0/selenium-support-4.5.0-sources.jar" + "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-support/3.141.59/selenium-support-3.141.59-sources.jar" ], "packages": [], - "sha256": "cccd31e9cefe363ec85609c59e815e1813f184ea1d96aedebe243ef3edf99b4c", - "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-support/4.5.0/selenium-support-4.5.0-sources.jar" + "sha256": "70112a60fd5750918a4ee45e7487f6bea9a6b500eeabf93e141b36541f51d096", + "url": "https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-support/3.141.59/selenium-support-3.141.59-sources.jar" }, { "coord": "org.simpleflatmapper:lightning-csv:8.2.3", @@ -20353,12 +15958,12 @@ "url": "https://repo1.maven.org/maven2/org/simpleflatmapper/sfm-util/8.2.3/sfm-util-8.2.3-sources.jar" }, { - "coord": "org.slf4j:slf4j-api:1.7.36", + "coord": "org.slf4j:slf4j-api:1.7.26", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar", + "file": "v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar" + "https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26.jar" ], "packages": [ "org.slf4j", @@ -20366,68 +15971,68 @@ "org.slf4j.helpers", "org.slf4j.spi" ], - "sha256": "d3ef575e3e4979678dc01bf1dcce51021493b4d11fb7f1be8ad982877c16a1c0", - "url": "https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar" + "sha256": "6d9e5b86cfd1dd44c676899285b5bb4fa0d371cf583e8164f9c8a0366553242b", + "url": "https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26.jar" }, { - "coord": "org.slf4j:slf4j-api:jar:sources:1.7.36", + "coord": "org.slf4j:slf4j-api:jar:sources:1.7.26", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36-sources.jar" + "https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26-sources.jar" ], "packages": [], - "sha256": "15bc04357a3725b7a5153f132db71379f95e83b7b8590a86cc6d4ad77bfc150a", - "url": "https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36-sources.jar" + "sha256": "9e25ad98a324e6685752fd01fbbd0588ceec5df564e53c49486946a2d19dc482", + "url": "https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26-sources.jar" }, { - "coord": "org.slf4j:slf4j-simple:1.7.36", + "coord": "org.slf4j:slf4j-simple:1.7.26", "dependencies": [ - "org.slf4j:slf4j-api:1.7.36" + "org.slf4j:slf4j-api:1.7.26" ], "directDependencies": [ - "org.slf4j:slf4j-api:1.7.36" + "org.slf4j:slf4j-api:1.7.26" ], - "file": "v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-simple/1.7.36/slf4j-simple-1.7.36.jar", + "file": "v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-simple/1.7.26/slf4j-simple-1.7.26.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/slf4j/slf4j-simple/1.7.36/slf4j-simple-1.7.36.jar" + "https://repo1.maven.org/maven2/org/slf4j/slf4j-simple/1.7.26/slf4j-simple-1.7.26.jar" ], "packages": [ "org.slf4j.impl" ], - "sha256": "2f39bed943d624dfa8f4102d0571283a10870b6aa36f197a8a506f147010c10f", - "url": "https://repo1.maven.org/maven2/org/slf4j/slf4j-simple/1.7.36/slf4j-simple-1.7.36.jar" + "sha256": "4b8ed75e2273850bf4eeb411ae5de5e0c0a44da59a96ca68d284749a6a373678", + "url": "https://repo1.maven.org/maven2/org/slf4j/slf4j-simple/1.7.26/slf4j-simple-1.7.26.jar" }, { - "coord": "org.slf4j:slf4j-simple:jar:sources:1.7.36", + "coord": "org.slf4j:slf4j-simple:jar:sources:1.7.26", "dependencies": [ - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], "directDependencies": [ - "org.slf4j:slf4j-api:jar:sources:1.7.36" + "org.slf4j:slf4j-api:jar:sources:1.7.26" ], - "file": "v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-simple/1.7.36/slf4j-simple-1.7.36-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-simple/1.7.26/slf4j-simple-1.7.26-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/slf4j/slf4j-simple/1.7.36/slf4j-simple-1.7.36-sources.jar" + "https://repo1.maven.org/maven2/org/slf4j/slf4j-simple/1.7.26/slf4j-simple-1.7.26-sources.jar" ], "packages": [], - "sha256": "c11b4197b7100eb4c4986c93493d4230f1efccfc53f39fbdbb84573493722379", - "url": "https://repo1.maven.org/maven2/org/slf4j/slf4j-simple/1.7.36/slf4j-simple-1.7.36-sources.jar" + "sha256": "342b07260d82e5e79e0338daf15cb960b515c6831025d9b5303ca04f0e5a47f5", + "url": "https://repo1.maven.org/maven2/org/slf4j/slf4j-simple/1.7.26/slf4j-simple-1.7.26-sources.jar" }, { "coord": "org.testng:testng:6.7", "dependencies": [ - "com.beust:jcommander:1.82", - "junit:junit:4.13.2", + "com.beust:jcommander:1.12", + "junit:junit:4.12", "org.beanshell:bsh:2.0b4", - "org.yaml:snakeyaml:1.28" + "org.yaml:snakeyaml:1.26" ], "directDependencies": [ - "com.beust:jcommander:1.82", - "junit:junit:4.13.2", + "com.beust:jcommander:1.12", + "junit:junit:4.12", "org.beanshell:bsh:2.0b4", - "org.yaml:snakeyaml:1.28" + "org.yaml:snakeyaml:1.26" ], "file": "v1/https/repo1.maven.org/maven2/org/testng/testng/6.7/testng-6.7.jar", "mirror_urls": [ @@ -20466,16 +16071,16 @@ { "coord": "org.testng:testng:jar:sources:6.7", "dependencies": [ - "com.beust:jcommander:jar:sources:1.82", - "junit:junit:jar:sources:4.13.2", + "com.beust:jcommander:jar:sources:1.12", + "junit:junit:jar:sources:4.12", "org.beanshell:bsh:jar:sources:2.0b4", - "org.yaml:snakeyaml:jar:sources:1.28" + "org.yaml:snakeyaml:jar:sources:1.26" ], "directDependencies": [ - "com.beust:jcommander:jar:sources:1.82", - "junit:junit:jar:sources:4.13.2", + "com.beust:jcommander:jar:sources:1.12", + "junit:junit:jar:sources:4.12", "org.beanshell:bsh:jar:sources:2.0b4", - "org.yaml:snakeyaml:jar:sources:1.28" + "org.yaml:snakeyaml:jar:sources:1.26" ], "file": "v1/https/repo1.maven.org/maven2/org/testng/testng/6.7/testng-6.7-sources.jar", "mirror_urls": [ @@ -20490,20 +16095,21 @@ "dependencies": [ "co.fs2:fs2-core_2.13:2.5.6", "com.chuusai:shapeless_2.13:2.3.3", - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", "org.scodec:scodec-bits_2.13:1.1.27", "org.tpolecat:doobie-free_2.13:0.13.4", "org.tpolecat:typename_2.13:1.0.0", - "org.typelevel:cats-core_2.13:2.8.0", + "org.typelevel:cats-core_2.13:2.6.1", "org.typelevel:cats-effect_2.13:2.5.1", "org.typelevel:cats-free_2.13:2.6.1", + "org.typelevel:cats-kernel_2.13:2.6.1", "org.typelevel:simulacrum-scalafix-annotations_2.13:0.5.4" ], "directDependencies": [ "com.chuusai:shapeless_2.13:2.3.3", - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", "org.scala-lang:scala-library:2.13.8", "org.tpolecat:doobie-free_2.13:0.13.4", "org.tpolecat:typename_2.13:1.0.0" @@ -20531,20 +16137,21 @@ "dependencies": [ "co.fs2:fs2-core_2.13:jar:sources:2.5.6", "com.chuusai:shapeless_2.13:jar:sources:2.3.3", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", "org.scodec:scodec-bits_2.13:jar:sources:1.1.27", "org.tpolecat:doobie-free_2.13:jar:sources:0.13.4", "org.tpolecat:typename_2.13:jar:sources:1.0.0", - "org.typelevel:cats-core_2.13:jar:sources:2.8.0", + "org.typelevel:cats-core_2.13:jar:sources:2.6.1", "org.typelevel:cats-effect_2.13:jar:sources:2.5.1", "org.typelevel:cats-free_2.13:jar:sources:2.6.1", + "org.typelevel:cats-kernel_2.13:jar:sources:2.6.1", "org.typelevel:simulacrum-scalafix-annotations_2.13:jar:sources:0.5.4" ], "directDependencies": [ "com.chuusai:shapeless_2.13:jar:sources:2.3.3", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.tpolecat:doobie-free_2.13:jar:sources:0.13.4", "org.tpolecat:typename_2.13:jar:sources:1.0.0" @@ -20561,21 +16168,22 @@ "coord": "org.tpolecat:doobie-free_2.13:0.13.4", "dependencies": [ "co.fs2:fs2-core_2.13:2.5.6", - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", "org.scodec:scodec-bits_2.13:1.1.27", - "org.typelevel:cats-core_2.13:2.8.0", + "org.typelevel:cats-core_2.13:2.6.1", "org.typelevel:cats-effect_2.13:2.5.1", "org.typelevel:cats-free_2.13:2.6.1", + "org.typelevel:cats-kernel_2.13:2.6.1", "org.typelevel:simulacrum-scalafix-annotations_2.13:0.5.4" ], "directDependencies": [ "co.fs2:fs2-core_2.13:2.5.6", - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", - "org.typelevel:cats-core_2.13:2.8.0", + "org.typelevel:cats-core_2.13:2.6.1", "org.typelevel:cats-effect_2.13:2.5.1", "org.typelevel:cats-free_2.13:2.6.1" ], @@ -20594,21 +16202,22 @@ "coord": "org.tpolecat:doobie-free_2.13:jar:sources:0.13.4", "dependencies": [ "co.fs2:fs2-core_2.13:jar:sources:2.5.6", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", "org.scodec:scodec-bits_2.13:jar:sources:1.1.27", - "org.typelevel:cats-core_2.13:jar:sources:2.8.0", + "org.typelevel:cats-core_2.13:jar:sources:2.6.1", "org.typelevel:cats-effect_2.13:jar:sources:2.5.1", "org.typelevel:cats-free_2.13:jar:sources:2.6.1", + "org.typelevel:cats-kernel_2.13:jar:sources:2.6.1", "org.typelevel:simulacrum-scalafix-annotations_2.13:jar:sources:0.5.4" ], "directDependencies": [ "co.fs2:fs2-core_2.13:jar:sources:2.5.6", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", - "org.typelevel:cats-core_2.13:jar:sources:2.8.0", + "org.typelevel:cats-core_2.13:jar:sources:2.6.1", "org.typelevel:cats-effect_2.13:jar:sources:2.5.1", "org.typelevel:cats-free_2.13:jar:sources:2.6.1" ], @@ -20625,25 +16234,26 @@ "dependencies": [ "co.fs2:fs2-core_2.13:2.5.6", "com.chuusai:shapeless_2.13:2.3.3", - "com.zaxxer:HikariCP:3.4.5", - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0", + "com.zaxxer:HikariCP:3.2.0", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", "org.scodec:scodec-bits_2.13:1.1.27", - "org.slf4j:slf4j-api:1.7.36", + "org.slf4j:slf4j-api:1.7.26", "org.tpolecat:doobie-core_2.13:0.13.4", "org.tpolecat:doobie-free_2.13:0.13.4", "org.tpolecat:typename_2.13:1.0.0", - "org.typelevel:cats-core_2.13:2.8.0", + "org.typelevel:cats-core_2.13:2.6.1", "org.typelevel:cats-effect_2.13:2.5.1", "org.typelevel:cats-free_2.13:2.6.1", + "org.typelevel:cats-kernel_2.13:2.6.1", "org.typelevel:simulacrum-scalafix-annotations_2.13:0.5.4" ], "directDependencies": [ - "com.zaxxer:HikariCP:3.4.5", - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0", + "com.zaxxer:HikariCP:3.2.0", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", "org.scala-lang:scala-library:2.13.8", - "org.slf4j:slf4j-api:1.7.36", + "org.slf4j:slf4j-api:1.7.26", "org.tpolecat:doobie-core_2.13:0.13.4" ], "file": "v1/https/repo1.maven.org/maven2/org/tpolecat/doobie-hikari_2.13/0.13.4/doobie-hikari_2.13-0.13.4.jar", @@ -20661,25 +16271,26 @@ "dependencies": [ "co.fs2:fs2-core_2.13:jar:sources:2.5.6", "com.chuusai:shapeless_2.13:jar:sources:2.3.3", - "com.zaxxer:HikariCP:jar:sources:3.4.5", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0", + "com.zaxxer:HikariCP:jar:sources:3.2.0", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", "org.scodec:scodec-bits_2.13:jar:sources:1.1.27", - "org.slf4j:slf4j-api:jar:sources:1.7.36", + "org.slf4j:slf4j-api:jar:sources:1.7.26", "org.tpolecat:doobie-core_2.13:jar:sources:0.13.4", "org.tpolecat:doobie-free_2.13:jar:sources:0.13.4", "org.tpolecat:typename_2.13:jar:sources:1.0.0", - "org.typelevel:cats-core_2.13:jar:sources:2.8.0", + "org.typelevel:cats-core_2.13:jar:sources:2.6.1", "org.typelevel:cats-effect_2.13:jar:sources:2.5.1", "org.typelevel:cats-free_2.13:jar:sources:2.6.1", + "org.typelevel:cats-kernel_2.13:jar:sources:2.6.1", "org.typelevel:simulacrum-scalafix-annotations_2.13:jar:sources:0.5.4" ], "directDependencies": [ - "com.zaxxer:HikariCP:jar:sources:3.4.5", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0", + "com.zaxxer:HikariCP:jar:sources:3.2.0", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.slf4j:slf4j-api:jar:sources:1.7.36", + "org.slf4j:slf4j-api:jar:sources:1.7.26", "org.tpolecat:doobie-core_2.13:jar:sources:0.13.4" ], "file": "v1/https/repo1.maven.org/maven2/org/tpolecat/doobie-hikari_2.13/0.13.4/doobie-hikari_2.13-0.13.4-sources.jar", @@ -20696,23 +16307,24 @@ "co.fs2:fs2-core_2.13:2.5.6", "co.fs2:fs2-io_2.13:2.5.6", "com.chuusai:shapeless_2.13:2.3.3", - "org.postgresql:postgresql:42.5.0", - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0", + "org.postgresql:postgresql:42.2.25", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8", "org.scodec:scodec-bits_2.13:1.1.27", "org.tpolecat:doobie-core_2.13:0.13.4", "org.tpolecat:doobie-free_2.13:0.13.4", "org.tpolecat:typename_2.13:1.0.0", - "org.typelevel:cats-core_2.13:2.8.0", + "org.typelevel:cats-core_2.13:2.6.1", "org.typelevel:cats-effect_2.13:2.5.1", "org.typelevel:cats-free_2.13:2.6.1", + "org.typelevel:cats-kernel_2.13:2.6.1", "org.typelevel:simulacrum-scalafix-annotations_2.13:0.5.4" ], "directDependencies": [ "co.fs2:fs2-io_2.13:2.5.6", - "org.postgresql:postgresql:42.5.0", - "org.scala-lang.modules:scala-collection-compat_2.13:2.7.0", + "org.postgresql:postgresql:42.2.25", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", "org.scala-lang:scala-library:2.13.8", "org.tpolecat:doobie-core_2.13:0.13.4" ], @@ -20735,23 +16347,24 @@ "co.fs2:fs2-core_2.13:jar:sources:2.5.6", "co.fs2:fs2-io_2.13:jar:sources:2.5.6", "com.chuusai:shapeless_2.13:jar:sources:2.3.3", - "org.postgresql:postgresql:jar:sources:42.5.0", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0", + "org.postgresql:postgresql:jar:sources:42.2.25", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8", "org.scodec:scodec-bits_2.13:jar:sources:1.1.27", "org.tpolecat:doobie-core_2.13:jar:sources:0.13.4", "org.tpolecat:doobie-free_2.13:jar:sources:0.13.4", "org.tpolecat:typename_2.13:jar:sources:1.0.0", - "org.typelevel:cats-core_2.13:jar:sources:2.8.0", + "org.typelevel:cats-core_2.13:jar:sources:2.6.1", "org.typelevel:cats-effect_2.13:jar:sources:2.5.1", "org.typelevel:cats-free_2.13:jar:sources:2.6.1", + "org.typelevel:cats-kernel_2.13:jar:sources:2.6.1", "org.typelevel:simulacrum-scalafix-annotations_2.13:jar:sources:0.5.4" ], "directDependencies": [ "co.fs2:fs2-io_2.13:jar:sources:2.5.6", - "org.postgresql:postgresql:jar:sources:42.5.0", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.7.0", + "org.postgresql:postgresql:jar:sources:42.2.25", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.6.0", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.tpolecat:doobie-core_2.13:jar:sources:0.13.4" ], @@ -20836,18 +16449,20 @@ "url": "https://repo1.maven.org/maven2/org/tukaani/xz/1.8/xz-1.8-sources.jar" }, { - "coord": "org.typelevel:cats-core_2.13:2.8.0", + "coord": "org.typelevel:cats-core_2.13:2.6.1", "dependencies": [ "org.scala-lang:scala-library:2.13.8", - "org.typelevel:cats-kernel_2.13:2.8.0" + "org.typelevel:cats-kernel_2.13:2.6.1", + "org.typelevel:simulacrum-scalafix-annotations_2.13:0.5.4" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", - "org.typelevel:cats-kernel_2.13:2.8.0" + "org.typelevel:cats-kernel_2.13:2.6.1", + "org.typelevel:simulacrum-scalafix-annotations_2.13:0.5.4" ], - "file": "v1/https/repo1.maven.org/maven2/org/typelevel/cats-core_2.13/2.8.0/cats-core_2.13-2.8.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/typelevel/cats-core_2.13/2.6.1/cats-core_2.13-2.6.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/typelevel/cats-core_2.13/2.8.0/cats-core_2.13-2.8.0.jar" + "https://repo1.maven.org/maven2/org/typelevel/cats-core_2.13/2.6.1/cats-core_2.13-2.6.1.jar" ], "packages": [ "cats", @@ -20860,36 +16475,40 @@ "cats.instances.symbol", "cats.syntax" ], - "sha256": "3397b242771c80f02fbe5e684381c5da1532d9916e0fde583599fbb8141a146a", - "url": "https://repo1.maven.org/maven2/org/typelevel/cats-core_2.13/2.8.0/cats-core_2.13-2.8.0.jar" + "sha256": "263d5982aa88702a3c8024d792f9dcc237cd0c6da3cca610c1fcc107c337b49a", + "url": "https://repo1.maven.org/maven2/org/typelevel/cats-core_2.13/2.6.1/cats-core_2.13-2.6.1.jar" }, { - "coord": "org.typelevel:cats-core_2.13:jar:sources:2.8.0", + "coord": "org.typelevel:cats-core_2.13:jar:sources:2.6.1", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.typelevel:cats-kernel_2.13:jar:sources:2.8.0" + "org.typelevel:cats-kernel_2.13:jar:sources:2.6.1", + "org.typelevel:simulacrum-scalafix-annotations_2.13:jar:sources:0.5.4" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.typelevel:cats-kernel_2.13:jar:sources:2.8.0" + "org.typelevel:cats-kernel_2.13:jar:sources:2.6.1", + "org.typelevel:simulacrum-scalafix-annotations_2.13:jar:sources:0.5.4" ], - "file": "v1/https/repo1.maven.org/maven2/org/typelevel/cats-core_2.13/2.8.0/cats-core_2.13-2.8.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/typelevel/cats-core_2.13/2.6.1/cats-core_2.13-2.6.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/typelevel/cats-core_2.13/2.8.0/cats-core_2.13-2.8.0-sources.jar" + "https://repo1.maven.org/maven2/org/typelevel/cats-core_2.13/2.6.1/cats-core_2.13-2.6.1-sources.jar" ], "packages": [], - "sha256": "b9469fd8672a7d0d71b7cb30117c1d64ebac3f79ccb55ecc67f112f34867aae1", - "url": "https://repo1.maven.org/maven2/org/typelevel/cats-core_2.13/2.8.0/cats-core_2.13-2.8.0-sources.jar" + "sha256": "9de1434a397d307e97df0308a59f6829022aa914975358fde495ebf62c9ec412", + "url": "https://repo1.maven.org/maven2/org/typelevel/cats-core_2.13/2.6.1/cats-core_2.13-2.6.1-sources.jar" }, { "coord": "org.typelevel:cats-effect_2.13:2.5.1", "dependencies": [ "org.scala-lang:scala-library:2.13.8", - "org.typelevel:cats-core_2.13:2.8.0" + "org.typelevel:cats-core_2.13:2.6.1", + "org.typelevel:cats-kernel_2.13:2.6.1", + "org.typelevel:simulacrum-scalafix-annotations_2.13:0.5.4" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", - "org.typelevel:cats-core_2.13:2.8.0" + "org.typelevel:cats-core_2.13:2.6.1" ], "file": "v1/https/repo1.maven.org/maven2/org/typelevel/cats-effect_2.13/2.5.1/cats-effect_2.13-2.5.1.jar", "mirror_urls": [ @@ -20911,11 +16530,13 @@ "coord": "org.typelevel:cats-effect_2.13:jar:sources:2.5.1", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.typelevel:cats-core_2.13:jar:sources:2.8.0" + "org.typelevel:cats-core_2.13:jar:sources:2.6.1", + "org.typelevel:cats-kernel_2.13:jar:sources:2.6.1", + "org.typelevel:simulacrum-scalafix-annotations_2.13:jar:sources:0.5.4" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.typelevel:cats-core_2.13:jar:sources:2.8.0" + "org.typelevel:cats-core_2.13:jar:sources:2.6.1" ], "file": "v1/https/repo1.maven.org/maven2/org/typelevel/cats-effect_2.13/2.5.1/cats-effect_2.13-2.5.1-sources.jar", "mirror_urls": [ @@ -20929,12 +16550,13 @@ "coord": "org.typelevel:cats-free_2.13:2.6.1", "dependencies": [ "org.scala-lang:scala-library:2.13.8", - "org.typelevel:cats-core_2.13:2.8.0", + "org.typelevel:cats-core_2.13:2.6.1", + "org.typelevel:cats-kernel_2.13:2.6.1", "org.typelevel:simulacrum-scalafix-annotations_2.13:0.5.4" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", - "org.typelevel:cats-core_2.13:2.8.0", + "org.typelevel:cats-core_2.13:2.6.1", "org.typelevel:simulacrum-scalafix-annotations_2.13:0.5.4" ], "file": "v1/https/repo1.maven.org/maven2/org/typelevel/cats-free_2.13/2.6.1/cats-free_2.13-2.6.1.jar", @@ -20951,12 +16573,13 @@ "coord": "org.typelevel:cats-free_2.13:jar:sources:2.6.1", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.typelevel:cats-core_2.13:jar:sources:2.8.0", + "org.typelevel:cats-core_2.13:jar:sources:2.6.1", + "org.typelevel:cats-kernel_2.13:jar:sources:2.6.1", "org.typelevel:simulacrum-scalafix-annotations_2.13:jar:sources:0.5.4" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.typelevel:cats-core_2.13:jar:sources:2.8.0", + "org.typelevel:cats-core_2.13:jar:sources:2.6.1", "org.typelevel:simulacrum-scalafix-annotations_2.13:jar:sources:0.5.4" ], "file": "v1/https/repo1.maven.org/maven2/org/typelevel/cats-free_2.13/2.6.1/cats-free_2.13-2.6.1-sources.jar", @@ -20968,62 +16591,64 @@ "url": "https://repo1.maven.org/maven2/org/typelevel/cats-free_2.13/2.6.1/cats-free_2.13-2.6.1-sources.jar" }, { - "coord": "org.typelevel:cats-kernel-laws_2.13:2.8.0", + "coord": "org.typelevel:cats-kernel-laws_2.13:2.6.1", "dependencies": [ "org.scala-lang:scala-library:2.13.8", + "org.scala-sbt:test-interface:1.0", "org.scalacheck:scalacheck_2.13:1.15.4", - "org.typelevel:cats-kernel_2.13:2.8.0", - "org.typelevel:discipline-core_2.13:1.5.1" + "org.typelevel:cats-kernel_2.13:2.6.1", + "org.typelevel:discipline-core_2.13:1.1.5" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", - "org.typelevel:cats-kernel_2.13:2.8.0", - "org.typelevel:discipline-core_2.13:1.5.1" + "org.typelevel:cats-kernel_2.13:2.6.1", + "org.typelevel:discipline-core_2.13:1.1.5" ], - "file": "v1/https/repo1.maven.org/maven2/org/typelevel/cats-kernel-laws_2.13/2.8.0/cats-kernel-laws_2.13-2.8.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/typelevel/cats-kernel-laws_2.13/2.6.1/cats-kernel-laws_2.13-2.6.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/typelevel/cats-kernel-laws_2.13/2.8.0/cats-kernel-laws_2.13-2.8.0.jar" + "https://repo1.maven.org/maven2/org/typelevel/cats-kernel-laws_2.13/2.6.1/cats-kernel-laws_2.13-2.6.1.jar" ], "packages": [ "cats.kernel.laws", "cats.kernel.laws.discipline", "cats.platform" ], - "sha256": "f216551cedac6014a93622f67b863bc5980d1d182611187aaf88d88d3951b454", - "url": "https://repo1.maven.org/maven2/org/typelevel/cats-kernel-laws_2.13/2.8.0/cats-kernel-laws_2.13-2.8.0.jar" + "sha256": "89f8ca0e075442453396a555409346a22bed18e8f6bca9bec709dd13e0e3660d", + "url": "https://repo1.maven.org/maven2/org/typelevel/cats-kernel-laws_2.13/2.6.1/cats-kernel-laws_2.13-2.6.1.jar" }, { - "coord": "org.typelevel:cats-kernel-laws_2.13:jar:sources:2.8.0", + "coord": "org.typelevel:cats-kernel-laws_2.13:jar:sources:2.6.1", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", + "org.scala-sbt:test-interface:jar:sources:1.0", "org.scalacheck:scalacheck_2.13:jar:sources:1.15.4", - "org.typelevel:cats-kernel_2.13:jar:sources:2.8.0", - "org.typelevel:discipline-core_2.13:jar:sources:1.5.1" + "org.typelevel:cats-kernel_2.13:jar:sources:2.6.1", + "org.typelevel:discipline-core_2.13:jar:sources:1.1.5" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.typelevel:cats-kernel_2.13:jar:sources:2.8.0", - "org.typelevel:discipline-core_2.13:jar:sources:1.5.1" + "org.typelevel:cats-kernel_2.13:jar:sources:2.6.1", + "org.typelevel:discipline-core_2.13:jar:sources:1.1.5" ], - "file": "v1/https/repo1.maven.org/maven2/org/typelevel/cats-kernel-laws_2.13/2.8.0/cats-kernel-laws_2.13-2.8.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/typelevel/cats-kernel-laws_2.13/2.6.1/cats-kernel-laws_2.13-2.6.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/typelevel/cats-kernel-laws_2.13/2.8.0/cats-kernel-laws_2.13-2.8.0-sources.jar" + "https://repo1.maven.org/maven2/org/typelevel/cats-kernel-laws_2.13/2.6.1/cats-kernel-laws_2.13-2.6.1-sources.jar" ], "packages": [], - "sha256": "88fccd542c110e20103bf7ff824b5c3fbf4130b63e393639d2ee761f50f478df", - "url": "https://repo1.maven.org/maven2/org/typelevel/cats-kernel-laws_2.13/2.8.0/cats-kernel-laws_2.13-2.8.0-sources.jar" + "sha256": "76110337a3c4489534acaf677b81b69bef521bf175ecd5afc94955d3a951fd54", + "url": "https://repo1.maven.org/maven2/org/typelevel/cats-kernel-laws_2.13/2.6.1/cats-kernel-laws_2.13-2.6.1-sources.jar" }, { - "coord": "org.typelevel:cats-kernel_2.13:2.8.0", + "coord": "org.typelevel:cats-kernel_2.13:2.6.1", "dependencies": [ "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/typelevel/cats-kernel_2.13/2.8.0/cats-kernel_2.13-2.8.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/typelevel/cats-kernel_2.13/2.6.1/cats-kernel_2.13-2.6.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.13/2.8.0/cats-kernel_2.13-2.8.0.jar" + "https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.13/2.6.1/cats-kernel_2.13-2.6.1.jar" ], "packages": [ "cats.kernel", @@ -21037,7 +16662,6 @@ "cats.kernel.instances.boolean", "cats.kernel.instances.byte", "cats.kernel.instances.char", - "cats.kernel.instances.deadline", "cats.kernel.instances.double", "cats.kernel.instances.duration", "cats.kernel.instances.either", @@ -21064,155 +16688,163 @@ "cats.kernel.instances.uuid", "cats.kernel.instances.vector" ], - "sha256": "be38080c6af66465117db74804fb7dfcce3a7eac265c053332aa26f4e32175d2", - "url": "https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.13/2.8.0/cats-kernel_2.13-2.8.0.jar" + "sha256": "485f13f6e0071b6a526061ab74f8711d0db20c58c6a692d08067de87f8d0133c", + "url": "https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.13/2.6.1/cats-kernel_2.13-2.6.1.jar" }, { - "coord": "org.typelevel:cats-kernel_2.13:jar:sources:2.8.0", + "coord": "org.typelevel:cats-kernel_2.13:jar:sources:2.6.1", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/typelevel/cats-kernel_2.13/2.8.0/cats-kernel_2.13-2.8.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/typelevel/cats-kernel_2.13/2.6.1/cats-kernel_2.13-2.6.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.13/2.8.0/cats-kernel_2.13-2.8.0-sources.jar" + "https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.13/2.6.1/cats-kernel_2.13-2.6.1-sources.jar" ], "packages": [], - "sha256": "d1fc729f0f928bce302bbe5700295d450fd09062afa40a21b7f13b0d2f674d56", - "url": "https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.13/2.8.0/cats-kernel_2.13-2.8.0-sources.jar" + "sha256": "e9a5f2627e443b6afc14f7ed643a0fc6687e4946a82ea7376c77398a1050028a", + "url": "https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.13/2.6.1/cats-kernel_2.13-2.6.1-sources.jar" }, { - "coord": "org.typelevel:cats-laws_2.13:2.8.0", + "coord": "org.typelevel:cats-laws_2.13:2.6.1", "dependencies": [ "org.scala-lang:scala-library:2.13.8", + "org.scala-sbt:test-interface:1.0", "org.scalacheck:scalacheck_2.13:1.15.4", - "org.typelevel:cats-core_2.13:2.8.0", - "org.typelevel:cats-kernel-laws_2.13:2.8.0", - "org.typelevel:cats-kernel_2.13:2.8.0", - "org.typelevel:discipline-core_2.13:1.5.1" + "org.typelevel:cats-core_2.13:2.6.1", + "org.typelevel:cats-kernel-laws_2.13:2.6.1", + "org.typelevel:cats-kernel_2.13:2.6.1", + "org.typelevel:discipline-core_2.13:1.1.5", + "org.typelevel:simulacrum-scalafix-annotations_2.13:0.5.4" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", - "org.typelevel:cats-core_2.13:2.8.0", - "org.typelevel:cats-kernel-laws_2.13:2.8.0", - "org.typelevel:cats-kernel_2.13:2.8.0", - "org.typelevel:discipline-core_2.13:1.5.1" + "org.typelevel:cats-core_2.13:2.6.1", + "org.typelevel:cats-kernel-laws_2.13:2.6.1", + "org.typelevel:cats-kernel_2.13:2.6.1", + "org.typelevel:discipline-core_2.13:1.1.5", + "org.typelevel:simulacrum-scalafix-annotations_2.13:0.5.4" ], - "file": "v1/https/repo1.maven.org/maven2/org/typelevel/cats-laws_2.13/2.8.0/cats-laws_2.13-2.8.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/typelevel/cats-laws_2.13/2.6.1/cats-laws_2.13-2.6.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/typelevel/cats-laws_2.13/2.8.0/cats-laws_2.13-2.8.0.jar" + "https://repo1.maven.org/maven2/org/typelevel/cats-laws_2.13/2.6.1/cats-laws_2.13-2.6.1.jar" ], "packages": [ "cats.laws", "cats.laws.discipline" ], - "sha256": "8157d82e7b0cc8179bf483d41c729470cd4938e4c6ac6721a20f012b1770816e", - "url": "https://repo1.maven.org/maven2/org/typelevel/cats-laws_2.13/2.8.0/cats-laws_2.13-2.8.0.jar" + "sha256": "ba0abdd893a6f0d754b5e9b722f3ea2aef1dc0b1656f1ebfeeac7c598719f5a5", + "url": "https://repo1.maven.org/maven2/org/typelevel/cats-laws_2.13/2.6.1/cats-laws_2.13-2.6.1.jar" }, { - "coord": "org.typelevel:cats-laws_2.13:jar:sources:2.8.0", + "coord": "org.typelevel:cats-laws_2.13:jar:sources:2.6.1", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", + "org.scala-sbt:test-interface:jar:sources:1.0", "org.scalacheck:scalacheck_2.13:jar:sources:1.15.4", - "org.typelevel:cats-core_2.13:jar:sources:2.8.0", - "org.typelevel:cats-kernel-laws_2.13:jar:sources:2.8.0", - "org.typelevel:cats-kernel_2.13:jar:sources:2.8.0", - "org.typelevel:discipline-core_2.13:jar:sources:1.5.1" + "org.typelevel:cats-core_2.13:jar:sources:2.6.1", + "org.typelevel:cats-kernel-laws_2.13:jar:sources:2.6.1", + "org.typelevel:cats-kernel_2.13:jar:sources:2.6.1", + "org.typelevel:discipline-core_2.13:jar:sources:1.1.5", + "org.typelevel:simulacrum-scalafix-annotations_2.13:jar:sources:0.5.4" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", - "org.typelevel:cats-core_2.13:jar:sources:2.8.0", - "org.typelevel:cats-kernel-laws_2.13:jar:sources:2.8.0", - "org.typelevel:cats-kernel_2.13:jar:sources:2.8.0", - "org.typelevel:discipline-core_2.13:jar:sources:1.5.1" + "org.typelevel:cats-core_2.13:jar:sources:2.6.1", + "org.typelevel:cats-kernel-laws_2.13:jar:sources:2.6.1", + "org.typelevel:cats-kernel_2.13:jar:sources:2.6.1", + "org.typelevel:discipline-core_2.13:jar:sources:1.1.5", + "org.typelevel:simulacrum-scalafix-annotations_2.13:jar:sources:0.5.4" ], - "file": "v1/https/repo1.maven.org/maven2/org/typelevel/cats-laws_2.13/2.8.0/cats-laws_2.13-2.8.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/typelevel/cats-laws_2.13/2.6.1/cats-laws_2.13-2.6.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/typelevel/cats-laws_2.13/2.8.0/cats-laws_2.13-2.8.0-sources.jar" + "https://repo1.maven.org/maven2/org/typelevel/cats-laws_2.13/2.6.1/cats-laws_2.13-2.6.1-sources.jar" ], "packages": [], - "sha256": "c3aa5162328672ac9e5e2d9df0de606c8623290e40feb03fed27105dae6bc0b2", - "url": "https://repo1.maven.org/maven2/org/typelevel/cats-laws_2.13/2.8.0/cats-laws_2.13-2.8.0-sources.jar" + "sha256": "6d294c1b0a43b32be63779224021ac9f8501e2dd97fb31d0cc0849d1de910239", + "url": "https://repo1.maven.org/maven2/org/typelevel/cats-laws_2.13/2.6.1/cats-laws_2.13-2.6.1-sources.jar" }, { - "coord": "org.typelevel:discipline-core_2.13:1.5.1", + "coord": "org.typelevel:discipline-core_2.13:1.1.5", "dependencies": [ "org.scala-lang:scala-library:2.13.8", + "org.scala-sbt:test-interface:1.0", "org.scalacheck:scalacheck_2.13:1.15.4" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8", "org.scalacheck:scalacheck_2.13:1.15.4" ], - "file": "v1/https/repo1.maven.org/maven2/org/typelevel/discipline-core_2.13/1.5.1/discipline-core_2.13-1.5.1.jar", + "file": "v1/https/repo1.maven.org/maven2/org/typelevel/discipline-core_2.13/1.1.5/discipline-core_2.13-1.1.5.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/typelevel/discipline-core_2.13/1.5.1/discipline-core_2.13-1.5.1.jar" + "https://repo1.maven.org/maven2/org/typelevel/discipline-core_2.13/1.1.5/discipline-core_2.13-1.1.5.jar" ], "packages": [ "org.typelevel.discipline" ], - "sha256": "5acdfc06946b9e6fea0514331245aa6618c6a1c6dfee3c458febe8c16daf7a80", - "url": "https://repo1.maven.org/maven2/org/typelevel/discipline-core_2.13/1.5.1/discipline-core_2.13-1.5.1.jar" + "sha256": "05ec6238db65aa51f23920e85f185ebb5a73118ae0a0ac980788a5ac2b0c01b0", + "url": "https://repo1.maven.org/maven2/org/typelevel/discipline-core_2.13/1.1.5/discipline-core_2.13-1.1.5.jar" }, { - "coord": "org.typelevel:discipline-core_2.13:jar:sources:1.5.1", + "coord": "org.typelevel:discipline-core_2.13:jar:sources:1.1.5", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", + "org.scala-sbt:test-interface:jar:sources:1.0", "org.scalacheck:scalacheck_2.13:jar:sources:1.15.4" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scalacheck:scalacheck_2.13:jar:sources:1.15.4" ], - "file": "v1/https/repo1.maven.org/maven2/org/typelevel/discipline-core_2.13/1.5.1/discipline-core_2.13-1.5.1-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/typelevel/discipline-core_2.13/1.1.5/discipline-core_2.13-1.1.5-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/typelevel/discipline-core_2.13/1.5.1/discipline-core_2.13-1.5.1-sources.jar" + "https://repo1.maven.org/maven2/org/typelevel/discipline-core_2.13/1.1.5/discipline-core_2.13-1.1.5-sources.jar" ], "packages": [], - "sha256": "d9900f94fd9be6e1fbe2f5a2e202269e6957737d978507a7b112f2d82b4b7282", - "url": "https://repo1.maven.org/maven2/org/typelevel/discipline-core_2.13/1.5.1/discipline-core_2.13-1.5.1-sources.jar" + "sha256": "bbf7a4805e2a27249cd2fdc7d0f7b155775eb002ee3b0e5a84ddcbb4fd5ec545", + "url": "https://repo1.maven.org/maven2/org/typelevel/discipline-core_2.13/1.1.5/discipline-core_2.13-1.1.5-sources.jar" }, { - "coord": "org.typelevel:jawn-parser_2.13:1.4.0", + "coord": "org.typelevel:jawn-parser_2.13:1.0.0", "dependencies": [ "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/typelevel/jawn-parser_2.13/1.4.0/jawn-parser_2.13-1.4.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/typelevel/jawn-parser_2.13/1.0.0/jawn-parser_2.13-1.0.0.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/typelevel/jawn-parser_2.13/1.4.0/jawn-parser_2.13-1.4.0.jar" + "https://repo1.maven.org/maven2/org/typelevel/jawn-parser_2.13/1.0.0/jawn-parser_2.13-1.0.0.jar" ], "packages": [ "org.typelevel.jawn" ], - "sha256": "6ad807d4446cb95540fa8b272836187f9157706ec95070b5fd948f0c9103ecc1", - "url": "https://repo1.maven.org/maven2/org/typelevel/jawn-parser_2.13/1.4.0/jawn-parser_2.13-1.4.0.jar" + "sha256": "15ae282ef1ba7d682d0647a7fde5a855ba99c3d61aa94123affcd102e8a4593a", + "url": "https://repo1.maven.org/maven2/org/typelevel/jawn-parser_2.13/1.0.0/jawn-parser_2.13-1.0.0.jar" }, { - "coord": "org.typelevel:jawn-parser_2.13:jar:sources:1.4.0", + "coord": "org.typelevel:jawn-parser_2.13:jar:sources:1.0.0", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/typelevel/jawn-parser_2.13/1.4.0/jawn-parser_2.13-1.4.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/typelevel/jawn-parser_2.13/1.0.0/jawn-parser_2.13-1.0.0-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/typelevel/jawn-parser_2.13/1.4.0/jawn-parser_2.13-1.4.0-sources.jar" + "https://repo1.maven.org/maven2/org/typelevel/jawn-parser_2.13/1.0.0/jawn-parser_2.13-1.0.0-sources.jar" ], "packages": [], - "sha256": "8101201462a78940e740cd50f548136d7d2e6f9802e4a602dde30b1ae347f078", - "url": "https://repo1.maven.org/maven2/org/typelevel/jawn-parser_2.13/1.4.0/jawn-parser_2.13-1.4.0-sources.jar" + "sha256": "bee9868ee902c3681602e339f3263170a6c1de2d678587d48ecbe24e9681d182", + "url": "https://repo1.maven.org/maven2/org/typelevel/jawn-parser_2.13/1.0.0/jawn-parser_2.13-1.0.0-sources.jar" }, { "coord": "org.typelevel:kind-projector_2.13.8:0.13.2", "dependencies": [ "net.java.dev.jna:jna:5.9.0", - "org.jline:jline:3.21.0", + "org.jline:jline:3.7.1", "org.scala-lang:scala-compiler:2.13.8", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8" @@ -21235,7 +16867,7 @@ "coord": "org.typelevel:kind-projector_2.13.8:jar:sources:0.13.2", "dependencies": [ "net.java.dev.jna:jna:jar:sources:5.9.0", - "org.jline:jline:jar:sources:3.21.0", + "org.jline:jline:jar:sources:3.7.1", "org.scala-lang:scala-compiler:jar:sources:2.13.8", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8" @@ -21253,38 +16885,38 @@ "url": "https://repo1.maven.org/maven2/org/typelevel/kind-projector_2.13.8/0.13.2/kind-projector_2.13.8-0.13.2-sources.jar" }, { - "coord": "org.typelevel:paiges-core_2.13:0.4.2", + "coord": "org.typelevel:paiges-core_2.13:0.3.2", "dependencies": [ "org.scala-lang:scala-library:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/typelevel/paiges-core_2.13/0.4.2/paiges-core_2.13-0.4.2.jar", + "file": "v1/https/repo1.maven.org/maven2/org/typelevel/paiges-core_2.13/0.3.2/paiges-core_2.13-0.3.2.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/typelevel/paiges-core_2.13/0.4.2/paiges-core_2.13-0.4.2.jar" + "https://repo1.maven.org/maven2/org/typelevel/paiges-core_2.13/0.3.2/paiges-core_2.13-0.3.2.jar" ], "packages": [ "org.typelevel.paiges" ], - "sha256": "9484ac95856510459d1bd52a77a6b93cdd641560decdf9910395ee4d17e88163", - "url": "https://repo1.maven.org/maven2/org/typelevel/paiges-core_2.13/0.4.2/paiges-core_2.13-0.4.2.jar" + "sha256": "191a6c5725c62ebe16a85a89b9dad5ab60e17050f6ed75e628c9cef6a31597b7", + "url": "https://repo1.maven.org/maven2/org/typelevel/paiges-core_2.13/0.3.2/paiges-core_2.13-0.3.2.jar" }, { - "coord": "org.typelevel:paiges-core_2.13:jar:sources:0.4.2", + "coord": "org.typelevel:paiges-core_2.13:jar:sources:0.3.2", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/typelevel/paiges-core_2.13/0.4.2/paiges-core_2.13-0.4.2-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/typelevel/paiges-core_2.13/0.3.2/paiges-core_2.13-0.3.2-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/typelevel/paiges-core_2.13/0.4.2/paiges-core_2.13-0.4.2-sources.jar" + "https://repo1.maven.org/maven2/org/typelevel/paiges-core_2.13/0.3.2/paiges-core_2.13-0.3.2-sources.jar" ], "packages": [], - "sha256": "e2ad8c00c992eee19f5c42374423046b85f64167a2674a34ae7f972d79ee69dc", - "url": "https://repo1.maven.org/maven2/org/typelevel/paiges-core_2.13/0.4.2/paiges-core_2.13-0.4.2-sources.jar" + "sha256": "65b48ff4a5a0bd93cdd7ee348764813e1aafdee86fb801cd48fa8f13a51c156d", + "url": "https://repo1.maven.org/maven2/org/typelevel/paiges-core_2.13/0.3.2/paiges-core_2.13-0.3.2-sources.jar" }, { "coord": "org.typelevel:simulacrum-scalafix-annotations_2.13:0.5.4", @@ -21402,10 +17034,10 @@ "url": "https://repo1.maven.org/maven2/org/unbescape/unbescape/1.1.6.RELEASE/unbescape-1.1.6.RELEASE-sources.jar" }, { - "coord": "org.wartremover:wartremover_2.13.8:3.0.6", + "coord": "org.wartremover:wartremover_2.13.8:2.4.16", "dependencies": [ "net.java.dev.jna:jna:5.9.0", - "org.jline:jline:3.21.0", + "org.jline:jline:3.7.1", "org.scala-lang:scala-compiler:2.13.8", "org.scala-lang:scala-library:2.13.8", "org.scala-lang:scala-reflect:2.13.8" @@ -21414,23 +17046,23 @@ "org.scala-lang:scala-compiler:2.13.8", "org.scala-lang:scala-library:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/wartremover/wartremover_2.13.8/3.0.6/wartremover_2.13.8-3.0.6.jar", + "file": "v1/https/repo1.maven.org/maven2/org/wartremover/wartremover_2.13.8/2.4.16/wartremover_2.13.8-2.4.16.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/wartremover/wartremover_2.13.8/3.0.6/wartremover_2.13.8-3.0.6.jar" + "https://repo1.maven.org/maven2/org/wartremover/wartremover_2.13.8/2.4.16/wartremover_2.13.8-2.4.16.jar" ], "packages": [ "org.wartremover", "org.wartremover.test", "org.wartremover.warts" ], - "sha256": "8be1499ef0c53477fbe45fb088063d34672a5ddf9b5869d3edc929a45129ad24", - "url": "https://repo1.maven.org/maven2/org/wartremover/wartremover_2.13.8/3.0.6/wartremover_2.13.8-3.0.6.jar" + "sha256": "f2cf506103f380f131b724cdf0d95407cd0efbcf00ed970947b641e11db16aec", + "url": "https://repo1.maven.org/maven2/org/wartremover/wartremover_2.13.8/2.4.16/wartremover_2.13.8-2.4.16.jar" }, { - "coord": "org.wartremover:wartremover_2.13.8:jar:sources:3.0.6", + "coord": "org.wartremover:wartremover_2.13.8:jar:sources:2.4.16", "dependencies": [ "net.java.dev.jna:jna:jar:sources:5.9.0", - "org.jline:jline:jar:sources:3.21.0", + "org.jline:jline:jar:sources:3.7.1", "org.scala-lang:scala-compiler:jar:sources:2.13.8", "org.scala-lang:scala-library:jar:sources:2.13.8", "org.scala-lang:scala-reflect:jar:sources:2.13.8" @@ -21439,21 +17071,21 @@ "org.scala-lang:scala-compiler:jar:sources:2.13.8", "org.scala-lang:scala-library:jar:sources:2.13.8" ], - "file": "v1/https/repo1.maven.org/maven2/org/wartremover/wartremover_2.13.8/3.0.6/wartremover_2.13.8-3.0.6-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/wartremover/wartremover_2.13.8/2.4.16/wartremover_2.13.8-2.4.16-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/wartremover/wartremover_2.13.8/3.0.6/wartremover_2.13.8-3.0.6-sources.jar" + "https://repo1.maven.org/maven2/org/wartremover/wartremover_2.13.8/2.4.16/wartremover_2.13.8-2.4.16-sources.jar" ], "packages": [], - "sha256": "1d6cc2e56854f74a52679d1b51999dff7f7e9f263241ba58b3a51a142e7aed9d", - "url": "https://repo1.maven.org/maven2/org/wartremover/wartremover_2.13.8/3.0.6/wartremover_2.13.8-3.0.6-sources.jar" + "sha256": "e6d93881e34aa96b8b34607b949731b54a006c59d9c4dd1121557bf0929c5bb0", + "url": "https://repo1.maven.org/maven2/org/wartremover/wartremover_2.13.8/2.4.16/wartremover_2.13.8-2.4.16-sources.jar" }, { - "coord": "org.xerial:sqlite-jdbc:3.39.3.0", + "coord": "org.xerial:sqlite-jdbc:3.36.0.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/xerial/sqlite-jdbc/3.39.3.0/sqlite-jdbc-3.39.3.0.jar", + "file": "v1/https/repo1.maven.org/maven2/org/xerial/sqlite-jdbc/3.36.0.1/sqlite-jdbc-3.36.0.1.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/xerial/sqlite-jdbc/3.39.3.0/sqlite-jdbc-3.39.3.0.jar" + "https://repo1.maven.org/maven2/org/xerial/sqlite-jdbc/3.36.0.1/sqlite-jdbc-3.36.0.1.jar" ], "packages": [ "org.sqlite", @@ -21464,32 +17096,31 @@ "org.sqlite.jdbc4", "org.sqlite.util" ], - "sha256": "7abc3c24d94af944794ccf31b2d3ac706c018dcc99cbfa17150f631593dfadf5", - "url": "https://repo1.maven.org/maven2/org/xerial/sqlite-jdbc/3.39.3.0/sqlite-jdbc-3.39.3.0.jar" + "sha256": "3c82074918a376c5cf34ca8520f0bca0359d4a3b393c75c6704a024623e2eedc", + "url": "https://repo1.maven.org/maven2/org/xerial/sqlite-jdbc/3.36.0.1/sqlite-jdbc-3.36.0.1.jar" }, { - "coord": "org.xerial:sqlite-jdbc:jar:sources:3.39.3.0", + "coord": "org.xerial:sqlite-jdbc:jar:sources:3.36.0.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/xerial/sqlite-jdbc/3.39.3.0/sqlite-jdbc-3.39.3.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/xerial/sqlite-jdbc/3.36.0.1/sqlite-jdbc-3.36.0.1-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/xerial/sqlite-jdbc/3.39.3.0/sqlite-jdbc-3.39.3.0-sources.jar" + "https://repo1.maven.org/maven2/org/xerial/sqlite-jdbc/3.36.0.1/sqlite-jdbc-3.36.0.1-sources.jar" ], "packages": [], - "sha256": "631e8b4a6a14d563cdcf6fb2e1b114c8abbc33769a17276aa789da04f7c0d7b3", - "url": "https://repo1.maven.org/maven2/org/xerial/sqlite-jdbc/3.39.3.0/sqlite-jdbc-3.39.3.0-sources.jar" + "sha256": "0454692718d9ca7a5090c45102ba73ec523acd2dc558b00600f365038af50b7d", + "url": "https://repo1.maven.org/maven2/org/xerial/sqlite-jdbc/3.36.0.1/sqlite-jdbc-3.36.0.1-sources.jar" }, { - "coord": "org.yaml:snakeyaml:1.28", + "coord": "org.yaml:snakeyaml:1.26", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/yaml/snakeyaml/1.28/snakeyaml-1.28.jar", + "file": "v1/https/repo1.maven.org/maven2/org/yaml/snakeyaml/1.26/snakeyaml-1.26.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/yaml/snakeyaml/1.28/snakeyaml-1.28.jar" + "https://repo1.maven.org/maven2/org/yaml/snakeyaml/1.26/snakeyaml-1.26.jar" ], "packages": [ "org.yaml.snakeyaml", - "org.yaml.snakeyaml.comments", "org.yaml.snakeyaml.composer", "org.yaml.snakeyaml.constructor", "org.yaml.snakeyaml.emitter", @@ -21510,20 +17141,20 @@ "org.yaml.snakeyaml.tokens", "org.yaml.snakeyaml.util" ], - "sha256": "35446a1421435d45e4c6ac0de3b5378527d5cc2446c07183e24447730ce1fffa", - "url": "https://repo1.maven.org/maven2/org/yaml/snakeyaml/1.28/snakeyaml-1.28.jar" + "sha256": "d87d607e500885356c03c1cae61e8c2e05d697df8787d5aba13484c2eb76a844", + "url": "https://repo1.maven.org/maven2/org/yaml/snakeyaml/1.26/snakeyaml-1.26.jar" }, { - "coord": "org.yaml:snakeyaml:jar:sources:1.28", + "coord": "org.yaml:snakeyaml:jar:sources:1.26", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/yaml/snakeyaml/1.28/snakeyaml-1.28-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/yaml/snakeyaml/1.26/snakeyaml-1.26-sources.jar", "mirror_urls": [ - "https://repo1.maven.org/maven2/org/yaml/snakeyaml/1.28/snakeyaml-1.28-sources.jar" + "https://repo1.maven.org/maven2/org/yaml/snakeyaml/1.26/snakeyaml-1.26-sources.jar" ], "packages": [], - "sha256": "70ca3c7adfe91e359d66ce6456ddfd79a7f5062bad833af7f90a3cc3a2ed20ed", - "url": "https://repo1.maven.org/maven2/org/yaml/snakeyaml/1.28/snakeyaml-1.28-sources.jar" + "sha256": "1b8c66afbcdec0c35fe3f3f69b8848f577e0aa7884764f2f1f7881b35b5ab952", + "url": "https://repo1.maven.org/maven2/org/yaml/snakeyaml/1.26/snakeyaml-1.26-sources.jar" }, { "coord": "ru.vyarus:generics-resolver:3.0.3", diff --git a/navigator/backend/BUILD.bazel b/navigator/backend/BUILD.bazel index fd68050af92b..23f7731f0816 100644 --- a/navigator/backend/BUILD.bazel +++ b/navigator/backend/BUILD.bazel @@ -41,7 +41,6 @@ da_scala_library( "@maven//:com_chuusai_shapeless", "@maven//:com_github_pureconfig_pureconfig_core", "@maven//:com_github_pureconfig_pureconfig_generic", - "@maven//:com_github_pureconfig_pureconfig_generic_base", "@maven//:com_github_scopt_scopt", "@maven//:com_typesafe_akka_akka_actor", "@maven//:com_typesafe_akka_akka_http", @@ -50,10 +49,7 @@ da_scala_library( "@maven//:com_typesafe_akka_akka_stream", "@maven//:com_typesafe_scala_logging_scala_logging", "@maven//:io_spray_spray_json", - "@maven//:org_sangria_graphql_sangria_ast", - "@maven//:org_sangria_graphql_sangria_core", - "@maven//:org_sangria_graphql_sangria_derivation", - "@maven//:org_sangria_graphql_sangria_parser", + "@maven//:org_sangria_graphql_sangria", "@maven//:org_sangria_graphql_sangria_marshalling_api", "@maven//:org_scalaz_scalaz_core", "@maven//:org_tpolecat_doobie_core", @@ -170,10 +166,8 @@ da_scala_test_suite( "@maven//:com_typesafe_akka_akka_stream", "@maven//:com_typesafe_scala_logging_scala_logging", "@maven//:io_spray_spray_json", - "@maven//:org_sangria_graphql_sangria_ast", - "@maven//:org_sangria_graphql_sangria_core", + "@maven//:org_sangria_graphql_sangria", "@maven//:org_sangria_graphql_sangria_marshalling_api", - "@maven//:org_sangria_graphql_sangria_parser", "@maven//:org_scalacheck_scalacheck", "@maven//:org_scalatest_scalatest_core", "@maven//:org_scalatest_scalatest_matchers_core", diff --git a/triggers/service/BUILD.bazel b/triggers/service/BUILD.bazel index 2f99fba917d3..4c944a60c1f2 100644 --- a/triggers/service/BUILD.bazel +++ b/triggers/service/BUILD.bazel @@ -50,7 +50,6 @@ da_scala_library( "@maven//:org_typelevel_cats_kernel", "@maven//:com_github_pureconfig_pureconfig_core", "@maven//:com_github_pureconfig_pureconfig_generic", - "@maven//:com_github_pureconfig_pureconfig_generic_base", ], scala_runtime_deps = [ "@maven//:com_typesafe_akka_akka_slf4j", @@ -199,7 +198,7 @@ da_scala_library( "//triggers/service/auth:oauth2-middleware", "//triggers/service/auth:oauth2-test-server", "@maven//:com_auth0_java_jwt", - "@maven//:eu_rekawek_toxiproxy_toxiproxy_java_2_1_7", + "@maven//:eu_rekawek_toxiproxy_toxiproxy_java_2_1_3", "@maven//:org_scalatest_scalatest_compatible", ], ) @@ -252,7 +251,7 @@ da_scala_test_suite( "//libs-scala/resources", "//triggers/service/auth:middleware-api", "//triggers/service/auth:oauth2-test-server", - "@maven//:eu_rekawek_toxiproxy_toxiproxy_java_2_1_7", + "@maven//:eu_rekawek_toxiproxy_toxiproxy_java_2_1_3", "@maven//:org_flywaydb_flyway_core", "@maven//:org_scalatest_scalatest_compatible", ], @@ -295,7 +294,7 @@ da_scala_test_suite( "//libs-scala/ports", "//libs-scala/resources", "//triggers/service/auth:oauth2-test-server", - "@maven//:eu_rekawek_toxiproxy_toxiproxy_java_2_1_7", + "@maven//:eu_rekawek_toxiproxy_toxiproxy_java_2_1_3", "@maven//:org_scalatest_scalatest_compatible", ], ) diff --git a/triggers/service/auth/BUILD.bazel b/triggers/service/auth/BUILD.bazel index 4407791f3d86..d8b863d49364 100644 --- a/triggers/service/auth/BUILD.bazel +++ b/triggers/service/auth/BUILD.bazel @@ -72,7 +72,6 @@ da_scala_library( "@maven//:com_chuusai_shapeless", "@maven//:com_github_pureconfig_pureconfig_core", "@maven//:com_github_pureconfig_pureconfig_generic", - "@maven//:com_github_pureconfig_pureconfig_generic_base", "@maven//:io_spray_spray_json", "@maven//:org_scalaz_scalaz_core", ], diff --git a/triggers/service/auth/src/test/scala/com/daml/auth/middleware/oauth2/TestFixture.scala b/triggers/service/auth/src/test/scala/com/daml/auth/middleware/oauth2/TestFixture.scala index edc8a84ca36f..7dbc0993f2e6 100644 --- a/triggers/service/auth/src/test/scala/com/daml/auth/middleware/oauth2/TestFixture.scala +++ b/triggers/service/auth/src/test/scala/com/daml/auth/middleware/oauth2/TestFixture.scala @@ -5,12 +5,14 @@ package com.daml.auth.middleware.oauth2 import java.io.File import java.time.{Instant, ZoneId} +import java.util.Date import akka.http.scaladsl.Http.ServerBinding import akka.http.scaladsl.model.Uri import com.auth0.jwt.JWTVerifier.BaseVerification import com.auth0.jwt.JWT import com.auth0.jwt.algorithms.Algorithm +import com.auth0.jwt.interfaces.{Clock => Auth0Clock} import com.daml.auth.middleware.api.Client import com.daml.clock.AdjustableClock import com.daml.jwt.JwtVerifier @@ -112,7 +114,9 @@ trait TestFixture JWT .require(Algorithm.HMAC256(jwtSecret)) .asInstanceOf[BaseVerification] - .build(clock) + .build(new Auth0Clock { + override def getToday: Date = Date.from(clock.instant()) + }) ), ) ) diff --git a/triggers/service/src/test/scala/com/digitalasset/daml/lf/engine/trigger/TriggerServiceFixture.scala b/triggers/service/src/test/scala/com/digitalasset/daml/lf/engine/trigger/TriggerServiceFixture.scala index e88f3304bc3d..11f674f0adbb 100644 --- a/triggers/service/src/test/scala/com/digitalasset/daml/lf/engine/trigger/TriggerServiceFixture.scala +++ b/triggers/service/src/test/scala/com/digitalasset/daml/lf/engine/trigger/TriggerServiceFixture.scala @@ -11,6 +11,7 @@ import akka.http.scaladsl.model._ import com.auth0.jwt.JWT import com.auth0.jwt.JWTVerifier.BaseVerification import com.auth0.jwt.algorithms.Algorithm +import com.auth0.jwt.interfaces.{Clock => Auth0Clock} import com.daml.auth.middleware.api.{Client => AuthClient} import com.daml.auth.middleware.oauth2.{ SecretString, @@ -67,7 +68,7 @@ import scalaz.syntax.show._ import java.net.InetAddress import java.time.{Clock, Instant, LocalDateTime, ZoneId, Duration => JDuration} import java.util.concurrent.{ConcurrentHashMap, ConcurrentMap} -import java.util.UUID +import java.util.{Date, UUID} import scala.collection.concurrent.TrieMap import scala.concurrent._ import scala.concurrent.duration._ @@ -204,10 +205,9 @@ trait AuthMiddlewareFixture JWT .require(Algorithm.HMAC256(authSecret)) .asInstanceOf[BaseVerification] - // We use DeferringClock so that authClock doesn't yet get evaluated. - // This is needed, because authVerifier is called before `resource` is - // actually fully initialized. - .build(new DeferringClock(authClock)) + .build(new Auth0Clock { + override def getToday: Date = Date.from(authClock.instant()) + }) ) private def authMiddleware: ServerBinding = resource.value._3 private def authMiddlewareUri: Uri = @@ -290,16 +290,6 @@ trait AuthMiddlewareFixture } } -// This wrapper uses the passed clock by-name to avoid initialization -// circles above. -private class DeferringClock(baseClock: => Clock) extends Clock { - override def getZone: ZoneId = baseClock.getZone - - override def instant(): Instant = baseClock.instant() - - override def withZone(zone: ZoneId): Clock = new DeferringClock(baseClock.withZone(zone)) -} - trait SandboxFixture extends BeforeAndAfterAll with AbstractAuthFixture with AkkaBeforeAndAfterAll { self: Suite =>