diff --git a/.bazelrc b/.bazelrc index 39916b1..727f75d 100644 --- a/.bazelrc +++ b/.bazelrc @@ -1,5 +1,7 @@ startup --expand_configs_in_place +common --noenable_bzlmod + common:ci --color=yes build:ci --verbose_failures @@ -9,3 +11,8 @@ build:ci --genrule_strategy=standalone test:ci --test_strategy=standalone test:ci --test_output=errors + +build --java_language_version="11" +build --java_runtime_version="remotejdk_11" +build --tool_java_language_version="11" +build --tool_java_runtime_version="remotejdk_11" diff --git a/.bazelversion b/.bazelversion index 224e836..828d887 100644 --- a/.bazelversion +++ b/.bazelversion @@ -1 +1 @@ -bazelbuild/3.4.1 +bazelbuild/7.0.2 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b218265..7eebdb9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ on: jobs: build-and-test: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 @@ -20,7 +20,7 @@ jobs: publish: if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') needs: build-and-test - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 diff --git a/BUILD b/BUILD index e69de29..a712241 100644 --- a/BUILD +++ b/BUILD @@ -0,0 +1,9 @@ +load("@bazel_tools//tools/jdk:default_java_toolchain.bzl", "default_java_toolchain", "DEFAULT_JAVACOPTS") + +default_java_toolchain( + name = "java_toolchain", + # some of the default options make scala compilation fail in the test package + misc = [opt for opt in DEFAULT_JAVACOPTS if not opt.startswith("-Xep")], + source_version = "11", + target_version = "11", +) diff --git a/WORKSPACE b/WORKSPACE index 28b3c2c..786834d 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -3,10 +3,10 @@ workspace(name = "play_routes_compiler_cli") load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") # rules_jvm_external -RULES_JVM_EXTERNAL_TAG = "3.3" +RULES_JVM_EXTERNAL_TAG = "d716bbe2dbaa068e495d25aeb1dcaa699f134eed" http_archive( name = "rules_jvm_external", - sha256 = "d85951a92c0908c80bd8551002d66cb23c3434409c814179c0ff026b53544dab", + sha256 = "d2bab2d2aefbadb2207ada5b82a7da99b7ff3f03ae565cbc194f124752d8bd06", strip_prefix = "rules_jvm_external-{}".format(RULES_JVM_EXTERNAL_TAG), type = "zip", url = "https://github.com/bazelbuild/rules_jvm_external/archive/{}.zip".format(RULES_JVM_EXTERNAL_TAG), @@ -24,13 +24,13 @@ play_routes_compiler_cli_test_pinned_maven_install() # higherkindness/rules_scala -rules_scala_annex_version = "ff423d8bdd0e5383f8f2c048ffd7704bb51a91bf" # update this as needed +rules_scala_annex_version = "lucid_2023-12-13" # update this as needed http_archive( name = "rules_scala_annex", - sha256 = "ae53e9ed5fecadc7baf4637b88109471602be73dda4e5ff6b4bf1767932703c0", + integrity = "sha256-cr+XAL/P6b1sgGi3FBEmqMgzScvu+3kAEmwz68lKei4=", strip_prefix = "rules_scala-{}".format(rules_scala_annex_version), type = "zip", - url = "https://github.com/higherkindness/rules_scala/archive/{}.zip".format(rules_scala_annex_version), + url = "https://github.com/lucidsoftware/rules_scala/archive/{}.zip".format(rules_scala_annex_version), ) bind( @@ -44,11 +44,13 @@ load("@annex//:defs.bzl", annex_pinned_maven_install = "pinned_maven_install") annex_pinned_maven_install() scala_register_toolchains() +register_toolchains("//:java_toolchain_definition") + # Protobuf -protobuf_version = "3.9.0" +protobuf_version = "25.1" http_archive( name = "com_google_protobuf", - sha256 = "8eb5ca331ab8ca0da2baea7fc0607d86c46c80845deca57109a5d637ccb93bb4", + sha256 = "eaafa4e19a6619c15df4c30d7213efbfd0f33ad16021cc5f72bbc5d0877346b5", strip_prefix = "protobuf-{}".format(protobuf_version), type = "zip", url = "https://github.com/protocolbuffers/protobuf/archive/v{}.zip".format(protobuf_version), @@ -58,10 +60,10 @@ load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps") protobuf_deps() ####################### For Maven Publishing ############################ -skylib_version = "1.0.3" +skylib_version = "1.4.1" http_archive( name = "bazel_skylib", - sha256 = "1c531376ac7e5a180e0237938a2536de0c54d93f5c278634818e0efc952dd56c", + sha256 = "b8a1527901774180afc798aeb28c4634bdccf19c4d98e7bdd1ce79d1fe9aaad7", type = "tar.gz", url = "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/{}/bazel-skylib-{}.tar.gz".format(skylib_version, skylib_version), ) diff --git a/play-routes-compiler/BUILD.bazel b/play-routes-compiler/BUILD.bazel index 625b220..a7138dd 100644 --- a/play-routes-compiler/BUILD.bazel +++ b/play-routes-compiler/BUILD.bazel @@ -14,7 +14,7 @@ scala_library( visibility = ["//visibility:public"], deps = [ "@play_routes_compiler_cli_maven//:com_github_scopt_scopt_2_13", - "@play_routes_compiler_cli_maven//:com_typesafe_play_routes_compiler_2_13", + "@play_routes_compiler_cli_maven//:com_typesafe_play_play_routes_compiler_2_13", "@play_routes_compiler_cli_maven//:org_scala_lang_scala_reflect", ], ) diff --git a/play-routes-compiler/src/main/scala/CommandLinePlayRoutesCompiler.scala b/play-routes-compiler/src/main/scala/CommandLinePlayRoutesCompiler.scala index d349e1b..8f29d6b 100644 --- a/play-routes-compiler/src/main/scala/CommandLinePlayRoutesCompiler.scala +++ b/play-routes-compiler/src/main/scala/CommandLinePlayRoutesCompiler.scala @@ -74,7 +74,7 @@ object CommandLinePlayRoutesCompiler { // The generated Routes files include non-reproducible headers // We need to remove these for Bazel caching to work private def stripHeader(path: String): Unit = { - val lines = Source.fromFile(path).getLines + val lines = Source.fromFile(path).getLines() val sansHeader = lines.span(line => line.matches("^(//.*|\\s*)$"))._2.toList Files.write(Paths.get(path), sansHeader.asJava) } diff --git a/play_routes_compiler_cli_maven_install.json b/play_routes_compiler_cli_maven_install.json index fcdaad4..eaf88f1 100644 --- a/play_routes_compiler_cli_maven_install.json +++ b/play_routes_compiler_cli_maven_install.json @@ -1,428 +1,381 @@ { - "dependency_tree": { - "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": 1009533322, - "conflict_resolution": { - "org.scala-sbt:compiler-interface:1.2.1": "org.scala-sbt:compiler-interface:1.3.4", - "org.scala-sbt:util-interface:1.2.0": "org.scala-sbt:util-interface:1.3.0" - }, - "dependencies": [ - { - "coord": "com.github.scopt:scopt_2.13:3.7.1", - "dependencies": [ - "org.scala-lang:scala-library:2.13.2" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.13.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/github/scopt/scopt_2.13/3.7.1/scopt_2.13-3.7.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.13/3.7.1/scopt_2.13-3.7.1.jar" - ], - "sha256": "6592cd15368f6e26d1d73f81ed5bc93cf0dea713b8b2936a8f2f0edd3b392820", - "url": "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.13/3.7.1/scopt_2.13-3.7.1.jar" - }, - { - "coord": "com.github.scopt:scopt_2.13:jar:sources:3.7.1", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.2" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/github/scopt/scopt_2.13/3.7.1/scopt_2.13-3.7.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.13/3.7.1/scopt_2.13-3.7.1-sources.jar" - ], - "sha256": "707366c0e18f8d4188daa9e0bf788fae616f0c77500c6aafda776a538d142135", - "url": "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.13/3.7.1/scopt_2.13-3.7.1-sources.jar" - }, - { - "coord": "com.google.protobuf:protobuf-java:3.7.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.7.0/protobuf-java-3.7.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.7.0/protobuf-java-3.7.0.jar" - ], - "sha256": "dc7f93e3a3dc2c11be5ba9672af3e26410f0a3289312dbf2260d4d8a0c711a51", - "url": "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.7.0/protobuf-java-3.7.0.jar" - }, - { - "coord": "com.google.protobuf:protobuf-java:jar:sources:3.7.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.7.0/protobuf-java-3.7.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.7.0/protobuf-java-3.7.0-sources.jar" - ], - "sha256": "116adc64f2e67a9f2961c410b1fbe029447c4b39c62f6ae93797989e38c85b83", - "url": "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.7.0/protobuf-java-3.7.0-sources.jar" - }, - { - "coord": "com.typesafe.play:routes-compiler_2.13:2.8.7", - "dependencies": [ - "org.scala-lang:scala-library:2.13.2", - "org.scala-lang.modules:scala-xml_2.13:1.2.0", - "com.typesafe.play:twirl-api_2.13:1.5.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2" - ], - "directDependencies": [ - "com.typesafe.play:twirl-api_2.13:1.5.0", - "org.scala-lang:scala-library:2.13.2", - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.13/2.8.7/routes-compiler_2.13-2.8.7.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.13/2.8.7/routes-compiler_2.13-2.8.7.jar" - ], - "sha256": "0aa6842be84c902af07e15c1d2378ab1924202bca7de98e7e53a2d76238166b1", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.13/2.8.7/routes-compiler_2.13-2.8.7.jar" - }, - { - "coord": "com.typesafe.play:routes-compiler_2.13:jar:sources:2.8.7", - "dependencies": [ - "com.typesafe.play:twirl-api_2.13:jar:sources:1.5.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", - "org.scala-lang:scala-library:jar:sources:2.13.2", - "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.2.0" - ], - "directDependencies": [ - "com.typesafe.play:twirl-api_2.13:jar:sources:1.5.0", - "org.scala-lang:scala-library:jar:sources:2.13.2", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.13/2.8.7/routes-compiler_2.13-2.8.7-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.13/2.8.7/routes-compiler_2.13-2.8.7-sources.jar" - ], - "sha256": "e5b98575fa36ea5e2cbc757e30814e945650679c3fc175e04affc91a50c0f5ba", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.13/2.8.7/routes-compiler_2.13-2.8.7-sources.jar" - }, - { - "coord": "com.typesafe.play:twirl-api_2.13:1.5.0", - "dependencies": [ - "org.scala-lang:scala-library:2.13.2", - "org.scala-lang.modules:scala-xml_2.13:1.2.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.13.2", - "org.scala-lang.modules:scala-xml_2.13:1.2.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.13/1.5.0/twirl-api_2.13-1.5.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.13/1.5.0/twirl-api_2.13-1.5.0.jar" - ], - "sha256": "fd8d62f9abf36eda8b578b4e96b087830f05f22e27905973c40a7941ea87493a", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.13/1.5.0/twirl-api_2.13-1.5.0.jar" - }, - { - "coord": "com.typesafe.play:twirl-api_2.13:jar:sources:1.5.0", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.2", - "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.2.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.2", - "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.2.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.13/1.5.0/twirl-api_2.13-1.5.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.13/1.5.0/twirl-api_2.13-1.5.0-sources.jar" - ], - "sha256": "96ac5f61a0adb518f165053956271a92f70c9962760d0443443f745cc1b3e695", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.13/1.5.0/twirl-api_2.13-1.5.0-sources.jar" - }, - { - "coord": "net.java.dev.jna:jna:5.3.1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.3.1/jna-5.3.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.3.1/jna-5.3.1.jar" - ], - "sha256": "01cb505c0698d0f7acf3524c7e73acb7dc424a5bae5e9c86ce44075ab32bc4ee", - "url": "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.3.1/jna-5.3.1.jar" - }, - { - "coord": "net.java.dev.jna:jna:jar:sources:5.3.1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.3.1/jna-5.3.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.3.1/jna-5.3.1-sources.jar" - ], - "sha256": "b2c47bfe2b471c3e03e0e7ffca9c2d23c3e6f63fca8a443a00129c957235ac5c", - "url": "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.3.1/jna-5.3.1-sources.jar" - }, - { - "coord": "org.jline:jline:3.14.1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline/3.14.1/jline-3.14.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/jline/jline/3.14.1/jline-3.14.1.jar" - ], - "sha256": "5d4ed3c37e1d90c387535534c8ef21dd9c32cbf026334122a82174266262b0d8", - "url": "https://repo.maven.apache.org/maven2/org/jline/jline/3.14.1/jline-3.14.1.jar" - }, - { - "coord": "org.jline:jline:jar:sources:3.14.1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline/3.14.1/jline-3.14.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/jline/jline/3.14.1/jline-3.14.1-sources.jar" - ], - "sha256": "2ee7eaef1e94ac616c161ec9e3f7b601a5ee0209ea54592d20d3b43ca6e83707", - "url": "https://repo.maven.apache.org/maven2/org/jline/jline/3.14.1/jline-3.14.1-sources.jar" - }, - { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "dependencies": [ - "org.scala-lang:scala-library:2.13.2" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.13.2" - ], - "file": "v1/https/repo.maven.apache.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://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2.jar" - ], - "sha256": "5c285b72e6dc0a98e99ae0a1ceeb4027dab9adfa441844046bd3f19e0efdcb54", - "url": "https://repo.maven.apache.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:1.1.2", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.2" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.2" - ], - "file": "v1/https/repo.maven.apache.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://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2-sources.jar" - ], - "sha256": "a5cdd33bc2dcd8917e4fea30d31ea19d0d70cc5f6951c5a913428930ced8391a", - "url": "https://repo.maven.apache.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-xml_2.13:1.2.0", - "dependencies": [ - "org.scala-lang:scala-library:2.13.2" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.13.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/1.2.0/scala-xml_2.13-1.2.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/1.2.0/scala-xml_2.13-1.2.0.jar" - ], - "sha256": "213d2b7840bed5d1a1d5abfa1d72d7c7454473a6f77ea329fff0574910056fd3", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/1.2.0/scala-xml_2.13-1.2.0.jar" - }, - { - "coord": "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.2.0", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.2" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/1.2.0/scala-xml_2.13-1.2.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/1.2.0/scala-xml_2.13-1.2.0-sources.jar" - ], - "sha256": "e513d27835bcd489f70c24d5719a585f3323feae6610c06daa1533a462cf34bf", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/1.2.0/scala-xml_2.13-1.2.0-sources.jar" - }, - { - "coord": "org.scala-lang:scala-compiler:2.13.2", - "dependencies": [ - "org.scala-lang:scala-library:2.13.2", - "net.java.dev.jna:jna:5.3.1", - "org.scala-lang:scala-reflect:2.13.2", - "org.jline:jline:3.14.1" - ], - "directDependencies": [ - "net.java.dev.jna:jna:5.3.1", - "org.jline:jline:3.14.1", - "org.scala-lang:scala-library:2.13.2", - "org.scala-lang:scala-reflect:2.13.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.2/scala-compiler-2.13.2.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.2/scala-compiler-2.13.2.jar" - ], - "sha256": "b04da83111decff5b36e87c74d73f5e2231b63ce605f2602e862bae917d7761a", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.2/scala-compiler-2.13.2.jar" - }, - { - "coord": "org.scala-lang:scala-compiler:jar:sources:2.13.2", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.2", - "org.scala-lang:scala-reflect:jar:sources:2.13.2", - "net.java.dev.jna:jna:jar:sources:5.3.1", - "org.jline:jline:jar:sources:3.14.1" - ], - "directDependencies": [ - "net.java.dev.jna:jna:jar:sources:5.3.1", - "org.jline:jline:jar:sources:3.14.1", - "org.scala-lang:scala-library:jar:sources:2.13.2", - "org.scala-lang:scala-reflect:jar:sources:2.13.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.2/scala-compiler-2.13.2-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.2/scala-compiler-2.13.2-sources.jar" - ], - "sha256": "a5f2eb62d8dc0ad75ff1a7d8ba1698cf2c818cece8e274dc768d079ac91bbfc4", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.2/scala-compiler-2.13.2-sources.jar" - }, - { - "coord": "org.scala-lang:scala-library:2.13.2", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.2/scala-library-2.13.2.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.2/scala-library-2.13.2.jar" - ], - "sha256": "6a1c9846feb8f5d7d33b91e61e056d272215a79747a2b7b5e5ece690bf151d5d", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.2/scala-library-2.13.2.jar" - }, - { - "coord": "org.scala-lang:scala-library:jar:sources:2.13.2", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.2/scala-library-2.13.2-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.2/scala-library-2.13.2-sources.jar" - ], - "sha256": "dc7a4b19e478f3ad904ff398fd86f814ca172617edeb1e320323e3b4ca9b738c", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.2/scala-library-2.13.2-sources.jar" - }, - { - "coord": "org.scala-lang:scala-reflect:2.13.2", - "dependencies": [ - "org.scala-lang:scala-library:2.13.2" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.13.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.2/scala-reflect-2.13.2.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.2/scala-reflect-2.13.2.jar" - ], - "sha256": "21a7288874f186d6049e8b14a986011ffd96cb587f206eccf946624f2d476815", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.2/scala-reflect-2.13.2.jar" - }, - { - "coord": "org.scala-lang:scala-reflect:jar:sources:2.13.2", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.2" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.2/scala-reflect-2.13.2-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.2/scala-reflect-2.13.2-sources.jar" - ], - "sha256": "6652f8cb121d5adf50e0f909e4ce617a0e6bfca5013fc2272b1f4e2e3b1f176d", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.2/scala-reflect-2.13.2-sources.jar" - }, - { - "coord": "org.scala-sbt:compiler-bridge_2.13:1.3.4", - "dependencies": [ - "com.google.protobuf:protobuf-java:3.7.0", - "org.scala-sbt:util-interface:1.3.0", - "org.scala-sbt:compiler-interface:1.3.4" - ], - "directDependencies": [ - "com.google.protobuf:protobuf-java:3.7.0", - "org.scala-sbt:compiler-interface:1.3.4" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.3.4/compiler-bridge_2.13-1.3.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.3.4/compiler-bridge_2.13-1.3.4.jar" - ], - "sha256": "e8ec3db63f57a7d3d7922a83ef268a0ebf037d80cdcb3d04176e9d61d7b22bcd", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.3.4/compiler-bridge_2.13-1.3.4.jar" - }, - { - "coord": "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.3.4", - "dependencies": [ - "com.google.protobuf:protobuf-java:jar:sources:3.7.0", - "org.scala-sbt:compiler-interface:jar:sources:1.3.4", - "org.scala-sbt:util-interface:jar:sources:1.3.0" - ], - "directDependencies": [ - "com.google.protobuf:protobuf-java:jar:sources:3.7.0", - "org.scala-sbt:compiler-interface:jar:sources:1.3.4" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.3.4/compiler-bridge_2.13-1.3.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.3.4/compiler-bridge_2.13-1.3.4-sources.jar" - ], - "sha256": "905c1bde4e3c4f47f20bf7dd5ff4ac637462639ad02b557f3647267e28a629ac", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.3.4/compiler-bridge_2.13-1.3.4-sources.jar" - }, - { - "coord": "org.scala-sbt:compiler-interface:1.3.4", - "dependencies": [ - "com.google.protobuf:protobuf-java:3.7.0", - "org.scala-sbt:util-interface:1.3.0" - ], - "directDependencies": [ - "com.google.protobuf:protobuf-java:3.7.0", - "org.scala-sbt:util-interface:1.3.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.3.4/compiler-interface-1.3.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.3.4/compiler-interface-1.3.4.jar" - ], - "sha256": "b552b04dbe8e7dce1d79b3365b59e6b71acc640089760511e969b03dd5969661", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.3.4/compiler-interface-1.3.4.jar" - }, - { - "coord": "org.scala-sbt:compiler-interface:jar:sources:1.3.4", - "dependencies": [ - "com.google.protobuf:protobuf-java:jar:sources:3.7.0", - "org.scala-sbt:util-interface:jar:sources:1.3.0" - ], - "directDependencies": [ - "com.google.protobuf:protobuf-java:jar:sources:3.7.0", - "org.scala-sbt:util-interface:jar:sources:1.3.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.3.4/compiler-interface-1.3.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.3.4/compiler-interface-1.3.4-sources.jar" - ], - "sha256": "c17d0c3e8fffefd77c66a7bac1134387a759476c37edee63055e0a58fc655ae9", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.3.4/compiler-interface-1.3.4-sources.jar" - }, - { - "coord": "org.scala-sbt:util-interface:1.3.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.3.0/util-interface-1.3.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.3.0/util-interface-1.3.0.jar" - ], - "sha256": "89028234b4621ac92761676a00e2e47598fcf5232a9bb994a7ed6dee94eb5aa2", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.3.0/util-interface-1.3.0.jar" - }, - { - "coord": "org.scala-sbt:util-interface:jar:sources:1.3.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.3.0/util-interface-1.3.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.3.0/util-interface-1.3.0-sources.jar" - ], - "sha256": "469b23bde6234973f9b0e8afcf2e4ef0a7747f11000235f50038cab1cbe0ed02", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.3.0/util-interface-1.3.0-sources.jar" - } - ], - "version": "0.1.0" + "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", + "__INPUT_ARTIFACTS_HASH": -938762335, + "__RESOLVED_ARTIFACTS_HASH": 372603345, + "artifacts": { + "com.github.scopt:scopt_2.13": { + "shasums": { + "jar": "6592cd15368f6e26d1d73f81ed5bc93cf0dea713b8b2936a8f2f0edd3b392820", + "sources": "707366c0e18f8d4188daa9e0bf788fae616f0c77500c6aafda776a538d142135" + }, + "version": "3.7.1" + }, + "com.typesafe.play:play-routes-compiler_2.13": { + "shasums": { + "jar": "20cf28362d5d0ceaf2023e13bc004de6abe316cc37f7b9fb34569a477141ac52", + "sources": "593c8af870e9640180f69ad3ddceaad1cb7dcb04ca31badbcc63faa9d94bcffd" + }, + "version": "2.9.1" + }, + "com.typesafe.play:twirl-api_2.13": { + "shasums": { + "jar": "6fb3eb57e9e319883d5dcacd776f0d726494d2e99a80b96cf95d34d06e2c313c", + "sources": "79dc9b2a34837b3180470c09b97428c3a7bc96f0c801b7c59ddd32bafc86077f" + }, + "version": "1.6.4" + }, + "io.github.java-diff-utils:java-diff-utils": { + "shasums": { + "jar": "9990a2039778f6b4cc94790141c2868864eacee0620c6c459451121a901cd5b5", + "sources": "fa24217b6eaa115a05d4a8f0003fe913c62716ca2184d2e4f17de4a7d42a8822" + }, + "version": "4.12" + }, + "net.java.dev.jna:jna": { + "shasums": { + "jar": "66d4f819a062a51a1d5627bffc23fac55d1677f0e0a1feba144aabdd670a64bb", + "sources": "a4c45843e8f60df141c4f37602365a421bb278ca1ef30ba0a043d6a871dd29f4" + }, + "version": "5.13.0" + }, + "org.jline:jline": { + "shasums": { + "jar": "7c3ec8d2c5815188bbaefa4c7c42bc9b8ec172382ca026a4b4f3d113c0b5c3e3", + "sources": "8071c15cd25bc76e60d6a51a4d9cb99937d7d8a845c6d52dab15fe0c871163ff" + }, + "version": "3.22.0" + }, + "org.scala-lang.modules:scala-parser-combinators_2.13": { + "shasums": { + "jar": "5c285b72e6dc0a98e99ae0a1ceeb4027dab9adfa441844046bd3f19e0efdcb54", + "sources": "a5cdd33bc2dcd8917e4fea30d31ea19d0d70cc5f6951c5a913428930ced8391a" + }, + "version": "1.1.2" + }, + "org.scala-lang.modules:scala-xml_2.13": { + "shasums": { + "jar": "0d9d63091a73cf837cd5412671a30abecad460dc254aeb43a2b18f4910af6a09", + "sources": "75edeab4d6688246d26a8de2deb430bc65a46dd25eb0350b3872c8631a9de602" + }, + "version": "2.2.0" + }, + "org.scala-lang:scala-compiler": { + "shasums": { + "jar": "583adb1ffa7b29fdbfdd6f4c97a396af06a8a91625d059823bba1b7172242d6a", + "sources": "64afc67ed3599ba7d70b041d93a1dcc5cbffb9b2603d52cc92a66615d0d90b64" + }, + "version": "2.13.12" + }, + "org.scala-lang:scala-library": { + "shasums": { + "jar": "c6a879e4973a60f6162668542a33eaccc2bb565d1c934fb061c5844259131dd1", + "sources": "df3f19e71b4d2dd6bb882a6deafb31c7dceaad4f26489b9fd9ca56b493229174" + }, + "version": "2.13.12" + }, + "org.scala-lang:scala-reflect": { + "shasums": { + "jar": "c648ceb93a9fcbd22603e0be3d6a156723ae661f516c772a550a088bb3cbca7a", + "sources": "9a04bed34e8a706645139bf89f18841773d13405508ff1353d8aef0095d7cebb" + }, + "version": "2.13.12" + }, + "org.scala-sbt:compiler-bridge_2.13": { + "shasums": { + "jar": "68130a2a15b4fa7d60272e4181fca5f8beb3fa67ac4d14ab7dedee63dcf33f4d", + "sources": "24a3975deec8b6b9d60400cf1cc8a6bb0213ec4ad39ade6ea54eea94b3bdaddd" + }, + "version": "1.10.0-M1" + }, + "org.scala-sbt:compiler-interface": { + "shasums": { + "jar": "cbea989b23f1a4a256946edf983a107217769a2d868a5aca8edc21780dc4589c", + "sources": "d98ae3b91e607a114cb1b3276bd28b9ffa6411ecad660fea247805654e403656" + }, + "version": "1.10.0-M1" + }, + "org.scala-sbt:util-interface": { + "shasums": { + "jar": "864addccf6edc40fcf9e06923862f364911e9f0579bfd70448fced31bdc7ea95", + "sources": "fe12201006ea49dd307a592b5b53dbbadea9e3b1e52209b14906e00c149e745a" + }, + "version": "1.9.7" } + }, + "dependencies": { + "com.github.scopt:scopt_2.13": [ + "org.scala-lang:scala-library" + ], + "com.typesafe.play:play-routes-compiler_2.13": [ + "com.typesafe.play:twirl-api_2.13", + "org.scala-lang.modules:scala-parser-combinators_2.13", + "org.scala-lang:scala-library" + ], + "com.typesafe.play:twirl-api_2.13": [ + "org.scala-lang.modules:scala-xml_2.13", + "org.scala-lang:scala-library" + ], + "org.scala-lang.modules:scala-parser-combinators_2.13": [ + "org.scala-lang:scala-library" + ], + "org.scala-lang.modules:scala-xml_2.13": [ + "org.scala-lang:scala-library" + ], + "org.scala-lang:scala-compiler": [ + "io.github.java-diff-utils:java-diff-utils", + "net.java.dev.jna:jna", + "org.jline:jline", + "org.scala-lang:scala-library", + "org.scala-lang:scala-reflect" + ], + "org.scala-lang:scala-reflect": [ + "org.scala-lang:scala-library" + ], + "org.scala-sbt:compiler-bridge_2.13": [ + "org.scala-sbt:compiler-interface" + ], + "org.scala-sbt:compiler-interface": [ + "org.scala-sbt:util-interface" + ] + }, + "packages": { + "com.github.scopt:scopt_2.13": [ + "scopt" + ], + "com.typesafe.play:play-routes-compiler_2.13": [ + "play.routes.compiler", + "play.routes.compiler.inject.twirl", + "play.routes.compiler.static.twirl", + "play.routes.compiler.templates" + ], + "com.typesafe.play:twirl-api_2.13": [ + "play.twirl.api", + "play.twirl.api.utils" + ], + "io.github.java-diff-utils:java-diff-utils": [ + "com.github.difflib", + "com.github.difflib.algorithm", + "com.github.difflib.algorithm.myers", + "com.github.difflib.patch", + "com.github.difflib.text", + "com.github.difflib.unifieddiff" + ], + "net.java.dev.jna:jna": [ + "com.sun.jna", + "com.sun.jna.internal", + "com.sun.jna.ptr", + "com.sun.jna.win32" + ], + "org.jline:jline": [ + "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", + "org.jline.reader.impl.completer", + "org.jline.reader.impl.history", + "org.jline.style", + "org.jline.terminal", + "org.jline.terminal.impl", + "org.jline.terminal.impl.exec", + "org.jline.terminal.impl.jansi", + "org.jline.terminal.impl.jansi.freebsd", + "org.jline.terminal.impl.jansi.linux", + "org.jline.terminal.impl.jansi.osx", + "org.jline.terminal.impl.jansi.solaris", + "org.jline.terminal.impl.jansi.win", + "org.jline.terminal.impl.jna", + "org.jline.terminal.impl.jna.freebsd", + "org.jline.terminal.impl.jna.linux", + "org.jline.terminal.impl.jna.osx", + "org.jline.terminal.impl.jna.solaris", + "org.jline.terminal.impl.jna.win", + "org.jline.terminal.spi", + "org.jline.utils", + "org.jline.widget" + ], + "org.scala-lang.modules:scala-parser-combinators_2.13": [ + "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.json" + ], + "org.scala-lang.modules:scala-xml_2.13": [ + "scala.xml", + "scala.xml.dtd", + "scala.xml.dtd.impl", + "scala.xml.factory", + "scala.xml.include", + "scala.xml.include.sax", + "scala.xml.parsing", + "scala.xml.transform" + ], + "org.scala-lang:scala-compiler": [ + "com.github.difflib", + "com.github.difflib.algorithm", + "com.github.difflib.algorithm.myers", + "com.github.difflib.patch", + "com.github.difflib.text", + "com.github.difflib.unifieddiff", + "scala.reflect.macros.compiler", + "scala.reflect.macros.contexts", + "scala.reflect.macros.runtime", + "scala.reflect.macros.util", + "scala.reflect.quasiquotes", + "scala.reflect.reify", + "scala.reflect.reify.codegen", + "scala.reflect.reify.phases", + "scala.reflect.reify.utils", + "scala.tools.asm", + "scala.tools.asm.commons", + "scala.tools.asm.signature", + "scala.tools.asm.tree", + "scala.tools.asm.tree.analysis", + "scala.tools.asm.util", + "scala.tools.nsc", + "scala.tools.nsc.ast", + "scala.tools.nsc.ast.parser", + "scala.tools.nsc.ast.parser.xml", + "scala.tools.nsc.backend", + "scala.tools.nsc.backend.jvm", + "scala.tools.nsc.backend.jvm.analysis", + "scala.tools.nsc.backend.jvm.opt", + "scala.tools.nsc.classpath", + "scala.tools.nsc.doc", + "scala.tools.nsc.doc.base", + "scala.tools.nsc.doc.base.comment", + "scala.tools.nsc.doc.doclet", + "scala.tools.nsc.doc.html", + "scala.tools.nsc.doc.html.page", + "scala.tools.nsc.doc.html.page.diagram", + "scala.tools.nsc.doc.model", + "scala.tools.nsc.doc.model.diagram", + "scala.tools.nsc.fsc", + "scala.tools.nsc.interactive", + "scala.tools.nsc.interactive.tests", + "scala.tools.nsc.interactive.tests.core", + "scala.tools.nsc.interpreter", + "scala.tools.nsc.interpreter.jline", + "scala.tools.nsc.interpreter.shell", + "scala.tools.nsc.io", + "scala.tools.nsc.javac", + "scala.tools.nsc.plugins", + "scala.tools.nsc.profile", + "scala.tools.nsc.reporters", + "scala.tools.nsc.settings", + "scala.tools.nsc.symtab", + "scala.tools.nsc.symtab.classfile", + "scala.tools.nsc.tasty", + "scala.tools.nsc.tasty.bridge", + "scala.tools.nsc.transform", + "scala.tools.nsc.transform.async", + "scala.tools.nsc.transform.patmat", + "scala.tools.nsc.typechecker", + "scala.tools.nsc.typechecker.splain", + "scala.tools.nsc.util", + "scala.tools.reflect", + "scala.tools.tasty", + "scala.tools.util" + ], + "org.scala-lang:scala-library": [ + "scala", + "scala.annotation", + "scala.annotation.meta", + "scala.annotation.unchecked", + "scala.beans", + "scala.collection", + "scala.collection.concurrent", + "scala.collection.convert", + "scala.collection.convert.impl", + "scala.collection.generic", + "scala.collection.immutable", + "scala.collection.mutable", + "scala.compat", + "scala.concurrent", + "scala.concurrent.duration", + "scala.concurrent.impl", + "scala.io", + "scala.jdk", + "scala.jdk.javaapi", + "scala.math", + "scala.ref", + "scala.reflect", + "scala.reflect.macros.internal", + "scala.runtime", + "scala.runtime.java8", + "scala.sys", + "scala.sys.process", + "scala.util", + "scala.util.control", + "scala.util.hashing", + "scala.util.matching" + ], + "org.scala-lang:scala-reflect": [ + "scala.reflect.api", + "scala.reflect.internal", + "scala.reflect.internal.annotations", + "scala.reflect.internal.pickling", + "scala.reflect.internal.settings", + "scala.reflect.internal.tpe", + "scala.reflect.internal.transform", + "scala.reflect.internal.util", + "scala.reflect.io", + "scala.reflect.macros", + "scala.reflect.macros.blackbox", + "scala.reflect.macros.whitebox", + "scala.reflect.runtime" + ], + "org.scala-sbt:compiler-bridge_2.13": [ + "scala", + "scala.reflect", + "xsbt" + ], + "org.scala-sbt:compiler-interface": [ + "xsbti", + "xsbti.api", + "xsbti.compile", + "xsbti.compile.analysis" + ], + "org.scala-sbt:util-interface": [ + "xsbti" + ] + }, + "repositories": { + "https://repo.maven.apache.org/maven2/": [ + "com.github.scopt:scopt_2.13", + "com.github.scopt:scopt_2.13:jar:sources", + "com.typesafe.play:play-routes-compiler_2.13", + "com.typesafe.play:play-routes-compiler_2.13:jar:sources", + "com.typesafe.play:twirl-api_2.13", + "com.typesafe.play:twirl-api_2.13:jar:sources", + "io.github.java-diff-utils:java-diff-utils", + "io.github.java-diff-utils:java-diff-utils:jar:sources", + "net.java.dev.jna:jna", + "net.java.dev.jna:jna:jar:sources", + "org.jline:jline", + "org.jline:jline:jar:sources", + "org.scala-lang.modules:scala-parser-combinators_2.13", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources", + "org.scala-lang.modules:scala-xml_2.13", + "org.scala-lang.modules:scala-xml_2.13:jar:sources", + "org.scala-lang:scala-compiler", + "org.scala-lang:scala-compiler:jar:sources", + "org.scala-lang:scala-library", + "org.scala-lang:scala-library:jar:sources", + "org.scala-lang:scala-reflect", + "org.scala-lang:scala-reflect:jar:sources", + "org.scala-sbt:compiler-bridge_2.13", + "org.scala-sbt:compiler-bridge_2.13:jar:sources", + "org.scala-sbt:compiler-interface", + "org.scala-sbt:compiler-interface:jar:sources", + "org.scala-sbt:util-interface", + "org.scala-sbt:util-interface:jar:sources" + ] + }, + "version": "2" } diff --git a/play_routes_compiler_cli_test_maven_install.json b/play_routes_compiler_cli_test_maven_install.json index b627ce0..6916318 100644 --- a/play_routes_compiler_cli_test_maven_install.json +++ b/play_routes_compiler_cli_test_maven_install.json @@ -1,5037 +1,3238 @@ { - "dependency_tree": { - "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": -81902427, - "conflict_resolution": {}, - "dependencies": [ - { - "coord": "aopalliance:aopalliance:1.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar" - ], - "sha256": "0addec670fedcd3f113c5c8091d783280d23f75e3acb841b61a9cdb079376a08", - "url": "https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar" - }, - { - "coord": "aopalliance:aopalliance:jar:sources:1.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0-sources.jar" - ], - "sha256": "e6ef91d439ada9045f419c77543ebe0416c3cdfc5b063448343417a3e4a72123", - "url": "https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0-sources.jar" - }, - { - "coord": "ch.qos.logback:logback-classic:1.2.3", - "dependencies": [ - "ch.qos.logback:logback-core:1.2.3", - "org.slf4j:slf4j-api:1.7.26" - ], - "directDependencies": [ - "ch.qos.logback:logback-core:1.2.3", - "org.slf4j:slf4j-api:1.7.26" - ], - "file": "v1/https/repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar" - ], - "sha256": "fb53f8539e7fcb8f093a56e138112056ec1dc809ebb020b59d8a36a5ebac37e0", - "url": "https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar" - }, - { - "coord": "ch.qos.logback:logback-classic:jar:sources:1.2.3", - "dependencies": [ - "org.slf4j:slf4j-api:jar:sources:1.7.26", - "ch.qos.logback:logback-core:jar:sources:1.2.3" - ], - "directDependencies": [ - "ch.qos.logback:logback-core:jar:sources:1.2.3", - "org.slf4j:slf4j-api:jar:sources:1.7.26" - ], - "file": "v1/https/repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3-sources.jar" - ], - "sha256": "480cb5e99519271c9256716d4be1a27054047435ff72078d9deae5c6a19f63eb", - "url": "https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3-sources.jar" - }, - { - "coord": "ch.qos.logback:logback-core:1.2.3", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar" - ], - "sha256": "5946d837fe6f960c02a53eda7a6926ecc3c758bbdd69aa453ee429f858217f22", - "url": "https://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar" - }, - { - "coord": "ch.qos.logback:logback-core:jar:sources:1.2.3", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3-sources.jar" - ], - "sha256": "1f69b6b638ec551d26b10feeade5a2b77abe347f9759da95022f0da9a63a9971", - "url": "https://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3-sources.jar" - }, - { - "coord": "com.fasterxml.jackson.core:jackson-annotations:2.9.8", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.8/jackson-annotations-2.9.8.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.8/jackson-annotations-2.9.8.jar" - ], - "sha256": "fdca896161766ca4a2c3e06f02f6a5ede22a5b3a55606541cd2838eace08ca23", - "url": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.8/jackson-annotations-2.9.8.jar" - }, - { - "coord": "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.8", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.8/jackson-annotations-2.9.8-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.8/jackson-annotations-2.9.8-sources.jar" - ], - "sha256": "134c1891587aab185730b3bf74224985e24ae483bdf39f9921140b702c8fc41a", - "url": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.8/jackson-annotations-2.9.8-sources.jar" - }, - { - "coord": "com.fasterxml.jackson.core:jackson-core:2.9.8", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.8/jackson-core-2.9.8.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.8/jackson-core-2.9.8.jar" - ], - "sha256": "d934dab0bd48994eeea2c1b493cb547158a338a80b58c4fbc8e85fb0905e105f", - "url": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.8/jackson-core-2.9.8.jar" - }, - { - "coord": "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.8", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.8/jackson-core-2.9.8-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.8/jackson-core-2.9.8-sources.jar" - ], - "sha256": "4ab3c312f46ddf259de240515c301c99c3a478a749d0ecaaf4395a157a646b33", - "url": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.8/jackson-core-2.9.8-sources.jar" - }, - { - "coord": "com.fasterxml.jackson.core:jackson-databind:2.9.8", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-core:2.9.8", - "com.fasterxml.jackson.core:jackson-annotations:2.9.8" - ], - "directDependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:2.9.8", - "com.fasterxml.jackson.core:jackson-core:2.9.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.8/jackson-databind-2.9.8.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.8/jackson-databind-2.9.8.jar" - ], - "sha256": "2351c3eba73a545db9079f5d6d768347ad72666537362c8220fe3e950a55a864", - "url": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.8/jackson-databind-2.9.8.jar" - }, - { - "coord": "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.8", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.8", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.8" - ], - "directDependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.8", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.8/jackson-databind-2.9.8-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.8/jackson-databind-2.9.8-sources.jar" - ], - "sha256": "d6b099786ebb86566c44b15b09fde8ba2055f84ca7e98c63677ba8219f04d580", - "url": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.8/jackson-databind-2.9.8-sources.jar" - }, - { - "coord": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.8", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-databind:2.9.8", - "com.fasterxml.jackson.core:jackson-core:2.9.8", - "com.fasterxml.jackson.core:jackson-annotations:2.9.8" - ], - "directDependencies": [ - "com.fasterxml.jackson.core:jackson-core:2.9.8", - "com.fasterxml.jackson.core:jackson-databind:2.9.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.8/jackson-datatype-jdk8-2.9.8.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.8/jackson-datatype-jdk8-2.9.8.jar" - ], - "sha256": "6d0e43d927c63b25d94130dc95d9b26c031e4516a2b1dfb984dea99bfd49b003", - "url": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.8/jackson-datatype-jdk8-2.9.8.jar" - }, - { - "coord": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources:2.9.8", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.8", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.8", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.8" - ], - "directDependencies": [ - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.8", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.8/jackson-datatype-jdk8-2.9.8-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.8/jackson-datatype-jdk8-2.9.8-sources.jar" - ], - "sha256": "00988940ad4f4a3a93d5ea0585581cacb3a2204ef16f65a04a2fcd153640e07b", - "url": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.8/jackson-datatype-jdk8-2.9.8-sources.jar" - }, - { - "coord": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.8", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-databind:2.9.8", - "com.fasterxml.jackson.core:jackson-core:2.9.8", - "com.fasterxml.jackson.core:jackson-annotations:2.9.8" - ], - "directDependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:2.9.8", - "com.fasterxml.jackson.core:jackson-core:2.9.8", - "com.fasterxml.jackson.core:jackson-databind:2.9.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.8/jackson-datatype-jsr310-2.9.8.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.8/jackson-datatype-jsr310-2.9.8.jar" - ], - "sha256": "ab71c4f31c3dd583ba22e15837e9142360f056ad1677f1c2cf2c832d826c8dab", - "url": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.8/jackson-datatype-jsr310-2.9.8.jar" - }, - { - "coord": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources:2.9.8", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.8", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.8", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.8" - ], - "directDependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.8", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.8", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.8/jackson-datatype-jsr310-2.9.8-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.8/jackson-datatype-jsr310-2.9.8-sources.jar" - ], - "sha256": "dedbf756339019128c0326b2f9e3c9753b07cc1e44fa96d880a130ad8c707ca2", - "url": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.8/jackson-datatype-jsr310-2.9.8-sources.jar" - }, - { - "coord": "com.google.code.findbugs:jsr305:3.0.2", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar" - ], - "sha256": "766ad2a0783f2687962c8ad74ceecc38a28b9f72a2d085ee438b7813e928d0c7", - "url": "https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar" - }, - { - "coord": "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2-sources.jar" - ], - "sha256": "1c9e85e272d0708c6a591dc74828c71603053b48cc75ae83cce56912a2aa063b", - "url": "https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2-sources.jar" - }, - { - "coord": "com.google.errorprone:error_prone_annotations:2.2.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.2.0/error_prone_annotations-2.2.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.2.0/error_prone_annotations-2.2.0.jar" - ], - "sha256": "6ebd22ca1b9d8ec06d41de8d64e0596981d9607b42035f9ed374f9de271a481a", - "url": "https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.2.0/error_prone_annotations-2.2.0.jar" - }, - { - "coord": "com.google.errorprone:error_prone_annotations:jar:sources:2.2.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.2.0/error_prone_annotations-2.2.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.2.0/error_prone_annotations-2.2.0-sources.jar" - ], - "sha256": "626adccd4894bee72c3f9a0384812240dcc1282fb37a87a3f6cb94924a089496", - "url": "https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.2.0/error_prone_annotations-2.2.0-sources.jar" - }, - { - "coord": "com.google.guava:failureaccess:1.0.1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar" - ], - "sha256": "a171ee4c734dd2da837e4b16be9df4661afab72a41adaf31eb84dfdaf936ca26", - "url": "https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar" - }, - { - "coord": "com.google.guava:failureaccess:jar:sources:1.0.1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1-sources.jar" - ], - "sha256": "092346eebbb1657b51aa7485a246bf602bb464cc0b0e2e1c7e7201fadce1e98f", - "url": "https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1-sources.jar" - }, - { - "coord": "com.google.guava:guava:27.1-jre", - "dependencies": [ - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.code.findbugs:jsr305:3.0.2", - "org.codehaus.mojo:animal-sniffer-annotations:1.17", - "com.google.j2objc:j2objc-annotations:1.1", - "com.google.guava:failureaccess:1.0.1", - "com.google.errorprone:error_prone_annotations:2.2.0", - "org.checkerframework:checker-qual:2.5.2" - ], - "directDependencies": [ - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.code.findbugs:jsr305:3.0.2", - "org.codehaus.mojo:animal-sniffer-annotations:1.17", - "com.google.j2objc:j2objc-annotations:1.1", - "com.google.guava:failureaccess:1.0.1", - "com.google.errorprone:error_prone_annotations:2.2.0", - "org.checkerframework:checker-qual:2.5.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/google/guava/guava/27.1-jre/guava-27.1-jre.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/google/guava/guava/27.1-jre/guava-27.1-jre.jar" - ], - "sha256": "4a5aa70cc968a4d137e599ad37553e5cfeed2265e8c193476d7119036c536fe7", - "url": "https://repo.maven.apache.org/maven2/com/google/guava/guava/27.1-jre/guava-27.1-jre.jar" - }, - { - "coord": "com.google.guava:guava:jar:sources:27.1-jre", - "dependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.errorprone:error_prone_annotations:jar:sources:2.2.0", - "com.google.guava:failureaccess:jar:sources:1.0.1" - ], - "directDependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.errorprone:error_prone_annotations:jar:sources:2.2.0", - "com.google.guava:failureaccess:jar:sources:1.0.1" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/google/guava/guava/27.1-jre/guava-27.1-jre-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/google/guava/guava/27.1-jre/guava-27.1-jre-sources.jar" - ], - "sha256": "9de05c573971cedfcd53fb85fc7a58a5f453053026a9bf18594cffc79a1d6874", - "url": "https://repo.maven.apache.org/maven2/com/google/guava/guava/27.1-jre/guava-27.1-jre-sources.jar" - }, - { - "coord": "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar" - ], - "sha256": "b372a037d4230aa57fbeffdef30fd6123f9c0c2db85d0aced00c91b974f33f99", - "url": "https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar" - }, - { - "coord": "com.google.inject.extensions:guice-assistedinject:4.2.2", - "dependencies": [ - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.code.findbugs:jsr305:3.0.2", - "aopalliance:aopalliance:1.0", - "com.google.inject:guice:4.2.2", - "com.google.guava:guava:27.1-jre", - "org.codehaus.mojo:animal-sniffer-annotations:1.17", - "com.google.j2objc:j2objc-annotations:1.1", - "com.google.guava:failureaccess:1.0.1", - "com.google.errorprone:error_prone_annotations:2.2.0", - "javax.inject:javax.inject:1", - "org.checkerframework:checker-qual:2.5.2" - ], - "directDependencies": [ - "com.google.inject:guice:4.2.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/google/inject/extensions/guice-assistedinject/4.2.2/guice-assistedinject-4.2.2.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/google/inject/extensions/guice-assistedinject/4.2.2/guice-assistedinject-4.2.2.jar" - ], - "sha256": "eec353f513d34b8b9e414b9d059687ef6c290aeb3c3df52e8943aeda0f013be8", - "url": "https://repo.maven.apache.org/maven2/com/google/inject/extensions/guice-assistedinject/4.2.2/guice-assistedinject-4.2.2.jar" - }, - { - "coord": "com.google.inject.extensions:guice-assistedinject:jar:sources:4.2.2", - "dependencies": [ - "com.google.inject:guice:jar:sources:4.2.2", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "aopalliance:aopalliance:jar:sources:1.0", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17", - "javax.inject:javax.inject:jar:sources:1", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.errorprone:error_prone_annotations:jar:sources:2.2.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:27.1-jre" - ], - "directDependencies": [ - "com.google.inject:guice:jar:sources:4.2.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/google/inject/extensions/guice-assistedinject/4.2.2/guice-assistedinject-4.2.2-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/google/inject/extensions/guice-assistedinject/4.2.2/guice-assistedinject-4.2.2-sources.jar" - ], - "sha256": "bb19f4ac33880a444383104f05eb6a7f11df2b8afc3576c64af3f0b436a14569", - "url": "https://repo.maven.apache.org/maven2/com/google/inject/extensions/guice-assistedinject/4.2.2/guice-assistedinject-4.2.2-sources.jar" - }, - { - "coord": "com.google.inject:guice:4.2.2", - "dependencies": [ - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.code.findbugs:jsr305:3.0.2", - "aopalliance:aopalliance:1.0", - "com.google.guava:guava:27.1-jre", - "org.codehaus.mojo:animal-sniffer-annotations:1.17", - "com.google.j2objc:j2objc-annotations:1.1", - "com.google.guava:failureaccess:1.0.1", - "com.google.errorprone:error_prone_annotations:2.2.0", - "javax.inject:javax.inject:1", - "org.checkerframework:checker-qual:2.5.2" - ], - "directDependencies": [ - "aopalliance:aopalliance:1.0", - "com.google.guava:guava:27.1-jre", - "javax.inject:javax.inject:1" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/google/inject/guice/4.2.2/guice-4.2.2.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.2/guice-4.2.2.jar" - ], - "sha256": "d258ff1bd9b8b527872f8402648226658ad3149f1f40e74b0566d69e7e042fbc", - "url": "https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.2/guice-4.2.2.jar" - }, - { - "coord": "com.google.inject:guice:jar:sources:4.2.2", - "dependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "aopalliance:aopalliance:jar:sources:1.0", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17", - "javax.inject:javax.inject:jar:sources:1", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.errorprone:error_prone_annotations:jar:sources:2.2.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:27.1-jre" - ], - "directDependencies": [ - "aopalliance:aopalliance:jar:sources:1.0", - "com.google.guava:guava:jar:sources:27.1-jre", - "javax.inject:javax.inject:jar:sources:1" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/google/inject/guice/4.2.2/guice-4.2.2-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.2/guice-4.2.2-sources.jar" - ], - "sha256": "33ecda71a3876dcc2b9d16b4a5a67d08078db5fedd61ce51c74db734889cd049", - "url": "https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.2/guice-4.2.2-sources.jar" - }, - { - "coord": "com.google.j2objc:j2objc-annotations:1.1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar" - ], - "sha256": "2994a7eb78f2710bd3d3bfb639b2c94e219cedac0d4d084d516e78c16dddecf6", - "url": "https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar" - }, - { - "coord": "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1-sources.jar" - ], - "sha256": "2cd9022a77151d0b574887635cdfcdf3b78155b602abc89d7f8e62aba55cfb4f", - "url": "https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1-sources.jar" - }, - { - "coord": "com.novocode:junit-interface:0.11", - "dependencies": [ - "org.hamcrest:hamcrest-core:1.3", - "org.scala-sbt:test-interface:1.0", - "junit:junit:4.12" - ], - "directDependencies": [ - "junit:junit:4.12", - "org.scala-sbt:test-interface:1.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/novocode/junit-interface/0.11/junit-interface-0.11.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/novocode/junit-interface/0.11/junit-interface-0.11.jar" - ], - "sha256": "29e923226a0d10e9142bbd81073ef52f601277001fcf9014389bf0af3dc33dc3", - "url": "https://repo.maven.apache.org/maven2/com/novocode/junit-interface/0.11/junit-interface-0.11.jar" - }, - { - "coord": "com.novocode:junit-interface:jar:sources:0.11", - "dependencies": [ - "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.12", - "org.scala-sbt:test-interface:jar:sources:1.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/novocode/junit-interface/0.11/junit-interface-0.11-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/novocode/junit-interface/0.11/junit-interface-0.11-sources.jar" - ], - "sha256": "246e6cf2552f906ef9f366d991700b4ea99963e93013470d8db6fdf19a5021de", - "url": "https://repo.maven.apache.org/maven2/com/novocode/junit-interface/0.11/junit-interface-0.11-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/repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0.jar" - ], - "sha256": "e27c7742448f816da1cac72b4ca283b0d7920749e09f5dd0ac017e40714a2efe", - "url": "https://repo.maven.apache.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": [ - "com.squareup.okio:okio:jar:sources:1.14.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0-sources.jar" - ], - "sha256": "2dade1d534496d68302adba898eafd7b019cd60c91afb763a50f5bde02ca3f68", - "url": "https://repo.maven.apache.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/repo.maven.apache.org/maven2/com/squareup/okio/okio/1.14.0/okio-1.14.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/squareup/okio/okio/1.14.0/okio-1.14.0.jar" - ], - "sha256": "4633c331f50642ebe795dc089d6a5928aff43071c9d17e7840a009eea2fe95a3", - "url": "https://repo.maven.apache.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/repo.maven.apache.org/maven2/com/squareup/okio/okio/1.14.0/okio-1.14.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/squareup/okio/okio/1.14.0/okio-1.14.0-sources.jar" - ], - "sha256": "ccc34a4ef40021db61ce5c3ee796cca1a3fcc869ea292bb1ce4b5e7708034158", - "url": "https://repo.maven.apache.org/maven2/com/squareup/okio/okio/1.14.0/okio-1.14.0-sources.jar" - }, - { - "coord": "com.typesafe.akka:akka-actor_2.13:2.5.24", - "dependencies": [ - "com.typesafe:config:1.3.3", - "org.scala-lang:scala-library:2.13.0", - "org.scala-lang.modules:scala-java8-compat_2.13:0.9.0" - ], - "directDependencies": [ - "com.typesafe:config:1.3.3", - "org.scala-lang:scala-library:2.13.0", - "org.scala-lang.modules:scala-java8-compat_2.13:0.9.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-actor_2.13/2.5.24/akka-actor_2.13-2.5.24.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-actor_2.13/2.5.24/akka-actor_2.13-2.5.24.jar" - ], - "sha256": "c4604b190de81976722cb5a36f2cb2d52764374293ebbed3d334dd78efeb366a", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-actor_2.13/2.5.24/akka-actor_2.13-2.5.24.jar" - }, - { - "coord": "com.typesafe.akka:akka-actor_2.13:jar:sources:2.5.24", - "dependencies": [ - "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources:0.9.0", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "com.typesafe:config:jar:sources:1.3.3" - ], - "directDependencies": [ - "com.typesafe:config:jar:sources:1.3.3", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources:0.9.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-actor_2.13/2.5.24/akka-actor_2.13-2.5.24-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-actor_2.13/2.5.24/akka-actor_2.13-2.5.24-sources.jar" - ], - "sha256": "2a0afd5fbfa2c508e3c270686102efdabaae33843f916fadb07ce38923168d13", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-actor_2.13/2.5.24/akka-actor_2.13-2.5.24-sources.jar" - }, - { - "coord": "com.typesafe.akka:akka-http-core_2.13:10.1.8", - "dependencies": [ - "org.scala-lang:scala-library:2.13.0", - "com.typesafe.akka:akka-parsing_2.13:10.1.8" - ], - "directDependencies": [ - "com.typesafe.akka:akka-parsing_2.13:10.1.8", - "org.scala-lang:scala-library:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-http-core_2.13/10.1.8/akka-http-core_2.13-10.1.8.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-http-core_2.13/10.1.8/akka-http-core_2.13-10.1.8.jar" - ], - "sha256": "01aa03601a0028c90c3049d947fd826c45b8c7d8c925e76c1b501e9bb3d694c8", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-http-core_2.13/10.1.8/akka-http-core_2.13-10.1.8.jar" - }, - { - "coord": "com.typesafe.akka:akka-http-core_2.13:jar:sources:10.1.8", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.0", - "com.typesafe.akka:akka-parsing_2.13:jar:sources:10.1.8" - ], - "directDependencies": [ - "com.typesafe.akka:akka-parsing_2.13:jar:sources:10.1.8", - "org.scala-lang:scala-library:jar:sources:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-http-core_2.13/10.1.8/akka-http-core_2.13-10.1.8-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-http-core_2.13/10.1.8/akka-http-core_2.13-10.1.8-sources.jar" - ], - "sha256": "bf6f3158de5b666613468a38c92b02085b9beedba75479f0fb7456e94fd48fc4", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-http-core_2.13/10.1.8/akka-http-core_2.13-10.1.8-sources.jar" - }, - { - "coord": "com.typesafe.akka:akka-parsing_2.13:10.1.8", - "dependencies": [ - "org.scala-lang:scala-library:2.13.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-parsing_2.13/10.1.8/akka-parsing_2.13-10.1.8.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-parsing_2.13/10.1.8/akka-parsing_2.13-10.1.8.jar" - ], - "sha256": "be73189be8c39d7cebfa0d09cc10739d03e5d2c91ecdb295128b465e00a86dc1", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-parsing_2.13/10.1.8/akka-parsing_2.13-10.1.8.jar" - }, - { - "coord": "com.typesafe.akka:akka-parsing_2.13:jar:sources:10.1.8", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-parsing_2.13/10.1.8/akka-parsing_2.13-10.1.8-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-parsing_2.13/10.1.8/akka-parsing_2.13-10.1.8-sources.jar" - ], - "sha256": "8e55b250b25b16ded0b1dc2889febf8f191603b7b70402f61f64c4b73bcf1b85", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-parsing_2.13/10.1.8/akka-parsing_2.13-10.1.8-sources.jar" - }, - { - "coord": "com.typesafe.akka:akka-protobuf_2.13:2.5.23", - "dependencies": [ - "org.scala-lang:scala-library:2.13.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-protobuf_2.13/2.5.23/akka-protobuf_2.13-2.5.23.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-protobuf_2.13/2.5.23/akka-protobuf_2.13-2.5.23.jar" - ], - "sha256": "e5096799da71c51a9c2164266e71ca32706cfcbf4c7c6a77abd6522b8e9cc70b", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-protobuf_2.13/2.5.23/akka-protobuf_2.13-2.5.23.jar" - }, - { - "coord": "com.typesafe.akka:akka-protobuf_2.13:jar:sources:2.5.23", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-protobuf_2.13/2.5.23/akka-protobuf_2.13-2.5.23-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-protobuf_2.13/2.5.23/akka-protobuf_2.13-2.5.23-sources.jar" - ], - "sha256": "6ccf31a0bf5df50755825397c22646d4df0e3837ce1bd39c1593fa6dc2c391ea", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-protobuf_2.13/2.5.23/akka-protobuf_2.13-2.5.23-sources.jar" - }, - { - "coord": "com.typesafe.akka:akka-slf4j_2.13:2.5.23", - "dependencies": [ - "org.slf4j:slf4j-api:1.7.26", - "org.scala-lang.modules:scala-java8-compat_2.13:0.9.0", - "com.typesafe:config:1.3.3", - "org.scala-lang:scala-library:2.13.0", - "com.typesafe.akka:akka-actor_2.13:2.5.24" - ], - "directDependencies": [ - "com.typesafe.akka:akka-actor_2.13:2.5.24", - "org.scala-lang:scala-library:2.13.0", - "org.slf4j:slf4j-api:1.7.26" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-slf4j_2.13/2.5.23/akka-slf4j_2.13-2.5.23.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-slf4j_2.13/2.5.23/akka-slf4j_2.13-2.5.23.jar" - ], - "sha256": "bd1e4fcb19940511aef0c45e496a90d427b46c386f5946588d10b7f3d8618c6d", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-slf4j_2.13/2.5.23/akka-slf4j_2.13-2.5.23.jar" - }, - { - "coord": "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.5.23", - "dependencies": [ - "com.typesafe:config:jar:sources:1.3.3", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.slf4j:slf4j-api:jar:sources:1.7.26", - "com.typesafe.akka:akka-actor_2.13:jar:sources:2.5.24", - "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources:0.9.0" - ], - "directDependencies": [ - "com.typesafe.akka:akka-actor_2.13:jar:sources:2.5.24", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.slf4j:slf4j-api:jar:sources:1.7.26" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-slf4j_2.13/2.5.23/akka-slf4j_2.13-2.5.23-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-slf4j_2.13/2.5.23/akka-slf4j_2.13-2.5.23-sources.jar" - ], - "sha256": "ca8e4cb541beb19c74d23262170f1094a25c3a6d64f63a4ac206301061e9a32b", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-slf4j_2.13/2.5.23/akka-slf4j_2.13-2.5.23-sources.jar" - }, - { - "coord": "com.typesafe.akka:akka-stream_2.13:2.5.23", - "dependencies": [ - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "com.typesafe:ssl-config-core_2.13:0.4.0", - "com.typesafe.akka:akka-protobuf_2.13:2.5.23", - "org.scala-lang.modules:scala-java8-compat_2.13:0.9.0", - "com.typesafe:config:1.3.3", - "org.scala-lang:scala-library:2.13.0", - "com.typesafe.akka:akka-actor_2.13:2.5.24", - "org.reactivestreams:reactive-streams:1.0.2" - ], - "directDependencies": [ - "com.typesafe:ssl-config-core_2.13:0.4.0", - "com.typesafe.akka:akka-protobuf_2.13:2.5.23", - "org.scala-lang:scala-library:2.13.0", - "com.typesafe.akka:akka-actor_2.13:2.5.24", - "org.reactivestreams:reactive-streams:1.0.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-stream_2.13/2.5.23/akka-stream_2.13-2.5.23.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-stream_2.13/2.5.23/akka-stream_2.13-2.5.23.jar" - ], - "sha256": "34e431fdf60ecfe55c2b4bd2ee31d50d3062e741b71cc38fcfc9cbcfd414837c", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-stream_2.13/2.5.23/akka-stream_2.13-2.5.23.jar" - }, - { - "coord": "com.typesafe.akka:akka-stream_2.13:jar:sources:2.5.23", - "dependencies": [ - "com.typesafe:ssl-config-core_2.13:jar:sources:0.4.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "com.typesafe.akka:akka-protobuf_2.13:jar:sources:2.5.23", - "com.typesafe:config:jar:sources:1.3.3", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "com.typesafe.akka:akka-actor_2.13:jar:sources:2.5.24", - "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources:0.9.0" - ], - "directDependencies": [ - "com.typesafe:ssl-config-core_2.13:jar:sources:0.4.0", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "com.typesafe.akka:akka-protobuf_2.13:jar:sources:2.5.23", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "com.typesafe.akka:akka-actor_2.13:jar:sources:2.5.24" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-stream_2.13/2.5.23/akka-stream_2.13-2.5.23-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-stream_2.13/2.5.23/akka-stream_2.13-2.5.23-sources.jar" - ], - "sha256": "911e726c0dbf270a242a4e05939fe80d619462b38b06a43317327076c8f98a5f", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-stream_2.13/2.5.23/akka-stream_2.13-2.5.23-sources.jar" - }, - { - "coord": "com.typesafe.netty:netty-reactive-streams-http:2.0.3", - "dependencies": [ - "io.netty:netty-handler:4.1.34.Final", - "io.netty:netty-common:4.1.34.Final", - "com.typesafe.netty:netty-reactive-streams:2.0.3", - "io.netty:netty-resolver:4.1.34.Final", - "io.netty:netty-buffer:4.1.34.Final", - "io.netty:netty-transport:4.1.34.Final", - "io.netty:netty-codec:4.1.34.Final", - "org.reactivestreams:reactive-streams:1.0.2", - "io.netty:netty-codec-http:4.1.34.Final" - ], - "directDependencies": [ - "com.typesafe.netty:netty-reactive-streams:2.0.3", - "io.netty:netty-codec-http:4.1.34.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/netty/netty-reactive-streams-http/2.0.3/netty-reactive-streams-http-2.0.3.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/netty/netty-reactive-streams-http/2.0.3/netty-reactive-streams-http-2.0.3.jar" - ], - "sha256": "e6966e9b607ac42ac0a806c9fb28d277b72bda98fbf849c33be098d98c9f9453", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/netty/netty-reactive-streams-http/2.0.3/netty-reactive-streams-http-2.0.3.jar" - }, - { - "coord": "com.typesafe.netty:netty-reactive-streams-http:jar:sources:2.0.3", - "dependencies": [ - "io.netty:netty-transport:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.34.Final", - "io.netty:netty-handler:jar:sources:4.1.34.Final", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "io.netty:netty-codec:jar:sources:4.1.34.Final", - "io.netty:netty-buffer:jar:sources:4.1.34.Final", - "io.netty:netty-resolver:jar:sources:4.1.34.Final", - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.3", - "io.netty:netty-codec-http:jar:sources:4.1.34.Final" - ], - "directDependencies": [ - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.3", - "io.netty:netty-codec-http:jar:sources:4.1.34.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/netty/netty-reactive-streams-http/2.0.3/netty-reactive-streams-http-2.0.3-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/netty/netty-reactive-streams-http/2.0.3/netty-reactive-streams-http-2.0.3-sources.jar" - ], - "sha256": "11e2d27ceb7ffd3fba7bf840105823ba4833ac60527346c5058874bcab43ae4b", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/netty/netty-reactive-streams-http/2.0.3/netty-reactive-streams-http-2.0.3-sources.jar" - }, - { - "coord": "com.typesafe.netty:netty-reactive-streams:2.0.3", - "dependencies": [ - "io.netty:netty-handler:4.1.34.Final", - "io.netty:netty-common:4.1.34.Final", - "io.netty:netty-resolver:4.1.34.Final", - "io.netty:netty-buffer:4.1.34.Final", - "io.netty:netty-transport:4.1.34.Final", - "io.netty:netty-codec:4.1.34.Final", - "org.reactivestreams:reactive-streams:1.0.2" - ], - "directDependencies": [ - "io.netty:netty-handler:4.1.34.Final", - "org.reactivestreams:reactive-streams:1.0.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/netty/netty-reactive-streams/2.0.3/netty-reactive-streams-2.0.3.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/netty/netty-reactive-streams/2.0.3/netty-reactive-streams-2.0.3.jar" - ], - "sha256": "dd66261c22d2d19141e5be03909faa3d8fab5cd75b1a799ccc1344f11627f921", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/netty/netty-reactive-streams/2.0.3/netty-reactive-streams-2.0.3.jar" - }, - { - "coord": "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.3", - "dependencies": [ - "io.netty:netty-transport:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.34.Final", - "io.netty:netty-handler:jar:sources:4.1.34.Final", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "io.netty:netty-codec:jar:sources:4.1.34.Final", - "io.netty:netty-buffer:jar:sources:4.1.34.Final", - "io.netty:netty-resolver:jar:sources:4.1.34.Final" - ], - "directDependencies": [ - "io.netty:netty-handler:jar:sources:4.1.34.Final", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/netty/netty-reactive-streams/2.0.3/netty-reactive-streams-2.0.3-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/netty/netty-reactive-streams/2.0.3/netty-reactive-streams-2.0.3-sources.jar" - ], - "sha256": "6d56be9fd1854a7fea7bb2d03a1a83f375271ea3f3a003b6bc4d67dcd52cf61f", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/netty/netty-reactive-streams/2.0.3/netty-reactive-streams-2.0.3-sources.jar" - }, - { - "coord": "com.typesafe.play:build-link:2.7.3", - "dependencies": [ - "com.typesafe.play:play-exceptions:2.7.3" - ], - "directDependencies": [ - "com.typesafe.play:play-exceptions:2.7.3" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/build-link/2.7.3/build-link-2.7.3.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/build-link/2.7.3/build-link-2.7.3.jar" - ], - "sha256": "88dda9ba4437aaec1956a615b5a7688e480ce5830eb756f1c71ecd925f4fe040", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/build-link/2.7.3/build-link-2.7.3.jar" - }, - { - "coord": "com.typesafe.play:build-link:jar:sources:2.7.3", - "dependencies": [ - "com.typesafe.play:play-exceptions:jar:sources:2.7.3" - ], - "directDependencies": [ - "com.typesafe.play:play-exceptions:jar:sources:2.7.3" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/build-link/2.7.3/build-link-2.7.3-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/build-link/2.7.3/build-link-2.7.3-sources.jar" - ], - "sha256": "e5e446444954f478953fe387807314db42e33839840de3131dd7e58e19cab96a", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/build-link/2.7.3/build-link-2.7.3-sources.jar" - }, - { - "coord": "com.typesafe.play:play-akka-http-server_2.13:2.7.3", - "dependencies": [ - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "org.slf4j:jcl-over-slf4j:1.7.26", - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "com.typesafe.play:play-streams_2.13:2.7.3", - "com.typesafe.play:play_2.13:2.7.3", - "com.typesafe.akka:akka-slf4j_2.13:2.5.23", - "com.typesafe.play:play-exceptions:2.7.3", - "org.scala-lang:scala-reflect:2.13.0", - "javax.xml.bind:jaxb-api:2.3.1", - "com.fasterxml.jackson.core:jackson-databind:2.9.8", - "org.slf4j:jul-to-slf4j:1.7.26", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.8", - "com.typesafe:ssl-config-core_2.13:0.4.0", - "com.google.code.findbugs:jsr305:3.0.2", - "com.typesafe.play:play-json_2.13:2.7.4", - "com.typesafe.akka:akka-http-core_2.13:10.1.8", - "javax.activation:javax.activation-api:1.2.0", - "com.typesafe.akka:akka-protobuf_2.13:2.5.23", - "org.slf4j:slf4j-api:1.7.26", - "org.scala-lang.modules:scala-java8-compat_2.13:0.9.0", - "com.typesafe.akka:akka-parsing_2.13:10.1.8", - "com.typesafe:config:1.3.3", - "com.typesafe.play:twirl-api_2.13:1.4.2", - "com.typesafe.play:build-link:2.7.3", - "com.typesafe.play:play-server_2.13:2.7.3", - "com.google.guava:guava:27.1-jre", - "com.typesafe.akka:akka-stream_2.13:2.5.23", - "org.scala-lang:scala-library:2.13.0", - "com.typesafe.akka:akka-actor_2.13:2.5.24", - "org.codehaus.mojo:animal-sniffer-annotations:1.17", - "com.google.j2objc:j2objc-annotations:1.1", - "com.google.guava:failureaccess:1.0.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.8", - "org.scala-lang.modules:scala-xml_2.13:1.2.0", - "io.jsonwebtoken:jjwt:0.9.1", - "com.google.errorprone:error_prone_annotations:2.2.0", - "javax.inject:javax.inject:1", - "javax.transaction:jta:1.1", - "org.reactivestreams:reactive-streams:1.0.2", - "com.typesafe.play:play-functional_2.13:2.7.4", - "com.fasterxml.jackson.core:jackson-annotations:2.9.8", - "joda-time:joda-time:2.10.1", - "com.fasterxml.jackson.core:jackson-core:2.9.8", - "org.checkerframework:checker-qual:2.5.2" - ], - "directDependencies": [ - "com.typesafe.akka:akka-http-core_2.13:10.1.8", - "com.typesafe.play:play-server_2.13:2.7.3", - "com.typesafe.play:play-streams_2.13:2.7.3", - "org.scala-lang:scala-library:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-akka-http-server_2.13/2.7.3/play-akka-http-server_2.13-2.7.3.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-akka-http-server_2.13/2.7.3/play-akka-http-server_2.13-2.7.3.jar" - ], - "sha256": "6b38e9179e1d38fce6c64d7678fb77c6f0d59f5db5ee7c770e1de0d8dd2ede08", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-akka-http-server_2.13/2.7.3/play-akka-http-server_2.13-2.7.3.jar" - }, - { - "coord": "com.typesafe.play:play-akka-http-server_2.13:jar:sources:2.7.3", - "dependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "javax.transaction:jta:jar:sources:1.1", - "com.typesafe.play:play-streams_2.13:jar:sources:2.7.3", - "joda-time:joda-time:jar:sources:2.10.1", - "com.typesafe:ssl-config-core_2.13:jar:sources:0.4.0", - "com.typesafe.akka:akka-stream_2.13:jar:sources:2.5.23", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.8", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", - "javax.xml.bind:jaxb-api:jar:sources:2.3.1", - "io.jsonwebtoken:jjwt:jar:sources:0.9.1", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "com.typesafe.akka:akka-protobuf_2.13:jar:sources:2.5.23", - "com.typesafe.akka:akka-parsing_2.13:jar:sources:10.1.8", - "com.typesafe:config:jar:sources:1.3.3", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.2.0", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources:2.9.8", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17", - "com.typesafe.play:play-server_2.13:jar:sources:2.7.3", - "org.slf4j:slf4j-api:jar:sources:1.7.26", - "com.typesafe.akka:akka-http-core_2.13:jar:sources:10.1.8", - "javax.inject:javax.inject:jar:sources:1", - "com.typesafe.play:build-link:jar:sources:2.7.3", - "com.typesafe.play:twirl-api_2.13:jar:sources:1.4.2", - "com.typesafe.akka:akka-actor_2.13:jar:sources:2.5.24", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources:2.9.8", - "com.typesafe.play:play-functional_2.13:jar:sources:2.7.4", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "org.slf4j:jcl-over-slf4j:jar:sources:1.7.26", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.8", - "org.slf4j:jul-to-slf4j:jar:sources:1.7.26", - "com.typesafe.play:play-json_2.13:jar:sources:2.7.4", - "javax.activation:javax.activation-api:jar:sources:1.2.0", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.typesafe.play:play_2.13:jar:sources:2.7.3", - "com.google.errorprone:error_prone_annotations:jar:sources:2.2.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:27.1-jre", - "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.5.23", - "com.typesafe.play:play-exceptions:jar:sources:2.7.3", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.8", - "org.scala-lang:scala-reflect:jar:sources:2.13.0", - "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources:0.9.0" - ], - "directDependencies": [ - "com.typesafe.akka:akka-http-core_2.13:jar:sources:10.1.8", - "com.typesafe.play:play-server_2.13:jar:sources:2.7.3", - "com.typesafe.play:play-streams_2.13:jar:sources:2.7.3", - "org.scala-lang:scala-library:jar:sources:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-akka-http-server_2.13/2.7.3/play-akka-http-server_2.13-2.7.3-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-akka-http-server_2.13/2.7.3/play-akka-http-server_2.13-2.7.3-sources.jar" - ], - "sha256": "31d552e6708ebe7f4db4df7c7fb435ac7e592854c0aafb7592ec8ffc2f203758", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-akka-http-server_2.13/2.7.3/play-akka-http-server_2.13-2.7.3-sources.jar" - }, - { - "coord": "com.typesafe.play:play-exceptions:2.7.3", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-exceptions/2.7.3/play-exceptions-2.7.3.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-exceptions/2.7.3/play-exceptions-2.7.3.jar" - ], - "sha256": "174eab06d9aa7303128e43aba8469dd490c153d3f4c1d06605415d0014fcb749", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-exceptions/2.7.3/play-exceptions-2.7.3.jar" - }, - { - "coord": "com.typesafe.play:play-exceptions:jar:sources:2.7.3", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-exceptions/2.7.3/play-exceptions-2.7.3-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-exceptions/2.7.3/play-exceptions-2.7.3-sources.jar" - ], - "sha256": "9c0ca6d3668a89dfdf605cac4d24d273a0183523f0da2ce091f90cac614746ae", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-exceptions/2.7.3/play-exceptions-2.7.3-sources.jar" - }, - { - "coord": "com.typesafe.play:play-functional_2.13:2.7.4", - "dependencies": [ - "org.scala-lang:scala-library:2.13.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-functional_2.13/2.7.4/play-functional_2.13-2.7.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-functional_2.13/2.7.4/play-functional_2.13-2.7.4.jar" - ], - "sha256": "e75743a7b3b9c5675bfadc898e86dd718804e14505fae88a94c71fa82d810b2a", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-functional_2.13/2.7.4/play-functional_2.13-2.7.4.jar" - }, - { - "coord": "com.typesafe.play:play-functional_2.13:jar:sources:2.7.4", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-functional_2.13/2.7.4/play-functional_2.13-2.7.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-functional_2.13/2.7.4/play-functional_2.13-2.7.4-sources.jar" - ], - "sha256": "50e6d90faf265a0ac7717aeed6e5f1ea52f2c6c6ed13fbef94f8a5dbecd86746", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-functional_2.13/2.7.4/play-functional_2.13-2.7.4-sources.jar" - }, - { - "coord": "com.typesafe.play:play-guice_2.13:2.7.3", - "dependencies": [ - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "org.slf4j:jcl-over-slf4j:1.7.26", - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "com.typesafe.play:play-streams_2.13:2.7.3", - "com.typesafe.play:play_2.13:2.7.3", - "com.typesafe.akka:akka-slf4j_2.13:2.5.23", - "com.typesafe.play:play-exceptions:2.7.3", - "org.scala-lang:scala-reflect:2.13.0", - "javax.xml.bind:jaxb-api:2.3.1", - "com.fasterxml.jackson.core:jackson-databind:2.9.8", - "org.slf4j:jul-to-slf4j:1.7.26", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.8", - "com.typesafe:ssl-config-core_2.13:0.4.0", - "com.google.code.findbugs:jsr305:3.0.2", - "com.typesafe.play:play-json_2.13:2.7.4", - "javax.activation:javax.activation-api:1.2.0", - "com.typesafe.akka:akka-protobuf_2.13:2.5.23", - "org.slf4j:slf4j-api:1.7.26", - "aopalliance:aopalliance:1.0", - "org.scala-lang.modules:scala-java8-compat_2.13:0.9.0", - "com.typesafe:config:1.3.3", - "com.typesafe.play:twirl-api_2.13:1.4.2", - "com.google.inject:guice:4.2.2", - "com.typesafe.play:build-link:2.7.3", - "com.google.guava:guava:27.1-jre", - "com.typesafe.akka:akka-stream_2.13:2.5.23", - "com.google.inject.extensions:guice-assistedinject:4.2.2", - "org.scala-lang:scala-library:2.13.0", - "com.typesafe.akka:akka-actor_2.13:2.5.24", - "org.codehaus.mojo:animal-sniffer-annotations:1.17", - "com.google.j2objc:j2objc-annotations:1.1", - "com.google.guava:failureaccess:1.0.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.8", - "org.scala-lang.modules:scala-xml_2.13:1.2.0", - "io.jsonwebtoken:jjwt:0.9.1", - "com.google.errorprone:error_prone_annotations:2.2.0", - "javax.inject:javax.inject:1", - "javax.transaction:jta:1.1", - "org.reactivestreams:reactive-streams:1.0.2", - "com.typesafe.play:play-functional_2.13:2.7.4", - "com.fasterxml.jackson.core:jackson-annotations:2.9.8", - "joda-time:joda-time:2.10.1", - "com.fasterxml.jackson.core:jackson-core:2.9.8", - "org.checkerframework:checker-qual:2.5.2" - ], - "directDependencies": [ - "com.google.inject:guice:4.2.2", - "com.google.inject.extensions:guice-assistedinject:4.2.2", - "com.typesafe.play:play_2.13:2.7.3", - "org.scala-lang:scala-library:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-guice_2.13/2.7.3/play-guice_2.13-2.7.3.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-guice_2.13/2.7.3/play-guice_2.13-2.7.3.jar" - ], - "sha256": "688b07c683d30756f8779aeb77a2fa00a5b7a4310a69b4a8af17e630afada07d", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-guice_2.13/2.7.3/play-guice_2.13-2.7.3.jar" - }, - { - "coord": "com.typesafe.play:play-guice_2.13:jar:sources:2.7.3", - "dependencies": [ - "com.google.inject:guice:jar:sources:4.2.2", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "javax.transaction:jta:jar:sources:1.1", - "com.typesafe.play:play-streams_2.13:jar:sources:2.7.3", - "joda-time:joda-time:jar:sources:2.10.1", - "com.typesafe:ssl-config-core_2.13:jar:sources:0.4.0", - "com.typesafe.akka:akka-stream_2.13:jar:sources:2.5.23", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.8", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", - "javax.xml.bind:jaxb-api:jar:sources:2.3.1", - "io.jsonwebtoken:jjwt:jar:sources:0.9.1", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "com.typesafe.akka:akka-protobuf_2.13:jar:sources:2.5.23", - "com.typesafe:config:jar:sources:1.3.3", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.2.0", - "aopalliance:aopalliance:jar:sources:1.0", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources:2.9.8", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17", - "com.google.inject.extensions:guice-assistedinject:jar:sources:4.2.2", - "org.slf4j:slf4j-api:jar:sources:1.7.26", - "javax.inject:javax.inject:jar:sources:1", - "com.typesafe.play:build-link:jar:sources:2.7.3", - "com.typesafe.play:twirl-api_2.13:jar:sources:1.4.2", - "com.typesafe.akka:akka-actor_2.13:jar:sources:2.5.24", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources:2.9.8", - "com.typesafe.play:play-functional_2.13:jar:sources:2.7.4", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "org.slf4j:jcl-over-slf4j:jar:sources:1.7.26", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.8", - "org.slf4j:jul-to-slf4j:jar:sources:1.7.26", - "com.typesafe.play:play-json_2.13:jar:sources:2.7.4", - "javax.activation:javax.activation-api:jar:sources:1.2.0", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.typesafe.play:play_2.13:jar:sources:2.7.3", - "com.google.errorprone:error_prone_annotations:jar:sources:2.2.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:27.1-jre", - "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.5.23", - "com.typesafe.play:play-exceptions:jar:sources:2.7.3", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.8", - "org.scala-lang:scala-reflect:jar:sources:2.13.0", - "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources:0.9.0" - ], - "directDependencies": [ - "com.google.inject:guice:jar:sources:4.2.2", - "com.google.inject.extensions:guice-assistedinject:jar:sources:4.2.2", - "com.typesafe.play:play_2.13:jar:sources:2.7.3", - "org.scala-lang:scala-library:jar:sources:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-guice_2.13/2.7.3/play-guice_2.13-2.7.3-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-guice_2.13/2.7.3/play-guice_2.13-2.7.3-sources.jar" - ], - "sha256": "32629b9ec919e3310485846483b6e8ee5e1037f0a5c7d65e511e0cc599b9e962", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-guice_2.13/2.7.3/play-guice_2.13-2.7.3-sources.jar" - }, - { - "coord": "com.typesafe.play:play-json_2.13:2.7.4", - "dependencies": [ - "org.scala-lang:scala-reflect:2.13.0", - "com.fasterxml.jackson.core:jackson-databind:2.9.8", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.8", - "org.scala-lang:scala-library:2.13.0", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.8", - "com.typesafe.play:play-functional_2.13:2.7.4", - "com.fasterxml.jackson.core:jackson-annotations:2.9.8", - "joda-time:joda-time:2.10.1", - "com.fasterxml.jackson.core:jackson-core:2.9.8" - ], - "directDependencies": [ - "org.scala-lang:scala-reflect:2.13.0", - "com.fasterxml.jackson.core:jackson-databind:2.9.8", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.8", - "org.scala-lang:scala-library:2.13.0", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.8", - "com.typesafe.play:play-functional_2.13:2.7.4", - "com.fasterxml.jackson.core:jackson-annotations:2.9.8", - "joda-time:joda-time:2.10.1", - "com.fasterxml.jackson.core:jackson-core:2.9.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-json_2.13/2.7.4/play-json_2.13-2.7.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-json_2.13/2.7.4/play-json_2.13-2.7.4.jar" - ], - "sha256": "01bccc39396118ff669820c73022001f5ffe00e934e62e1a266abe851cc91d23", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-json_2.13/2.7.4/play-json_2.13-2.7.4.jar" - }, - { - "coord": "com.typesafe.play:play-json_2.13:jar:sources:2.7.4", - "dependencies": [ - "joda-time:joda-time:jar:sources:2.10.1", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.8", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources:2.9.8", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources:2.9.8", - "com.typesafe.play:play-functional_2.13:jar:sources:2.7.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.8", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.8", - "org.scala-lang:scala-reflect:jar:sources:2.13.0" - ], - "directDependencies": [ - "joda-time:joda-time:jar:sources:2.10.1", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.8", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources:2.9.8", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources:2.9.8", - "com.typesafe.play:play-functional_2.13:jar:sources:2.7.4", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.8", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.8", - "org.scala-lang:scala-reflect:jar:sources:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-json_2.13/2.7.4/play-json_2.13-2.7.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-json_2.13/2.7.4/play-json_2.13-2.7.4-sources.jar" - ], - "sha256": "83b9f9b4bc5ea9e0638e576eafa115e2009ab4f69ce69df8932429ee9704081b", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-json_2.13/2.7.4/play-json_2.13-2.7.4-sources.jar" - }, - { - "coord": "com.typesafe.play:play-netty-server_2.13:2.7.3", - "dependencies": [ - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "org.slf4j:jcl-over-slf4j:1.7.26", - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "com.typesafe.play:play-streams_2.13:2.7.3", - "com.typesafe.play:play_2.13:2.7.3", - "com.typesafe.akka:akka-slf4j_2.13:2.5.23", - "com.typesafe.play:play-exceptions:2.7.3", - "org.scala-lang:scala-reflect:2.13.0", - "javax.xml.bind:jaxb-api:2.3.1", - "io.netty:netty-handler:4.1.34.Final", - "com.fasterxml.jackson.core:jackson-databind:2.9.8", - "io.netty:netty-common:4.1.34.Final", - "org.slf4j:jul-to-slf4j:1.7.26", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.8", - "com.typesafe:ssl-config-core_2.13:0.4.0", - "com.google.code.findbugs:jsr305:3.0.2", - "com.typesafe.play:play-json_2.13:2.7.4", - "javax.activation:javax.activation-api:1.2.0", - "com.typesafe.netty:netty-reactive-streams:2.0.3", - "com.typesafe.akka:akka-protobuf_2.13:2.5.23", - "org.slf4j:slf4j-api:1.7.26", - "com.typesafe.netty:netty-reactive-streams-http:2.0.3", - "io.netty:netty-resolver:4.1.34.Final", - "org.scala-lang.modules:scala-java8-compat_2.13:0.9.0", - "com.typesafe:config:1.3.3", - "com.typesafe.play:twirl-api_2.13:1.4.2", - "com.typesafe.play:build-link:2.7.3", - "com.typesafe.play:play-server_2.13:2.7.3", - "com.google.guava:guava:27.1-jre", - "com.typesafe.akka:akka-stream_2.13:2.5.23", - "io.netty:netty-buffer:4.1.34.Final", - "io.netty:netty-transport:4.1.34.Final", - "org.scala-lang:scala-library:2.13.0", - "com.typesafe.akka:akka-actor_2.13:2.5.24", - "org.codehaus.mojo:animal-sniffer-annotations:1.17", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.34.Final", - "com.google.j2objc:j2objc-annotations:1.1", - "com.google.guava:failureaccess:1.0.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.8", - "org.scala-lang.modules:scala-xml_2.13:1.2.0", - "io.jsonwebtoken:jjwt:0.9.1", - "com.google.errorprone:error_prone_annotations:2.2.0", - "io.netty:netty-transport-native-unix-common:4.1.34.Final", - "javax.inject:javax.inject:1", - "javax.transaction:jta:1.1", - "io.netty:netty-codec:4.1.34.Final", - "org.reactivestreams:reactive-streams:1.0.2", - "io.netty:netty-codec-http:4.1.34.Final", - "com.typesafe.play:play-functional_2.13:2.7.4", - "com.fasterxml.jackson.core:jackson-annotations:2.9.8", - "joda-time:joda-time:2.10.1", - "com.fasterxml.jackson.core:jackson-core:2.9.8", - "org.checkerframework:checker-qual:2.5.2" - ], - "directDependencies": [ - "com.typesafe.netty:netty-reactive-streams-http:2.0.3", - "com.typesafe.play:play-server_2.13:2.7.3", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.34.Final", - "org.scala-lang:scala-library:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-netty-server_2.13/2.7.3/play-netty-server_2.13-2.7.3.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-netty-server_2.13/2.7.3/play-netty-server_2.13-2.7.3.jar" - ], - "sha256": "8012696bac508b1763597e6075c719234f2bae8db10c7b89adae82970639287b", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-netty-server_2.13/2.7.3/play-netty-server_2.13-2.7.3.jar" - }, - { - "coord": "com.typesafe.play:play-netty-server_2.13:jar:sources:2.7.3", - "dependencies": [ - "io.netty:netty-transport:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.34.Final", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "javax.transaction:jta:jar:sources:1.1", - "io.netty:netty-handler:jar:sources:4.1.34.Final", - "com.typesafe.play:play-streams_2.13:jar:sources:2.7.3", - "joda-time:joda-time:jar:sources:2.10.1", - "com.typesafe:ssl-config-core_2.13:jar:sources:0.4.0", - "com.typesafe.akka:akka-stream_2.13:jar:sources:2.5.23", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.8", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", - "javax.xml.bind:jaxb-api:jar:sources:2.3.1", - "io.jsonwebtoken:jjwt:jar:sources:0.9.1", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "com.typesafe.akka:akka-protobuf_2.13:jar:sources:2.5.23", - "io.netty:netty-codec:jar:sources:4.1.34.Final", - "com.typesafe:config:jar:sources:1.3.3", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.2.0", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources:2.9.8", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.34.Final", - "com.typesafe.play:play-server_2.13:jar:sources:2.7.3", - "org.slf4j:slf4j-api:jar:sources:1.7.26", - "javax.inject:javax.inject:jar:sources:1", - "com.typesafe.play:build-link:jar:sources:2.7.3", - "com.typesafe.play:twirl-api_2.13:jar:sources:1.4.2", - "com.typesafe.akka:akka-actor_2.13:jar:sources:2.5.24", - "io.netty:netty-buffer:jar:sources:4.1.34.Final", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources:2.9.8", - "com.typesafe.play:play-functional_2.13:jar:sources:2.7.4", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "io.netty:netty-resolver:jar:sources:4.1.34.Final", - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.3", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "org.slf4j:jcl-over-slf4j:jar:sources:1.7.26", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.8", - "org.slf4j:jul-to-slf4j:jar:sources:1.7.26", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.34.Final", - "io.netty:netty-codec-http:jar:sources:4.1.34.Final", - "com.typesafe.play:play-json_2.13:jar:sources:2.7.4", - "javax.activation:javax.activation-api:jar:sources:1.2.0", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.typesafe.play:play_2.13:jar:sources:2.7.3", - "com.google.errorprone:error_prone_annotations:jar:sources:2.2.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:27.1-jre", - "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.5.23", - "com.typesafe.play:play-exceptions:jar:sources:2.7.3", - "com.typesafe.netty:netty-reactive-streams-http:jar:sources:2.0.3", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.8", - "org.scala-lang:scala-reflect:jar:sources:2.13.0", - "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources:0.9.0" - ], - "directDependencies": [ - "com.typesafe.netty:netty-reactive-streams-http:jar:sources:2.0.3", - "com.typesafe.play:play-server_2.13:jar:sources:2.7.3", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.34.Final", - "org.scala-lang:scala-library:jar:sources:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-netty-server_2.13/2.7.3/play-netty-server_2.13-2.7.3-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-netty-server_2.13/2.7.3/play-netty-server_2.13-2.7.3-sources.jar" - ], - "sha256": "4d0106d8801dc40736f1f72c4a32d989e9413df5f6d654b5f9db1d20d9402ad0", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-netty-server_2.13/2.7.3/play-netty-server_2.13-2.7.3-sources.jar" - }, - { - "coord": "com.typesafe.play:play-server_2.13:2.7.3", - "dependencies": [ - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "org.slf4j:jcl-over-slf4j:1.7.26", - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "com.typesafe.play:play-streams_2.13:2.7.3", - "com.typesafe.play:play_2.13:2.7.3", - "com.typesafe.akka:akka-slf4j_2.13:2.5.23", - "com.typesafe.play:play-exceptions:2.7.3", - "org.scala-lang:scala-reflect:2.13.0", - "javax.xml.bind:jaxb-api:2.3.1", - "com.fasterxml.jackson.core:jackson-databind:2.9.8", - "org.slf4j:jul-to-slf4j:1.7.26", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.8", - "com.typesafe:ssl-config-core_2.13:0.4.0", - "com.google.code.findbugs:jsr305:3.0.2", - "com.typesafe.play:play-json_2.13:2.7.4", - "javax.activation:javax.activation-api:1.2.0", - "com.typesafe.akka:akka-protobuf_2.13:2.5.23", - "org.slf4j:slf4j-api:1.7.26", - "org.scala-lang.modules:scala-java8-compat_2.13:0.9.0", - "com.typesafe:config:1.3.3", - "com.typesafe.play:twirl-api_2.13:1.4.2", - "com.typesafe.play:build-link:2.7.3", - "com.google.guava:guava:27.1-jre", - "com.typesafe.akka:akka-stream_2.13:2.5.23", - "org.scala-lang:scala-library:2.13.0", - "com.typesafe.akka:akka-actor_2.13:2.5.24", - "org.codehaus.mojo:animal-sniffer-annotations:1.17", - "com.google.j2objc:j2objc-annotations:1.1", - "com.google.guava:failureaccess:1.0.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.8", - "org.scala-lang.modules:scala-xml_2.13:1.2.0", - "io.jsonwebtoken:jjwt:0.9.1", - "com.google.errorprone:error_prone_annotations:2.2.0", - "javax.inject:javax.inject:1", - "javax.transaction:jta:1.1", - "org.reactivestreams:reactive-streams:1.0.2", - "com.typesafe.play:play-functional_2.13:2.7.4", - "com.fasterxml.jackson.core:jackson-annotations:2.9.8", - "joda-time:joda-time:2.10.1", - "com.fasterxml.jackson.core:jackson-core:2.9.8", - "org.checkerframework:checker-qual:2.5.2" - ], - "directDependencies": [ - "com.typesafe.play:play_2.13:2.7.3", - "org.scala-lang:scala-library:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-server_2.13/2.7.3/play-server_2.13-2.7.3.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-server_2.13/2.7.3/play-server_2.13-2.7.3.jar" - ], - "sha256": "bed0a71caa40d0665af330bb6dfa6573362c7ad4b855dc840482460c53e811ae", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-server_2.13/2.7.3/play-server_2.13-2.7.3.jar" - }, - { - "coord": "com.typesafe.play:play-server_2.13:jar:sources:2.7.3", - "dependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "javax.transaction:jta:jar:sources:1.1", - "com.typesafe.play:play-streams_2.13:jar:sources:2.7.3", - "joda-time:joda-time:jar:sources:2.10.1", - "com.typesafe:ssl-config-core_2.13:jar:sources:0.4.0", - "com.typesafe.akka:akka-stream_2.13:jar:sources:2.5.23", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.8", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", - "javax.xml.bind:jaxb-api:jar:sources:2.3.1", - "io.jsonwebtoken:jjwt:jar:sources:0.9.1", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "com.typesafe.akka:akka-protobuf_2.13:jar:sources:2.5.23", - "com.typesafe:config:jar:sources:1.3.3", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.2.0", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources:2.9.8", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17", - "org.slf4j:slf4j-api:jar:sources:1.7.26", - "javax.inject:javax.inject:jar:sources:1", - "com.typesafe.play:build-link:jar:sources:2.7.3", - "com.typesafe.play:twirl-api_2.13:jar:sources:1.4.2", - "com.typesafe.akka:akka-actor_2.13:jar:sources:2.5.24", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources:2.9.8", - "com.typesafe.play:play-functional_2.13:jar:sources:2.7.4", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "org.slf4j:jcl-over-slf4j:jar:sources:1.7.26", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.8", - "org.slf4j:jul-to-slf4j:jar:sources:1.7.26", - "com.typesafe.play:play-json_2.13:jar:sources:2.7.4", - "javax.activation:javax.activation-api:jar:sources:1.2.0", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.typesafe.play:play_2.13:jar:sources:2.7.3", - "com.google.errorprone:error_prone_annotations:jar:sources:2.2.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:27.1-jre", - "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.5.23", - "com.typesafe.play:play-exceptions:jar:sources:2.7.3", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.8", - "org.scala-lang:scala-reflect:jar:sources:2.13.0", - "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources:0.9.0" - ], - "directDependencies": [ - "com.typesafe.play:play_2.13:jar:sources:2.7.3", - "org.scala-lang:scala-library:jar:sources:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-server_2.13/2.7.3/play-server_2.13-2.7.3-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-server_2.13/2.7.3/play-server_2.13-2.7.3-sources.jar" - ], - "sha256": "5dc9705d6ad8fa3da42ede67bd8ffdf0a5a7dd3edbe6a483a9defe2afe18f1d7", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-server_2.13/2.7.3/play-server_2.13-2.7.3-sources.jar" - }, - { - "coord": "com.typesafe.play:play-specs2_2.13:2.7.3", - "dependencies": [ - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "org.slf4j:jcl-over-slf4j:1.7.26", - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "com.typesafe.play:play-streams_2.13:2.7.3", - "com.squareup.okio:okio:1.14.0", - "org.specs2:specs2-fp_2.13:4.7.0", - "net.sourceforge.htmlunit:htmlunit:2.33", - "com.typesafe.play:play_2.13:2.7.3", - "com.typesafe.akka:akka-slf4j_2.13:2.5.23", - "com.typesafe.play:play-exceptions:2.7.3", - "org.scala-lang:scala-reflect:2.13.0", - "javax.xml.bind:jaxb-api:2.3.1", - "org.atteo.classindex:classindex:3.4", - "io.netty:netty-handler:4.1.34.Final", - "net.sourceforge.htmlunit:htmlunit-cssparser:1.2.0", - "com.fasterxml.jackson.core:jackson-databind:2.9.8", - "io.netty:netty-common:4.1.34.Final", - "org.slf4j:jul-to-slf4j:1.7.26", - "com.novocode:junit-interface:0.11", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.8", - "commons-logging:commons-logging:1.2", - "commons-io:commons-io:2.6", - "org.seleniumhq.selenium:htmlunit-driver:2.33.3", - "org.seleniumhq.selenium:selenium-remote-driver:3.141.59", - "com.typesafe:ssl-config-core_2.13:0.4.0", - "org.specs2:specs2-matcher_2.13:4.7.0", - "com.google.code.findbugs:jsr305:3.0.2", - "org.apache.commons:commons-lang3:3.8", - "com.typesafe.play:play-json_2.13:2.7.4", - "ch.qos.logback:logback-classic:1.2.3", - "com.typesafe.play:play-akka-http-server_2.13:2.7.3", - "com.typesafe.play:play-test_2.13:2.7.3", - "com.typesafe.akka:akka-http-core_2.13:10.1.8", - "javax.activation:javax.activation-api:1.2.0", - "com.typesafe.netty:netty-reactive-streams:2.0.3", - "com.typesafe.akka:akka-protobuf_2.13:2.5.23", - "org.slf4j:slf4j-api:1.7.26", - "com.typesafe.netty:netty-reactive-streams-http:2.0.3", - "junit:junit:4.12", - "io.netty:netty-resolver:4.1.34.Final", - "net.sourceforge.htmlunit:htmlunit-core-js:2.33", - "aopalliance:aopalliance:1.0", - "net.bytebuddy:byte-buddy:1.9.3", - "org.hamcrest:hamcrest-core:1.3", - "org.scala-lang.modules:scala-java8-compat_2.13:0.9.0", - "org.eclipse.jetty.websocket:websocket-common:9.4.12.v20180830", - "org.apache.httpcomponents:httpclient:4.5.6", - "org.seleniumhq.selenium:selenium-api:3.141.59", - "com.typesafe.akka:akka-parsing_2.13:10.1.8", - "org.eclipse.jetty:jetty-client:9.4.12.v20180830", - "com.typesafe:config:1.3.3", - "org.eclipse.jetty:jetty-util:9.4.12.v20180830", - "com.typesafe.play:twirl-api_2.13:1.4.2", - "com.google.inject:guice:4.2.2", - "xalan:xalan:2.7.2", - "com.typesafe.play:build-link:2.7.3", - "org.specs2:specs2-mock_2.13:4.5.1", - "com.typesafe.play:play-server_2.13:2.7.3", - "com.google.guava:guava:27.1-jre", - "net.sourceforge.htmlunit:neko-htmlunit:2.33", - "com.typesafe.akka:akka-stream_2.13:2.5.23", - "org.specs2:specs2-common_2.13:4.7.0", - "org.fluentlenium:fluentlenium-core:3.7.1", - "commons-net:commons-net:3.6", - "org.scala-sbt:test-interface:1.0", - "com.google.inject.extensions:guice-assistedinject:4.2.2", - "org.specs2:specs2-junit_2.13:4.5.1", - "org.apache.httpcomponents:httpmime:4.5.6", - "org.objenesis:objenesis:2.6", - "xerces:xercesImpl:2.12.0", - "io.netty:netty-buffer:4.1.34.Final", - "io.netty:netty-transport:4.1.34.Final", - "org.scala-lang:scala-library:2.13.0", - "org.apache.commons:commons-text:1.4", - "org.eclipse.jetty.websocket:websocket-api:9.4.12.v20180830", - "com.typesafe.akka:akka-actor_2.13:2.5.24", - "org.codehaus.mojo:animal-sniffer-annotations:1.17", - "org.eclipse.jetty:jetty-xml:9.4.12.v20180830", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.34.Final", - "com.squareup.okhttp3:okhttp:3.11.0", - "org.eclipse.jetty:jetty-io:9.4.12.v20180830", - "com.google.j2objc:j2objc-annotations:1.1", - "org.apache.httpcomponents:httpcore:4.4.10", - "com.typesafe.play:play-guice_2.13:2.7.3", - "com.google.guava:failureaccess:1.0.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.8", - "org.scala-lang.modules:scala-xml_2.13:1.2.0", - "commons-codec:commons-codec:1.10", - "io.jsonwebtoken:jjwt:0.9.1", - "com.google.errorprone:error_prone_annotations:2.2.0", - "io.netty:netty-transport-native-unix-common:4.1.34.Final", - "net.bytebuddy:byte-buddy-agent:1.9.3", - "xalan:serializer:2.7.2", - "org.seleniumhq.selenium:selenium-firefox-driver:3.141.59", - "javax.inject:javax.inject:1", - "javax.transaction:jta:1.1", - "org.specs2:specs2-core_2.13:4.7.0", - "org.mockito:mockito-core:2.23.4", - "io.netty:netty-codec:4.1.34.Final", - "org.reactivestreams:reactive-streams:1.0.2", - "io.netty:netty-codec-http:4.1.34.Final", - "ch.qos.logback:logback-core:1.2.3", - "org.seleniumhq.selenium:selenium-support:3.141.59", - "com.typesafe.play:play-netty-server_2.13:2.7.3", - "com.typesafe.play:play-functional_2.13:2.7.4", - "com.fasterxml.jackson.core:jackson-annotations:2.9.8", - "org.eclipse.jetty.websocket:websocket-client:9.4.12.v20180830", - "org.apache.commons:commons-exec:1.3", - "joda-time:joda-time:2.10.1", - "com.fasterxml.jackson.core:jackson-core:2.9.8", - "org.eclipse.jetty:jetty-http:9.4.12.v20180830", - "xml-apis:xml-apis:1.4.01", - "org.checkerframework:checker-qual:2.5.2" - ], - "directDependencies": [ - "com.typesafe.play:play-test_2.13:2.7.3", - "org.specs2:specs2-mock_2.13:4.5.1", - "org.specs2:specs2-junit_2.13:4.5.1", - "org.scala-lang:scala-library:2.13.0", - "org.specs2:specs2-core_2.13:4.7.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-specs2_2.13/2.7.3/play-specs2_2.13-2.7.3.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-specs2_2.13/2.7.3/play-specs2_2.13-2.7.3.jar" - ], - "sha256": "d5621924c606048997fa42bd257ac5e71e1ba2e4d57c7824fe1678653f1892ff", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-specs2_2.13/2.7.3/play-specs2_2.13-2.7.3.jar" - }, - { - "coord": "com.typesafe.play:play-specs2_2.13:jar:sources:2.7.3", - "dependencies": [ - "io.netty:netty-transport:jar:sources:4.1.34.Final", - "org.specs2:specs2-fp_2.13:jar:sources:4.7.0", - "com.google.inject:guice:jar:sources:4.2.2", - "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.12.v20180830", - "io.netty:netty-common:jar:sources:4.1.34.Final", - "commons-codec:commons-codec:jar:sources:1.10", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "javax.transaction:jta:jar:sources:1.1", - "io.netty:netty-handler:jar:sources:4.1.34.Final", - "com.typesafe.play:play-streams_2.13:jar:sources:2.7.3", - "joda-time:joda-time:jar:sources:2.10.1", - "com.typesafe:ssl-config-core_2.13:jar:sources:0.4.0", - "com.typesafe.play:play-akka-http-server_2.13:jar:sources:2.7.3", - "com.typesafe.akka:akka-stream_2.13:jar:sources:2.5.23", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.8", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", - "org.fluentlenium:fluentlenium-core:jar:sources:3.7.1", - "javax.xml.bind:jaxb-api:jar:sources:2.3.1", - "org.apache.httpcomponents:httpclient:jar:sources:4.5.6", - "commons-logging:commons-logging:jar:sources:1.2", - "io.jsonwebtoken:jjwt:jar:sources:0.9.1", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "com.novocode:junit-interface:jar:sources:0.11", - "com.typesafe.akka:akka-protobuf_2.13:jar:sources:2.5.23", - "io.netty:netty-codec:jar:sources:4.1.34.Final", - "com.typesafe.akka:akka-parsing_2.13:jar:sources:10.1.8", - "org.eclipse.jetty:jetty-util:jar:sources:9.4.12.v20180830", - "com.typesafe:config:jar:sources:1.3.3", - "xerces:xercesImpl:jar:sources:2.12.0", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.2.0", - "aopalliance:aopalliance:jar:sources:1.0", - "ch.qos.logback:logback-core:jar:sources:1.2.3", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources:2.9.8", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17", - "net.bytebuddy:byte-buddy:jar:sources:1.9.3", - "commons-io:commons-io:jar:sources:2.6", - "com.google.inject.extensions:guice-assistedinject:jar:sources:4.2.2", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.34.Final", - "com.typesafe.play:play-server_2.13:jar:sources:2.7.3", - "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", - "org.slf4j:slf4j-api:jar:sources:1.7.26", - "ch.qos.logback:logback-classic:jar:sources:1.2.3", - "com.typesafe.akka:akka-http-core_2.13:jar:sources:10.1.8", - "net.bytebuddy:byte-buddy-agent:jar:sources:1.9.3", - "org.mockito:mockito-core:jar:sources:2.23.4", - "org.eclipse.jetty:jetty-client:jar:sources:9.4.12.v20180830", - "javax.inject:javax.inject:jar:sources:1", - "com.typesafe.play:play-netty-server_2.13:jar:sources:2.7.3", - "net.sourceforge.htmlunit:neko-htmlunit:jar:sources:2.33", - "com.typesafe.play:build-link:jar:sources:2.7.3", - "org.specs2:specs2-mock_2.13:jar:sources:4.5.1", - "commons-net:commons-net:jar:sources:3.6", - "com.typesafe.play:twirl-api_2.13:jar:sources:1.4.2", - "com.typesafe.akka:akka-actor_2.13:jar:sources:2.5.24", - "io.netty:netty-buffer:jar:sources:4.1.34.Final", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.12.v20180830", - "com.typesafe.play:play-test_2.13:jar:sources:2.7.3", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources:2.9.8", - "org.hamcrest:hamcrest-core:jar:sources:1.3", - "org.apache.commons:commons-exec:jar:sources:1.3", - "org.eclipse.jetty:jetty-xml:jar:sources:9.4.12.v20180830", - "com.typesafe.play:play-functional_2.13:jar:sources:2.7.4", - "org.eclipse.jetty:jetty-http:jar:sources:9.4.12.v20180830", - "xalan:serializer:jar:sources:2.7.2", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "org.seleniumhq.selenium:selenium-firefox-driver:jar:sources:3.141.59", - "net.sourceforge.htmlunit:htmlunit:jar:sources:2.33", - "org.apache.httpcomponents:httpmime:jar:sources:4.5.6", - "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", - "org.specs2:specs2-junit_2.13:jar:sources:4.5.1", - "io.netty:netty-resolver:jar:sources:4.1.34.Final", - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.3", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "org.slf4j:jcl-over-slf4j:jar:sources:1.7.26", - "org.specs2:specs2-common_2.13:jar:sources:4.7.0", - "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.12.v20180830", - "org.apache.commons:commons-lang3:jar:sources:3.8", - "org.seleniumhq.selenium:selenium-support:jar:sources:3.141.59", - "org.apache.commons:commons-text:jar:sources:1.4", - "org.scala-sbt:test-interface:jar:sources:1.0", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.8", - "xalan:xalan:jar:sources:2.7.2", - "com.typesafe.play:play-guice_2.13:jar:sources:2.7.3", - "org.atteo.classindex:classindex:jar:sources:3.4", - "org.specs2:specs2-matcher_2.13:jar:sources:4.7.0", - "org.slf4j:jul-to-slf4j:jar:sources:1.7.26", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.34.Final", - "io.netty:netty-codec-http:jar:sources:4.1.34.Final", - "com.typesafe.play:play-json_2.13:jar:sources:2.7.4", - "javax.activation:javax.activation-api:jar:sources:1.2.0", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.typesafe.play:play_2.13:jar:sources:2.7.3", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", - "com.google.errorprone:error_prone_annotations:jar:sources:2.2.0", - "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.12.v20180830", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:27.1-jre", - "org.seleniumhq.selenium:htmlunit-driver:jar:sources:2.33.3", - "org.apache.httpcomponents:httpcore:jar:sources:4.4.10", - "org.specs2:specs2-core_2.13:jar:sources:4.7.0", - "xml-apis:xml-apis:jar:sources:1.4.01", - "net.sourceforge.htmlunit:htmlunit-core-js:jar:sources:2.33", - "net.sourceforge.htmlunit:htmlunit-cssparser:jar:sources:1.2.0", - "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.5.23", - "junit:junit:jar:sources:4.12", - "com.typesafe.play:play-exceptions:jar:sources:2.7.3", - "com.typesafe.netty:netty-reactive-streams-http:jar:sources:2.0.3", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.8", - "org.scala-lang:scala-reflect:jar:sources:2.13.0", - "com.squareup.okio:okio:jar:sources:1.14.0", - "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources:0.9.0", - "org.objenesis:objenesis:jar:sources:2.6" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.specs2:specs2-mock_2.13:jar:sources:4.5.1", - "com.typesafe.play:play-test_2.13:jar:sources:2.7.3", - "org.specs2:specs2-junit_2.13:jar:sources:4.5.1", - "org.specs2:specs2-core_2.13:jar:sources:4.7.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-specs2_2.13/2.7.3/play-specs2_2.13-2.7.3-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-specs2_2.13/2.7.3/play-specs2_2.13-2.7.3-sources.jar" - ], - "sha256": "1e8890cd04a0fbf13644da55c5eb3d0afb5d53bcb382db741ee041e38afc1d35", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-specs2_2.13/2.7.3/play-specs2_2.13-2.7.3-sources.jar" - }, - { - "coord": "com.typesafe.play:play-streams_2.13:2.7.3", - "dependencies": [ - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "com.typesafe:ssl-config-core_2.13:0.4.0", - "com.typesafe.akka:akka-protobuf_2.13:2.5.23", - "org.scala-lang.modules:scala-java8-compat_2.13:0.9.0", - "com.typesafe:config:1.3.3", - "com.typesafe.akka:akka-stream_2.13:2.5.23", - "org.scala-lang:scala-library:2.13.0", - "com.typesafe.akka:akka-actor_2.13:2.5.24", - "org.reactivestreams:reactive-streams:1.0.2" - ], - "directDependencies": [ - "com.typesafe.akka:akka-stream_2.13:2.5.23", - "org.reactivestreams:reactive-streams:1.0.2", - "org.scala-lang:scala-library:2.13.0", - "org.scala-lang.modules:scala-java8-compat_2.13:0.9.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-streams_2.13/2.7.3/play-streams_2.13-2.7.3.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-streams_2.13/2.7.3/play-streams_2.13-2.7.3.jar" - ], - "sha256": "f1334821bb92b1c373f4c8c8fc49f57e52284d2fe4ff62d1601a53e8094f5247", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-streams_2.13/2.7.3/play-streams_2.13-2.7.3.jar" - }, - { - "coord": "com.typesafe.play:play-streams_2.13:jar:sources:2.7.3", - "dependencies": [ - "com.typesafe:ssl-config-core_2.13:jar:sources:0.4.0", - "com.typesafe.akka:akka-stream_2.13:jar:sources:2.5.23", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "com.typesafe.akka:akka-protobuf_2.13:jar:sources:2.5.23", - "com.typesafe:config:jar:sources:1.3.3", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "com.typesafe.akka:akka-actor_2.13:jar:sources:2.5.24", - "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources:0.9.0" - ], - "directDependencies": [ - "com.typesafe.akka:akka-stream_2.13:jar:sources:2.5.23", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources:0.9.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-streams_2.13/2.7.3/play-streams_2.13-2.7.3-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-streams_2.13/2.7.3/play-streams_2.13-2.7.3-sources.jar" - ], - "sha256": "d514157f354afb4909a05b4577383b75b5e0bdbfe72676ae477729ce2ae4734e", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-streams_2.13/2.7.3/play-streams_2.13-2.7.3-sources.jar" - }, - { - "coord": "com.typesafe.play:play-test_2.13:2.7.3", - "dependencies": [ - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "org.slf4j:jcl-over-slf4j:1.7.26", - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "com.typesafe.play:play-streams_2.13:2.7.3", - "com.squareup.okio:okio:1.14.0", - "net.sourceforge.htmlunit:htmlunit:2.33", - "com.typesafe.play:play_2.13:2.7.3", - "com.typesafe.akka:akka-slf4j_2.13:2.5.23", - "com.typesafe.play:play-exceptions:2.7.3", - "org.scala-lang:scala-reflect:2.13.0", - "javax.xml.bind:jaxb-api:2.3.1", - "org.atteo.classindex:classindex:3.4", - "io.netty:netty-handler:4.1.34.Final", - "net.sourceforge.htmlunit:htmlunit-cssparser:1.2.0", - "com.fasterxml.jackson.core:jackson-databind:2.9.8", - "io.netty:netty-common:4.1.34.Final", - "org.slf4j:jul-to-slf4j:1.7.26", - "com.novocode:junit-interface:0.11", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.8", - "commons-logging:commons-logging:1.2", - "commons-io:commons-io:2.6", - "org.seleniumhq.selenium:htmlunit-driver:2.33.3", - "org.seleniumhq.selenium:selenium-remote-driver:3.141.59", - "com.typesafe:ssl-config-core_2.13:0.4.0", - "com.google.code.findbugs:jsr305:3.0.2", - "org.apache.commons:commons-lang3:3.8", - "com.typesafe.play:play-json_2.13:2.7.4", - "ch.qos.logback:logback-classic:1.2.3", - "com.typesafe.play:play-akka-http-server_2.13:2.7.3", - "com.typesafe.akka:akka-http-core_2.13:10.1.8", - "javax.activation:javax.activation-api:1.2.0", - "com.typesafe.netty:netty-reactive-streams:2.0.3", - "com.typesafe.akka:akka-protobuf_2.13:2.5.23", - "org.slf4j:slf4j-api:1.7.26", - "com.typesafe.netty:netty-reactive-streams-http:2.0.3", - "junit:junit:4.12", - "io.netty:netty-resolver:4.1.34.Final", - "net.sourceforge.htmlunit:htmlunit-core-js:2.33", - "aopalliance:aopalliance:1.0", - "net.bytebuddy:byte-buddy:1.9.3", - "org.hamcrest:hamcrest-core:1.3", - "org.scala-lang.modules:scala-java8-compat_2.13:0.9.0", - "org.eclipse.jetty.websocket:websocket-common:9.4.12.v20180830", - "org.apache.httpcomponents:httpclient:4.5.6", - "org.seleniumhq.selenium:selenium-api:3.141.59", - "com.typesafe.akka:akka-parsing_2.13:10.1.8", - "org.eclipse.jetty:jetty-client:9.4.12.v20180830", - "com.typesafe:config:1.3.3", - "org.eclipse.jetty:jetty-util:9.4.12.v20180830", - "com.typesafe.play:twirl-api_2.13:1.4.2", - "com.google.inject:guice:4.2.2", - "xalan:xalan:2.7.2", - "com.typesafe.play:build-link:2.7.3", - "com.typesafe.play:play-server_2.13:2.7.3", - "com.google.guava:guava:27.1-jre", - "net.sourceforge.htmlunit:neko-htmlunit:2.33", - "com.typesafe.akka:akka-stream_2.13:2.5.23", - "org.fluentlenium:fluentlenium-core:3.7.1", - "commons-net:commons-net:3.6", - "org.scala-sbt:test-interface:1.0", - "com.google.inject.extensions:guice-assistedinject:4.2.2", - "org.apache.httpcomponents:httpmime:4.5.6", - "xerces:xercesImpl:2.12.0", - "io.netty:netty-buffer:4.1.34.Final", - "io.netty:netty-transport:4.1.34.Final", - "org.scala-lang:scala-library:2.13.0", - "org.apache.commons:commons-text:1.4", - "org.eclipse.jetty.websocket:websocket-api:9.4.12.v20180830", - "com.typesafe.akka:akka-actor_2.13:2.5.24", - "org.codehaus.mojo:animal-sniffer-annotations:1.17", - "org.eclipse.jetty:jetty-xml:9.4.12.v20180830", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.34.Final", - "com.squareup.okhttp3:okhttp:3.11.0", - "org.eclipse.jetty:jetty-io:9.4.12.v20180830", - "com.google.j2objc:j2objc-annotations:1.1", - "org.apache.httpcomponents:httpcore:4.4.10", - "com.typesafe.play:play-guice_2.13:2.7.3", - "com.google.guava:failureaccess:1.0.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.8", - "org.scala-lang.modules:scala-xml_2.13:1.2.0", - "commons-codec:commons-codec:1.10", - "io.jsonwebtoken:jjwt:0.9.1", - "com.google.errorprone:error_prone_annotations:2.2.0", - "io.netty:netty-transport-native-unix-common:4.1.34.Final", - "xalan:serializer:2.7.2", - "org.seleniumhq.selenium:selenium-firefox-driver:3.141.59", - "javax.inject:javax.inject:1", - "javax.transaction:jta:1.1", - "io.netty:netty-codec:4.1.34.Final", - "org.reactivestreams:reactive-streams:1.0.2", - "io.netty:netty-codec-http:4.1.34.Final", - "ch.qos.logback:logback-core:1.2.3", - "org.seleniumhq.selenium:selenium-support:3.141.59", - "com.typesafe.play:play-netty-server_2.13:2.7.3", - "com.typesafe.play:play-functional_2.13:2.7.4", - "com.fasterxml.jackson.core:jackson-annotations:2.9.8", - "org.eclipse.jetty.websocket:websocket-client:9.4.12.v20180830", - "org.apache.commons:commons-exec:1.3", - "joda-time:joda-time:2.10.1", - "com.fasterxml.jackson.core:jackson-core:2.9.8", - "org.eclipse.jetty:jetty-http:9.4.12.v20180830", - "xml-apis:xml-apis:1.4.01", - "org.checkerframework:checker-qual:2.5.2" - ], - "directDependencies": [ - "com.novocode:junit-interface:0.11", - "org.seleniumhq.selenium:htmlunit-driver:2.33.3", - "com.google.code.findbugs:jsr305:3.0.2", - "ch.qos.logback:logback-classic:1.2.3", - "com.typesafe.play:play-akka-http-server_2.13:2.7.3", - "junit:junit:4.12", - "org.seleniumhq.selenium:selenium-api:3.141.59", - "com.google.inject:guice:4.2.2", - "com.google.guava:guava:27.1-jre", - "org.fluentlenium:fluentlenium-core:3.7.1", - "com.google.inject.extensions:guice-assistedinject:4.2.2", - "org.scala-lang:scala-library:2.13.0", - "com.typesafe.play:play-guice_2.13:2.7.3", - "org.seleniumhq.selenium:selenium-firefox-driver:3.141.59", - "org.seleniumhq.selenium:selenium-support:3.141.59", - "com.typesafe.play:play-netty-server_2.13:2.7.3" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-test_2.13/2.7.3/play-test_2.13-2.7.3.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-test_2.13/2.7.3/play-test_2.13-2.7.3.jar" - ], - "sha256": "ca7f77c99b7b39abbd4760b6e8f68a5ad1cddffe9a49cdc6d2177cca2a6d407b", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-test_2.13/2.7.3/play-test_2.13-2.7.3.jar" - }, - { - "coord": "com.typesafe.play:play-test_2.13:jar:sources:2.7.3", - "dependencies": [ - "io.netty:netty-transport:jar:sources:4.1.34.Final", - "com.google.inject:guice:jar:sources:4.2.2", - "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.12.v20180830", - "io.netty:netty-common:jar:sources:4.1.34.Final", - "commons-codec:commons-codec:jar:sources:1.10", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "javax.transaction:jta:jar:sources:1.1", - "io.netty:netty-handler:jar:sources:4.1.34.Final", - "com.typesafe.play:play-streams_2.13:jar:sources:2.7.3", - "joda-time:joda-time:jar:sources:2.10.1", - "com.typesafe:ssl-config-core_2.13:jar:sources:0.4.0", - "com.typesafe.play:play-akka-http-server_2.13:jar:sources:2.7.3", - "com.typesafe.akka:akka-stream_2.13:jar:sources:2.5.23", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.8", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", - "org.fluentlenium:fluentlenium-core:jar:sources:3.7.1", - "javax.xml.bind:jaxb-api:jar:sources:2.3.1", - "org.apache.httpcomponents:httpclient:jar:sources:4.5.6", - "commons-logging:commons-logging:jar:sources:1.2", - "io.jsonwebtoken:jjwt:jar:sources:0.9.1", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "com.novocode:junit-interface:jar:sources:0.11", - "com.typesafe.akka:akka-protobuf_2.13:jar:sources:2.5.23", - "io.netty:netty-codec:jar:sources:4.1.34.Final", - "com.typesafe.akka:akka-parsing_2.13:jar:sources:10.1.8", - "org.eclipse.jetty:jetty-util:jar:sources:9.4.12.v20180830", - "com.typesafe:config:jar:sources:1.3.3", - "xerces:xercesImpl:jar:sources:2.12.0", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.2.0", - "aopalliance:aopalliance:jar:sources:1.0", - "ch.qos.logback:logback-core:jar:sources:1.2.3", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources:2.9.8", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17", - "net.bytebuddy:byte-buddy:jar:sources:1.9.3", - "commons-io:commons-io:jar:sources:2.6", - "com.google.inject.extensions:guice-assistedinject:jar:sources:4.2.2", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.34.Final", - "com.typesafe.play:play-server_2.13:jar:sources:2.7.3", - "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", - "org.slf4j:slf4j-api:jar:sources:1.7.26", - "ch.qos.logback:logback-classic:jar:sources:1.2.3", - "com.typesafe.akka:akka-http-core_2.13:jar:sources:10.1.8", - "org.eclipse.jetty:jetty-client:jar:sources:9.4.12.v20180830", - "javax.inject:javax.inject:jar:sources:1", - "com.typesafe.play:play-netty-server_2.13:jar:sources:2.7.3", - "net.sourceforge.htmlunit:neko-htmlunit:jar:sources:2.33", - "com.typesafe.play:build-link:jar:sources:2.7.3", - "commons-net:commons-net:jar:sources:3.6", - "com.typesafe.play:twirl-api_2.13:jar:sources:1.4.2", - "com.typesafe.akka:akka-actor_2.13:jar:sources:2.5.24", - "io.netty:netty-buffer:jar:sources:4.1.34.Final", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.12.v20180830", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources:2.9.8", - "org.hamcrest:hamcrest-core:jar:sources:1.3", - "org.apache.commons:commons-exec:jar:sources:1.3", - "org.eclipse.jetty:jetty-xml:jar:sources:9.4.12.v20180830", - "com.typesafe.play:play-functional_2.13:jar:sources:2.7.4", - "org.eclipse.jetty:jetty-http:jar:sources:9.4.12.v20180830", - "xalan:serializer:jar:sources:2.7.2", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "org.seleniumhq.selenium:selenium-firefox-driver:jar:sources:3.141.59", - "net.sourceforge.htmlunit:htmlunit:jar:sources:2.33", - "org.apache.httpcomponents:httpmime:jar:sources:4.5.6", - "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", - "io.netty:netty-resolver:jar:sources:4.1.34.Final", - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.3", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "org.slf4j:jcl-over-slf4j:jar:sources:1.7.26", - "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.12.v20180830", - "org.apache.commons:commons-lang3:jar:sources:3.8", - "org.seleniumhq.selenium:selenium-support:jar:sources:3.141.59", - "org.apache.commons:commons-text:jar:sources:1.4", - "org.scala-sbt:test-interface:jar:sources:1.0", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.8", - "xalan:xalan:jar:sources:2.7.2", - "com.typesafe.play:play-guice_2.13:jar:sources:2.7.3", - "org.atteo.classindex:classindex:jar:sources:3.4", - "org.slf4j:jul-to-slf4j:jar:sources:1.7.26", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.34.Final", - "io.netty:netty-codec-http:jar:sources:4.1.34.Final", - "com.typesafe.play:play-json_2.13:jar:sources:2.7.4", - "javax.activation:javax.activation-api:jar:sources:1.2.0", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.typesafe.play:play_2.13:jar:sources:2.7.3", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", - "com.google.errorprone:error_prone_annotations:jar:sources:2.2.0", - "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.12.v20180830", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:27.1-jre", - "org.seleniumhq.selenium:htmlunit-driver:jar:sources:2.33.3", - "org.apache.httpcomponents:httpcore:jar:sources:4.4.10", - "xml-apis:xml-apis:jar:sources:1.4.01", - "net.sourceforge.htmlunit:htmlunit-core-js:jar:sources:2.33", - "net.sourceforge.htmlunit:htmlunit-cssparser:jar:sources:1.2.0", - "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.5.23", - "junit:junit:jar:sources:4.12", - "com.typesafe.play:play-exceptions:jar:sources:2.7.3", - "com.typesafe.netty:netty-reactive-streams-http:jar:sources:2.0.3", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.8", - "org.scala-lang:scala-reflect:jar:sources:2.13.0", - "com.squareup.okio:okio:jar:sources:1.14.0", - "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources:0.9.0" - ], - "directDependencies": [ - "com.google.inject:guice:jar:sources:4.2.2", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.typesafe.play:play-akka-http-server_2.13:jar:sources:2.7.3", - "org.fluentlenium:fluentlenium-core:jar:sources:3.7.1", - "com.novocode:junit-interface:jar:sources:0.11", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "com.google.inject.extensions:guice-assistedinject:jar:sources:4.2.2", - "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", - "ch.qos.logback:logback-classic:jar:sources:1.2.3", - "com.typesafe.play:play-netty-server_2.13:jar:sources:2.7.3", - "org.seleniumhq.selenium:selenium-firefox-driver:jar:sources:3.141.59", - "org.seleniumhq.selenium:selenium-support:jar:sources:3.141.59", - "com.typesafe.play:play-guice_2.13:jar:sources:2.7.3", - "com.google.guava:guava:jar:sources:27.1-jre", - "org.seleniumhq.selenium:htmlunit-driver:jar:sources:2.33.3", - "junit:junit:jar:sources:4.12" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-test_2.13/2.7.3/play-test_2.13-2.7.3-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-test_2.13/2.7.3/play-test_2.13-2.7.3-sources.jar" - ], - "sha256": "ccf5f199ab2163adc50e3a4a90a10eaf46dbc199875942ab70d42c2fcec6ba3a", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-test_2.13/2.7.3/play-test_2.13-2.7.3-sources.jar" - }, - { - "coord": "com.typesafe.play:play_2.13:2.7.3", - "dependencies": [ - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "org.slf4j:jcl-over-slf4j:1.7.26", - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "com.typesafe.play:play-streams_2.13:2.7.3", - "com.typesafe.akka:akka-slf4j_2.13:2.5.23", - "com.typesafe.play:play-exceptions:2.7.3", - "org.scala-lang:scala-reflect:2.13.0", - "javax.xml.bind:jaxb-api:2.3.1", - "com.fasterxml.jackson.core:jackson-databind:2.9.8", - "org.slf4j:jul-to-slf4j:1.7.26", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.8", - "com.typesafe:ssl-config-core_2.13:0.4.0", - "com.google.code.findbugs:jsr305:3.0.2", - "com.typesafe.play:play-json_2.13:2.7.4", - "javax.activation:javax.activation-api:1.2.0", - "com.typesafe.akka:akka-protobuf_2.13:2.5.23", - "org.slf4j:slf4j-api:1.7.26", - "org.scala-lang.modules:scala-java8-compat_2.13:0.9.0", - "com.typesafe:config:1.3.3", - "com.typesafe.play:twirl-api_2.13:1.4.2", - "com.typesafe.play:build-link:2.7.3", - "com.google.guava:guava:27.1-jre", - "com.typesafe.akka:akka-stream_2.13:2.5.23", - "org.scala-lang:scala-library:2.13.0", - "com.typesafe.akka:akka-actor_2.13:2.5.24", - "org.codehaus.mojo:animal-sniffer-annotations:1.17", - "com.google.j2objc:j2objc-annotations:1.1", - "com.google.guava:failureaccess:1.0.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.8", - "org.scala-lang.modules:scala-xml_2.13:1.2.0", - "io.jsonwebtoken:jjwt:0.9.1", - "com.google.errorprone:error_prone_annotations:2.2.0", - "javax.inject:javax.inject:1", - "javax.transaction:jta:1.1", - "org.reactivestreams:reactive-streams:1.0.2", - "com.typesafe.play:play-functional_2.13:2.7.4", - "com.fasterxml.jackson.core:jackson-annotations:2.9.8", - "joda-time:joda-time:2.10.1", - "com.fasterxml.jackson.core:jackson-core:2.9.8", - "org.checkerframework:checker-qual:2.5.2" - ], - "directDependencies": [ - "org.slf4j:jcl-over-slf4j:1.7.26", - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "com.typesafe.play:play-streams_2.13:2.7.3", - "com.typesafe.akka:akka-slf4j_2.13:2.5.23", - "org.scala-lang:scala-reflect:2.13.0", - "javax.xml.bind:jaxb-api:2.3.1", - "com.fasterxml.jackson.core:jackson-databind:2.9.8", - "org.slf4j:jul-to-slf4j:1.7.26", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.8", - "com.typesafe:ssl-config-core_2.13:0.4.0", - "com.typesafe.play:play-json_2.13:2.7.4", - "org.slf4j:slf4j-api:1.7.26", - "org.scala-lang.modules:scala-java8-compat_2.13:0.9.0", - "com.typesafe.play:twirl-api_2.13:1.4.2", - "com.typesafe.play:build-link:2.7.3", - "com.google.guava:guava:27.1-jre", - "org.scala-lang:scala-library:2.13.0", - "com.typesafe.akka:akka-actor_2.13:2.5.24", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.8", - "io.jsonwebtoken:jjwt:0.9.1", - "javax.inject:javax.inject:1", - "javax.transaction:jta:1.1", - "com.fasterxml.jackson.core:jackson-annotations:2.9.8", - "com.fasterxml.jackson.core:jackson-core:2.9.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play_2.13/2.7.3/play_2.13-2.7.3.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play_2.13/2.7.3/play_2.13-2.7.3.jar" - ], - "sha256": "08a420c1aed60a6ecccdb091795822a92f70c8d21431b21643521a8b592ca19b", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play_2.13/2.7.3/play_2.13-2.7.3.jar" - }, - { - "coord": "com.typesafe.play:play_2.13:jar:sources:2.7.3", - "dependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "javax.transaction:jta:jar:sources:1.1", - "com.typesafe.play:play-streams_2.13:jar:sources:2.7.3", - "joda-time:joda-time:jar:sources:2.10.1", - "com.typesafe:ssl-config-core_2.13:jar:sources:0.4.0", - "com.typesafe.akka:akka-stream_2.13:jar:sources:2.5.23", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.8", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", - "javax.xml.bind:jaxb-api:jar:sources:2.3.1", - "io.jsonwebtoken:jjwt:jar:sources:0.9.1", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "com.typesafe.akka:akka-protobuf_2.13:jar:sources:2.5.23", - "com.typesafe:config:jar:sources:1.3.3", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.2.0", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources:2.9.8", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17", - "org.slf4j:slf4j-api:jar:sources:1.7.26", - "javax.inject:javax.inject:jar:sources:1", - "com.typesafe.play:build-link:jar:sources:2.7.3", - "com.typesafe.play:twirl-api_2.13:jar:sources:1.4.2", - "com.typesafe.akka:akka-actor_2.13:jar:sources:2.5.24", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources:2.9.8", - "com.typesafe.play:play-functional_2.13:jar:sources:2.7.4", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "org.slf4j:jcl-over-slf4j:jar:sources:1.7.26", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.8", - "org.slf4j:jul-to-slf4j:jar:sources:1.7.26", - "com.typesafe.play:play-json_2.13:jar:sources:2.7.4", - "javax.activation:javax.activation-api:jar:sources:1.2.0", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.errorprone:error_prone_annotations:jar:sources:2.2.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:27.1-jre", - "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.5.23", - "com.typesafe.play:play-exceptions:jar:sources:2.7.3", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.8", - "org.scala-lang:scala-reflect:jar:sources:2.13.0", - "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources:0.9.0" - ], - "directDependencies": [ - "javax.transaction:jta:jar:sources:1.1", - "com.typesafe.play:play-streams_2.13:jar:sources:2.7.3", - "com.typesafe:ssl-config-core_2.13:jar:sources:0.4.0", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.8", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", - "javax.xml.bind:jaxb-api:jar:sources:2.3.1", - "io.jsonwebtoken:jjwt:jar:sources:0.9.1", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources:2.9.8", - "org.slf4j:slf4j-api:jar:sources:1.7.26", - "javax.inject:javax.inject:jar:sources:1", - "com.typesafe.play:build-link:jar:sources:2.7.3", - "com.typesafe.play:twirl-api_2.13:jar:sources:1.4.2", - "com.typesafe.akka:akka-actor_2.13:jar:sources:2.5.24", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources:2.9.8", - "org.slf4j:jcl-over-slf4j:jar:sources:1.7.26", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.8", - "org.slf4j:jul-to-slf4j:jar:sources:1.7.26", - "com.typesafe.play:play-json_2.13:jar:sources:2.7.4", - "com.google.guava:guava:jar:sources:27.1-jre", - "com.typesafe.akka:akka-slf4j_2.13:jar:sources:2.5.23", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.8", - "org.scala-lang:scala-reflect:jar:sources:2.13.0", - "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources:0.9.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play_2.13/2.7.3/play_2.13-2.7.3-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play_2.13/2.7.3/play_2.13-2.7.3-sources.jar" - ], - "sha256": "e22c61c2ff3b632428ba1a3ba934fb8a12365ba4c45d26583b3e23f212b3affd", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play_2.13/2.7.3/play_2.13-2.7.3-sources.jar" - }, - { - "coord": "com.typesafe.play:twirl-api_2.13:1.4.2", - "dependencies": [ - "org.scala-lang:scala-library:2.13.0", - "org.scala-lang.modules:scala-xml_2.13:1.2.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.13.0", - "org.scala-lang.modules:scala-xml_2.13:1.2.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.13/1.4.2/twirl-api_2.13-1.4.2.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.13/1.4.2/twirl-api_2.13-1.4.2.jar" - ], - "sha256": "0c5b389e6ede93da84de8f777fb12de0f87990b5cb5d86e48a49b289800281ef", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.13/1.4.2/twirl-api_2.13-1.4.2.jar" - }, - { - "coord": "com.typesafe.play:twirl-api_2.13:jar:sources:1.4.2", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.2.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.2.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.13/1.4.2/twirl-api_2.13-1.4.2-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.13/1.4.2/twirl-api_2.13-1.4.2-sources.jar" - ], - "sha256": "96db4825489caa7d3cb218a3b5a405d45fff702bb5c06923019ed8a512b479a7", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.13/1.4.2/twirl-api_2.13-1.4.2-sources.jar" - }, - { - "coord": "com.typesafe:config:1.3.3", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/config/1.3.3/config-1.3.3.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/config/1.3.3/config-1.3.3.jar" - ], - "sha256": "b5f1d6071f1548d05be82f59f9039c7d37a1787bd8e3c677e31ee275af4a4621", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/config/1.3.3/config-1.3.3.jar" - }, - { - "coord": "com.typesafe:config:jar:sources:1.3.3", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/config/1.3.3/config-1.3.3-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/config/1.3.3/config-1.3.3-sources.jar" - ], - "sha256": "fcd7c3070417c776b313cc559665c035d74e3a2b40a89bbb0e9bff6e567c9cc8", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/config/1.3.3/config-1.3.3-sources.jar" - }, - { - "coord": "com.typesafe:ssl-config-core_2.13:0.4.0", - "dependencies": [ - "com.typesafe:config:1.3.3", - "org.scala-lang:scala-library:2.13.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2" - ], - "directDependencies": [ - "com.typesafe:config:1.3.3", - "org.scala-lang:scala-library:2.13.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/ssl-config-core_2.13/0.4.0/ssl-config-core_2.13-0.4.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/ssl-config-core_2.13/0.4.0/ssl-config-core_2.13-0.4.0.jar" - ], - "sha256": "12ef82c2d7c069d575f53d263b0bc8c06c55bbad26edfd73ae59f066eab6bf83", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/ssl-config-core_2.13/0.4.0/ssl-config-core_2.13-0.4.0.jar" - }, - { - "coord": "com.typesafe:ssl-config-core_2.13:jar:sources:0.4.0", - "dependencies": [ - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "com.typesafe:config:jar:sources:1.3.3" - ], - "directDependencies": [ - "com.typesafe:config:jar:sources:1.3.3", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/ssl-config-core_2.13/0.4.0/ssl-config-core_2.13-0.4.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/ssl-config-core_2.13/0.4.0/ssl-config-core_2.13-0.4.0-sources.jar" - ], - "sha256": "07f51daa61fc75277c1a579c7be87a2bbce11a619be55acea81ace1289fa5a00", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/ssl-config-core_2.13/0.4.0/ssl-config-core_2.13-0.4.0-sources.jar" - }, - { - "coord": "commons-codec:commons-codec:1.10", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.jboss.netty:netty" - ], - "file": "v1/https/repo.maven.apache.org/maven2/commons-codec/commons-codec/1.10/commons-codec-1.10.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.10/commons-codec-1.10.jar" - ], - "sha256": "4241dfa94e711d435f29a4604a3e2de5c4aa3c165e23bd066be6fc1fc4309569", - "url": "https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.10/commons-codec-1.10.jar" - }, - { - "coord": "commons-codec:commons-codec:jar:sources:1.10", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/commons-codec/commons-codec/1.10/commons-codec-1.10-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.10/commons-codec-1.10-sources.jar" - ], - "sha256": "dfae68268ce86f1a18fc45b99317c13d6c9d252f001d37961e79a51076808986", - "url": "https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.10/commons-codec-1.10-sources.jar" - }, - { - "coord": "commons-io:commons-io:2.6", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar" - ], - "sha256": "f877d304660ac2a142f3865badfc971dec7ed73c747c7f8d5d2f5139ca736513", - "url": "https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar" - }, - { - "coord": "commons-io:commons-io:jar:sources:2.6", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.jboss.netty:netty" - ], - "file": "v1/https/repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6-sources.jar" - ], - "sha256": "71bc251eb4bd011b60b5ce6adc8f473de10e4851207a40c14434604b288b31bf", - "url": "https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6-sources.jar" - }, - { - "coord": "commons-logging:commons-logging:1.2", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.jboss.netty:netty" - ], - "file": "v1/https/repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar" - ], - "sha256": "daddea1ea0be0f56978ab3006b8ac92834afeefbd9b7e4e6316fca57df0fa636", - "url": "https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar" - }, - { - "coord": "commons-logging:commons-logging:jar:sources:1.2", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2-sources.jar" - ], - "sha256": "44347acfe5860461728e9cb33251e97345be36f8a0dfd5c5130c172559455f41", - "url": "https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2-sources.jar" - }, - { - "coord": "commons-net:commons-net:3.6", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/commons-net/commons-net/3.6/commons-net-3.6.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/commons-net/commons-net/3.6/commons-net-3.6.jar" - ], - "sha256": "d3b3866c61a47ba3bf040ab98e60c3010d027da0e7a99e1755e407dd47bc2702", - "url": "https://repo.maven.apache.org/maven2/commons-net/commons-net/3.6/commons-net-3.6.jar" - }, - { - "coord": "commons-net:commons-net:jar:sources:3.6", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/commons-net/commons-net/3.6/commons-net-3.6-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/commons-net/commons-net/3.6/commons-net-3.6-sources.jar" - ], - "sha256": "5024a2b980df7bec5f837177775ebf0e5bec25374deaca65f02571fe65ed52f5", - "url": "https://repo.maven.apache.org/maven2/commons-net/commons-net/3.6/commons-net-3.6-sources.jar" - }, - { - "coord": "io.jsonwebtoken:jjwt:0.9.1", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-databind:2.9.8", - "com.fasterxml.jackson.core:jackson-core:2.9.8", - "com.fasterxml.jackson.core:jackson-annotations:2.9.8" - ], - "directDependencies": [ - "com.fasterxml.jackson.core:jackson-databind:2.9.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.jar" - ], - "sha256": "56e254d6a8d2306dc93e9ae2d81bf841481637f98b84847470c06cf71160d143", - "url": "https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.jar" - }, - { - "coord": "io.jsonwebtoken:jjwt:jar:sources:0.9.1", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.8", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.8", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.8" - ], - "directDependencies": [ - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1-sources.jar" - ], - "sha256": "0b801d167d11b57ec00094570bfdfcd52107f863e6e47428ba9640c3225fcc67", - "url": "https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1-sources.jar" - }, - { - "coord": "io.netty:netty-buffer:4.1.34.Final", - "dependencies": [ - "io.netty:netty-common:4.1.34.Final" - ], - "directDependencies": [ - "io.netty:netty-common:4.1.34.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.34.Final/netty-buffer-4.1.34.Final.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.34.Final/netty-buffer-4.1.34.Final.jar" - ], - "sha256": "39dfe88df8505fd01fbf9c1dbb6b6fa9b0297e453c3dc4ce039ea578aea2eaa3", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.34.Final/netty-buffer-4.1.34.Final.jar" - }, - { - "coord": "io.netty:netty-buffer:jar:sources:4.1.34.Final", - "dependencies": [ - "io.netty:netty-common:jar:sources:4.1.34.Final" - ], - "directDependencies": [ - "io.netty:netty-common:jar:sources:4.1.34.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.34.Final/netty-buffer-4.1.34.Final-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.34.Final/netty-buffer-4.1.34.Final-sources.jar" - ], - "sha256": "3fec61ea984e4342ef74221afe9bc597303e3b79dc6b345a55e9dc4f401aa04b", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.34.Final/netty-buffer-4.1.34.Final-sources.jar" - }, - { - "coord": "io.netty:netty-codec-http:4.1.34.Final", - "dependencies": [ - "io.netty:netty-handler:4.1.34.Final", - "io.netty:netty-common:4.1.34.Final", - "io.netty:netty-resolver:4.1.34.Final", - "io.netty:netty-buffer:4.1.34.Final", - "io.netty:netty-transport:4.1.34.Final", - "io.netty:netty-codec:4.1.34.Final" - ], - "directDependencies": [ - "io.netty:netty-handler:4.1.34.Final", - "io.netty:netty-common:4.1.34.Final", - "io.netty:netty-buffer:4.1.34.Final", - "io.netty:netty-transport:4.1.34.Final", - "io.netty:netty-codec:4.1.34.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.34.Final/netty-codec-http-4.1.34.Final.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.34.Final/netty-codec-http-4.1.34.Final.jar" - ], - "sha256": "5df5556ef6b0e7ce7c72a359e4ca774fcdf8d8fe12f0b6332715eaa44cfe41f8", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.34.Final/netty-codec-http-4.1.34.Final.jar" - }, - { - "coord": "io.netty:netty-codec-http:jar:sources:4.1.34.Final", - "dependencies": [ - "io.netty:netty-transport:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.34.Final", - "io.netty:netty-handler:jar:sources:4.1.34.Final", - "io.netty:netty-codec:jar:sources:4.1.34.Final", - "io.netty:netty-buffer:jar:sources:4.1.34.Final", - "io.netty:netty-resolver:jar:sources:4.1.34.Final" - ], - "directDependencies": [ - "io.netty:netty-transport:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.34.Final", - "io.netty:netty-handler:jar:sources:4.1.34.Final", - "io.netty:netty-codec:jar:sources:4.1.34.Final", - "io.netty:netty-buffer:jar:sources:4.1.34.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.34.Final/netty-codec-http-4.1.34.Final-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.34.Final/netty-codec-http-4.1.34.Final-sources.jar" - ], - "sha256": "6a0f59f867fdbf4495d1659dde883504df0c5c84f625cb4030870ecb0e19a9b2", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.34.Final/netty-codec-http-4.1.34.Final-sources.jar" - }, - { - "coord": "io.netty:netty-codec:4.1.34.Final", - "dependencies": [ - "io.netty:netty-buffer:4.1.34.Final", - "io.netty:netty-transport:4.1.34.Final", - "io.netty:netty-common:4.1.34.Final", - "io.netty:netty-resolver:4.1.34.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:4.1.34.Final", - "io.netty:netty-common:4.1.34.Final", - "io.netty:netty-transport:4.1.34.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.34.Final/netty-codec-4.1.34.Final.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.34.Final/netty-codec-4.1.34.Final.jar" - ], - "sha256": "52e9eeb3638a8ed0911c72a508c05fa4f9d3391125eae46f287d3a8a0776211d", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.34.Final/netty-codec-4.1.34.Final.jar" - }, - { - "coord": "io.netty:netty-codec:jar:sources:4.1.34.Final", - "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.34.Final", - "io.netty:netty-resolver:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.34.Final", - "io.netty:netty-transport:jar:sources:4.1.34.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.34.Final", - "io.netty:netty-transport:jar:sources:4.1.34.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.34.Final/netty-codec-4.1.34.Final-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.34.Final/netty-codec-4.1.34.Final-sources.jar" - ], - "sha256": "e28e65623bdb8469007992adb40dce76931554c4786f9d9a22f6a10017362f68", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.34.Final/netty-codec-4.1.34.Final-sources.jar" - }, - { - "coord": "io.netty:netty-common:4.1.34.Final", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-common/4.1.34.Final/netty-common-4.1.34.Final.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.34.Final/netty-common-4.1.34.Final.jar" - ], - "sha256": "122931117eacf370b054d0e8a2411efa81de4956a6c3f938b0f0eb915969a425", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.34.Final/netty-common-4.1.34.Final.jar" - }, - { - "coord": "io.netty:netty-common:jar:sources:4.1.34.Final", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-common/4.1.34.Final/netty-common-4.1.34.Final-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.34.Final/netty-common-4.1.34.Final-sources.jar" - ], - "sha256": "0944a5875f7c6852433e265310cc5227dae14e7238ac3d2ba86f2f4405dda542", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.34.Final/netty-common-4.1.34.Final-sources.jar" - }, - { - "coord": "io.netty:netty-handler:4.1.34.Final", - "dependencies": [ - "io.netty:netty-common:4.1.34.Final", - "io.netty:netty-resolver:4.1.34.Final", - "io.netty:netty-buffer:4.1.34.Final", - "io.netty:netty-transport:4.1.34.Final", - "io.netty:netty-codec:4.1.34.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:4.1.34.Final", - "io.netty:netty-codec:4.1.34.Final", - "io.netty:netty-common:4.1.34.Final", - "io.netty:netty-transport:4.1.34.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.34.Final/netty-handler-4.1.34.Final.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.34.Final/netty-handler-4.1.34.Final.jar" - ], - "sha256": "035616801fe9894ca2490832cf9976536dac740f41e90de1cdd4ba46f04263d1", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.34.Final/netty-handler-4.1.34.Final.jar" - }, - { - "coord": "io.netty:netty-handler:jar:sources:4.1.34.Final", - "dependencies": [ - "io.netty:netty-transport:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.34.Final", - "io.netty:netty-codec:jar:sources:4.1.34.Final", - "io.netty:netty-buffer:jar:sources:4.1.34.Final", - "io.netty:netty-resolver:jar:sources:4.1.34.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.34.Final", - "io.netty:netty-codec:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.34.Final", - "io.netty:netty-transport:jar:sources:4.1.34.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.34.Final/netty-handler-4.1.34.Final-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.34.Final/netty-handler-4.1.34.Final-sources.jar" - ], - "sha256": "135fec6fa77276aa63e1b7dca0e57beec2460c83fa255cad4a54ac48f6ed3f52", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.34.Final/netty-handler-4.1.34.Final-sources.jar" - }, - { - "coord": "io.netty:netty-resolver:4.1.34.Final", - "dependencies": [ - "io.netty:netty-common:4.1.34.Final" - ], - "directDependencies": [ - "io.netty:netty-common:4.1.34.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.34.Final/netty-resolver-4.1.34.Final.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.34.Final/netty-resolver-4.1.34.Final.jar" - ], - "sha256": "774221ed4c130b532865770b10630bc12d0d400127da617ee0ac8de2a7ac2097", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.34.Final/netty-resolver-4.1.34.Final.jar" - }, - { - "coord": "io.netty:netty-resolver:jar:sources:4.1.34.Final", - "dependencies": [ - "io.netty:netty-common:jar:sources:4.1.34.Final" - ], - "directDependencies": [ - "io.netty:netty-common:jar:sources:4.1.34.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.34.Final/netty-resolver-4.1.34.Final-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.34.Final/netty-resolver-4.1.34.Final-sources.jar" - ], - "sha256": "18a187179cccd3edbb3489c680699467cee8cd2acd0b8e14f9c304e5b2df9290", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.34.Final/netty-resolver-4.1.34.Final-sources.jar" - }, - { - "coord": "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.34.Final", - "dependencies": [ - "io.netty:netty-common:4.1.34.Final", - "io.netty:netty-resolver:4.1.34.Final", - "io.netty:netty-buffer:4.1.34.Final", - "io.netty:netty-transport:4.1.34.Final", - "io.netty:netty-transport-native-unix-common:4.1.34.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:4.1.34.Final", - "io.netty:netty-common:4.1.34.Final", - "io.netty:netty-transport:4.1.34.Final", - "io.netty:netty-transport-native-unix-common:4.1.34.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.34.Final/netty-transport-native-epoll-4.1.34.Final-linux-x86_64.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.34.Final/netty-transport-native-epoll-4.1.34.Final-linux-x86_64.jar" - ], - "sha256": "8ce04a1de4cfed3ca5062be73404fb2a493cde04732119d51a34ee17921f1f0e", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.34.Final/netty-transport-native-epoll-4.1.34.Final-linux-x86_64.jar" - }, - { - "coord": "io.netty:netty-transport-native-epoll:jar:sources:4.1.34.Final", - "dependencies": [ - "io.netty:netty-transport:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.34.Final", - "io.netty:netty-buffer:jar:sources:4.1.34.Final", - "io.netty:netty-resolver:jar:sources:4.1.34.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.34.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.34.Final", - "io.netty:netty-transport:jar:sources:4.1.34.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.34.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.34.Final/netty-transport-native-epoll-4.1.34.Final-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.34.Final/netty-transport-native-epoll-4.1.34.Final-sources.jar" - ], - "sha256": "20601a892b5fc5bef9f0ac6aacaedff4da02e133bd53814bc3abc9629a843807", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.34.Final/netty-transport-native-epoll-4.1.34.Final-sources.jar" - }, - { - "coord": "io.netty:netty-transport-native-unix-common:4.1.34.Final", - "dependencies": [ - "io.netty:netty-buffer:4.1.34.Final", - "io.netty:netty-transport:4.1.34.Final", - "io.netty:netty-common:4.1.34.Final", - "io.netty:netty-resolver:4.1.34.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:4.1.34.Final", - "io.netty:netty-common:4.1.34.Final", - "io.netty:netty-transport:4.1.34.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.34.Final/netty-transport-native-unix-common-4.1.34.Final.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.34.Final/netty-transport-native-unix-common-4.1.34.Final.jar" - ], - "sha256": "f13a550511c8ee30fc0b7b2e687efc01478598c5f4fe525bd49e1a814fbe1bb9", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.34.Final/netty-transport-native-unix-common-4.1.34.Final.jar" - }, - { - "coord": "io.netty:netty-transport-native-unix-common:jar:sources:4.1.34.Final", - "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.34.Final", - "io.netty:netty-resolver:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.34.Final", - "io.netty:netty-transport:jar:sources:4.1.34.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.34.Final", - "io.netty:netty-transport:jar:sources:4.1.34.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.34.Final/netty-transport-native-unix-common-4.1.34.Final-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.34.Final/netty-transport-native-unix-common-4.1.34.Final-sources.jar" - ], - "sha256": "3a9f367fc7e150f05facc3eea7f746a6fec5b9939ff0128d02d21d246ecaf943", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.34.Final/netty-transport-native-unix-common-4.1.34.Final-sources.jar" - }, - { - "coord": "io.netty:netty-transport:4.1.34.Final", - "dependencies": [ - "io.netty:netty-buffer:4.1.34.Final", - "io.netty:netty-common:4.1.34.Final", - "io.netty:netty-resolver:4.1.34.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:4.1.34.Final", - "io.netty:netty-common:4.1.34.Final", - "io.netty:netty-resolver:4.1.34.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.34.Final/netty-transport-4.1.34.Final.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.34.Final/netty-transport-4.1.34.Final.jar" - ], - "sha256": "2b3f7d3a595101def7d411793a675bf2a325964475fd7bdbbe448e908de09445", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.34.Final/netty-transport-4.1.34.Final.jar" - }, - { - "coord": "io.netty:netty-transport:jar:sources:4.1.34.Final", - "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.34.Final", - "io.netty:netty-resolver:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.34.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.34.Final", - "io.netty:netty-resolver:jar:sources:4.1.34.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.34.Final/netty-transport-4.1.34.Final-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.34.Final/netty-transport-4.1.34.Final-sources.jar" - ], - "sha256": "99f390a5767cb3eabc5e7519d7b50c7dba434a9d77f3fe670ee4fac6f3c38b86", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.34.Final/netty-transport-4.1.34.Final-sources.jar" - }, - { - "coord": "javax.activation:javax.activation-api:1.2.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.jar" - ], - "sha256": "43fdef0b5b6ceb31b0424b208b930c74ab58fac2ceeb7b3f6fd3aeb8b5ca4393", - "url": "https://repo.maven.apache.org/maven2/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.jar" - }, - { - "coord": "javax.activation:javax.activation-api:jar:sources:1.2.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0-sources.jar" - ], - "sha256": "d7411fb29089cafa4b77493f10bfb52832cd1976948903d0b039e12b0bd70334", - "url": "https://repo.maven.apache.org/maven2/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0-sources.jar" - }, - { - "coord": "javax.inject:javax.inject:1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar" - ], - "sha256": "91c77044a50c481636c32d916fd89c9118a72195390452c81065080f957de7ff", - "url": "https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar" - }, - { - "coord": "javax.inject:javax.inject:jar:sources:1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1-sources.jar" - ], - "sha256": "c4b87ee2911c139c3daf498a781967f1eb2e75bc1a8529a2e7b328a15d0e433e", - "url": "https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1-sources.jar" - }, - { - "coord": "javax.transaction:jta:1.1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/javax/transaction/jta/1.1/jta-1.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/javax/transaction/jta/1.1/jta-1.1.jar" - ], - "sha256": "b8ec163b4a47bad16f9a0b7d03c3210c6b0a29216d768031073ac20817c0ba50", - "url": "https://repo.maven.apache.org/maven2/javax/transaction/jta/1.1/jta-1.1.jar" - }, - { - "coord": "javax.transaction:jta:jar:sources:1.1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/javax/transaction/jta/1.1/jta-1.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/javax/transaction/jta/1.1/jta-1.1-sources.jar" - ], - "sha256": "2284e633f47cb8dcee40f52fcb8814334b3a163495c1f141e3fba00ad242f3fa", - "url": "https://repo.maven.apache.org/maven2/javax/transaction/jta/1.1/jta-1.1-sources.jar" - }, - { - "coord": "javax.xml.bind:jaxb-api:2.3.1", - "dependencies": [ - "javax.activation:javax.activation-api:1.2.0" - ], - "directDependencies": [ - "javax.activation:javax.activation-api:1.2.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.jar" - ], - "sha256": "88b955a0df57880a26a74708bc34f74dcaf8ebf4e78843a28b50eae945732b06", - "url": "https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.jar" - }, - { - "coord": "javax.xml.bind:jaxb-api:jar:sources:2.3.1", - "dependencies": [ - "javax.activation:javax.activation-api:jar:sources:1.2.0" - ], - "directDependencies": [ - "javax.activation:javax.activation-api:jar:sources:1.2.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1-sources.jar" - ], - "sha256": "d69dc2c28833df5fb6e916efae01477ae936326b342d479a43539b0131c96b9d", - "url": "https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1-sources.jar" - }, - { - "coord": "joda-time:joda-time:2.10.1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/joda-time/joda-time/2.10.1/joda-time-2.10.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/joda-time/joda-time/2.10.1/joda-time-2.10.1.jar" - ], - "sha256": "d269671656767e05a58dd634cbafc36ed70d417220b058d11c0d88dfd281616d", - "url": "https://repo.maven.apache.org/maven2/joda-time/joda-time/2.10.1/joda-time-2.10.1.jar" - }, - { - "coord": "joda-time:joda-time:jar:sources:2.10.1", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/joda-time/joda-time/2.10.1/joda-time-2.10.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/joda-time/joda-time/2.10.1/joda-time-2.10.1-sources.jar" - ], - "sha256": "4315745ec85d80032ae038ba74cc7d116e0d92b9d45e6ab13673c2f6474e7192", - "url": "https://repo.maven.apache.org/maven2/joda-time/joda-time/2.10.1/joda-time-2.10.1-sources.jar" - }, - { - "coord": "junit:junit:4.12", - "dependencies": [ - "org.hamcrest:hamcrest-core:1.3" - ], - "directDependencies": [ - "org.hamcrest:hamcrest-core:1.3" - ], - "file": "v1/https/repo.maven.apache.org/maven2/junit/junit/4.12/junit-4.12.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/junit/junit/4.12/junit-4.12.jar" - ], - "sha256": "59721f0805e223d84b90677887d9ff567dc534d7c502ca903c0c2b17f05c116a", - "url": "https://repo.maven.apache.org/maven2/junit/junit/4.12/junit-4.12.jar" - }, - { - "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/repo.maven.apache.org/maven2/junit/junit/4.12/junit-4.12-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/junit/junit/4.12/junit-4.12-sources.jar" - ], - "sha256": "9f43fea92033ad82bcad2ae44cec5c82abc9d6ee4b095cab921d11ead98bf2ff", - "url": "https://repo.maven.apache.org/maven2/junit/junit/4.12/junit-4.12-sources.jar" - }, - { - "coord": "net.bytebuddy:byte-buddy-agent:1.9.3", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3.jar" - ], - "sha256": "547288e013a9d1f4a4ce2ab84c24e3edda6e433c7fa6b2c3c3613932671b05b1", - "url": "https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3.jar" - }, - { - "coord": "net.bytebuddy:byte-buddy-agent:jar:sources:1.9.3", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3-sources.jar" - ], - "sha256": "e45132cfb9534d5de183517374b71ec83c770e0524a5b204b614c57b753f4813", - "url": "https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3-sources.jar" - }, - { - "coord": "net.bytebuddy:byte-buddy:1.9.3", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3.jar" - ], - "sha256": "a27350be602caea67a33d31281496c84c69b5ab34ddc228e9ff2253fc8f9cd31", - "url": "https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3.jar" - }, - { - "coord": "net.bytebuddy:byte-buddy:jar:sources:1.9.3", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3-sources.jar" - ], - "sha256": "f72e7e29cc321424af33aef71c5776e76a83b2c6b80414ad3602083fa90b4ae6", - "url": "https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3-sources.jar" - }, - { - "coord": "net.sourceforge.htmlunit:htmlunit-core-js:2.33", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.33/htmlunit-core-js-2.33.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.33/htmlunit-core-js-2.33.jar" - ], - "sha256": "c001282eb76a3417490d517d45496e2ddc6f98aeb96c168c51f550ec6cc8c525", - "url": "https://repo.maven.apache.org/maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.33/htmlunit-core-js-2.33.jar" - }, - { - "coord": "net.sourceforge.htmlunit:htmlunit-core-js:jar:sources:2.33", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.33/htmlunit-core-js-2.33-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.33/htmlunit-core-js-2.33-sources.jar" - ], - "sha256": "018b0687f3db611657161d29c9126f5201776e47d6b8ac233b4638d46805976e", - "url": "https://repo.maven.apache.org/maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.33/htmlunit-core-js-2.33-sources.jar" - }, - { - "coord": "net.sourceforge.htmlunit:htmlunit-cssparser:1.2.0", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/net/sourceforge/htmlunit/htmlunit-cssparser/1.2.0/htmlunit-cssparser-1.2.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/net/sourceforge/htmlunit/htmlunit-cssparser/1.2.0/htmlunit-cssparser-1.2.0.jar" - ], - "sha256": "0738f77fe9def88ed5f08596f1ccd8261b44b0b348e498dcd776fd46f190f030", - "url": "https://repo.maven.apache.org/maven2/net/sourceforge/htmlunit/htmlunit-cssparser/1.2.0/htmlunit-cssparser-1.2.0.jar" - }, - { - "coord": "net.sourceforge.htmlunit:htmlunit-cssparser:jar:sources:1.2.0", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/net/sourceforge/htmlunit/htmlunit-cssparser/1.2.0/htmlunit-cssparser-1.2.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/net/sourceforge/htmlunit/htmlunit-cssparser/1.2.0/htmlunit-cssparser-1.2.0-sources.jar" - ], - "sha256": "09308708aecb9dc039689ff7dc661d199fbc02a68c244bdd67c20b65dcb5b04a", - "url": "https://repo.maven.apache.org/maven2/net/sourceforge/htmlunit/htmlunit-cssparser/1.2.0/htmlunit-cssparser-1.2.0-sources.jar" - }, - { - "coord": "net.sourceforge.htmlunit:htmlunit:2.33", - "dependencies": [ - "net.sourceforge.htmlunit:htmlunit-cssparser:1.2.0", - "commons-logging:commons-logging:1.2", - "commons-io:commons-io:2.6", - "org.apache.commons:commons-lang3:3.8", - "net.sourceforge.htmlunit:htmlunit-core-js:2.33", - "org.eclipse.jetty.websocket:websocket-common:9.4.12.v20180830", - "org.apache.httpcomponents:httpclient:4.5.6", - "org.eclipse.jetty:jetty-client:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util:9.4.12.v20180830", - "xalan:xalan:2.7.2", - "net.sourceforge.htmlunit:neko-htmlunit:2.33", - "commons-net:commons-net:3.6", - "org.apache.httpcomponents:httpmime:4.5.6", - "xerces:xercesImpl:2.12.0", - "org.apache.commons:commons-text:1.4", - "org.eclipse.jetty.websocket:websocket-api:9.4.12.v20180830", - "org.eclipse.jetty:jetty-xml:9.4.12.v20180830", - "org.eclipse.jetty:jetty-io:9.4.12.v20180830", - "org.apache.httpcomponents:httpcore:4.4.10", - "commons-codec:commons-codec:1.10", - "xalan:serializer:2.7.2", - "org.eclipse.jetty.websocket:websocket-client:9.4.12.v20180830", - "org.eclipse.jetty:jetty-http:9.4.12.v20180830", - "xml-apis:xml-apis:1.4.01" - ], - "directDependencies": [ - "net.sourceforge.htmlunit:htmlunit-cssparser:1.2.0", - "commons-logging:commons-logging:1.2", - "commons-io:commons-io:2.6", - "org.apache.commons:commons-lang3:3.8", - "net.sourceforge.htmlunit:htmlunit-core-js:2.33", - "xalan:xalan:2.7.2", - "net.sourceforge.htmlunit:neko-htmlunit:2.33", - "commons-net:commons-net:3.6", - "org.apache.httpcomponents:httpmime:4.5.6", - "org.apache.commons:commons-text:1.4", - "org.eclipse.jetty.websocket:websocket-client:9.4.12.v20180830" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/net/sourceforge/htmlunit/htmlunit/2.33/htmlunit-2.33.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/net/sourceforge/htmlunit/htmlunit/2.33/htmlunit-2.33.jar" - ], - "sha256": "523c867d31c7c69b178a0ec7d591b98645514b5d536c179e6318c43f6f1e8b58", - "url": "https://repo.maven.apache.org/maven2/net/sourceforge/htmlunit/htmlunit/2.33/htmlunit-2.33.jar" - }, - { - "coord": "net.sourceforge.htmlunit:htmlunit:jar:sources:2.33", - "dependencies": [ - "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.12.v20180830", - "commons-codec:commons-codec:jar:sources:1.10", - "org.apache.httpcomponents:httpclient:jar:sources:4.5.6", - "commons-logging:commons-logging:jar:sources:1.2", - "org.eclipse.jetty:jetty-util:jar:sources:9.4.12.v20180830", - "xerces:xercesImpl:jar:sources:2.12.0", - "commons-io:commons-io:jar:sources:2.6", - "org.eclipse.jetty:jetty-client:jar:sources:9.4.12.v20180830", - "net.sourceforge.htmlunit:neko-htmlunit:jar:sources:2.33", - "commons-net:commons-net:jar:sources:3.6", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-xml:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-http:jar:sources:9.4.12.v20180830", - "xalan:serializer:jar:sources:2.7.2", - "org.apache.httpcomponents:httpmime:jar:sources:4.5.6", - "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.12.v20180830", - "org.apache.commons:commons-lang3:jar:sources:3.8", - "org.apache.commons:commons-text:jar:sources:1.4", - "xalan:xalan:jar:sources:2.7.2", - "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.12.v20180830", - "org.apache.httpcomponents:httpcore:jar:sources:4.4.10", - "xml-apis:xml-apis:jar:sources:1.4.01", - "net.sourceforge.htmlunit:htmlunit-core-js:jar:sources:2.33", - "net.sourceforge.htmlunit:htmlunit-cssparser:jar:sources:1.2.0" - ], - "directDependencies": [ - "commons-logging:commons-logging:jar:sources:1.2", - "commons-io:commons-io:jar:sources:2.6", - "net.sourceforge.htmlunit:neko-htmlunit:jar:sources:2.33", - "commons-net:commons-net:jar:sources:3.6", - "org.apache.httpcomponents:httpmime:jar:sources:4.5.6", - "org.apache.commons:commons-lang3:jar:sources:3.8", - "org.apache.commons:commons-text:jar:sources:1.4", - "xalan:xalan:jar:sources:2.7.2", - "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.12.v20180830", - "net.sourceforge.htmlunit:htmlunit-core-js:jar:sources:2.33", - "net.sourceforge.htmlunit:htmlunit-cssparser:jar:sources:1.2.0" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/net/sourceforge/htmlunit/htmlunit/2.33/htmlunit-2.33-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/net/sourceforge/htmlunit/htmlunit/2.33/htmlunit-2.33-sources.jar" - ], - "sha256": "ce13797248590696eacdf14f4f80d817a6a27628b4bfc50fcd46215c02c0bf8c", - "url": "https://repo.maven.apache.org/maven2/net/sourceforge/htmlunit/htmlunit/2.33/htmlunit-2.33-sources.jar" - }, - { - "coord": "net.sourceforge.htmlunit:neko-htmlunit:2.33", - "dependencies": [ - "xerces:xercesImpl:2.12.0", - "xml-apis:xml-apis:1.4.01" - ], - "directDependencies": [ - "xerces:xercesImpl:2.12.0" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/net/sourceforge/htmlunit/neko-htmlunit/2.33/neko-htmlunit-2.33.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/net/sourceforge/htmlunit/neko-htmlunit/2.33/neko-htmlunit-2.33.jar" - ], - "sha256": "f7733c8c1c521a915827c9a4495e776ece7a47bd5e24056ef0aca61197045b2a", - "url": "https://repo.maven.apache.org/maven2/net/sourceforge/htmlunit/neko-htmlunit/2.33/neko-htmlunit-2.33.jar" - }, - { - "coord": "net.sourceforge.htmlunit:neko-htmlunit:jar:sources:2.33", - "dependencies": [ - "xerces:xercesImpl:jar:sources:2.12.0", - "xml-apis:xml-apis:jar:sources:1.4.01" - ], - "directDependencies": [ - "xerces:xercesImpl:jar:sources:2.12.0" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/net/sourceforge/htmlunit/neko-htmlunit/2.33/neko-htmlunit-2.33-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/net/sourceforge/htmlunit/neko-htmlunit/2.33/neko-htmlunit-2.33-sources.jar" - ], - "sha256": "37a5a1ac4efde4c2bf6d3c4fabe046615f5a0b22672b6b40289d8509d96336e0", - "url": "https://repo.maven.apache.org/maven2/net/sourceforge/htmlunit/neko-htmlunit/2.33/neko-htmlunit-2.33-sources.jar" - }, - { - "coord": "org.apache.commons:commons-exec:1.3", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/apache/commons/commons-exec/1.3/commons-exec-1.3.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/apache/commons/commons-exec/1.3/commons-exec-1.3.jar" - ], - "sha256": "cb49812dc1bfb0ea4f20f398bcae1a88c6406e213e67f7524fb10d4f8ad9347b", - "url": "https://repo.maven.apache.org/maven2/org/apache/commons/commons-exec/1.3/commons-exec-1.3.jar" - }, - { - "coord": "org.apache.commons:commons-exec:jar:sources:1.3", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/apache/commons/commons-exec/1.3/commons-exec-1.3-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/apache/commons/commons-exec/1.3/commons-exec-1.3-sources.jar" - ], - "sha256": "c121d8e70010092bafc56f358e7259ac484653db595aafea1e67a040f51aea66", - "url": "https://repo.maven.apache.org/maven2/org/apache/commons/commons-exec/1.3/commons-exec-1.3-sources.jar" - }, - { - "coord": "org.apache.commons:commons-lang3:3.8", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8/commons-lang3-3.8.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8/commons-lang3-3.8.jar" - ], - "sha256": "9375aad1000cdd5bd3068e832de9802094fac1f145655251e141d5d0072fab9a", - "url": "https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8/commons-lang3-3.8.jar" - }, - { - "coord": "org.apache.commons:commons-lang3:jar:sources:3.8", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8/commons-lang3-3.8-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8/commons-lang3-3.8-sources.jar" - ], - "sha256": "4be2bb042cee507fe8f3d93b15cf4f5d7bc6c69c41dc48df303c7ebe5fe8a8eb", - "url": "https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8/commons-lang3-3.8-sources.jar" - }, - { - "coord": "org.apache.commons:commons-text:1.4", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.apache.commons:commons-lang3", - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4.jar" - ], - "sha256": "d624e443240a5fccc93edbfe758df1b69c07d7eaab6fc5e8f98f77d86ced8259", - "url": "https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4.jar" - }, - { - "coord": "org.apache.commons:commons-text:jar:sources:1.4", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.apache.commons:commons-lang3", - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4-sources.jar" - ], - "sha256": "00d006377bbe1667b8fdaa5bb3da35137c0d3bc28e7426276fcb1f5a50630eb2", - "url": "https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4-sources.jar" - }, - { - "coord": "org.apache.httpcomponents:httpclient:4.5.6", - "dependencies": [ - "commons-codec:commons-codec:1.10", - "commons-logging:commons-logging:1.2", - "org.apache.httpcomponents:httpcore:4.4.10" - ], - "directDependencies": [ - "commons-codec:commons-codec:1.10", - "commons-logging:commons-logging:1.2", - "org.apache.httpcomponents:httpcore:4.4.10" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.6/httpclient-4.5.6.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.6/httpclient-4.5.6.jar" - ], - "sha256": "c03f813195e7a80e3608d0ddd8da80b21696a4c92a6a2298865bf149071551c7", - "url": "https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.6/httpclient-4.5.6.jar" - }, - { - "coord": "org.apache.httpcomponents:httpclient:jar:sources:4.5.6", - "dependencies": [ - "commons-logging:commons-logging:jar:sources:1.2", - "org.apache.httpcomponents:httpcore:jar:sources:4.4.10", - "commons-codec:commons-codec:jar:sources:1.10" - ], - "directDependencies": [ - "commons-codec:commons-codec:jar:sources:1.10", - "commons-logging:commons-logging:jar:sources:1.2", - "org.apache.httpcomponents:httpcore:jar:sources:4.4.10" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.6/httpclient-4.5.6-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.6/httpclient-4.5.6-sources.jar" - ], - "sha256": "6a8076d9a98a5be9f1a055011166f9055b0aee2de133699db3ccf20377533e58", - "url": "https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.6/httpclient-4.5.6-sources.jar" - }, - { - "coord": "org.apache.httpcomponents:httpcore:4.4.10", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.10/httpcore-4.4.10.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.10/httpcore-4.4.10.jar" - ], - "sha256": "78ba1096561957db1b55200a159b648876430342d15d461277e62360da19f6fd", - "url": "https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.10/httpcore-4.4.10.jar" - }, - { - "coord": "org.apache.httpcomponents:httpcore:jar:sources:4.4.10", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.10/httpcore-4.4.10-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.10/httpcore-4.4.10-sources.jar" - ], - "sha256": "9c790a045566da7ce0a53276816d09e08543ccb46ba99db1cb8f5d3742dfaa1f", - "url": "https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.10/httpcore-4.4.10-sources.jar" - }, - { - "coord": "org.apache.httpcomponents:httpmime:4.5.6", - "dependencies": [ - "commons-codec:commons-codec:1.10", - "commons-logging:commons-logging:1.2", - "org.apache.httpcomponents:httpclient:4.5.6", - "org.apache.httpcomponents:httpcore:4.4.10" - ], - "directDependencies": [ - "org.apache.httpcomponents:httpclient:4.5.6" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/apache/httpcomponents/httpmime/4.5.6/httpmime-4.5.6.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpmime/4.5.6/httpmime-4.5.6.jar" - ], - "sha256": "0b2b1102c18d3c7e05a77214b9b7501a6f6056174ae5604e0e256776eda7553e", - "url": "https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpmime/4.5.6/httpmime-4.5.6.jar" - }, - { - "coord": "org.apache.httpcomponents:httpmime:jar:sources:4.5.6", - "dependencies": [ - "org.apache.httpcomponents:httpclient:jar:sources:4.5.6", - "commons-logging:commons-logging:jar:sources:1.2", - "org.apache.httpcomponents:httpcore:jar:sources:4.4.10", - "commons-codec:commons-codec:jar:sources:1.10" - ], - "directDependencies": [ - "org.apache.httpcomponents:httpclient:jar:sources:4.5.6" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/apache/httpcomponents/httpmime/4.5.6/httpmime-4.5.6-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpmime/4.5.6/httpmime-4.5.6-sources.jar" - ], - "sha256": "3054d6f3160cdc1a4a60cf2a199f5acd2f3b209aa3e82e2f69e7028741847622", - "url": "https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpmime/4.5.6/httpmime-4.5.6-sources.jar" - }, - { - "coord": "org.atteo.classindex:classindex:3.4", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.jboss.netty:netty" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/atteo/classindex/classindex/3.4/classindex-3.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/atteo/classindex/classindex/3.4/classindex-3.4.jar" - ], - "sha256": "253b9fe61754a40417003b0977a10b7f4002a84c2e6a5a4dcbbdecdbe3f2a30d", - "url": "https://repo.maven.apache.org/maven2/org/atteo/classindex/classindex/3.4/classindex-3.4.jar" - }, - { - "coord": "org.atteo.classindex:classindex:jar:sources:3.4", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.jboss.netty:netty" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/atteo/classindex/classindex/3.4/classindex-3.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/atteo/classindex/classindex/3.4/classindex-3.4-sources.jar" - ], - "sha256": "87249b152c70178a856023bf5d38b9ba09b2a2812d845e34ffeb633a9a041bda", - "url": "https://repo.maven.apache.org/maven2/org/atteo/classindex/classindex/3.4/classindex-3.4-sources.jar" - }, - { - "coord": "org.checkerframework:checker-qual:2.5.2", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar" - ], - "sha256": "64b02691c8b9d4e7700f8ee2e742dce7ea2c6e81e662b7522c9ee3bf568c040a", - "url": "https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar" - }, - { - "coord": "org.checkerframework:checker-qual:jar:sources:2.5.2", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2-sources.jar" - ], - "sha256": "821c5c63a6f156a3bb498c5bbb613580d9d8f4134131a5627d330fc4018669d2", - "url": "https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2-sources.jar" - }, - { - "coord": "org.codehaus.mojo:animal-sniffer-annotations:1.17", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.jar" - ], - "sha256": "92654f493ecfec52082e76354f0ebf87648dc3d5cec2e3c3cdb947c016747a53", - "url": "https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.jar" - }, - { - "coord": "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17-sources.jar" - ], - "sha256": "2571474a676f775a8cdd15fb9b1da20c4c121ed7f42a5d93fca0e7b6e2015b40", - "url": "https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17-sources.jar" - }, - { - "coord": "org.eclipse.jetty.websocket:websocket-api:9.4.12.v20180830", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.12.v20180830/websocket-api-9.4.12.v20180830.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.12.v20180830/websocket-api-9.4.12.v20180830.jar" - ], - "sha256": "6f7ecb42601058ffe4a6c19c5340cac3ebf0f83e2e252b457558f104238278e3", - "url": "https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.12.v20180830/websocket-api-9.4.12.v20180830.jar" - }, - { - "coord": "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.12.v20180830", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.12.v20180830/websocket-api-9.4.12.v20180830-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.12.v20180830/websocket-api-9.4.12.v20180830-sources.jar" - ], - "sha256": "4464a26113465acd280af2f29ec85bce1ff8df2f840997b56c54db775a888e77", - "url": "https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.12.v20180830/websocket-api-9.4.12.v20180830-sources.jar" - }, - { - "coord": "org.eclipse.jetty.websocket:websocket-client:9.4.12.v20180830", - "dependencies": [ - "org.eclipse.jetty.websocket:websocket-common:9.4.12.v20180830", - "org.eclipse.jetty:jetty-client:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util:9.4.12.v20180830", - "org.eclipse.jetty.websocket:websocket-api:9.4.12.v20180830", - "org.eclipse.jetty:jetty-xml:9.4.12.v20180830", - "org.eclipse.jetty:jetty-io:9.4.12.v20180830", - "org.eclipse.jetty:jetty-http:9.4.12.v20180830" - ], - "directDependencies": [ - "org.eclipse.jetty.websocket:websocket-common:9.4.12.v20180830", - "org.eclipse.jetty:jetty-client:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util:9.4.12.v20180830", - "org.eclipse.jetty:jetty-xml:9.4.12.v20180830", - "org.eclipse.jetty:jetty-io:9.4.12.v20180830" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.12.v20180830/websocket-client-9.4.12.v20180830.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.12.v20180830/websocket-client-9.4.12.v20180830.jar" - ], - "sha256": "97c6882c858a75776773eaccc01739757c4e9f60a51613878c1f2b2ba03d91af", - "url": "https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.12.v20180830/websocket-client-9.4.12.v20180830.jar" - }, - { - "coord": "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.12.v20180830", - "dependencies": [ - "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-client:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-xml:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-http:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.12.v20180830" - ], - "directDependencies": [ - "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-client:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-xml:jar:sources:9.4.12.v20180830" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.12.v20180830/websocket-client-9.4.12.v20180830-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.12.v20180830/websocket-client-9.4.12.v20180830-sources.jar" - ], - "sha256": "9211b385157095958c239e8069157528bf63981255a3c8d08696ebf22b02fe9a", - "url": "https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.12.v20180830/websocket-client-9.4.12.v20180830-sources.jar" - }, - { - "coord": "org.eclipse.jetty.websocket:websocket-common:9.4.12.v20180830", - "dependencies": [ - "org.eclipse.jetty.websocket:websocket-api:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util:9.4.12.v20180830", - "org.eclipse.jetty:jetty-io:9.4.12.v20180830" - ], - "directDependencies": [ - "org.eclipse.jetty:jetty-io:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util:9.4.12.v20180830", - "org.eclipse.jetty.websocket:websocket-api:9.4.12.v20180830" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.12.v20180830/websocket-common-9.4.12.v20180830.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.12.v20180830/websocket-common-9.4.12.v20180830.jar" - ], - "sha256": "3c35aefa720c51e09532c16fdbfaaebd1af3e07dee699dacaba8e0ab0adf88e5", - "url": "https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.12.v20180830/websocket-common-9.4.12.v20180830.jar" - }, - { - "coord": "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.12.v20180830", - "dependencies": [ - "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.12.v20180830" - ], - "directDependencies": [ - "org.eclipse.jetty:jetty-io:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.12.v20180830" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.12.v20180830/websocket-common-9.4.12.v20180830-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.12.v20180830/websocket-common-9.4.12.v20180830-sources.jar" - ], - "sha256": "049620d52dd1558c3863ff8304ccf848012e47879679c6f22bb7e6343703d41c", - "url": "https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.12.v20180830/websocket-common-9.4.12.v20180830-sources.jar" - }, - { - "coord": "org.eclipse.jetty:jetty-client:9.4.12.v20180830", - "dependencies": [ - "org.eclipse.jetty:jetty-util:9.4.12.v20180830", - "org.eclipse.jetty:jetty-io:9.4.12.v20180830", - "org.eclipse.jetty:jetty-http:9.4.12.v20180830" - ], - "directDependencies": [ - "org.eclipse.jetty:jetty-http:9.4.12.v20180830", - "org.eclipse.jetty:jetty-io:9.4.12.v20180830" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-client/9.4.12.v20180830/jetty-client-9.4.12.v20180830.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-client/9.4.12.v20180830/jetty-client-9.4.12.v20180830.jar" - ], - "sha256": "62efbbfda88cd4f7644242c4b4df8f3b0a671bfeafea7682dabe00352ba07db7", - "url": "https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-client/9.4.12.v20180830/jetty-client-9.4.12.v20180830.jar" - }, - { - "coord": "org.eclipse.jetty:jetty-client:jar:sources:9.4.12.v20180830", - "dependencies": [ - "org.eclipse.jetty:jetty-util:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-http:jar:sources:9.4.12.v20180830" - ], - "directDependencies": [ - "org.eclipse.jetty:jetty-http:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.12.v20180830" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-client/9.4.12.v20180830/jetty-client-9.4.12.v20180830-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-client/9.4.12.v20180830/jetty-client-9.4.12.v20180830-sources.jar" - ], - "sha256": "3591c5e056070481475941382ccedb70ff18423f7d3cdfd554604a24fc940dc1", - "url": "https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-client/9.4.12.v20180830/jetty-client-9.4.12.v20180830-sources.jar" - }, - { - "coord": "org.eclipse.jetty:jetty-http:9.4.12.v20180830", - "dependencies": [ - "org.eclipse.jetty:jetty-util:9.4.12.v20180830", - "org.eclipse.jetty:jetty-io:9.4.12.v20180830" - ], - "directDependencies": [ - "org.eclipse.jetty:jetty-io:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util:9.4.12.v20180830" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.12.v20180830/jetty-http-9.4.12.v20180830.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.12.v20180830/jetty-http-9.4.12.v20180830.jar" - ], - "sha256": "20547da653be9942cc63f57e632a732608559aebde69753bc7312cfe16e8d9c0", - "url": "https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.12.v20180830/jetty-http-9.4.12.v20180830.jar" - }, - { - "coord": "org.eclipse.jetty:jetty-http:jar:sources:9.4.12.v20180830", - "dependencies": [ - "org.eclipse.jetty:jetty-util:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.12.v20180830" - ], - "directDependencies": [ - "org.eclipse.jetty:jetty-io:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util:jar:sources:9.4.12.v20180830" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.12.v20180830/jetty-http-9.4.12.v20180830-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.12.v20180830/jetty-http-9.4.12.v20180830-sources.jar" - ], - "sha256": "c1be08f73222c163032d20ca7b76884be41a85035a69798f4b110d9e034d2647", - "url": "https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.12.v20180830/jetty-http-9.4.12.v20180830-sources.jar" - }, - { - "coord": "org.eclipse.jetty:jetty-io:9.4.12.v20180830", - "dependencies": [ - "org.eclipse.jetty:jetty-util:9.4.12.v20180830" - ], - "directDependencies": [ - "org.eclipse.jetty:jetty-util:9.4.12.v20180830" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.12.v20180830/jetty-io-9.4.12.v20180830.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.12.v20180830/jetty-io-9.4.12.v20180830.jar" - ], - "sha256": "ab1784abbb9e0ed0869ab6568fe46f1faa79fb5e948cf96450daecd9d27ba1db", - "url": "https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.12.v20180830/jetty-io-9.4.12.v20180830.jar" - }, - { - "coord": "org.eclipse.jetty:jetty-io:jar:sources:9.4.12.v20180830", - "dependencies": [ - "org.eclipse.jetty:jetty-util:jar:sources:9.4.12.v20180830" - ], - "directDependencies": [ - "org.eclipse.jetty:jetty-util:jar:sources:9.4.12.v20180830" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.12.v20180830/jetty-io-9.4.12.v20180830-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.12.v20180830/jetty-io-9.4.12.v20180830-sources.jar" - ], - "sha256": "45cd082bde415a5efb49d2a6182b920317bb7a55f4ab2c2a9c9d5551fdce4977", - "url": "https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.12.v20180830/jetty-io-9.4.12.v20180830-sources.jar" - }, - { - "coord": "org.eclipse.jetty:jetty-util:9.4.12.v20180830", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.12.v20180830/jetty-util-9.4.12.v20180830.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.12.v20180830/jetty-util-9.4.12.v20180830.jar" - ], - "sha256": "60ad53e118a3e7d10418b155b9944d90b2e4e4c732e53ef4f419473288d3f48c", - "url": "https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.12.v20180830/jetty-util-9.4.12.v20180830.jar" - }, - { - "coord": "org.eclipse.jetty:jetty-util:jar:sources:9.4.12.v20180830", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.12.v20180830/jetty-util-9.4.12.v20180830-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.12.v20180830/jetty-util-9.4.12.v20180830-sources.jar" - ], - "sha256": "2ed0368edc7635bfc87a93ea2bdca51b1716b698a81c01b59f6c8176e17f5576", - "url": "https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.12.v20180830/jetty-util-9.4.12.v20180830-sources.jar" - }, - { - "coord": "org.eclipse.jetty:jetty-xml:9.4.12.v20180830", - "dependencies": [ - "org.eclipse.jetty:jetty-util:9.4.12.v20180830" - ], - "directDependencies": [ - "org.eclipse.jetty:jetty-util:9.4.12.v20180830" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.12.v20180830/jetty-xml-9.4.12.v20180830.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.12.v20180830/jetty-xml-9.4.12.v20180830.jar" - ], - "sha256": "5b8298ab3d43ddaf0941d41f51b82c8ae23a247da055fa161b752ab9495155ed", - "url": "https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.12.v20180830/jetty-xml-9.4.12.v20180830.jar" - }, - { - "coord": "org.eclipse.jetty:jetty-xml:jar:sources:9.4.12.v20180830", - "dependencies": [ - "org.eclipse.jetty:jetty-util:jar:sources:9.4.12.v20180830" - ], - "directDependencies": [ - "org.eclipse.jetty:jetty-util:jar:sources:9.4.12.v20180830" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.12.v20180830/jetty-xml-9.4.12.v20180830-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.12.v20180830/jetty-xml-9.4.12.v20180830-sources.jar" - ], - "sha256": "cff45fa98d17bc8ba4734e29638a0e71e38da4c7e33766b1f93cc8a617ddc503", - "url": "https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.12.v20180830/jetty-xml-9.4.12.v20180830-sources.jar" - }, - { - "coord": "org.fluentlenium:fluentlenium-core:3.7.1", - "dependencies": [ - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.squareup.okio:okio:1.14.0", - "org.atteo.classindex:classindex:3.4", - "commons-logging:commons-logging:1.2", - "commons-io:commons-io:2.6", - "org.seleniumhq.selenium:selenium-remote-driver:3.141.59", - "com.google.code.findbugs:jsr305:3.0.2", - "org.apache.commons:commons-lang3:3.8", - "net.bytebuddy:byte-buddy:1.9.3", - "org.apache.httpcomponents:httpclient:4.5.6", - "org.seleniumhq.selenium:selenium-api:3.141.59", - "com.google.guava:guava:27.1-jre", - "org.codehaus.mojo:animal-sniffer-annotations:1.17", - "com.squareup.okhttp3:okhttp:3.11.0", - "com.google.j2objc:j2objc-annotations:1.1", - "org.apache.httpcomponents:httpcore:4.4.10", - "com.google.guava:failureaccess:1.0.1", - "commons-codec:commons-codec:1.10", - "com.google.errorprone:error_prone_annotations:2.2.0", - "org.seleniumhq.selenium:selenium-support:3.141.59", - "org.apache.commons:commons-exec:1.3", - "org.checkerframework:checker-qual:2.5.2" - ], - "directDependencies": [ - "org.atteo.classindex:classindex:3.4", - "commons-io:commons-io:2.6", - "org.seleniumhq.selenium:selenium-remote-driver:3.141.59", - "org.apache.commons:commons-lang3:3.8", - "org.apache.httpcomponents:httpclient:4.5.6", - "org.seleniumhq.selenium:selenium-api:3.141.59", - "org.seleniumhq.selenium:selenium-support:3.141.59" - ], - "exclusions": [ - "org.jboss.netty:netty" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/fluentlenium/fluentlenium-core/3.7.1/fluentlenium-core-3.7.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/fluentlenium/fluentlenium-core/3.7.1/fluentlenium-core-3.7.1.jar" - ], - "sha256": "53ad19567d87836e0600d5b01f096d6ad4ab64ba4f30be5f82ca02fb7f264d79", - "url": "https://repo.maven.apache.org/maven2/org/fluentlenium/fluentlenium-core/3.7.1/fluentlenium-core-3.7.1.jar" - }, - { - "coord": "org.fluentlenium:fluentlenium-core:jar:sources:3.7.1", - "dependencies": [ - "commons-codec:commons-codec:jar:sources:1.10", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "org.apache.httpcomponents:httpclient:jar:sources:4.5.6", - "commons-logging:commons-logging:jar:sources:1.2", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17", - "net.bytebuddy:byte-buddy:jar:sources:1.9.3", - "commons-io:commons-io:jar:sources:2.6", - "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", - "org.apache.commons:commons-exec:jar:sources:1.3", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "org.apache.commons:commons-lang3:jar:sources:3.8", - "org.seleniumhq.selenium:selenium-support:jar:sources:3.141.59", - "org.atteo.classindex:classindex:jar:sources:3.4", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", - "com.google.errorprone:error_prone_annotations:jar:sources:2.2.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:27.1-jre", - "org.apache.httpcomponents:httpcore:jar:sources:4.4.10", - "com.squareup.okio:okio:jar:sources:1.14.0" - ], - "directDependencies": [ - "org.apache.httpcomponents:httpclient:jar:sources:4.5.6", - "commons-io:commons-io:jar:sources:2.6", - "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", - "org.apache.commons:commons-lang3:jar:sources:3.8", - "org.seleniumhq.selenium:selenium-support:jar:sources:3.141.59", - "org.atteo.classindex:classindex:jar:sources:3.4", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59" - ], - "exclusions": [ - "org.jboss.netty:netty" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/fluentlenium/fluentlenium-core/3.7.1/fluentlenium-core-3.7.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/fluentlenium/fluentlenium-core/3.7.1/fluentlenium-core-3.7.1-sources.jar" - ], - "sha256": "80693dc08ddeecc42a97c56192b93e91df614f86129b84494a76a60da04ecf0c", - "url": "https://repo.maven.apache.org/maven2/org/fluentlenium/fluentlenium-core/3.7.1/fluentlenium-core-3.7.1-sources.jar" - }, - { - "coord": "org.hamcrest:hamcrest-core:1.3", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar" - ], - "sha256": "66fdef91e9739348df7a096aa384a5685f4e875584cce89386a7a47251c4d8e9", - "url": "https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar" - }, - { - "coord": "org.hamcrest:hamcrest-core:jar:sources:1.3", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar" - ], - "sha256": "e223d2d8fbafd66057a8848cc94222d63c3cedd652cc48eddc0ab5c39c0f84df", - "url": "https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar" - }, - { - "coord": "org.mockito:mockito-core:2.23.4", - "dependencies": [ - "net.bytebuddy:byte-buddy-agent:1.9.3", - "org.objenesis:objenesis:2.6", - "net.bytebuddy:byte-buddy:1.9.3" - ], - "directDependencies": [ - "net.bytebuddy:byte-buddy:1.9.3", - "net.bytebuddy:byte-buddy-agent:1.9.3", - "org.objenesis:objenesis:2.6" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/mockito/mockito-core/2.23.4/mockito-core-2.23.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/mockito/mockito-core/2.23.4/mockito-core-2.23.4.jar" - ], - "sha256": "d77e018b6bc211d78ddcec54bc508732c4677b9a9eb9103793be85441b20bc5d", - "url": "https://repo.maven.apache.org/maven2/org/mockito/mockito-core/2.23.4/mockito-core-2.23.4.jar" - }, - { - "coord": "org.mockito:mockito-core:jar:sources:2.23.4", - "dependencies": [ - "org.objenesis:objenesis:jar:sources:2.6", - "net.bytebuddy:byte-buddy-agent:jar:sources:1.9.3", - "net.bytebuddy:byte-buddy:jar:sources:1.9.3" - ], - "directDependencies": [ - "net.bytebuddy:byte-buddy:jar:sources:1.9.3", - "net.bytebuddy:byte-buddy-agent:jar:sources:1.9.3", - "org.objenesis:objenesis:jar:sources:2.6" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/mockito/mockito-core/2.23.4/mockito-core-2.23.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/mockito/mockito-core/2.23.4/mockito-core-2.23.4-sources.jar" - ], - "sha256": "2e624439ee1de251c0e963a7183f47383eb67b29260d175ab6688675e05c9342", - "url": "https://repo.maven.apache.org/maven2/org/mockito/mockito-core/2.23.4/mockito-core-2.23.4-sources.jar" - }, - { - "coord": "org.objenesis:objenesis:2.6", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/objenesis/objenesis/2.6/objenesis-2.6.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.6/objenesis-2.6.jar" - ], - "sha256": "5e168368fbc250af3c79aa5fef0c3467a2d64e5a7bd74005f25d8399aeb0708d", - "url": "https://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.6/objenesis-2.6.jar" - }, - { - "coord": "org.objenesis:objenesis:jar:sources:2.6", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/objenesis/objenesis/2.6/objenesis-2.6-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.6/objenesis-2.6-sources.jar" - ], - "sha256": "52d9f4dba531677fc074eff00ea07f22a1d42e5a97cc9e8571c4cd3d459b6be0", - "url": "https://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.6/objenesis-2.6-sources.jar" - }, - { - "coord": "org.reactivestreams:reactive-streams:1.0.2", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar" - ], - "sha256": "cc09ab0b140e0d0496c2165d4b32ce24f4d6446c0a26c5dc77b06bdf99ee8fae", - "url": "https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar" - }, - { - "coord": "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2-sources.jar" - ], - "sha256": "963a6480f46a64013d0f144ba41c6c6e63c4d34b655761717a436492886f3667", - "url": "https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2-sources.jar" - }, - { - "coord": "org.scala-lang.modules:scala-java8-compat_2.13:0.9.0", - "dependencies": [ - "org.scala-lang:scala-library:2.13.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-java8-compat_2.13/0.9.0/scala-java8-compat_2.13-0.9.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-java8-compat_2.13/0.9.0/scala-java8-compat_2.13-0.9.0.jar" - ], - "sha256": "42636d2c772f20b2fa6e8be5b461564d7e51c067895b6689711de7d08d1f79cb", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-java8-compat_2.13/0.9.0/scala-java8-compat_2.13-0.9.0.jar" - }, - { - "coord": "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources:0.9.0", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-java8-compat_2.13/0.9.0/scala-java8-compat_2.13-0.9.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-java8-compat_2.13/0.9.0/scala-java8-compat_2.13-0.9.0-sources.jar" - ], - "sha256": "6782efc4ffda1864665c6db044ef5d4c2de8a60d39abe1c50f07bca8c34b5b2c", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-java8-compat_2.13/0.9.0/scala-java8-compat_2.13-0.9.0-sources.jar" - }, - { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "dependencies": [ - "org.scala-lang:scala-library:2.13.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.13.0" - ], - "file": "v1/https/repo.maven.apache.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://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2.jar" - ], - "sha256": "5c285b72e6dc0a98e99ae0a1ceeb4027dab9adfa441844046bd3f19e0efdcb54", - "url": "https://repo.maven.apache.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:1.1.2", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.0" - ], - "file": "v1/https/repo.maven.apache.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://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2-sources.jar" - ], - "sha256": "a5cdd33bc2dcd8917e4fea30d31ea19d0d70cc5f6951c5a913428930ced8391a", - "url": "https://repo.maven.apache.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-xml_2.13:1.2.0", - "dependencies": [ - "org.scala-lang:scala-library:2.13.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/1.2.0/scala-xml_2.13-1.2.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/1.2.0/scala-xml_2.13-1.2.0.jar" - ], - "sha256": "213d2b7840bed5d1a1d5abfa1d72d7c7454473a6f77ea329fff0574910056fd3", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/1.2.0/scala-xml_2.13-1.2.0.jar" - }, - { - "coord": "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.2.0", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/1.2.0/scala-xml_2.13-1.2.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/1.2.0/scala-xml_2.13-1.2.0-sources.jar" - ], - "sha256": "e513d27835bcd489f70c24d5719a585f3323feae6610c06daa1533a462cf34bf", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/1.2.0/scala-xml_2.13-1.2.0-sources.jar" - }, - { - "coord": "org.scala-lang:scala-library:2.13.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.0/scala-library-2.13.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.0/scala-library-2.13.0.jar" - ], - "sha256": "bd3b2fa8b922295ccf1537aba1850d455f82003c10484df509d29ff177cc1edc", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.0/scala-library-2.13.0.jar" - }, - { - "coord": "org.scala-lang:scala-library:jar:sources:2.13.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.0/scala-library-2.13.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.0/scala-library-2.13.0-sources.jar" - ], - "sha256": "4cd39b6e9ec0c5b28bf0b62a841e7aaf16d5728d4e014081a64e5eca0bf6b722", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.0/scala-library-2.13.0-sources.jar" - }, - { - "coord": "org.scala-lang:scala-reflect:2.13.0", - "dependencies": [ - "org.scala-lang:scala-library:2.13.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.0/scala-reflect-2.13.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.0/scala-reflect-2.13.0.jar" - ], - "sha256": "aef72378abbc8b05cfdc7144fc0e55904dd87bf46ce2e973ae667dc3ed2fcee8", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.0/scala-reflect-2.13.0.jar" - }, - { - "coord": "org.scala-lang:scala-reflect:jar:sources:2.13.0", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.0/scala-reflect-2.13.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.0/scala-reflect-2.13.0-sources.jar" - ], - "sha256": "caa51c96a70765dc55988634c6d94c56cf77b4a2998dc19e38fda70966fdd800", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.0/scala-reflect-2.13.0-sources.jar" - }, - { - "coord": "org.scala-sbt:test-interface:1.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0.jar" - ], - "sha256": "15f70b38bb95f3002fec9aea54030f19bb4ecfbad64c67424b5e5fea09cd749e", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0.jar" - }, - { - "coord": "org.scala-sbt:test-interface:jar:sources:1.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0-sources.jar" - ], - "sha256": "c314491c9df4f0bd9dd125ef1d51228d70bd466ee57848df1cd1b96aea18a5ad", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0-sources.jar" - }, - { - "coord": "org.seleniumhq.selenium:htmlunit-driver:2.33.3", - "dependencies": [ - "net.sourceforge.htmlunit:htmlunit:2.33", - "net.sourceforge.htmlunit:htmlunit-cssparser:1.2.0", - "commons-logging:commons-logging:1.2", - "commons-io:commons-io:2.6", - "org.apache.commons:commons-lang3:3.8", - "net.sourceforge.htmlunit:htmlunit-core-js:2.33", - "org.eclipse.jetty.websocket:websocket-common:9.4.12.v20180830", - "org.apache.httpcomponents:httpclient:4.5.6", - "org.eclipse.jetty:jetty-client:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util:9.4.12.v20180830", - "xalan:xalan:2.7.2", - "net.sourceforge.htmlunit:neko-htmlunit:2.33", - "commons-net:commons-net:3.6", - "org.apache.httpcomponents:httpmime:4.5.6", - "xerces:xercesImpl:2.12.0", - "org.apache.commons:commons-text:1.4", - "org.eclipse.jetty.websocket:websocket-api:9.4.12.v20180830", - "org.eclipse.jetty:jetty-xml:9.4.12.v20180830", - "org.eclipse.jetty:jetty-io:9.4.12.v20180830", - "org.apache.httpcomponents:httpcore:4.4.10", - "commons-codec:commons-codec:1.10", - "xalan:serializer:2.7.2", - "org.eclipse.jetty.websocket:websocket-client:9.4.12.v20180830", - "org.eclipse.jetty:jetty-http:9.4.12.v20180830", - "xml-apis:xml-apis:1.4.01" - ], - "directDependencies": [ - "net.sourceforge.htmlunit:htmlunit:2.33" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/seleniumhq/selenium/htmlunit-driver/2.33.3/htmlunit-driver-2.33.3.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/htmlunit-driver/2.33.3/htmlunit-driver-2.33.3.jar" - ], - "sha256": "8d27175c351ed57b3151212fac64905f41a5c2f9a96ecb91bc74efaf3ddf8375", - "url": "https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/htmlunit-driver/2.33.3/htmlunit-driver-2.33.3.jar" - }, - { - "coord": "org.seleniumhq.selenium:htmlunit-driver:jar:sources:2.33.3", - "dependencies": [ - "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.12.v20180830", - "commons-codec:commons-codec:jar:sources:1.10", - "org.apache.httpcomponents:httpclient:jar:sources:4.5.6", - "commons-logging:commons-logging:jar:sources:1.2", - "org.eclipse.jetty:jetty-util:jar:sources:9.4.12.v20180830", - "xerces:xercesImpl:jar:sources:2.12.0", - "commons-io:commons-io:jar:sources:2.6", - "org.eclipse.jetty:jetty-client:jar:sources:9.4.12.v20180830", - "net.sourceforge.htmlunit:neko-htmlunit:jar:sources:2.33", - "commons-net:commons-net:jar:sources:3.6", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-xml:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-http:jar:sources:9.4.12.v20180830", - "xalan:serializer:jar:sources:2.7.2", - "net.sourceforge.htmlunit:htmlunit:jar:sources:2.33", - "org.apache.httpcomponents:httpmime:jar:sources:4.5.6", - "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.12.v20180830", - "org.apache.commons:commons-lang3:jar:sources:3.8", - "org.apache.commons:commons-text:jar:sources:1.4", - "xalan:xalan:jar:sources:2.7.2", - "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.12.v20180830", - "org.apache.httpcomponents:httpcore:jar:sources:4.4.10", - "xml-apis:xml-apis:jar:sources:1.4.01", - "net.sourceforge.htmlunit:htmlunit-core-js:jar:sources:2.33", - "net.sourceforge.htmlunit:htmlunit-cssparser:jar:sources:1.2.0" - ], - "directDependencies": [ - "net.sourceforge.htmlunit:htmlunit:jar:sources:2.33" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/seleniumhq/selenium/htmlunit-driver/2.33.3/htmlunit-driver-2.33.3-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/htmlunit-driver/2.33.3/htmlunit-driver-2.33.3-sources.jar" - ], - "sha256": "fb0c6864850eaaf3076520ad81ada3c2f734f640350cd91e849f91a7e43ec232", - "url": "https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/htmlunit-driver/2.33.3/htmlunit-driver-2.33.3-sources.jar" - }, - { - "coord": "org.seleniumhq.selenium:selenium-api:3.141.59", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-api/3.141.59/selenium-api-3.141.59.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-api/3.141.59/selenium-api-3.141.59.jar" - ], - "sha256": "8bfd5a736eccfc08866301ffc9b7f529e55976355c5799bed8392486df64dee5", - "url": "https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-api/3.141.59/selenium-api-3.141.59.jar" - }, - { - "coord": "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-api/3.141.59/selenium-api-3.141.59-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-api/3.141.59/selenium-api-3.141.59-sources.jar" - ], - "sha256": "91e6c542fbb9b78082a149c8fb012dd439a18b36e69ff25d12279a0392d4c541", - "url": "https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-api/3.141.59/selenium-api-3.141.59-sources.jar" - }, - { - "coord": "org.seleniumhq.selenium:selenium-firefox-driver:3.141.59", - "dependencies": [ - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.squareup.okio:okio:1.14.0", - "org.seleniumhq.selenium:selenium-remote-driver:3.141.59", - "com.google.code.findbugs:jsr305:3.0.2", - "net.bytebuddy:byte-buddy:1.9.3", - "org.seleniumhq.selenium:selenium-api:3.141.59", - "com.google.guava:guava:27.1-jre", - "org.codehaus.mojo:animal-sniffer-annotations:1.17", - "com.squareup.okhttp3:okhttp:3.11.0", - "com.google.j2objc:j2objc-annotations:1.1", - "com.google.guava:failureaccess:1.0.1", - "com.google.errorprone:error_prone_annotations:2.2.0", - "org.apache.commons:commons-exec:1.3", - "org.checkerframework:checker-qual:2.5.2" - ], - "directDependencies": [ - "com.squareup.okio:okio:1.14.0", - "org.seleniumhq.selenium:selenium-remote-driver:3.141.59", - "net.bytebuddy:byte-buddy:1.9.3", - "org.seleniumhq.selenium:selenium-api:3.141.59", - "com.google.guava:guava:27.1-jre", - "com.squareup.okhttp3:okhttp:3.11.0", - "org.apache.commons:commons-exec:1.3" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-firefox-driver/3.141.59/selenium-firefox-driver-3.141.59.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-firefox-driver/3.141.59/selenium-firefox-driver-3.141.59.jar" - ], - "sha256": "3e6edcb1e96a207bf98865cf4a56f0e1e2ffc478da2cf056644aec1c89c51fea", - "url": "https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-firefox-driver/3.141.59/selenium-firefox-driver-3.141.59.jar" - }, - { - "coord": "org.seleniumhq.selenium:selenium-firefox-driver:jar:sources:3.141.59", - "dependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17", - "net.bytebuddy:byte-buddy:jar:sources:1.9.3", - "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", - "org.apache.commons:commons-exec:jar:sources:1.3", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", - "com.google.errorprone:error_prone_annotations:jar:sources:2.2.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:27.1-jre", - "com.squareup.okio:okio:jar:sources:1.14.0" - ], - "directDependencies": [ - "net.bytebuddy:byte-buddy:jar:sources:1.9.3", - "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", - "org.apache.commons:commons-exec:jar:sources:1.3", - "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", - "com.google.guava:guava:jar:sources:27.1-jre", - "com.squareup.okio:okio:jar:sources:1.14.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-firefox-driver/3.141.59/selenium-firefox-driver-3.141.59-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-firefox-driver/3.141.59/selenium-firefox-driver-3.141.59-sources.jar" - ], - "sha256": "a98b6cd891ec6ab49c94af7736e493940457713c2c4985326afc16c9233be504", - "url": "https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-firefox-driver/3.141.59/selenium-firefox-driver-3.141.59-sources.jar" - }, - { - "coord": "org.seleniumhq.selenium:selenium-remote-driver:3.141.59", - "dependencies": [ - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.squareup.okio:okio:1.14.0", - "com.google.code.findbugs:jsr305:3.0.2", - "net.bytebuddy:byte-buddy:1.9.3", - "org.seleniumhq.selenium:selenium-api:3.141.59", - "com.google.guava:guava:27.1-jre", - "org.codehaus.mojo:animal-sniffer-annotations:1.17", - "com.squareup.okhttp3:okhttp:3.11.0", - "com.google.j2objc:j2objc-annotations:1.1", - "com.google.guava:failureaccess:1.0.1", - "com.google.errorprone:error_prone_annotations:2.2.0", - "org.apache.commons:commons-exec:1.3", - "org.checkerframework:checker-qual:2.5.2" - ], - "directDependencies": [ - "com.squareup.okio:okio:1.14.0", - "net.bytebuddy:byte-buddy:1.9.3", - "org.seleniumhq.selenium:selenium-api:3.141.59", - "com.google.guava:guava:27.1-jre", - "com.squareup.okhttp3:okhttp:3.11.0", - "org.apache.commons:commons-exec:1.3" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-remote-driver/3.141.59/selenium-remote-driver-3.141.59.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-remote-driver/3.141.59/selenium-remote-driver-3.141.59.jar" - ], - "sha256": "9829fe57adf36743d785d0c2e7db504ba3ba0a3aacac652b8867cc854d2dfc45", - "url": "https://repo.maven.apache.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:3.141.59", - "dependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17", - "net.bytebuddy:byte-buddy:jar:sources:1.9.3", - "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", - "org.apache.commons:commons-exec:jar:sources:1.3", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.errorprone:error_prone_annotations:jar:sources:2.2.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:27.1-jre", - "com.squareup.okio:okio:jar:sources:1.14.0" - ], - "directDependencies": [ - "net.bytebuddy:byte-buddy:jar:sources:1.9.3", - "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", - "org.apache.commons:commons-exec:jar:sources:1.3", - "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", - "com.google.guava:guava:jar:sources:27.1-jre", - "com.squareup.okio:okio:jar:sources:1.14.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-remote-driver/3.141.59/selenium-remote-driver-3.141.59-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-remote-driver/3.141.59/selenium-remote-driver-3.141.59-sources.jar" - ], - "sha256": "aad98064715728567784c00915692b3075c0c1aad80ca14518340868c8296597", - "url": "https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-remote-driver/3.141.59/selenium-remote-driver-3.141.59-sources.jar" - }, - { - "coord": "org.seleniumhq.selenium:selenium-support:3.141.59", - "dependencies": [ - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.squareup.okio:okio:1.14.0", - "org.seleniumhq.selenium:selenium-remote-driver:3.141.59", - "com.google.code.findbugs:jsr305:3.0.2", - "net.bytebuddy:byte-buddy:1.9.3", - "org.seleniumhq.selenium:selenium-api:3.141.59", - "com.google.guava:guava:27.1-jre", - "org.codehaus.mojo:animal-sniffer-annotations:1.17", - "com.squareup.okhttp3:okhttp:3.11.0", - "com.google.j2objc:j2objc-annotations:1.1", - "com.google.guava:failureaccess:1.0.1", - "com.google.errorprone:error_prone_annotations:2.2.0", - "org.apache.commons:commons-exec:1.3", - "org.checkerframework:checker-qual:2.5.2" - ], - "directDependencies": [ - "com.squareup.okio:okio:1.14.0", - "org.seleniumhq.selenium:selenium-remote-driver:3.141.59", - "net.bytebuddy:byte-buddy:1.9.3", - "org.seleniumhq.selenium:selenium-api:3.141.59", - "com.google.guava:guava:27.1-jre", - "com.squareup.okhttp3:okhttp:3.11.0", - "org.apache.commons:commons-exec:1.3" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-support/3.141.59/selenium-support-3.141.59.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-support/3.141.59/selenium-support-3.141.59.jar" - ], - "sha256": "2c74196d15277ce6003454d72fc3434091dbf3ba65060942719ba551509404d8", - "url": "https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-support/3.141.59/selenium-support-3.141.59.jar" - }, - { - "coord": "org.seleniumhq.selenium:selenium-support:jar:sources:3.141.59", - "dependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17", - "net.bytebuddy:byte-buddy:jar:sources:1.9.3", - "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", - "org.apache.commons:commons-exec:jar:sources:1.3", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", - "com.google.errorprone:error_prone_annotations:jar:sources:2.2.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:guava:jar:sources:27.1-jre", - "com.squareup.okio:okio:jar:sources:1.14.0" - ], - "directDependencies": [ - "net.bytebuddy:byte-buddy:jar:sources:1.9.3", - "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", - "org.apache.commons:commons-exec:jar:sources:1.3", - "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", - "com.google.guava:guava:jar:sources:27.1-jre", - "com.squareup.okio:okio:jar:sources:1.14.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-support/3.141.59/selenium-support-3.141.59-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-support/3.141.59/selenium-support-3.141.59-sources.jar" - ], - "sha256": "70112a60fd5750918a4ee45e7487f6bea9a6b500eeabf93e141b36541f51d096", - "url": "https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-support/3.141.59/selenium-support-3.141.59-sources.jar" - }, - { - "coord": "org.slf4j:jcl-over-slf4j:1.7.26", - "dependencies": [ - "org.slf4j:slf4j-api:1.7.26" - ], - "directDependencies": [ - "org.slf4j:slf4j-api:1.7.26" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.7.26/jcl-over-slf4j-1.7.26.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.7.26/jcl-over-slf4j-1.7.26.jar" - ], - "sha256": "2800417ecc5c927cce2b8a2cd22f0933e4006023c4e4fb255985a27746f5573c", - "url": "https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.7.26/jcl-over-slf4j-1.7.26.jar" - }, - { - "coord": "org.slf4j:jcl-over-slf4j:jar:sources:1.7.26", - "dependencies": [ - "org.slf4j:slf4j-api:jar:sources:1.7.26" - ], - "directDependencies": [ - "org.slf4j:slf4j-api:jar:sources:1.7.26" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.7.26/jcl-over-slf4j-1.7.26-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.7.26/jcl-over-slf4j-1.7.26-sources.jar" - ], - "sha256": "0dadaae77ca9b20ca1945c39e425648cb7d2ed29dde65aac100dae9b6f6e3e5f", - "url": "https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.7.26/jcl-over-slf4j-1.7.26-sources.jar" - }, - { - "coord": "org.slf4j:jul-to-slf4j:1.7.26", - "dependencies": [ - "org.slf4j:slf4j-api:1.7.26" - ], - "directDependencies": [ - "org.slf4j:slf4j-api:1.7.26" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.26/jul-to-slf4j-1.7.26.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.26/jul-to-slf4j-1.7.26.jar" - ], - "sha256": "0f3b6dfbfb261e3e2b71ea88574452f36c46fec016063439eb8f60083291918e", - "url": "https://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.26/jul-to-slf4j-1.7.26.jar" - }, - { - "coord": "org.slf4j:jul-to-slf4j:jar:sources:1.7.26", - "dependencies": [ - "org.slf4j:slf4j-api:jar:sources:1.7.26" - ], - "directDependencies": [ - "org.slf4j:slf4j-api:jar:sources:1.7.26" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.26/jul-to-slf4j-1.7.26-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.26/jul-to-slf4j-1.7.26-sources.jar" - ], - "sha256": "8eebb18952ffd7267feff33658bd17470129aa2e36958176cbff716b7c7fe675", - "url": "https://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.26/jul-to-slf4j-1.7.26-sources.jar" - }, - { - "coord": "org.slf4j:slf4j-api:1.7.26", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26.jar" - ], - "sha256": "6d9e5b86cfd1dd44c676899285b5bb4fa0d371cf583e8164f9c8a0366553242b", - "url": "https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26.jar" - }, - { - "coord": "org.slf4j:slf4j-api:jar:sources:1.7.26", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26-sources.jar" - ], - "sha256": "9e25ad98a324e6685752fd01fbbd0588ceec5df564e53c49486946a2d19dc482", - "url": "https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26-sources.jar" - }, - { - "coord": "org.specs2:specs2-common_2.13:4.7.0", - "dependencies": [ - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "org.specs2:specs2-fp_2.13:4.7.0", - "org.scala-lang:scala-reflect:2.13.0", - "org.scala-lang:scala-library:2.13.0", - "org.scala-lang.modules:scala-xml_2.13:1.2.0" - ], - "directDependencies": [ - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "org.specs2:specs2-fp_2.13:4.7.0", - "org.scala-lang:scala-reflect:2.13.0", - "org.scala-lang:scala-library:2.13.0", - "org.scala-lang.modules:scala-xml_2.13:1.2.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.7.0/specs2-common_2.13-4.7.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.7.0/specs2-common_2.13-4.7.0.jar" - ], - "sha256": "a385c79f9df7f908657108a765ba32bff0fb21415154aa9e16fce7e9d501fbd5", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.7.0/specs2-common_2.13-4.7.0.jar" - }, - { - "coord": "org.specs2:specs2-common_2.13:jar:sources:4.7.0", - "dependencies": [ - "org.specs2:specs2-fp_2.13:jar:sources:4.7.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.2.0", - "org.scala-lang:scala-reflect:jar:sources:2.13.0" - ], - "directDependencies": [ - "org.specs2:specs2-fp_2.13:jar:sources:4.7.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.2.0", - "org.scala-lang:scala-reflect:jar:sources:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.7.0/specs2-common_2.13-4.7.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.7.0/specs2-common_2.13-4.7.0-sources.jar" - ], - "sha256": "b7e0e2d5d6a90758aa8a988293a3da204f1932304eadc78e30891e920feee783", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.7.0/specs2-common_2.13-4.7.0-sources.jar" - }, - { - "coord": "org.specs2:specs2-core_2.13:4.7.0", - "dependencies": [ - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "org.specs2:specs2-fp_2.13:4.7.0", - "org.scala-lang:scala-reflect:2.13.0", - "org.specs2:specs2-matcher_2.13:4.7.0", - "org.specs2:specs2-common_2.13:4.7.0", - "org.scala-sbt:test-interface:1.0", - "org.scala-lang:scala-library:2.13.0", - "org.scala-lang.modules:scala-xml_2.13:1.2.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.13.0", - "org.scala-sbt:test-interface:1.0", - "org.specs2:specs2-common_2.13:4.7.0", - "org.specs2:specs2-matcher_2.13:4.7.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.7.0/specs2-core_2.13-4.7.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.7.0/specs2-core_2.13-4.7.0.jar" - ], - "sha256": "346f16e5a7dba1e6fe84a4476fb0c467f93f85217d39e9beaf50a917ddc90307", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.7.0/specs2-core_2.13-4.7.0.jar" - }, - { - "coord": "org.specs2:specs2-core_2.13:jar:sources:4.7.0", - "dependencies": [ - "org.specs2:specs2-fp_2.13:jar:sources:4.7.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.2.0", - "org.specs2:specs2-common_2.13:jar:sources:4.7.0", - "org.scala-sbt:test-interface:jar:sources:1.0", - "org.specs2:specs2-matcher_2.13:jar:sources:4.7.0", - "org.scala-lang:scala-reflect:jar:sources:2.13.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.scala-sbt:test-interface:jar:sources:1.0", - "org.specs2:specs2-common_2.13:jar:sources:4.7.0", - "org.specs2:specs2-matcher_2.13:jar:sources:4.7.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.7.0/specs2-core_2.13-4.7.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.7.0/specs2-core_2.13-4.7.0-sources.jar" - ], - "sha256": "5395016bc63f569894e4e5b69ed7732719471c44713f85cc5c99297502dec809", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.7.0/specs2-core_2.13-4.7.0-sources.jar" - }, - { - "coord": "org.specs2:specs2-fp_2.13:4.7.0", - "dependencies": [ - "org.scala-lang:scala-library:2.13.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.7.0/specs2-fp_2.13-4.7.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.7.0/specs2-fp_2.13-4.7.0.jar" - ], - "sha256": "2110c703d5771dba616e36207e8560a9eba1908eded1cebf0b2561cce54ac6f5", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.7.0/specs2-fp_2.13-4.7.0.jar" - }, - { - "coord": "org.specs2:specs2-fp_2.13:jar:sources:4.7.0", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.7.0/specs2-fp_2.13-4.7.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.7.0/specs2-fp_2.13-4.7.0-sources.jar" - ], - "sha256": "be5d8bc4a0e5886214c3a9314427c496deef8a2c08fe4fbc066e9a127fbd8f29", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.7.0/specs2-fp_2.13-4.7.0-sources.jar" - }, - { - "coord": "org.specs2:specs2-junit_2.13:4.5.1", - "dependencies": [ - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "org.specs2:specs2-fp_2.13:4.7.0", - "org.scala-lang:scala-reflect:2.13.0", - "org.specs2:specs2-matcher_2.13:4.7.0", - "junit:junit:4.12", - "org.hamcrest:hamcrest-core:1.3", - "org.specs2:specs2-common_2.13:4.7.0", - "org.scala-sbt:test-interface:1.0", - "org.scala-lang:scala-library:2.13.0", - "org.scala-lang.modules:scala-xml_2.13:1.2.0", - "org.specs2:specs2-core_2.13:4.7.0" - ], - "directDependencies": [ - "junit:junit:4.12", - "org.scala-lang:scala-library:2.13.0", - "org.scala-sbt:test-interface:1.0", - "org.specs2:specs2-core_2.13:4.7.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-junit_2.13/4.5.1/specs2-junit_2.13-4.5.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-junit_2.13/4.5.1/specs2-junit_2.13-4.5.1.jar" - ], - "sha256": "61272e75d43628343690fea2149bf17adeb407c859223d0cfe77d01a10c7255a", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-junit_2.13/4.5.1/specs2-junit_2.13-4.5.1.jar" - }, - { - "coord": "org.specs2:specs2-junit_2.13:jar:sources:4.5.1", - "dependencies": [ - "org.specs2:specs2-fp_2.13:jar:sources:4.7.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.2.0", - "org.hamcrest:hamcrest-core:jar:sources:1.3", - "org.specs2:specs2-common_2.13:jar:sources:4.7.0", - "org.scala-sbt:test-interface:jar:sources:1.0", - "org.specs2:specs2-matcher_2.13:jar:sources:4.7.0", - "org.specs2:specs2-core_2.13:jar:sources:4.7.0", - "junit:junit:jar:sources:4.12", - "org.scala-lang:scala-reflect:jar:sources:2.13.0" - ], - "directDependencies": [ - "junit:junit:jar:sources:4.12", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.scala-sbt:test-interface:jar:sources:1.0", - "org.specs2:specs2-core_2.13:jar:sources:4.7.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-junit_2.13/4.5.1/specs2-junit_2.13-4.5.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-junit_2.13/4.5.1/specs2-junit_2.13-4.5.1-sources.jar" - ], - "sha256": "fb7553ac6a12d8a6ce482ec979edf2e093dfd1159de3d7696691a3e239231c93", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-junit_2.13/4.5.1/specs2-junit_2.13-4.5.1-sources.jar" - }, - { - "coord": "org.specs2:specs2-matcher_2.13:4.7.0", - "dependencies": [ - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "org.specs2:specs2-fp_2.13:4.7.0", - "org.scala-lang:scala-reflect:2.13.0", - "org.specs2:specs2-common_2.13:4.7.0", - "org.scala-lang:scala-library:2.13.0", - "org.scala-lang.modules:scala-xml_2.13:1.2.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.13.0", - "org.specs2:specs2-common_2.13:4.7.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.7.0/specs2-matcher_2.13-4.7.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.7.0/specs2-matcher_2.13-4.7.0.jar" - ], - "sha256": "08857c2830b3a1b006a5a3996b5ae5ba5806fd5a1a57aa8db9b413fa89157746", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.7.0/specs2-matcher_2.13-4.7.0.jar" - }, - { - "coord": "org.specs2:specs2-matcher_2.13:jar:sources:4.7.0", - "dependencies": [ - "org.specs2:specs2-fp_2.13:jar:sources:4.7.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.2.0", - "org.specs2:specs2-common_2.13:jar:sources:4.7.0", - "org.scala-lang:scala-reflect:jar:sources:2.13.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.specs2:specs2-common_2.13:jar:sources:4.7.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.7.0/specs2-matcher_2.13-4.7.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.7.0/specs2-matcher_2.13-4.7.0-sources.jar" - ], - "sha256": "a6b2a2c149e89b1ff959a0ea5d2efe0efa3694616dc03fd5aec800976446e828", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.7.0/specs2-matcher_2.13-4.7.0-sources.jar" - }, - { - "coord": "org.specs2:specs2-mock_2.13:4.5.1", - "dependencies": [ - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "org.specs2:specs2-fp_2.13:4.7.0", - "org.scala-lang:scala-reflect:2.13.0", - "org.specs2:specs2-matcher_2.13:4.7.0", - "net.bytebuddy:byte-buddy:1.9.3", - "org.hamcrest:hamcrest-core:1.3", - "org.specs2:specs2-common_2.13:4.7.0", - "org.scala-sbt:test-interface:1.0", - "org.objenesis:objenesis:2.6", - "org.scala-lang:scala-library:2.13.0", - "org.scala-lang.modules:scala-xml_2.13:1.2.0", - "net.bytebuddy:byte-buddy-agent:1.9.3", - "org.specs2:specs2-core_2.13:4.7.0", - "org.mockito:mockito-core:2.23.4" - ], - "directDependencies": [ - "org.hamcrest:hamcrest-core:1.3", - "org.scala-sbt:test-interface:1.0", - "org.scala-lang:scala-library:2.13.0", - "org.specs2:specs2-core_2.13:4.7.0", - "org.mockito:mockito-core:2.23.4" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-mock_2.13/4.5.1/specs2-mock_2.13-4.5.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-mock_2.13/4.5.1/specs2-mock_2.13-4.5.1.jar" - ], - "sha256": "94bdf92e507e6d6435fac8538fb4927f4f905aea3597ea4b258565d6eee5e410", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-mock_2.13/4.5.1/specs2-mock_2.13-4.5.1.jar" - }, - { - "coord": "org.specs2:specs2-mock_2.13:jar:sources:4.5.1", - "dependencies": [ - "org.specs2:specs2-fp_2.13:jar:sources:4.7.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.2.0", - "net.bytebuddy:byte-buddy:jar:sources:1.9.3", - "net.bytebuddy:byte-buddy-agent:jar:sources:1.9.3", - "org.mockito:mockito-core:jar:sources:2.23.4", - "org.hamcrest:hamcrest-core:jar:sources:1.3", - "org.specs2:specs2-common_2.13:jar:sources:4.7.0", - "org.scala-sbt:test-interface:jar:sources:1.0", - "org.specs2:specs2-matcher_2.13:jar:sources:4.7.0", - "org.specs2:specs2-core_2.13:jar:sources:4.7.0", - "org.scala-lang:scala-reflect:jar:sources:2.13.0", - "org.objenesis:objenesis:jar:sources:2.6" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.0", - "org.mockito:mockito-core:jar:sources:2.23.4", - "org.hamcrest:hamcrest-core:jar:sources:1.3", - "org.scala-sbt:test-interface:jar:sources:1.0", - "org.specs2:specs2-core_2.13:jar:sources:4.7.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-mock_2.13/4.5.1/specs2-mock_2.13-4.5.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-mock_2.13/4.5.1/specs2-mock_2.13-4.5.1-sources.jar" - ], - "sha256": "7e4048f4e626c1bfeb8b47d02db4d8d7d68bb3b0d3846094afeef0b9ab43d5a2", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-mock_2.13/4.5.1/specs2-mock_2.13-4.5.1-sources.jar" - }, - { - "coord": "xalan:serializer:2.7.2", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "xerces:xercesImpl", - "xml-apis:xml-apis", - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/xalan/serializer/2.7.2/serializer-2.7.2.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/xalan/serializer/2.7.2/serializer-2.7.2.jar" - ], - "sha256": "e8f5b4340d3b12a0cfa44ac2db4be4e0639e479ae847df04c4ed8b521734bb4a", - "url": "https://repo.maven.apache.org/maven2/xalan/serializer/2.7.2/serializer-2.7.2.jar" - }, - { - "coord": "xalan:serializer:jar:sources:2.7.2", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "xerces:xercesImpl", - "xml-apis:xml-apis", - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/xalan/serializer/2.7.2/serializer-2.7.2-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/xalan/serializer/2.7.2/serializer-2.7.2-sources.jar" - ], - "sha256": "15f88b71e32817c6b4d5977d54ad2fe1b18e82a8ab9a1d68ca568fb0aabb2ae6", - "url": "https://repo.maven.apache.org/maven2/xalan/serializer/2.7.2/serializer-2.7.2-sources.jar" - }, - { - "coord": "xalan:xalan:2.7.2", - "dependencies": [ - "xalan:serializer:2.7.2" - ], - "directDependencies": [ - "xalan:serializer:2.7.2" - ], - "exclusions": [ - "xerces:xercesImpl", - "xml-apis:xml-apis", - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/xalan/xalan/2.7.2/xalan-2.7.2.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/xalan/xalan/2.7.2/xalan-2.7.2.jar" - ], - "sha256": "a44bd80e82cb0f4cfac0dac8575746223802514e3cec9dc75235bc0de646af14", - "url": "https://repo.maven.apache.org/maven2/xalan/xalan/2.7.2/xalan-2.7.2.jar" - }, - { - "coord": "xalan:xalan:jar:sources:2.7.2", - "dependencies": [ - "xalan:serializer:jar:sources:2.7.2" - ], - "directDependencies": [ - "xalan:serializer:jar:sources:2.7.2" - ], - "exclusions": [ - "xerces:xercesImpl", - "xml-apis:xml-apis", - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/xalan/xalan/2.7.2/xalan-2.7.2-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/xalan/xalan/2.7.2/xalan-2.7.2-sources.jar" - ], - "sha256": "15f88b71e32817c6b4d5977d54ad2fe1b18e82a8ab9a1d68ca568fb0aabb2ae6", - "url": "https://repo.maven.apache.org/maven2/xalan/xalan/2.7.2/xalan-2.7.2-sources.jar" - }, - { - "coord": "xerces:xercesImpl:2.12.0", - "dependencies": [ - "xml-apis:xml-apis:1.4.01" - ], - "directDependencies": [ - "xml-apis:xml-apis:1.4.01" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/xerces/xercesImpl/2.12.0/xercesImpl-2.12.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/xerces/xercesImpl/2.12.0/xercesImpl-2.12.0.jar" - ], - "sha256": "b50d3a4ca502faa4d1c838acb8aa9480446953421f7327e338c5dda3da5e76d0", - "url": "https://repo.maven.apache.org/maven2/xerces/xercesImpl/2.12.0/xercesImpl-2.12.0.jar" - }, - { - "coord": "xerces:xercesImpl:jar:sources:2.12.0", - "dependencies": [ - "xml-apis:xml-apis:jar:sources:1.4.01" - ], - "directDependencies": [ - "xml-apis:xml-apis:jar:sources:1.4.01" - ], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/xerces/xercesImpl/2.12.0/xercesImpl-2.12.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/xerces/xercesImpl/2.12.0/xercesImpl-2.12.0-sources.jar" - ], - "sha256": "bbb819a8496f85526cec3c29b930df97ceb6c23060d057030f2c89efe17d7c74", - "url": "https://repo.maven.apache.org/maven2/xerces/xercesImpl/2.12.0/xercesImpl-2.12.0-sources.jar" - }, - { - "coord": "xml-apis:xml-apis:1.4.01", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar" - ], - "sha256": "a840968176645684bb01aed376e067ab39614885f9eee44abe35a5f20ebe7fad", - "url": "https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar" - }, - { - "coord": "xml-apis:xml-apis:jar:sources:1.4.01", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.seleniumhq.selenium:selenium-api", - "org.seleniumhq.selenium:selenium-support" - ], - "file": "v1/https/repo.maven.apache.org/maven2/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01-sources.jar" - ], - "sha256": "5db8b94589e334283e01075458cfae920995e37ab997cb3b475fd0667b3158b2", - "url": "https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01-sources.jar" - }, - { - "coord": "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "dependencies": [], - "directDependencies": [], - "file": null - } - ], - "version": "0.1.0" + "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", + "__INPUT_ARTIFACTS_HASH": 143709640, + "__RESOLVED_ARTIFACTS_HASH": -1834126999, + "artifacts": { + "aopalliance:aopalliance": { + "shasums": { + "jar": "0addec670fedcd3f113c5c8091d783280d23f75e3acb841b61a9cdb079376a08", + "sources": "e6ef91d439ada9045f419c77543ebe0416c3cdfc5b063448343417a3e4a72123" + }, + "version": "1.0" + }, + "cglib:cglib": { + "shasums": { + "jar": "9fe0c26d7464140ccdfe019ac687be1fb906122b508ab54beb810db0f09a9212", + "sources": "78fc78ab0d67bd19875443d3e197e059ebbef2affffd898cab812be26ff6f176" + }, + "version": "3.3.0" + }, + "ch.qos.logback:logback-classic": { + "shasums": { + "jar": "8e832f7263ca606ae36dabb2d8b24c2f43d82cf634e81dad9d1640fa6ee3c596", + "sources": "b3e670ccb6a8f2cfc6445f54c6fbfbc62bdd3912d147498d81e425d578dfb468" + }, + "version": "1.4.14" + }, + "ch.qos.logback:logback-core": { + "shasums": { + "jar": "f8c2f05f42530b1852739507c1792f0080167850ed8f396444c6913d6617a293", + "sources": "760175e067af94b6d43b5d1558e154d60766de320618f78ff8cb8f956a7da92f" + }, + "version": "1.4.14" + }, + "com.fasterxml.jackson.core:jackson-annotations": { + "shasums": { + "jar": "ea1b3a9ec60a353f4d7e78559c7140abb9bcf71b31456e9d57c8289f7cf397f1", + "sources": "e6f7f659bb4abd9be1fe2f259f95a2340744aff373eb34c134d6e2210bdc300d" + }, + "version": "2.14.3" + }, + "com.fasterxml.jackson.core:jackson-core": { + "shasums": { + "jar": "7ee2debad3c002e97b28b84d5f1b2044a38e780abb673948238f5bc656e2fe44", + "sources": "3ee18051ff11ca9e0fd203bb163f2322c09573c76b6c1b13e2bd1031fb6f962a" + }, + "version": "2.14.3" + }, + "com.fasterxml.jackson.core:jackson-databind": { + "shasums": { + "jar": "ef0694046dc86e8a601e69efef24cda88a85773aaf012f5b9b1167d6f2e7de45", + "sources": "f9f6c8dd8b543c02eefc5844d068d90ff070ab913115be5df704b99b1988264b" + }, + "version": "2.14.3" + }, + "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor": { + "shasums": { + "jar": "b9a8cf451b9e55bc6139b4140f4a9aad3c112096dcb10c167fcc1ed7f2776e3c", + "sources": "8a0d125199b1065d77582a88f3d3e23e3d711f508f74eaf2b63c8b790e4a7257" + }, + "version": "2.14.3" + }, + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8": { + "shasums": { + "jar": "174dff10d8b8a762354401346317be3844f31f807a68eb72ce2b287ca273f4a4", + "sources": "762f23914234ea46addf3cf7c6625c50a03a045c62887b038f61e58d3dc72e15" + }, + "version": "2.14.3" + }, + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310": { + "shasums": { + "jar": "0b1b6d0267f939fe1c2d3167d33176a0b9f8c9b38444787d281e846beddf9ad6", + "sources": "43ca94b09ba2f33407a8367d98600fa3027da371cb6c62cc2a274f00917e6450" + }, + "version": "2.14.3" + }, + "com.fasterxml.jackson.module:jackson-module-parameter-names": { + "shasums": { + "jar": "322996c934cf2a9044c0314809727cfe75b0e7e87b7acedaa666e63b19f755a8", + "sources": "0265cdcfa989ccca257c8125d5d067168a7e5d175ef22c44a07c3505cb5a9828" + }, + "version": "2.14.3" + }, + "com.fasterxml.jackson.module:jackson-module-scala_2.13": { + "shasums": { + "jar": "cbfd89031ef819ed868696206af79bf1793a31472694866f8708809f10cf86f7", + "sources": "c81ed9bb99575e23b12d844fb46e53912e6afa481fef68a3b36cf9b01cc7c1ef" + }, + "version": "2.14.3" + }, + "com.github.sbt:junit-interface": { + "shasums": { + "jar": "97845abe42a6ec1d723446a9cfe035565442619cafba0374117a5496d3651e89", + "sources": "ab13f313d89b6f5ed8634fe451371ca928246db9087537d233a21fca1653079d" + }, + "version": "0.13.3" + }, + "com.google.auto.service:auto-service-annotations": { + "shasums": { + "jar": "16a76dd00a2650568447f5d6e3a9e2c809d9a42367d56b45215cfb89731f4d24", + "sources": "371bc06d861278f8048157b5172fd5e830410cdd9cddf1cca02cd9ead7b64fff" + }, + "version": "1.1.1" + }, + "com.google.code.findbugs:jsr305": { + "shasums": { + "jar": "766ad2a0783f2687962c8ad74ceecc38a28b9f72a2d085ee438b7813e928d0c7", + "sources": "1c9e85e272d0708c6a591dc74828c71603053b48cc75ae83cce56912a2aa063b" + }, + "version": "3.0.2" + }, + "com.google.code.gson:gson": { + "shasums": { + "jar": "0cdd163ce3598a20fc04eee71b140b24f6f2a3b35f0a499dbbdd9852e83fbfaf", + "sources": "984c3636c3911185469a2df991da1bb325de391b9215088ce6c26476bdd61f99" + }, + "version": "2.10" + }, + "com.google.errorprone:error_prone_annotations": { + "shasums": { + "jar": "d1f3c66aa91ac52549e00ae3b208ba4b9af7d72d68f230643553beb38e6118ac", + "sources": "29012a51bb8d7d7bdd7db882f46dec8cccb36b40f34b6e5de2ec7dd647b372ca" + }, + "version": "2.21.1" + }, + "com.google.guava:failureaccess": { + "shasums": { + "jar": "a171ee4c734dd2da837e4b16be9df4661afab72a41adaf31eb84dfdaf936ca26", + "sources": "092346eebbb1657b51aa7485a246bf602bb464cc0b0e2e1c7e7201fadce1e98f" + }, + "version": "1.0.1" + }, + "com.google.guava:guava": { + "shasums": { + "jar": "6d4e2b5a118aab62e6e5e29d185a0224eed82c85c40ac3d33cf04a270c3b3744", + "sources": "9f6f333b2deaf36644d14ddeed7e6b31151b0c244bab1e4d58ee443ade9a09f3" + }, + "version": "32.1.3-jre" + }, + "com.google.guava:listenablefuture": { + "shasums": { + "jar": "b372a037d4230aa57fbeffdef30fd6123f9c0c2db85d0aced00c91b974f33f99", + "sources": null + }, + "version": "9999.0-empty-to-avoid-conflict-with-guava" + }, + "com.google.inject.extensions:guice-assistedinject": { + "shasums": { + "jar": "f4d264534f213af7beb493273f72f02ef9eb4b229d71a0a80f003b7349dee6f9", + "sources": "be0f353df20cb375c30b2030de49ac93a6e171f4abbc66b94961baaf584ddfe3" + }, + "version": "6.0.0" + }, + "com.google.inject:guice": { + "shasums": { + "jar": "b4d4f7ec5e8fc17b4f98dee9d3f6cf6ae3ae13e2e5ed4b2f7bbf09bc4bb675d5", + "sources": "656b82a85535ada22d251fbc4ab3e786e66997510d03325d168bc193c2148c09" + }, + "version": "6.0.0" + }, + "com.google.j2objc:j2objc-annotations": { + "shasums": { + "jar": "f02a95fa1a5e95edb3ed859fd0fb7df709d121a35290eff8b74dce2ab7f4d6ed", + "sources": "7413eed41f111453a08837f5ac680edded7faed466cbd35745e402e13f4cc3f5" + }, + "version": "2.8" + }, + "com.shapesecurity:salvation2": { + "shasums": { + "jar": "a1a0f5238a07f246c9e206725f697e5623e93b729d8fd8b148fc627bf9a27c07", + "sources": "b10a798a9f988eaac6d053f445d5769f6f51dc89164aae16901ea37234d8af3c" + }, + "version": "3.0.1" + }, + "com.thoughtworks.paranamer:paranamer": { + "shasums": { + "jar": "688cb118a6021d819138e855208c956031688be4b47a24bb615becc63acedf07", + "sources": "8a4bfc21755c36ccdd70f96d7ab891d842d5aebd6afa1b74e0efc6441e3df39c" + }, + "version": "2.8" + }, + "com.typesafe.akka:akka-actor-typed_2.13": { + "shasums": { + "jar": "b94445b12d84d4edca7dc1f89ac2dbadaad65db38dd6720c1e640104c191b6a7", + "sources": "8b84c97671b43854ade117ab78ea2bf53b66704fc68fd31b8c6cbd79b6ab63c0" + }, + "version": "2.6.21" + }, + "com.typesafe.akka:akka-actor_2.13": { + "shasums": { + "jar": "4b94405b842ae6b0679e31b4c4f6f22c6cd41bf91d342eda79c11e7b56718e11", + "sources": "fcd2161828f06ab0549b7928034249086efbc4d564f95a22b577728d37053dfe" + }, + "version": "2.6.21" + }, + "com.typesafe.akka:akka-protobuf-v3_2.13": { + "shasums": { + "jar": "5643073342c1f8fc0db038973f30240e1c7959c565d169a617c80a36987d4b4a", + "sources": "bbe3f382ef477259c962339489f1533382ba1455eb6a83c6e1bd581c1771476d" + }, + "version": "2.6.21" + }, + "com.typesafe.akka:akka-serialization-jackson_2.13": { + "shasums": { + "jar": "04ab73f3a3e904b3d88750925c9e4231c9ca615188e7074d16c941e0f1e3fda6", + "sources": "6fc45c09d01107f023687ded3e639ec549dcf3a0bd5bf3a1e631a43d6c40733c" + }, + "version": "2.6.21" + }, + "com.typesafe.akka:akka-slf4j_2.13": { + "shasums": { + "jar": "841836dd2e08609f94e47150e35b4df79ef84a4139ce6ef3829840de14466458", + "sources": "77674cf3dbc26dca07acf4d6121984434fdf883eaa6a290bb76e9c0756db2b0e" + }, + "version": "2.6.21" + }, + "com.typesafe.akka:akka-stream_2.13": { + "shasums": { + "jar": "7721635440d514227c3b5dd8d3c9ead59cbabcb8195f9627242c7f3d74bda4d3", + "sources": "1c66880bd9a23d469cd7f11a3dee99dc4a001581ee353a7e6bb4857414bbc7a0" + }, + "version": "2.6.21" + }, + "com.typesafe.play:play-build-link": { + "shasums": { + "jar": "8342984ad26e58f743a100d5d4b724677aae3abd683bba3c620def831a180d61", + "sources": "e452a43b77267716b67c29f593d38bc2e5dba1a886ed12128cd68c388349a18a" + }, + "version": "2.9.1" + }, + "com.typesafe.play:play-configuration_2.13": { + "shasums": { + "jar": "1923349ac38454a7ef85ca1145959d3deeed36d7e9111a55bb376ebb4f2d4d8f", + "sources": "151336e0bbfcdb7a4c5deb1d445ce572b200c5edf353e7b408f306c6ed43cd93" + }, + "version": "2.9.1" + }, + "com.typesafe.play:play-exceptions": { + "shasums": { + "jar": "35cbc2b9e65b9c1208464a532b9f002403640d29ba6b69f0d40441a3221f2011", + "sources": "dca586a518d719598c608ed19e76aa30ec372cd43e173c8fb527c3861d13d328" + }, + "version": "2.9.1" + }, + "com.typesafe.play:play-functional_2.13": { + "shasums": { + "jar": "3e8c66094385af9dc557e4060e965a44f893e6e793f42ff970aa18a631a6d8cd", + "sources": "baa70a3478137538b0b723d2a8f175e51b26413fa9bc70edcafa257b83e7de54" + }, + "version": "2.10.3" + }, + "com.typesafe.play:play-guice_2.13": { + "shasums": { + "jar": "bdd104102c143c4f60bb17742b5fa0f3a399100a4ad09f35b44ef9246801632a", + "sources": "b60ea3f06784a1bca480c865bcc464b7c6197f7847ebfc620970b18bd53abc5c" + }, + "version": "2.9.1" + }, + "com.typesafe.play:play-json_2.13": { + "shasums": { + "jar": "192eaa54e243e6d96b3c25c78fce26f7227bbc8ec68b1dd61986783b2d41ed1e", + "sources": "d901d62c215502082dd76476bb4a0dfbe7e1eb1f2639ab5eb43dab25846bb835" + }, + "version": "2.10.3" + }, + "com.typesafe.play:play-server_2.13": { + "shasums": { + "jar": "aaae3781f4d1f4178204140e87c9d4f80e84feab44567f42ad5d0747013e1904", + "sources": "64ce603e7baa44c1deaf36ac791333c1712481afce99cd7d90122ff1cbf95058" + }, + "version": "2.9.1" + }, + "com.typesafe.play:play-specs2_2.13": { + "shasums": { + "jar": "ff7d7041145c11e95b8afed780059ca528c2aa5c9316d60e654693e2f92befec", + "sources": "09df1edbc7d2a821aed06b2a9bd10b1c85d600c0c224aa35f55cc589b3697694" + }, + "version": "2.9.1" + }, + "com.typesafe.play:play-streams_2.13": { + "shasums": { + "jar": "6a43780d9ea645c71610ada1444e679cb8c2e8f529104a1f6facd81cd1c460b3", + "sources": "7778c93e8af0fc0c2cdcec6e6af962cf5fde2d29f6165c9b3a66c0ee52056bc7" + }, + "version": "2.9.1" + }, + "com.typesafe.play:play-test_2.13": { + "shasums": { + "jar": "8567cdcc87c5b173c36018f6cb374420e2f809acf3045ae8b0cdbf37e123eced", + "sources": "697bc2b317eb29af1066758d0dccede94bb41b5af36eea2cbd7692f578f3747b" + }, + "version": "2.9.1" + }, + "com.typesafe.play:play_2.13": { + "shasums": { + "jar": "a2d1fd9454a8bf0b5d37cc63e171ad5c9559dfeb3aa59fb203f1d859cb2c907d", + "sources": "92a1bf2fcdfbe14e8ef7e38a83969b18339c0826ba11d2e2756fc8cad82582b9" + }, + "version": "2.9.1" + }, + "com.typesafe.play:twirl-api_2.13": { + "shasums": { + "jar": "6fb3eb57e9e319883d5dcacd776f0d726494d2e99a80b96cf95d34d06e2c313c", + "sources": "79dc9b2a34837b3180470c09b97428c3a7bc96f0c801b7c59ddd32bafc86077f" + }, + "version": "1.6.4" + }, + "com.typesafe:config": { + "shasums": { + "jar": "8ada4c185ce72416712d63e0b5afdc5f009c0cdf405e5f26efecdf156aa5dfb6", + "sources": "d3330505601cc47d97d03349d93dff32c85ec3881b5b168a8881c6af8ceb852a" + }, + "version": "1.4.3" + }, + "com.typesafe:ssl-config-core_2.13": { + "shasums": { + "jar": "478d7a888fddc5a3f714e5ff1b665090ed9bb45cca6278c7cc94e4514a12067b", + "sources": "d0e59959a72fc06a37d9d9fc3698de1ef89de954f52385392021148395fb9f09" + }, + "version": "0.6.1" + }, + "commons-beanutils:commons-beanutils": { + "shasums": { + "jar": "7d938c81789028045c08c065e94be75fc280527620d5bd62b519d5838532368a", + "sources": "132c9cee7ad5045766b76e17cbf23293c873d55f041fabf0e2c3d2168efce696" + }, + "version": "1.9.4" + }, + "commons-codec:commons-codec": { + "shasums": { + "jar": "b3e9f6d63a790109bf0d056611fbed1cf69055826defeb9894a71369d246ed63", + "sources": "7019940b2298d333edb946e2db3d10f1caacbbd52bb64e85832cfd0017e049cc" + }, + "version": "1.15" + }, + "commons-collections:commons-collections": { + "shasums": { + "jar": "eeeae917917144a68a741d4c0dff66aa5c5c5fd85593ff217bced3fc8ca783b8", + "sources": "a5b5ee16a02edadf7fe637f250217c19878bc6134f15eb55635c48996f6fed1d" + }, + "version": "3.2.2" + }, + "commons-digester:commons-digester": { + "shasums": { + "jar": "e0b2b980a84fc6533c5ce291f1917b32c507f62bcad64198fff44368c2196a3d", + "sources": "9fe93e1710b3c97183c78504a865f65b5ec8c8428831f991fa06d43ace476b61" + }, + "version": "2.1" + }, + "commons-io:commons-io": { + "shasums": { + "jar": "961b2f6d87dbacc5d54abf45ab7a6e2495f89b75598962d8c723cea9bc210908", + "sources": "8c5746d4e96ed0300a7252b1d4cb65111b19400d28a929ca8e0e4b637875f1ee" + }, + "version": "2.11.0" + }, + "commons-logging:commons-logging": { + "shasums": { + "jar": "daddea1ea0be0f56978ab3006b8ac92834afeefbd9b7e4e6316fca57df0fa636", + "sources": "44347acfe5860461728e9cb33251e97345be36f8a0dfd5c5130c172559455f41" + }, + "version": "1.2" + }, + "commons-net:commons-net": { + "shasums": { + "jar": "e3c1566f821b84489308cd933f57e8c00dd8714dc96b898bef844386510d3461", + "sources": "b910528017f757a8b54f4e764d3e0fadccf7a25aaf2acd666674585ae6e58b55" + }, + "version": "3.9.0" + }, + "commons-validator:commons-validator": { + "shasums": { + "jar": "4d74f4ce4fb68b2617edad086df6defdf9338467d2377d2c62e69038e1c4f02f", + "sources": "f3c5c975db3bfb46ee32151de9c76553a3c92ed45725afa8bdd6fb9ce553b60d" + }, + "version": "1.7" + }, + "dev.failsafe:failsafe": { + "shasums": { + "jar": "2c5dc879a6dac7ea3a7b29d795e27bd49b8e7908b05c2f3e56053c19d79850f5", + "sources": "06ec410527503e74734d656e8cc1934aa6fef44ddd89dd4df13cb11b2bd83a9b" + }, + "version": "3.3.2" + }, + "io.appium:java-client": { + "shasums": { + "jar": "089921085a46a6f522a2aeaba834cfc6abf7efcd55724cece5414f9336373338", + "sources": "576f767c06a2aff24775d655df8db0cd2e170875db42b0b63c1b45fd4203152a" + }, + "version": "8.2.1" + }, + "io.fluentlenium:fluentlenium-core": { + "shasums": { + "jar": "afef7bcd3a15b41d01b88955431d38c49fb9ed72be7c5f2242bcfb356851f2c6", + "sources": "13517dba9d0078c533ed0aa9868f050eff7868edeb9c75169f86949fe7d63768" + }, + "version": "6.0.0" + }, + "io.jsonwebtoken:jjwt-api": { + "shasums": { + "jar": "bb806aa583bafce595a780f9fe8876e583a24067758688022027840f21b2723b", + "sources": "3bff1fe2e88235759b80e8e8b65f92de05156133de757dfaa47971bd4c9d5651" + }, + "version": "0.11.5" + }, + "io.jsonwebtoken:jjwt-impl": { + "shasums": { + "jar": "01269a421e89c611a5a91103f5e7c8d4d014fc8974214f083a247642020807a5", + "sources": "e2fdee8556e60e19b82c3be579c5f16c8dbfd7c89bdfef7401598c33eda96ac3" + }, + "version": "0.11.5" + }, + "io.jsonwebtoken:jjwt-jackson": { + "shasums": { + "jar": "96d5cf507e6640d354aa926222c99f80a1e11fde0405f62cb18f588c001f43da", + "sources": "77240978e20dec894ae68dc05e2eb907fd87eb7f378bbb19b19d4adbe722f17a" + }, + "version": "0.11.5" + }, + "io.opentelemetry:opentelemetry-api": { + "shasums": { + "jar": "ae011d5db602a1ab5aba49a32d13264323f3f153db9a5efa55705ca060d77a05", + "sources": "34370bca50cdf03764ef8ee5e676cb3a75cc0e2f8e4882027fa0bcc83a89ab16" + }, + "version": "1.28.0" + }, + "io.opentelemetry:opentelemetry-api-events": { + "shasums": { + "jar": "71a9430e027184d7d93c64b076e1b4b1eff9553b87c648560f11cc97f6451d0e", + "sources": "f5ddbfd63da988a2fd844d5d71366fd651ae7d19b69c929d710d897bb5ccc2b4" + }, + "version": "1.28.0-alpha" + }, + "io.opentelemetry:opentelemetry-context": { + "shasums": { + "jar": "7e596726da322f7deac8fb6696dc36a98bda4a1d294eeb1d8b03054166d34d02", + "sources": "ec94d8667994415dd696098addcf131d7793580b1621f107490be18d374cd5c8" + }, + "version": "1.28.0" + }, + "io.opentelemetry:opentelemetry-exporter-logging": { + "shasums": { + "jar": "22e7e065cd90410bf98b3d90707a27e5d40e916c979cbba1a93e1471d816fbda", + "sources": "2a50fc6b63a0b6c27e3e4c034f9c4f83977f74bec044de203e8d2986e10973d2" + }, + "version": "1.28.0" + }, + "io.opentelemetry:opentelemetry-extension-incubator": { + "shasums": { + "jar": "99d13fed517329871cc66aed24abc018816f0537f78cd366a36dce1a75082f17", + "sources": "9fcc314b56fadcd5c6566e9a4855c3fd82920a8c497ecc209b9aeb0511f2c623" + }, + "version": "1.28.0-alpha" + }, + "io.opentelemetry:opentelemetry-sdk": { + "shasums": { + "jar": "6996e81091fc0cdf1d14b8cca7ed6d1f82412cb6bde387151117ef507c6b0418", + "sources": "e34096a7782f1f925a4465f260196d67aa3b3a6baf856ddb0cbba02167409f66" + }, + "version": "1.28.0" + }, + "io.opentelemetry:opentelemetry-sdk-common": { + "shasums": { + "jar": "cc48f08411fa5964f00219593293adb4bd6e2b6cb13327eec492ac1105f72c78", + "sources": "1fcbaba15dbb90babab4db045d10d1da4812bee17ae04dbd7b2d474c13d044da" + }, + "version": "1.28.0" + }, + "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure": { + "shasums": { + "jar": "481f3791df11d4b107d82532587f1a2a03997efec80aeb16bb0acbef952d853d", + "sources": "214d79aeb63b9994f92347c5f0ef9e0ae9963f1472b081806eea9f0d8033b227" + }, + "version": "1.28.0" + }, + "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi": { + "shasums": { + "jar": "1df92bf83aee67c3686f1808ec5d5399926042867a069ce0262091dab8960e6e", + "sources": "82cd1b19e0f3753e7779001e772da0a2d2df448bff8fd16b161aaa68495cddd7" + }, + "version": "1.28.0" + }, + "io.opentelemetry:opentelemetry-sdk-logs": { + "shasums": { + "jar": "942f0ae020de37510ede5066f9b53ebf14c9fb3974332fbc04022c38c5219871", + "sources": "ebd188504796f03a12547b19d786b4f2c489a213c0c1983df30dc9af9562bac0" + }, + "version": "1.28.0" + }, + "io.opentelemetry:opentelemetry-sdk-metrics": { + "shasums": { + "jar": "1e88e3b6426662d2dbe7424738c65c366d17f6501489fe9ed1c13375fbd3e75d", + "sources": "3734bd6a8a8cbdf16ef30ef56e6507fe6cfbdaf7a0c337b96f90ae2f1147c2e1" + }, + "version": "1.28.0" + }, + "io.opentelemetry:opentelemetry-sdk-trace": { + "shasums": { + "jar": "0947477d5e682c940d9117de1e8ecd678b1fcd8e514ea067bc583d9b663fefad", + "sources": "7654cb16c298aed6650797dbaa26f05e2801c26be6765ef51110ee7a67f0042e" + }, + "version": "1.28.0" + }, + "io.opentelemetry:opentelemetry-semconv": { + "shasums": { + "jar": "9ef021e5bad5789ca48594a3cedb8aaeb00f2f70130e86d5d6337cb71002a88d", + "sources": "80a5d85f3d6e2ea351ebecf426afa47546746ab0989a4982c2fe6d11df3c337a" + }, + "version": "1.28.0-alpha" + }, + "jakarta.inject:jakarta.inject-api": { + "shasums": { + "jar": "f7dc98062fccf14126abb751b64fab12c312566e8cbdc8483598bffcea93af7c", + "sources": "44f4c73fda69f8b7d87136f0f789f042f54e8ff506d40aa126199baf3752d1c9" + }, + "version": "2.0.1" + }, + "javax.inject:javax.inject": { + "shasums": { + "jar": "91c77044a50c481636c32d916fd89c9118a72195390452c81065080f957de7ff", + "sources": "c4b87ee2911c139c3daf498a781967f1eb2e75bc1a8529a2e7b328a15d0e433e" + }, + "version": "1" + }, + "junit:junit": { + "shasums": { + "jar": "8e495b634469d64fb8acfa3495a065cbacc8a0fff55ce1e31007be4c16dc57d3", + "sources": "34181df6482d40ea4c046b063cb53c7ffae94bdf1b1d62695bdf3adf9dea7e3a" + }, + "version": "4.13.2" + }, + "net.bytebuddy:byte-buddy": { + "shasums": { + "jar": "e99761a526df0fefbbd3fe14436b0f953000cdfa5151dc63c0b18d37d9c46f1c", + "sources": "143dd9fe73f0566cc703934b7fd15abbb97bfab045064c2f176067e70456a136" + }, + "version": "1.14.5" + }, + "net.bytebuddy:byte-buddy-agent": { + "shasums": { + "jar": "3a70240de7cdcde04e7c504c2327d7035b9c25ae0206881e3bf4e6798a273ed8", + "sources": "1e0d73101549bda70048f53fdea8b1011a97db7ddfd233ac117a221ae7f6e027" + }, + "version": "1.12.19" + }, + "net.sourceforge.htmlunit:htmlunit": { + "shasums": { + "jar": "9957f53bd8eb96d5afc78766415486567549d9b204dc5d931a5690f8f10155ee", + "sources": "93a22d875c6db84746180fd620f523da65eea5c713673ec49ded7c0d0a34d662" + }, + "version": "2.70.0" + }, + "net.sourceforge.htmlunit:htmlunit-core-js": { + "shasums": { + "jar": "7008cd93de74c8413b94ecf8b63fe642ee73168c5beba8c33b76ac80c4e4865c", + "sources": "8d9e41edaeac387cb6915078d74a53cdc86b9afca1ad08d13b83f3a051f57802" + }, + "version": "2.70.0" + }, + "net.sourceforge.htmlunit:htmlunit-cssparser": { + "shasums": { + "jar": "c684323dc4e2198d0abebe5f0c025560c3c10c34c1d228646e40ae747135f607", + "sources": "8787b79b62c9e0f6472c3b0f02e4fadbe028fecfd5355404077cd2e88dd4c7c7" + }, + "version": "1.14.0" + }, + "net.sourceforge.htmlunit:htmlunit-xpath": { + "shasums": { + "jar": "3eaee2f5058da2ebcf5c74f0d977c032cfbd9300564eb49870dce399706b0a73", + "sources": "f8a6465dd4f64a34da81b396c0b1d6740ba9f301718a808d30adb3b3559b21d6" + }, + "version": "2.70.0" + }, + "net.sourceforge.htmlunit:neko-htmlunit": { + "shasums": { + "jar": "e9e011e102ef85cfb4369580babd60a5c62b806e21224451f7e3e1949e475565", + "sources": "d082f1d317d4153f93f23ad9e24ba694dd104177cd8d03fe19c6f5fa97e43120" + }, + "version": "2.70.0" + }, + "org.apache.commons:commons-exec": { + "shasums": { + "jar": "cb49812dc1bfb0ea4f20f398bcae1a88c6406e213e67f7524fb10d4f8ad9347b", + "sources": "c121d8e70010092bafc56f358e7259ac484653db595aafea1e67a040f51aea66" + }, + "version": "1.3" + }, + "org.apache.commons:commons-lang3": { + "shasums": { + "jar": "d919d904486c037f8d193412da0c92e22a9fa24230b9d67a57855c5c31c7e94e", + "sources": "325a4551eee7d99f7616aa05b00ee3ca9d0cdc8face1b252a9864f2d945c58b3" + }, + "version": "3.12.0" + }, + "org.apache.commons:commons-text": { + "shasums": { + "jar": "770cd903fa7b604d1f7ef7ba17f84108667294b2b478be8ed1af3bffb4ae0018", + "sources": "e767596163da9b22e8fc83ff954e41e19e96744df7625b06f8daac3c4d60f79d" + }, + "version": "1.10.0" + }, + "org.apache.httpcomponents:httpclient": { + "shasums": { + "jar": "c8bc7e1c51a6d4ce72f40d2ebbabf1c4b68bfe76e732104b04381b493478e9d6", + "sources": "55b01f9f4cbec9ac646866a4b64b176570d79e293a556796b5b0263d047ef8e6" + }, + "version": "4.5.14" + }, + "org.apache.httpcomponents:httpcore": { + "shasums": { + "jar": "6c9b3dd142a09dc468e23ad39aad6f75a0f2b85125104469f026e52a474e464f", + "sources": "705f8cf3671093b6c1db16bbf6971a7ef400e3819784f1af53e5bc3e67b5a9a0" + }, + "version": "4.4.16" + }, + "org.apache.httpcomponents:httpmime": { + "shasums": { + "jar": "d401243d5c6eae928a37121b6e819158c8c32ea0584793e7285bb489ab2a3d17", + "sources": "9b8c59ecd259d16a026945abb5c2a82f403b6c3dcc1588dbc2532f2cd5d4e83d" + }, + "version": "4.5.14" + }, + "org.apache.maven:maven-model": { + "shasums": { + "jar": "75a48100b8b4057a5b1a93056a6e3293a73085ad92ad0f7c4148b6f267ddf078", + "sources": "716f8875bddc0d53c083e53bdfaf97c3a6f13a6f50a8da8f8347e244007be5e9" + }, + "version": "3.9.1" + }, + "org.atteo.classindex:classindex": { + "shasums": { + "jar": "8e537601db7d761bd0010834fb364be2372c2a67c5c86f16ccc3ff47a08eeea4", + "sources": "1ebd8a1a31b0d32ad9232004f56caa3170138f99022fb5720e8ae74b373f3fae" + }, + "version": "3.13" + }, + "org.brotli:dec": { + "shasums": { + "jar": "615c0c3efef990d77831104475fba6a1f7971388691d4bad1471ad84101f6d52", + "sources": "064ac1e41f475c1fd0479b6505f44b6e3bb044b948bddc75d56a496ebb85fbc3" + }, + "version": "0.1.2" + }, + "org.checkerframework:checker-qual": { + "shasums": { + "jar": "e4ce1376cc2735e1dde220b62ad0913f51297704daad155a33f386bc5db0d9f7", + "sources": "2ca31c7e959ad82fe270b2baac11a59c570f8778191233c54927e94adab7b640" + }, + "version": "3.37.0" + }, + "org.codehaus.plexus:plexus-utils": { + "shasums": { + "jar": "86e0255d4c879c61b4833ed7f13124e8bb679df47debb127326e7db7dd49a07b", + "sources": "11b9ff95f1ade7cff0a45cf483c7cd84a8f8a542275a3d612779fffacdf43f00" + }, + "version": "3.5.1" + }, + "org.eclipse.jetty.websocket:websocket-api": { + "shasums": { + "jar": "cd64551abf8e5130b01f1063fe94d4c58df74f134bb684f0b9bed56196e85f1d", + "sources": "7d6224315742a1214fba2cb3492ed5849741122298b5eff17e59b1f50d4ade54" + }, + "version": "9.4.50.v20221201" + }, + "org.eclipse.jetty.websocket:websocket-client": { + "shasums": { + "jar": "7f8d9861f87e59cbe1fd6beadeae0b32f1a7cc78ffccf2f13e8b4db9dd70602b", + "sources": "88be3d0110d3b9f78ad7c8996d41f2fe5bf2bbdfed90dabf12390e479a5cebda" + }, + "version": "9.4.50.v20221201" + }, + "org.eclipse.jetty.websocket:websocket-common": { + "shasums": { + "jar": "d6b8bba5e8864eaf98d853458403a75dc401c4858badf9d009941f402cc2671b", + "sources": "c68f5cd7413f8511afde5df620ab6dab1dad18fbe96adb35e19d89c6754a9955" + }, + "version": "9.4.50.v20221201" + }, + "org.eclipse.jetty:jetty-client": { + "shasums": { + "jar": "b216e173d79c0adce1da3d0894abe418453851a3dc6cc5006e5d3003dcac88fd", + "sources": "e29b882a38ee652e82d9759435ca4cfabf78434c715095fcac703b181aa16e5f" + }, + "version": "9.4.50.v20221201" + }, + "org.eclipse.jetty:jetty-http": { + "shasums": { + "jar": "3e3c569b9f39dbd1c9ae6d67e32512e072c50b4845866e941bcfd741e0ef5088", + "sources": "056c9b41dd5e30504132b4a5556b19085fd03e6746cb17881ae8bcfb9b8d8f63" + }, + "version": "9.4.50.v20221201" + }, + "org.eclipse.jetty:jetty-io": { + "shasums": { + "jar": "dc51976bc91236279c82e9f1a51e82631562eea518e8654097d271b8dd0acb0b", + "sources": "f339b03abc5036be066c1d919eed9667d73017d03bc2935826054bc53e5a614b" + }, + "version": "9.4.50.v20221201" + }, + "org.eclipse.jetty:jetty-util": { + "shasums": { + "jar": "38891b3480b582d1f2646cf94f33e1675bdc7c814657e1742424c98193c9117b", + "sources": "d3c3e0f19b5ed6a34c9b135120ded21b81a3d88344ed8ddda2b9e24331668702" + }, + "version": "9.4.50.v20221201" + }, + "org.hamcrest:hamcrest": { + "shasums": { + "jar": "5e62846a89f05cd78cd9c1a553f340d002458380c320455dd1f8fc5497a8a1c1", + "sources": "f49e697dbc70591f91a90dd7f741f5780f53f63f34a416d6a9879499d4d666af" + }, + "version": "2.2" + }, + "org.hamcrest:hamcrest-core": { + "shasums": { + "jar": "66fdef91e9739348df7a096aa384a5685f4e875584cce89386a7a47251c4d8e9", + "sources": "e223d2d8fbafd66057a8848cc94222d63c3cedd652cc48eddc0ab5c39c0f84df" + }, + "version": "1.3" + }, + "org.lz4:lz4-java": { + "shasums": { + "jar": "d74a3334fb35195009b338a951f918203d6bbca3d1d359033dc33edd1cadc9ef", + "sources": "53ac09a2d80ba5d0b7078f9cbc572dd4a5377a37d08b3333dd4b2ffe2143650f" + }, + "version": "1.8.0" + }, + "org.mockito:mockito-core": { + "shasums": { + "jar": "4b909690cab288c761eb94c0bf0e814496cf3921d8affac84cd87774530351e5", + "sources": "34741d9f2cceb187358f5a3195de179467ca876c9a0540ad0ef3d14e3a7c78bf" + }, + "version": "4.11.0" + }, + "org.objenesis:objenesis": { + "shasums": { + "jar": "02dfd0b0439a5591e35b708ed2f5474eb0948f53abf74637e959b8e4ef69bfeb", + "sources": "d06164f8ca002c8ef193cef2d682822014dd330505616af93a3fb64226fc131d" + }, + "version": "3.3" + }, + "org.ow2.asm:asm": { + "shasums": { + "jar": "4ab2fa2b6d2cc9ccb1eaa05ea329c407b47b13ed2915f62f8c4b8cc96258d4de", + "sources": "c1297c6d395d40f9f7c9f03d435970e174ea8df8280cbae39efae44228bbd876" + }, + "version": "7.1" + }, + "org.portable-scala:portable-scala-reflect_2.13": { + "shasums": { + "jar": "11f2f59d0c228912811095025b36ce58a025a8397851d773295c8ad7862d8488", + "sources": "da225cd34412a66905e5d9f6bfa03c28933c41bb4ff44b468bdd573009c2758c" + }, + "version": "1.1.1" + }, + "org.reactivestreams:reactive-streams": { + "shasums": { + "jar": "f75ca597789b3dac58f61857b9ac2e1034a68fa672db35055a8fb4509e325f28", + "sources": "5a7a36ae9536698c434ebe119feb374d721210fee68eb821a37ef3859b64b708" + }, + "version": "1.0.4" + }, + "org.scala-lang.modules:scala-java8-compat_2.13": { + "shasums": { + "jar": "879b3e718453c8b934ff5e8225107a24701bde392f96daf6135f94f9e161dbc5", + "sources": "db7bbbf2fbaeefd10898492ae4ef6e400a8b873974a2d44cfc0a460a279680c4" + }, + "version": "1.0.0" + }, + "org.scala-lang.modules:scala-parser-combinators_2.13": { + "shasums": { + "jar": "5c285b72e6dc0a98e99ae0a1ceeb4027dab9adfa441844046bd3f19e0efdcb54", + "sources": "a5cdd33bc2dcd8917e4fea30d31ea19d0d70cc5f6951c5a913428930ced8391a" + }, + "version": "1.1.2" + }, + "org.scala-lang.modules:scala-xml_2.13": { + "shasums": { + "jar": "0d9d63091a73cf837cd5412671a30abecad460dc254aeb43a2b18f4910af6a09", + "sources": "75edeab4d6688246d26a8de2deb430bc65a46dd25eb0350b3872c8631a9de602" + }, + "version": "2.2.0" + }, + "org.scala-lang:scala-library": { + "shasums": { + "jar": "c6a879e4973a60f6162668542a33eaccc2bb565d1c934fb061c5844259131dd1", + "sources": "df3f19e71b4d2dd6bb882a6deafb31c7dceaad4f26489b9fd9ca56b493229174" + }, + "version": "2.13.12" + }, + "org.scala-lang:scala-reflect": { + "shasums": { + "jar": "c648ceb93a9fcbd22603e0be3d6a156723ae661f516c772a550a088bb3cbca7a", + "sources": "9a04bed34e8a706645139bf89f18841773d13405508ff1353d8aef0095d7cebb" + }, + "version": "2.13.12" + }, + "org.scala-sbt:test-interface": { + "shasums": { + "jar": "15f70b38bb95f3002fec9aea54030f19bb4ecfbad64c67424b5e5fea09cd749e", + "sources": "c314491c9df4f0bd9dd125ef1d51228d70bd466ee57848df1cd1b96aea18a5ad" + }, + "version": "1.0" + }, + "org.seleniumhq.selenium:htmlunit-driver": { + "shasums": { + "jar": "1253409928026cd4ded6f1feeef28c5da73144300508b4f4f50aa1758e5f5d48", + "sources": "62f554566990dc951851fb835fab66f0670d4f33d495ec6514d70fcb69a1f4e9" + }, + "version": "4.13.0" + }, + "org.seleniumhq.selenium:selenium-api": { + "shasums": { + "jar": "0202472c31dcf540ecaa85b2f393a962302e01bdab22dec745247b0b50834313", + "sources": "5136c650c21ba706bcdb499a6dbf41da0f69cb4fae078c14a9c755feee2bd093" + }, + "version": "4.14.1" + }, + "org.seleniumhq.selenium:selenium-devtools-v85": { + "shasums": { + "jar": "4b953de1d7591a1b3a0226c8a11e1b57cc05bf6175112fb69e12dbc5481dff2d", + "sources": "7a4a0d082034910e0c755eb5944181e641b7a5206569c393f435792360b40997" + }, + "version": "4.14.1" + }, + "org.seleniumhq.selenium:selenium-firefox-driver": { + "shasums": { + "jar": "5e489b4a704b8741875d6ccc7ad73478b5841a38ba35f4ce488ac233886a0dc0", + "sources": "c7c4d1d3269bb148ce2f782d6e9ac315bc08fd30611b162567bc8bb58153f997" + }, + "version": "4.14.1" + }, + "org.seleniumhq.selenium:selenium-http": { + "shasums": { + "jar": "b50c299e70dfde7158099f8d13e3e91d6af355f4a963904fb5986bc7d3b07075", + "sources": "a624a531a45e27c1ea1374d34643e22d15d0d511994b96b7c78b4a1e3c0f1cb2" + }, + "version": "4.14.1" + }, + "org.seleniumhq.selenium:selenium-json": { + "shasums": { + "jar": "e5417fff2400e02ae809bc55921b3548e2e8c6872c9582d3fe630dca6a6f63ff", + "sources": "3750df263c635fb052e45e4cbbcb79f99911828081b23c0a5b43c28e60e97dd4" + }, + "version": "4.14.1" + }, + "org.seleniumhq.selenium:selenium-manager": { + "shasums": { + "jar": "866c792c328689c29dac1f94db5e5d778f5a99c6f96d92a532f1e4082a64f298", + "sources": "2b40a31316ecf4096fa5009581e2817f4a3056ecbc8833837749d460f8da90b5" + }, + "version": "4.14.1" + }, + "org.seleniumhq.selenium:selenium-os": { + "shasums": { + "jar": "f7ac5187a00effd43c3e59be6c358ef804feed282a1ac9df7103d33f010afc8a", + "sources": "5acbe89794536ce66dc58a8695f2c1993189e276e1da51ce6b8be0a2c86c2f0c" + }, + "version": "4.14.1" + }, + "org.seleniumhq.selenium:selenium-remote-driver": { + "shasums": { + "jar": "57a4baa6ad3f43348ad1d6c6ba29eb2c8329e05e0296bffdb668b032ddc58e8a", + "sources": "38370874ac4a24b8b9ad1e6d2a8af66343beb4e9fca56f1b573a30d009bf486f" + }, + "version": "4.14.1" + }, + "org.seleniumhq.selenium:selenium-support": { + "shasums": { + "jar": "5f70ce6c722b05def3962110ab84db57a27bd1f9b1686d89e28012824fe7bf1e", + "sources": "ec52ba5d32bc739a869a42408e460a00a7245eb2328ba22926c273c242113165" + }, + "version": "4.14.1" + }, + "org.slf4j:jcl-over-slf4j": { + "shasums": { + "jar": "f98f1eb8179bcb312aeb76a607746f4f2d0f03ce265ee78141f5c3c8302102af", + "sources": "1c4cae4dbe1fd84f1bb991e73e601893deec2884774b4d6cc4736c2dc070c990" + }, + "version": "2.0.9" + }, + "org.slf4j:jul-to-slf4j": { + "shasums": { + "jar": "69b4e5f8d3bd3f6f54367d19f2c1ee95dd5877802f12d868282e218dd76b00bf", + "sources": "33b2014c5ef4938e767f65e49202aa3d801fde82fba8051a7a7db94209dc8687" + }, + "version": "2.0.9" + }, + "org.slf4j:slf4j-api": { + "shasums": { + "jar": "0818930dc8d7debb403204611691da58e49d42c50b6ffcfdce02dadb7c3c2b6c", + "sources": "0d83bc49452416dd121ee41cebf41cdc64b69e7f7fdc97c2762ec406336c7ad3" + }, + "version": "2.0.9" + }, + "org.specs2:specs2-common_2.13": { + "shasums": { + "jar": "62b9195aa1568ff0efade3f4125662ccd1487ae475105f980c3367a1d47a7edc", + "sources": "2d00bcfe63c758991311a47f7f52625d8fd55fcabdde775332ca9ccbcadcf0b8" + }, + "version": "4.20.3" + }, + "org.specs2:specs2-core_2.13": { + "shasums": { + "jar": "70152f1e88e6bc95e365f62a3b99d1dd3791fdf822ee2d271b00834d20a9eb2d", + "sources": "26e956992535a2628a4219034b073cab00067f02105daeaab8c1a6c7d9d6708e" + }, + "version": "4.20.3" + }, + "org.specs2:specs2-fp_2.13": { + "shasums": { + "jar": "8b976d891052aa4c3fc79b9ea432aaeef63341aa24f2384d773b41ecbcae3fec", + "sources": "e5bd52a8b0ce57e5759c76725ef25d3ca97219d8588da0f108e978369a72cc3e" + }, + "version": "4.20.3" + }, + "org.specs2:specs2-junit_2.13": { + "shasums": { + "jar": "308660799481186cd476e9d58a4d06999fb494d705c465691ead929f228b4fe9", + "sources": "15d9f96a8090649284278ceead883f09d3e34686e0ded927270661ab40feff05" + }, + "version": "4.20.3" + }, + "org.specs2:specs2-matcher_2.13": { + "shasums": { + "jar": "d8de49ad6147f78451cdf6ba109efa7b5add222d6ae32b77ae44e9107df06262", + "sources": "3fa9b61d10d023e4fcdbaafcd36069e44626fbb3ee29f842a288d18ddda888ea" + }, + "version": "4.20.3" + }, + "org.specs2:specs2-mock_2.13": { + "shasums": { + "jar": "824cfade13cefd03f6a39144f571df9c5fe9cd13f6402297dcf552bb4b76160a", + "sources": "f49c73a7cd79f925c10865a94b014552d957bd3fd11a772bfa5ecccb20fdd55f" + }, + "version": "4.20.3" } + }, + "dependencies": { + "cglib:cglib": [ + "org.ow2.asm:asm" + ], + "ch.qos.logback:logback-classic": [ + "ch.qos.logback:logback-core", + "org.slf4j:slf4j-api" + ], + "com.fasterxml.jackson.core:jackson-databind": [ + "com.fasterxml.jackson.core:jackson-annotations", + "com.fasterxml.jackson.core:jackson-core" + ], + "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor": [ + "com.fasterxml.jackson.core:jackson-core", + "com.fasterxml.jackson.core:jackson-databind" + ], + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8": [ + "com.fasterxml.jackson.core:jackson-core", + "com.fasterxml.jackson.core:jackson-databind" + ], + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310": [ + "com.fasterxml.jackson.core:jackson-annotations", + "com.fasterxml.jackson.core:jackson-core", + "com.fasterxml.jackson.core:jackson-databind" + ], + "com.fasterxml.jackson.module:jackson-module-parameter-names": [ + "com.fasterxml.jackson.core:jackson-core", + "com.fasterxml.jackson.core:jackson-databind" + ], + "com.fasterxml.jackson.module:jackson-module-scala_2.13": [ + "com.fasterxml.jackson.core:jackson-annotations", + "com.fasterxml.jackson.core:jackson-core", + "com.fasterxml.jackson.core:jackson-databind", + "com.thoughtworks.paranamer:paranamer", + "org.scala-lang:scala-library" + ], + "com.github.sbt:junit-interface": [ + "junit:junit", + "org.scala-sbt:test-interface" + ], + "com.google.guava:guava": [ + "com.google.code.findbugs:jsr305", + "com.google.errorprone:error_prone_annotations", + "com.google.guava:failureaccess", + "com.google.guava:listenablefuture", + "com.google.j2objc:j2objc-annotations", + "org.checkerframework:checker-qual" + ], + "com.google.inject.extensions:guice-assistedinject": [ + "com.google.errorprone:error_prone_annotations", + "com.google.inject:guice" + ], + "com.google.inject:guice": [ + "aopalliance:aopalliance", + "com.google.guava:guava", + "jakarta.inject:jakarta.inject-api", + "javax.inject:javax.inject" + ], + "com.typesafe.akka:akka-actor-typed_2.13": [ + "com.typesafe.akka:akka-actor_2.13", + "com.typesafe.akka:akka-slf4j_2.13", + "org.scala-lang:scala-library", + "org.slf4j:slf4j-api" + ], + "com.typesafe.akka:akka-actor_2.13": [ + "com.typesafe:config", + "org.scala-lang.modules:scala-java8-compat_2.13", + "org.scala-lang:scala-library" + ], + "com.typesafe.akka:akka-serialization-jackson_2.13": [ + "com.fasterxml.jackson.core:jackson-annotations", + "com.fasterxml.jackson.core:jackson-core", + "com.fasterxml.jackson.core:jackson-databind", + "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", + "com.fasterxml.jackson.module:jackson-module-parameter-names", + "com.fasterxml.jackson.module:jackson-module-scala_2.13", + "com.typesafe.akka:akka-actor_2.13", + "org.lz4:lz4-java", + "org.scala-lang:scala-library" + ], + "com.typesafe.akka:akka-slf4j_2.13": [ + "com.typesafe.akka:akka-actor_2.13", + "org.scala-lang:scala-library", + "org.slf4j:slf4j-api" + ], + "com.typesafe.akka:akka-stream_2.13": [ + "com.typesafe.akka:akka-actor_2.13", + "com.typesafe.akka:akka-protobuf-v3_2.13", + "com.typesafe:ssl-config-core_2.13", + "org.reactivestreams:reactive-streams", + "org.scala-lang:scala-library" + ], + "com.typesafe.play:play-build-link": [ + "com.typesafe.play:play-exceptions" + ], + "com.typesafe.play:play-configuration_2.13": [ + "com.typesafe.play:play-exceptions", + "com.typesafe:config", + "org.scala-lang:scala-library", + "org.slf4j:slf4j-api" + ], + "com.typesafe.play:play-functional_2.13": [ + "org.scala-lang:scala-library" + ], + "com.typesafe.play:play-guice_2.13": [ + "com.google.inject.extensions:guice-assistedinject", + "com.google.inject:guice", + "com.typesafe.play:play_2.13", + "org.scala-lang:scala-library" + ], + "com.typesafe.play:play-json_2.13": [ + "com.fasterxml.jackson.core:jackson-annotations", + "com.fasterxml.jackson.core:jackson-core", + "com.fasterxml.jackson.core:jackson-databind", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", + "com.typesafe.play:play-functional_2.13", + "org.scala-lang:scala-library", + "org.scala-lang:scala-reflect" + ], + "com.typesafe.play:play-server_2.13": [ + "com.typesafe.play:play_2.13", + "org.scala-lang:scala-library" + ], + "com.typesafe.play:play-specs2_2.13": [ + "com.typesafe.play:play-test_2.13", + "org.scala-lang:scala-library", + "org.specs2:specs2-core_2.13", + "org.specs2:specs2-junit_2.13", + "org.specs2:specs2-mock_2.13" + ], + "com.typesafe.play:play-streams_2.13": [ + "com.typesafe.akka:akka-stream_2.13", + "org.reactivestreams:reactive-streams", + "org.scala-lang:scala-library" + ], + "com.typesafe.play:play-test_2.13": [ + "ch.qos.logback:logback-classic", + "com.github.sbt:junit-interface", + "com.google.guava:guava", + "com.google.inject.extensions:guice-assistedinject", + "com.google.inject:guice", + "com.typesafe.play:play-guice_2.13", + "com.typesafe.play:play-server_2.13", + "io.fluentlenium:fluentlenium-core", + "junit:junit", + "org.scala-lang:scala-library", + "org.seleniumhq.selenium:htmlunit-driver", + "org.seleniumhq.selenium:selenium-api", + "org.seleniumhq.selenium:selenium-firefox-driver", + "org.seleniumhq.selenium:selenium-support" + ], + "com.typesafe.play:play_2.13": [ + "com.fasterxml.jackson.core:jackson-annotations", + "com.fasterxml.jackson.core:jackson-core", + "com.fasterxml.jackson.core:jackson-databind", + "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", + "com.fasterxml.jackson.module:jackson-module-parameter-names", + "com.fasterxml.jackson.module:jackson-module-scala_2.13", + "com.google.guava:guava", + "com.typesafe.akka:akka-actor-typed_2.13", + "com.typesafe.akka:akka-actor_2.13", + "com.typesafe.akka:akka-serialization-jackson_2.13", + "com.typesafe.akka:akka-slf4j_2.13", + "com.typesafe.play:play-build-link", + "com.typesafe.play:play-configuration_2.13", + "com.typesafe.play:play-json_2.13", + "com.typesafe.play:play-streams_2.13", + "com.typesafe.play:twirl-api_2.13", + "com.typesafe:ssl-config-core_2.13", + "io.jsonwebtoken:jjwt-api", + "io.jsonwebtoken:jjwt-impl", + "io.jsonwebtoken:jjwt-jackson", + "javax.inject:javax.inject", + "org.scala-lang.modules:scala-parser-combinators_2.13", + "org.scala-lang:scala-library", + "org.slf4j:jcl-over-slf4j", + "org.slf4j:jul-to-slf4j", + "org.slf4j:slf4j-api" + ], + "com.typesafe.play:twirl-api_2.13": [ + "org.scala-lang.modules:scala-xml_2.13", + "org.scala-lang:scala-library" + ], + "com.typesafe:ssl-config-core_2.13": [ + "com.typesafe:config", + "org.scala-lang:scala-library" + ], + "commons-beanutils:commons-beanutils": [ + "commons-collections:commons-collections", + "commons-logging:commons-logging" + ], + "commons-validator:commons-validator": [ + "commons-beanutils:commons-beanutils", + "commons-collections:commons-collections", + "commons-digester:commons-digester", + "commons-logging:commons-logging" + ], + "io.appium:java-client": [ + "cglib:cglib", + "com.google.code.gson:gson", + "commons-io:commons-io", + "commons-validator:commons-validator", + "org.apache.commons:commons-lang3", + "org.seleniumhq.selenium:selenium-api", + "org.seleniumhq.selenium:selenium-remote-driver", + "org.seleniumhq.selenium:selenium-support", + "org.slf4j:slf4j-api" + ], + "io.fluentlenium:fluentlenium-core": [ + "commons-io:commons-io", + "io.appium:java-client", + "net.bytebuddy:byte-buddy", + "net.sourceforge.htmlunit:htmlunit", + "org.apache.commons:commons-lang3", + "org.apache.commons:commons-text", + "org.apache.httpcomponents:httpclient", + "org.apache.maven:maven-model", + "org.atteo.classindex:classindex", + "org.seleniumhq.selenium:selenium-api", + "org.seleniumhq.selenium:selenium-remote-driver", + "org.seleniumhq.selenium:selenium-support", + "org.slf4j:slf4j-api" + ], + "io.jsonwebtoken:jjwt-impl": [ + "io.jsonwebtoken:jjwt-api" + ], + "io.jsonwebtoken:jjwt-jackson": [ + "io.jsonwebtoken:jjwt-api" + ], + "io.opentelemetry:opentelemetry-api": [ + "io.opentelemetry:opentelemetry-context" + ], + "io.opentelemetry:opentelemetry-api-events": [ + "io.opentelemetry:opentelemetry-api" + ], + "io.opentelemetry:opentelemetry-exporter-logging": [ + "io.opentelemetry:opentelemetry-sdk", + "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi", + "io.opentelemetry:opentelemetry-sdk-logs", + "io.opentelemetry:opentelemetry-sdk-metrics" + ], + "io.opentelemetry:opentelemetry-extension-incubator": [ + "io.opentelemetry:opentelemetry-api" + ], + "io.opentelemetry:opentelemetry-sdk": [ + "io.opentelemetry:opentelemetry-api", + "io.opentelemetry:opentelemetry-sdk-common", + "io.opentelemetry:opentelemetry-sdk-logs", + "io.opentelemetry:opentelemetry-sdk-metrics", + "io.opentelemetry:opentelemetry-sdk-trace" + ], + "io.opentelemetry:opentelemetry-sdk-common": [ + "io.opentelemetry:opentelemetry-api", + "io.opentelemetry:opentelemetry-semconv" + ], + "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure": [ + "io.opentelemetry:opentelemetry-api-events", + "io.opentelemetry:opentelemetry-sdk", + "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi", + "io.opentelemetry:opentelemetry-semconv" + ], + "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi": [ + "io.opentelemetry:opentelemetry-sdk" + ], + "io.opentelemetry:opentelemetry-sdk-logs": [ + "io.opentelemetry:opentelemetry-api", + "io.opentelemetry:opentelemetry-api-events", + "io.opentelemetry:opentelemetry-sdk-common" + ], + "io.opentelemetry:opentelemetry-sdk-metrics": [ + "io.opentelemetry:opentelemetry-api", + "io.opentelemetry:opentelemetry-extension-incubator", + "io.opentelemetry:opentelemetry-sdk-common" + ], + "io.opentelemetry:opentelemetry-sdk-trace": [ + "io.opentelemetry:opentelemetry-api", + "io.opentelemetry:opentelemetry-sdk-common", + "io.opentelemetry:opentelemetry-semconv" + ], + "io.opentelemetry:opentelemetry-semconv": [ + "io.opentelemetry:opentelemetry-api" + ], + "junit:junit": [ + "org.hamcrest:hamcrest-core" + ], + "net.sourceforge.htmlunit:htmlunit": [ + "com.shapesecurity:salvation2", + "commons-codec:commons-codec", + "net.sourceforge.htmlunit:htmlunit-core-js", + "net.sourceforge.htmlunit:htmlunit-cssparser", + "net.sourceforge.htmlunit:htmlunit-xpath", + "net.sourceforge.htmlunit:neko-htmlunit", + "org.apache.httpcomponents:httpmime", + "org.brotli:dec", + "org.eclipse.jetty.websocket:websocket-client" + ], + "org.apache.commons:commons-text": [ + "org.apache.commons:commons-lang3" + ], + "org.apache.httpcomponents:httpclient": [ + "commons-logging:commons-logging", + "org.apache.httpcomponents:httpcore" + ], + "org.apache.httpcomponents:httpmime": [ + "org.apache.httpcomponents:httpclient" + ], + "org.apache.maven:maven-model": [ + "org.codehaus.plexus:plexus-utils" + ], + "org.eclipse.jetty.websocket:websocket-client": [ + "org.eclipse.jetty.websocket:websocket-common", + "org.eclipse.jetty:jetty-client", + "org.eclipse.jetty:jetty-io", + "org.eclipse.jetty:jetty-util" + ], + "org.eclipse.jetty.websocket:websocket-common": [ + "org.eclipse.jetty.websocket:websocket-api", + "org.eclipse.jetty:jetty-io", + "org.eclipse.jetty:jetty-util" + ], + "org.eclipse.jetty:jetty-client": [ + "org.eclipse.jetty:jetty-http", + "org.eclipse.jetty:jetty-io" + ], + "org.eclipse.jetty:jetty-http": [ + "org.eclipse.jetty:jetty-io", + "org.eclipse.jetty:jetty-util" + ], + "org.eclipse.jetty:jetty-io": [ + "org.eclipse.jetty:jetty-util" + ], + "org.mockito:mockito-core": [ + "net.bytebuddy:byte-buddy", + "net.bytebuddy:byte-buddy-agent", + "org.objenesis:objenesis" + ], + "org.portable-scala:portable-scala-reflect_2.13": [ + "org.scala-lang:scala-library" + ], + "org.scala-lang.modules:scala-java8-compat_2.13": [ + "org.scala-lang:scala-library" + ], + "org.scala-lang.modules:scala-parser-combinators_2.13": [ + "org.scala-lang:scala-library" + ], + "org.scala-lang.modules:scala-xml_2.13": [ + "org.scala-lang:scala-library" + ], + "org.scala-lang:scala-reflect": [ + "org.scala-lang:scala-library" + ], + "org.seleniumhq.selenium:htmlunit-driver": [ + "net.sourceforge.htmlunit:htmlunit" + ], + "org.seleniumhq.selenium:selenium-devtools-v85": [ + "com.google.auto.service:auto-service-annotations", + "com.google.guava:guava", + "org.seleniumhq.selenium:selenium-api", + "org.seleniumhq.selenium:selenium-json", + "org.seleniumhq.selenium:selenium-remote-driver" + ], + "org.seleniumhq.selenium:selenium-firefox-driver": [ + "com.google.auto.service:auto-service-annotations", + "com.google.guava:guava", + "org.seleniumhq.selenium:selenium-api", + "org.seleniumhq.selenium:selenium-devtools-v85", + "org.seleniumhq.selenium:selenium-http", + "org.seleniumhq.selenium:selenium-json", + "org.seleniumhq.selenium:selenium-manager", + "org.seleniumhq.selenium:selenium-remote-driver" + ], + "org.seleniumhq.selenium:selenium-http": [ + "com.google.guava:guava", + "dev.failsafe:failsafe", + "org.seleniumhq.selenium:selenium-api", + "org.seleniumhq.selenium:selenium-json" + ], + "org.seleniumhq.selenium:selenium-json": [ + "org.seleniumhq.selenium:selenium-api" + ], + "org.seleniumhq.selenium:selenium-manager": [ + "com.google.guava:guava", + "org.seleniumhq.selenium:selenium-api", + "org.seleniumhq.selenium:selenium-json", + "org.seleniumhq.selenium:selenium-os" + ], + "org.seleniumhq.selenium:selenium-os": [ + "com.google.guava:guava", + "org.apache.commons:commons-exec", + "org.seleniumhq.selenium:selenium-api" + ], + "org.seleniumhq.selenium:selenium-remote-driver": [ + "com.google.auto.service:auto-service-annotations", + "com.google.guava:guava", + "io.opentelemetry:opentelemetry-api", + "io.opentelemetry:opentelemetry-context", + "io.opentelemetry:opentelemetry-exporter-logging", + "io.opentelemetry:opentelemetry-sdk", + "io.opentelemetry:opentelemetry-sdk-common", + "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure", + "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi", + "io.opentelemetry:opentelemetry-sdk-trace", + "io.opentelemetry:opentelemetry-semconv", + "net.bytebuddy:byte-buddy", + "org.seleniumhq.selenium:selenium-api", + "org.seleniumhq.selenium:selenium-http", + "org.seleniumhq.selenium:selenium-json", + "org.seleniumhq.selenium:selenium-manager", + "org.seleniumhq.selenium:selenium-os" + ], + "org.seleniumhq.selenium:selenium-support": [ + "com.google.auto.service:auto-service-annotations", + "com.google.guava:guava", + "net.bytebuddy:byte-buddy", + "org.seleniumhq.selenium:selenium-api", + "org.seleniumhq.selenium:selenium-json", + "org.seleniumhq.selenium:selenium-remote-driver" + ], + "org.slf4j:jcl-over-slf4j": [ + "org.slf4j:slf4j-api" + ], + "org.slf4j:jul-to-slf4j": [ + "org.slf4j:slf4j-api" + ], + "org.specs2:specs2-common_2.13": [ + "org.portable-scala:portable-scala-reflect_2.13", + "org.scala-lang.modules:scala-parser-combinators_2.13", + "org.scala-lang:scala-library", + "org.scala-lang:scala-reflect", + "org.scala-sbt:test-interface", + "org.specs2:specs2-fp_2.13" + ], + "org.specs2:specs2-core_2.13": [ + "org.portable-scala:portable-scala-reflect_2.13", + "org.scala-lang:scala-library", + "org.scala-sbt:test-interface", + "org.specs2:specs2-common_2.13", + "org.specs2:specs2-matcher_2.13" + ], + "org.specs2:specs2-fp_2.13": [ + "org.scala-lang:scala-library" + ], + "org.specs2:specs2-junit_2.13": [ + "junit:junit", + "org.portable-scala:portable-scala-reflect_2.13", + "org.scala-lang.modules:scala-xml_2.13", + "org.scala-lang:scala-library", + "org.scala-sbt:test-interface", + "org.specs2:specs2-core_2.13" + ], + "org.specs2:specs2-matcher_2.13": [ + "org.scala-lang:scala-library", + "org.specs2:specs2-common_2.13" + ], + "org.specs2:specs2-mock_2.13": [ + "org.hamcrest:hamcrest", + "org.mockito:mockito-core", + "org.portable-scala:portable-scala-reflect_2.13", + "org.scala-lang:scala-library", + "org.scala-sbt:test-interface", + "org.specs2:specs2-core_2.13" + ] + }, + "skipped": [ + "com.google.guava:listenablefuture:jar:sources" + ], + "packages": { + "aopalliance:aopalliance": [ + "org.aopalliance.aop", + "org.aopalliance.intercept" + ], + "cglib:cglib": [ + "net.sf.cglib.beans", + "net.sf.cglib.core", + "net.sf.cglib.core.internal", + "net.sf.cglib.proxy", + "net.sf.cglib.reflect", + "net.sf.cglib.transform", + "net.sf.cglib.transform.impl", + "net.sf.cglib.util" + ], + "ch.qos.logback:logback-classic": [ + "ch.qos.logback.classic", + "ch.qos.logback.classic.boolex", + "ch.qos.logback.classic.encoder", + "ch.qos.logback.classic.filter", + "ch.qos.logback.classic.helpers", + "ch.qos.logback.classic.html", + "ch.qos.logback.classic.joran", + "ch.qos.logback.classic.joran.action", + "ch.qos.logback.classic.joran.sanity", + "ch.qos.logback.classic.joran.serializedModel", + "ch.qos.logback.classic.jul", + "ch.qos.logback.classic.layout", + "ch.qos.logback.classic.log4j", + "ch.qos.logback.classic.model", + "ch.qos.logback.classic.model.processor", + "ch.qos.logback.classic.model.util", + "ch.qos.logback.classic.net", + "ch.qos.logback.classic.net.server", + "ch.qos.logback.classic.pattern", + "ch.qos.logback.classic.pattern.color", + "ch.qos.logback.classic.selector", + "ch.qos.logback.classic.selector.servlet", + "ch.qos.logback.classic.servlet", + "ch.qos.logback.classic.sift", + "ch.qos.logback.classic.spi", + "ch.qos.logback.classic.turbo", + "ch.qos.logback.classic.util" + ], + "ch.qos.logback:logback-core": [ + "ch.qos.logback.core", + "ch.qos.logback.core.boolex", + "ch.qos.logback.core.encoder", + "ch.qos.logback.core.filter", + "ch.qos.logback.core.helpers", + "ch.qos.logback.core.hook", + "ch.qos.logback.core.html", + "ch.qos.logback.core.joran", + "ch.qos.logback.core.joran.action", + "ch.qos.logback.core.joran.conditional", + "ch.qos.logback.core.joran.event", + "ch.qos.logback.core.joran.event.stax", + "ch.qos.logback.core.joran.node", + "ch.qos.logback.core.joran.sanity", + "ch.qos.logback.core.joran.spi", + "ch.qos.logback.core.joran.util", + "ch.qos.logback.core.joran.util.beans", + "ch.qos.logback.core.layout", + "ch.qos.logback.core.model", + "ch.qos.logback.core.model.conditional", + "ch.qos.logback.core.model.processor", + "ch.qos.logback.core.model.processor.conditional", + "ch.qos.logback.core.model.util", + "ch.qos.logback.core.net", + "ch.qos.logback.core.net.server", + "ch.qos.logback.core.net.ssl", + "ch.qos.logback.core.pattern", + "ch.qos.logback.core.pattern.color", + "ch.qos.logback.core.pattern.parser", + "ch.qos.logback.core.pattern.util", + "ch.qos.logback.core.property", + "ch.qos.logback.core.read", + "ch.qos.logback.core.recovery", + "ch.qos.logback.core.rolling", + "ch.qos.logback.core.rolling.helper", + "ch.qos.logback.core.sift", + "ch.qos.logback.core.spi", + "ch.qos.logback.core.status", + "ch.qos.logback.core.subst", + "ch.qos.logback.core.testUtil", + "ch.qos.logback.core.util" + ], + "com.fasterxml.jackson.core:jackson-annotations": [ + "com.fasterxml.jackson.annotation" + ], + "com.fasterxml.jackson.core:jackson-core": [ + "com.fasterxml.jackson.core", + "com.fasterxml.jackson.core.async", + "com.fasterxml.jackson.core.base", + "com.fasterxml.jackson.core.exc", + "com.fasterxml.jackson.core.filter", + "com.fasterxml.jackson.core.format", + "com.fasterxml.jackson.core.io", + "com.fasterxml.jackson.core.io.doubleparser", + "com.fasterxml.jackson.core.io.schubfach", + "com.fasterxml.jackson.core.json", + "com.fasterxml.jackson.core.json.async", + "com.fasterxml.jackson.core.sym", + "com.fasterxml.jackson.core.type", + "com.fasterxml.jackson.core.util" + ], + "com.fasterxml.jackson.core:jackson-databind": [ + "com.fasterxml.jackson.databind", + "com.fasterxml.jackson.databind.annotation", + "com.fasterxml.jackson.databind.cfg", + "com.fasterxml.jackson.databind.deser", + "com.fasterxml.jackson.databind.deser.impl", + "com.fasterxml.jackson.databind.deser.std", + "com.fasterxml.jackson.databind.exc", + "com.fasterxml.jackson.databind.ext", + "com.fasterxml.jackson.databind.introspect", + "com.fasterxml.jackson.databind.jdk14", + "com.fasterxml.jackson.databind.json", + "com.fasterxml.jackson.databind.jsonFormatVisitors", + "com.fasterxml.jackson.databind.jsonschema", + "com.fasterxml.jackson.databind.jsontype", + "com.fasterxml.jackson.databind.jsontype.impl", + "com.fasterxml.jackson.databind.module", + "com.fasterxml.jackson.databind.node", + "com.fasterxml.jackson.databind.ser", + "com.fasterxml.jackson.databind.ser.impl", + "com.fasterxml.jackson.databind.ser.std", + "com.fasterxml.jackson.databind.type", + "com.fasterxml.jackson.databind.util", + "com.fasterxml.jackson.databind.util.internal" + ], + "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor": [ + "com.fasterxml.jackson.dataformat.cbor", + "com.fasterxml.jackson.dataformat.cbor.databind" + ], + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8": [ + "com.fasterxml.jackson.datatype.jdk8" + ], + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310": [ + "com.fasterxml.jackson.datatype.jsr310", + "com.fasterxml.jackson.datatype.jsr310.deser", + "com.fasterxml.jackson.datatype.jsr310.deser.key", + "com.fasterxml.jackson.datatype.jsr310.ser", + "com.fasterxml.jackson.datatype.jsr310.ser.key", + "com.fasterxml.jackson.datatype.jsr310.util" + ], + "com.fasterxml.jackson.module:jackson-module-parameter-names": [ + "com.fasterxml.jackson.module.paramnames" + ], + "com.fasterxml.jackson.module:jackson-module-scala_2.13": [ + "com.fasterxml.jackson.module.scala", + "com.fasterxml.jackson.module.scala.deser", + "com.fasterxml.jackson.module.scala.experimental", + "com.fasterxml.jackson.module.scala.introspect", + "com.fasterxml.jackson.module.scala.modifiers", + "com.fasterxml.jackson.module.scala.ser", + "com.fasterxml.jackson.module.scala.util" + ], + "com.github.sbt:junit-interface": [ + "com.novocode.junit" + ], + "com.google.auto.service:auto-service-annotations": [ + "com.google.auto.service" + ], + "com.google.code.findbugs:jsr305": [ + "javax.annotation", + "javax.annotation.concurrent", + "javax.annotation.meta" + ], + "com.google.code.gson:gson": [ + "com.google.gson", + "com.google.gson.annotations", + "com.google.gson.internal", + "com.google.gson.internal.bind", + "com.google.gson.internal.bind.util", + "com.google.gson.internal.reflect", + "com.google.gson.internal.sql", + "com.google.gson.reflect", + "com.google.gson.stream" + ], + "com.google.errorprone:error_prone_annotations": [ + "com.google.errorprone.annotations", + "com.google.errorprone.annotations.concurrent" + ], + "com.google.guava:failureaccess": [ + "com.google.common.util.concurrent.internal" + ], + "com.google.guava:guava": [ + "com.google.common.annotations", + "com.google.common.base", + "com.google.common.base.internal", + "com.google.common.cache", + "com.google.common.collect", + "com.google.common.escape", + "com.google.common.eventbus", + "com.google.common.graph", + "com.google.common.hash", + "com.google.common.html", + "com.google.common.io", + "com.google.common.math", + "com.google.common.net", + "com.google.common.primitives", + "com.google.common.reflect", + "com.google.common.util.concurrent", + "com.google.common.xml", + "com.google.thirdparty.publicsuffix" + ], + "com.google.inject.extensions:guice-assistedinject": [ + "com.google.inject.assistedinject", + "com.google.inject.assistedinject.internal" + ], + "com.google.inject:guice": [ + "com.google.inject", + "com.google.inject.binder", + "com.google.inject.internal", + "com.google.inject.internal.aop", + "com.google.inject.internal.asm", + "com.google.inject.internal.util", + "com.google.inject.matcher", + "com.google.inject.multibindings", + "com.google.inject.name", + "com.google.inject.spi", + "com.google.inject.util" + ], + "com.google.j2objc:j2objc-annotations": [ + "com.google.j2objc.annotations" + ], + "com.shapesecurity:salvation2": [ + "com.shapesecurity.salvation2", + "com.shapesecurity.salvation2.Directives", + "com.shapesecurity.salvation2.URLs", + "com.shapesecurity.salvation2.Values" + ], + "com.thoughtworks.paranamer:paranamer": [ + "com.thoughtworks.paranamer" + ], + "com.typesafe.akka:akka-actor-typed_2.13": [ + "akka.actor.typed", + "akka.actor.typed.delivery", + "akka.actor.typed.delivery.internal", + "akka.actor.typed.eventstream", + "akka.actor.typed.internal", + "akka.actor.typed.internal.adapter", + "akka.actor.typed.internal.jfr", + "akka.actor.typed.internal.pubsub", + "akka.actor.typed.internal.receptionist", + "akka.actor.typed.internal.routing", + "akka.actor.typed.javadsl", + "akka.actor.typed.pubsub", + "akka.actor.typed.receptionist", + "akka.actor.typed.scaladsl", + "akka.actor.typed.scaladsl.adapter" + ], + "com.typesafe.akka:akka-actor_2.13": [ + "akka", + "akka.actor", + "akka.actor.dungeon", + "akka.actor.setup", + "akka.annotation", + "akka.compat", + "akka.dispatch", + "akka.dispatch.affinity", + "akka.dispatch.internal", + "akka.dispatch.sysmsg", + "akka.event", + "akka.event.japi", + "akka.event.jul", + "akka.io", + "akka.io.dns", + "akka.io.dns.internal", + "akka.japi", + "akka.japi.function", + "akka.japi.pf", + "akka.japi.tuple", + "akka.pattern", + "akka.pattern.extended", + "akka.pattern.internal", + "akka.routing", + "akka.serialization", + "akka.util", + "akka.util.ccompat" + ], + "com.typesafe.akka:akka-protobuf-v3_2.13": [ + "akka.protobufv3.internal", + "akka.protobufv3.internal.compiler" + ], + "com.typesafe.akka:akka-serialization-jackson_2.13": [ + "akka.serialization.jackson" + ], + "com.typesafe.akka:akka-slf4j_2.13": [ + "akka.event.slf4j" + ], + "com.typesafe.akka:akka-stream_2.13": [ + "akka.stream", + "akka.stream.impl", + "akka.stream.impl.fusing", + "akka.stream.impl.io", + "akka.stream.impl.io.compression", + "akka.stream.impl.streamref", + "akka.stream.javadsl", + "akka.stream.scaladsl", + "akka.stream.serialization", + "akka.stream.snapshot", + "akka.stream.stage", + "com.typesafe.sslconfig.akka", + "com.typesafe.sslconfig.akka.util" + ], + "com.typesafe.play:play-build-link": [ + "play", + "play.core", + "play.core.server" + ], + "com.typesafe.play:play-configuration_2.13": [ + "play", + "play.api" + ], + "com.typesafe.play:play-exceptions": [ + "play.api" + ], + "com.typesafe.play:play-functional_2.13": [ + "play.api.libs.functional", + "play.api.libs.functional.syntax" + ], + "com.typesafe.play:play-guice_2.13": [ + "play.api.inject.guice", + "play.api.libs.concurrent", + "play.inject.guice", + "play.libs.akka" + ], + "com.typesafe.play:play-json_2.13": [ + "play.api.libs.json", + "play.api.libs.json.jackson", + "play.api.libs.json.util" + ], + "com.typesafe.play:play-server_2.13": [ + "play.core.server", + "play.core.server.common", + "play.core.server.ssl", + "play.server" + ], + "com.typesafe.play:play-specs2_2.13": [ + "play.api.test" + ], + "com.typesafe.play:play-streams_2.13": [ + "play.api.libs.streams", + "play.libs.streams" + ], + "com.typesafe.play:play-test_2.13": [ + "akka.stream.testkit", + "play.api.test", + "play.test" + ], + "com.typesafe.play:play_2.13": [ + "controllers", + "models", + "play", + "play.api", + "play.api.controllers", + "play.api.data", + "play.api.data.format", + "play.api.data.validation", + "play.api.http", + "play.api.http.websocket", + "play.api.i18n", + "play.api.inject", + "play.api.internal.libs.concurrent", + "play.api.libs", + "play.api.libs.concurrent", + "play.api.libs.crypto", + "play.api.libs.typedmap", + "play.api.mvc", + "play.api.mvc.macros", + "play.api.mvc.request", + "play.api.routing", + "play.api.routing.sird", + "play.api.routing.sird.macroimpl", + "play.api.templates", + "play.components", + "play.controllers", + "play.core", + "play.core.cookie.encoding", + "play.core.formatters", + "play.core.j", + "play.core.parsers", + "play.core.routing", + "play.core.system", + "play.core.utils", + "play.http", + "play.http.websocket", + "play.i18n", + "play.inject", + "play.libs", + "play.libs.akka", + "play.libs.concurrent", + "play.libs.crypto", + "play.libs.exception", + "play.libs.reflect", + "play.libs.streams", + "play.libs.typedmap", + "play.mvc", + "play.routing", + "play.server", + "play.server.api", + "play.utils", + "views", + "views.html", + "views.html.defaultpages", + "views.html.helper", + "views.html.play20", + "views.js.helper", + "views.txt", + "views.xml" + ], + "com.typesafe.play:twirl-api_2.13": [ + "play.twirl.api", + "play.twirl.api.utils" + ], + "com.typesafe:config": [ + "com.typesafe.config", + "com.typesafe.config.impl", + "com.typesafe.config.parser" + ], + "com.typesafe:ssl-config-core_2.13": [ + "com.typesafe.sslconfig.ssl", + "com.typesafe.sslconfig.ssl.debug", + "com.typesafe.sslconfig.ssl.tracing", + "com.typesafe.sslconfig.util" + ], + "commons-beanutils:commons-beanutils": [ + "org.apache.commons.beanutils", + "org.apache.commons.beanutils.converters", + "org.apache.commons.beanutils.expression", + "org.apache.commons.beanutils.locale", + "org.apache.commons.beanutils.locale.converters" + ], + "commons-codec:commons-codec": [ + "org.apache.commons.codec", + "org.apache.commons.codec.binary", + "org.apache.commons.codec.cli", + "org.apache.commons.codec.digest", + "org.apache.commons.codec.language", + "org.apache.commons.codec.language.bm", + "org.apache.commons.codec.net" + ], + "commons-collections:commons-collections": [ + "org.apache.commons.collections", + "org.apache.commons.collections.bag", + "org.apache.commons.collections.bidimap", + "org.apache.commons.collections.buffer", + "org.apache.commons.collections.collection", + "org.apache.commons.collections.comparators", + "org.apache.commons.collections.functors", + "org.apache.commons.collections.iterators", + "org.apache.commons.collections.keyvalue", + "org.apache.commons.collections.list", + "org.apache.commons.collections.map", + "org.apache.commons.collections.set" + ], + "commons-digester:commons-digester": [ + "org.apache.commons.digester", + "org.apache.commons.digester.annotations", + "org.apache.commons.digester.annotations.handlers", + "org.apache.commons.digester.annotations.internal", + "org.apache.commons.digester.annotations.providers", + "org.apache.commons.digester.annotations.reflect", + "org.apache.commons.digester.annotations.rules", + "org.apache.commons.digester.annotations.spi", + "org.apache.commons.digester.annotations.utils", + "org.apache.commons.digester.parser", + "org.apache.commons.digester.plugins", + "org.apache.commons.digester.plugins.strategies", + "org.apache.commons.digester.substitution", + "org.apache.commons.digester.xmlrules" + ], + "commons-io:commons-io": [ + "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" + ], + "commons-logging:commons-logging": [ + "org.apache.commons.logging", + "org.apache.commons.logging.impl" + ], + "commons-net:commons-net": [ + "org.apache.commons.net", + "org.apache.commons.net.bsd", + "org.apache.commons.net.chargen", + "org.apache.commons.net.daytime", + "org.apache.commons.net.discard", + "org.apache.commons.net.echo", + "org.apache.commons.net.finger", + "org.apache.commons.net.ftp", + "org.apache.commons.net.ftp.parser", + "org.apache.commons.net.imap", + "org.apache.commons.net.io", + "org.apache.commons.net.nntp", + "org.apache.commons.net.ntp", + "org.apache.commons.net.pop3", + "org.apache.commons.net.smtp", + "org.apache.commons.net.telnet", + "org.apache.commons.net.tftp", + "org.apache.commons.net.time", + "org.apache.commons.net.util", + "org.apache.commons.net.whois" + ], + "commons-validator:commons-validator": [ + "org.apache.commons.validator", + "org.apache.commons.validator.routines", + "org.apache.commons.validator.routines.checkdigit", + "org.apache.commons.validator.util" + ], + "dev.failsafe:failsafe": [ + "dev.failsafe", + "dev.failsafe.event", + "dev.failsafe.function", + "dev.failsafe.internal", + "dev.failsafe.internal.util", + "dev.failsafe.spi" + ], + "io.appium:java-client": [ + "io.appium.java_client", + "io.appium.java_client.android", + "io.appium.java_client.android.appmanagement", + "io.appium.java_client.android.connection", + "io.appium.java_client.android.geolocation", + "io.appium.java_client.android.nativekey", + "io.appium.java_client.android.options", + "io.appium.java_client.android.options.adb", + "io.appium.java_client.android.options.app", + "io.appium.java_client.android.options.avd", + "io.appium.java_client.android.options.context", + "io.appium.java_client.android.options.localization", + "io.appium.java_client.android.options.locking", + "io.appium.java_client.android.options.mjpeg", + "io.appium.java_client.android.options.other", + "io.appium.java_client.android.options.server", + "io.appium.java_client.android.options.signing", + "io.appium.java_client.appmanagement", + "io.appium.java_client.battery", + "io.appium.java_client.clipboard", + "io.appium.java_client.driverscripts", + "io.appium.java_client.functions", + "io.appium.java_client.gecko", + "io.appium.java_client.gecko.options", + "io.appium.java_client.imagecomparison", + "io.appium.java_client.internal", + "io.appium.java_client.ios", + "io.appium.java_client.ios.options", + "io.appium.java_client.ios.options.app", + "io.appium.java_client.ios.options.general", + "io.appium.java_client.ios.options.other", + "io.appium.java_client.ios.options.simulator", + "io.appium.java_client.ios.options.wda", + "io.appium.java_client.ios.options.webview", + "io.appium.java_client.ios.touch", + "io.appium.java_client.mac", + "io.appium.java_client.mac.options", + "io.appium.java_client.pagefactory", + "io.appium.java_client.pagefactory.bys", + "io.appium.java_client.pagefactory.bys.builder", + "io.appium.java_client.pagefactory.interceptors", + "io.appium.java_client.pagefactory.locator", + "io.appium.java_client.pagefactory.utils", + "io.appium.java_client.proxy", + "io.appium.java_client.remote", + "io.appium.java_client.remote.options", + "io.appium.java_client.safari", + "io.appium.java_client.safari.options", + "io.appium.java_client.screenrecording", + "io.appium.java_client.serverevents", + "io.appium.java_client.service.local", + "io.appium.java_client.service.local.flags", + "io.appium.java_client.touch", + "io.appium.java_client.touch.offset", + "io.appium.java_client.windows", + "io.appium.java_client.windows.options", + "io.appium.java_client.ws" + ], + "io.fluentlenium:fluentlenium-core": [ + "io.fluentlenium.adapter", + "io.fluentlenium.adapter.exception", + "io.fluentlenium.adapter.sharedwebdriver", + "io.fluentlenium.configuration", + "io.fluentlenium.core", + "io.fluentlenium.core.action", + "io.fluentlenium.core.alert", + "io.fluentlenium.core.annotation", + "io.fluentlenium.core.capabilities", + "io.fluentlenium.core.components", + "io.fluentlenium.core.conditions", + "io.fluentlenium.core.conditions.message", + "io.fluentlenium.core.conditions.wait", + "io.fluentlenium.core.css", + "io.fluentlenium.core.dom", + "io.fluentlenium.core.domain", + "io.fluentlenium.core.events", + "io.fluentlenium.core.events.annotations", + "io.fluentlenium.core.filter", + "io.fluentlenium.core.filter.matcher", + "io.fluentlenium.core.hook", + "io.fluentlenium.core.hook.wait", + "io.fluentlenium.core.inject", + "io.fluentlenium.core.label", + "io.fluentlenium.core.navigation", + "io.fluentlenium.core.page", + "io.fluentlenium.core.performance", + "io.fluentlenium.core.proxy", + "io.fluentlenium.core.script", + "io.fluentlenium.core.search", + "io.fluentlenium.core.snapshot", + "io.fluentlenium.core.switchto", + "io.fluentlenium.core.url", + "io.fluentlenium.core.wait", + "io.fluentlenium.utils", + "io.fluentlenium.utils.chromium" + ], + "io.jsonwebtoken:jjwt-api": [ + "io.jsonwebtoken", + "io.jsonwebtoken.io", + "io.jsonwebtoken.lang", + "io.jsonwebtoken.security" + ], + "io.jsonwebtoken:jjwt-impl": [ + "io.jsonwebtoken.impl", + "io.jsonwebtoken.impl.compression", + "io.jsonwebtoken.impl.crypto", + "io.jsonwebtoken.impl.lang" + ], + "io.jsonwebtoken:jjwt-jackson": [ + "io.jsonwebtoken.jackson.io" + ], + "io.opentelemetry:opentelemetry-api": [ + "io.opentelemetry.api", + "io.opentelemetry.api.baggage", + "io.opentelemetry.api.baggage.propagation", + "io.opentelemetry.api.common", + "io.opentelemetry.api.internal", + "io.opentelemetry.api.logs", + "io.opentelemetry.api.metrics", + "io.opentelemetry.api.trace", + "io.opentelemetry.api.trace.propagation", + "io.opentelemetry.api.trace.propagation.internal" + ], + "io.opentelemetry:opentelemetry-api-events": [ + "io.opentelemetry.api.events" + ], + "io.opentelemetry:opentelemetry-context": [ + "io.opentelemetry.context", + "io.opentelemetry.context.internal.shaded", + "io.opentelemetry.context.propagation" + ], + "io.opentelemetry:opentelemetry-exporter-logging": [ + "io.opentelemetry.exporter.logging", + "io.opentelemetry.exporter.logging.internal" + ], + "io.opentelemetry:opentelemetry-extension-incubator": [ + "io.opentelemetry.extension.incubator.metrics", + "io.opentelemetry.extension.incubator.propagation", + "io.opentelemetry.extension.incubator.trace" + ], + "io.opentelemetry:opentelemetry-sdk": [ + "io.opentelemetry.sdk" + ], + "io.opentelemetry:opentelemetry-sdk-common": [ + "io.opentelemetry.sdk.common", + "io.opentelemetry.sdk.common.export", + "io.opentelemetry.sdk.common.internal", + "io.opentelemetry.sdk.internal", + "io.opentelemetry.sdk.resources" + ], + "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure": [ + "io.opentelemetry.sdk.autoconfigure", + "io.opentelemetry.sdk.autoconfigure.internal" + ], + "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi": [ + "io.opentelemetry.sdk.autoconfigure.spi", + "io.opentelemetry.sdk.autoconfigure.spi.internal", + "io.opentelemetry.sdk.autoconfigure.spi.logs", + "io.opentelemetry.sdk.autoconfigure.spi.metrics", + "io.opentelemetry.sdk.autoconfigure.spi.traces" + ], + "io.opentelemetry:opentelemetry-sdk-logs": [ + "io.opentelemetry.sdk.logs", + "io.opentelemetry.sdk.logs.data", + "io.opentelemetry.sdk.logs.export", + "io.opentelemetry.sdk.logs.internal" + ], + "io.opentelemetry:opentelemetry-sdk-metrics": [ + "io.opentelemetry.sdk.metrics", + "io.opentelemetry.sdk.metrics.data", + "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.debug", + "io.opentelemetry.sdk.metrics.internal.descriptor", + "io.opentelemetry.sdk.metrics.internal.exemplar", + "io.opentelemetry.sdk.metrics.internal.export", + "io.opentelemetry.sdk.metrics.internal.state", + "io.opentelemetry.sdk.metrics.internal.view" + ], + "io.opentelemetry:opentelemetry-sdk-trace": [ + "io.opentelemetry.internal.shaded.jctools.queues", + "io.opentelemetry.internal.shaded.jctools.util", + "io.opentelemetry.sdk.trace", + "io.opentelemetry.sdk.trace.data", + "io.opentelemetry.sdk.trace.export", + "io.opentelemetry.sdk.trace.internal", + "io.opentelemetry.sdk.trace.internal.data", + "io.opentelemetry.sdk.trace.samplers" + ], + "io.opentelemetry:opentelemetry-semconv": [ + "io.opentelemetry.semconv.resource.attributes", + "io.opentelemetry.semconv.trace.attributes" + ], + "jakarta.inject:jakarta.inject-api": [ + "jakarta.inject" + ], + "javax.inject:javax.inject": [ + "javax.inject" + ], + "junit:junit": [ + "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.function", + "org.junit.internal", + "org.junit.internal.builders", + "org.junit.internal.management", + "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", + "org.junit.runners.parameterized", + "org.junit.validator" + ], + "net.bytebuddy:byte-buddy": [ + "net.bytebuddy", + "net.bytebuddy.agent.builder", + "net.bytebuddy.asm", + "net.bytebuddy.build", + "net.bytebuddy.description", + "net.bytebuddy.description.annotation", + "net.bytebuddy.description.enumeration", + "net.bytebuddy.description.field", + "net.bytebuddy.description.method", + "net.bytebuddy.description.modifier", + "net.bytebuddy.description.type", + "net.bytebuddy.dynamic", + "net.bytebuddy.dynamic.loading", + "net.bytebuddy.dynamic.scaffold", + "net.bytebuddy.dynamic.scaffold.inline", + "net.bytebuddy.dynamic.scaffold.subclass", + "net.bytebuddy.implementation", + "net.bytebuddy.implementation.attribute", + "net.bytebuddy.implementation.auxiliary", + "net.bytebuddy.implementation.bind", + "net.bytebuddy.implementation.bind.annotation", + "net.bytebuddy.implementation.bytecode", + "net.bytebuddy.implementation.bytecode.assign", + "net.bytebuddy.implementation.bytecode.assign.primitive", + "net.bytebuddy.implementation.bytecode.assign.reference", + "net.bytebuddy.implementation.bytecode.collection", + "net.bytebuddy.implementation.bytecode.constant", + "net.bytebuddy.implementation.bytecode.member", + "net.bytebuddy.jar.asm", + "net.bytebuddy.jar.asm.commons", + "net.bytebuddy.jar.asm.signature", + "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" + ], + "net.bytebuddy:byte-buddy-agent": [ + "net.bytebuddy.agent", + "net.bytebuddy.agent.utility.nullability" + ], + "net.bytebuddy:byte-buddy:jar:sources": [ + "net.bytebuddy.build" + ], + "net.sourceforge.htmlunit:htmlunit": [ + "com.gargoylesoftware.htmlunit", + "com.gargoylesoftware.htmlunit.activex.javascript.msxml", + "com.gargoylesoftware.htmlunit.attachment", + "com.gargoylesoftware.htmlunit.css", + "com.gargoylesoftware.htmlunit.html", + "com.gargoylesoftware.htmlunit.html.applets", + "com.gargoylesoftware.htmlunit.html.impl", + "com.gargoylesoftware.htmlunit.html.parser", + "com.gargoylesoftware.htmlunit.html.parser.neko", + "com.gargoylesoftware.htmlunit.html.serializer", + "com.gargoylesoftware.htmlunit.html.xpath", + "com.gargoylesoftware.htmlunit.httpclient", + "com.gargoylesoftware.htmlunit.javascript", + "com.gargoylesoftware.htmlunit.javascript.background", + "com.gargoylesoftware.htmlunit.javascript.configuration", + "com.gargoylesoftware.htmlunit.javascript.host", + "com.gargoylesoftware.htmlunit.javascript.host.animations", + "com.gargoylesoftware.htmlunit.javascript.host.arrays", + "com.gargoylesoftware.htmlunit.javascript.host.canvas", + "com.gargoylesoftware.htmlunit.javascript.host.canvas.ext", + "com.gargoylesoftware.htmlunit.javascript.host.crypto", + "com.gargoylesoftware.htmlunit.javascript.host.css", + "com.gargoylesoftware.htmlunit.javascript.host.dom", + "com.gargoylesoftware.htmlunit.javascript.host.event", + "com.gargoylesoftware.htmlunit.javascript.host.fetch", + "com.gargoylesoftware.htmlunit.javascript.host.file", + "com.gargoylesoftware.htmlunit.javascript.host.geo", + "com.gargoylesoftware.htmlunit.javascript.host.html", + "com.gargoylesoftware.htmlunit.javascript.host.idb", + "com.gargoylesoftware.htmlunit.javascript.host.intl", + "com.gargoylesoftware.htmlunit.javascript.host.media", + "com.gargoylesoftware.htmlunit.javascript.host.media.midi", + "com.gargoylesoftware.htmlunit.javascript.host.media.presentation", + "com.gargoylesoftware.htmlunit.javascript.host.media.rtc", + "com.gargoylesoftware.htmlunit.javascript.host.network", + "com.gargoylesoftware.htmlunit.javascript.host.payment", + "com.gargoylesoftware.htmlunit.javascript.host.performance", + "com.gargoylesoftware.htmlunit.javascript.host.security", + "com.gargoylesoftware.htmlunit.javascript.host.speech", + "com.gargoylesoftware.htmlunit.javascript.host.svg", + "com.gargoylesoftware.htmlunit.javascript.host.worker", + "com.gargoylesoftware.htmlunit.javascript.host.xml", + "com.gargoylesoftware.htmlunit.javascript.polyfill", + "com.gargoylesoftware.htmlunit.javascript.regexp", + "com.gargoylesoftware.htmlunit.platform", + "com.gargoylesoftware.htmlunit.platform.canvas.rendering", + "com.gargoylesoftware.htmlunit.platform.dom.traversal", + "com.gargoylesoftware.htmlunit.platform.geom", + "com.gargoylesoftware.htmlunit.platform.image", + "com.gargoylesoftware.htmlunit.platform.util", + "com.gargoylesoftware.htmlunit.protocol", + "com.gargoylesoftware.htmlunit.protocol.about", + "com.gargoylesoftware.htmlunit.protocol.data", + "com.gargoylesoftware.htmlunit.protocol.javascript", + "com.gargoylesoftware.htmlunit.svg", + "com.gargoylesoftware.htmlunit.util", + "com.gargoylesoftware.htmlunit.util.geometry", + "com.gargoylesoftware.htmlunit.websocket", + "com.gargoylesoftware.htmlunit.webstart", + "com.gargoylesoftware.htmlunit.xml", + "netscape", + "netscape.javascript" + ], + "net.sourceforge.htmlunit:htmlunit-core-js": [ + "net.sourceforge.htmlunit.corejs.classfile", + "net.sourceforge.htmlunit.corejs.javascript", + "net.sourceforge.htmlunit.corejs.javascript.annotations", + "net.sourceforge.htmlunit.corejs.javascript.ast", + "net.sourceforge.htmlunit.corejs.javascript.commonjs.module", + "net.sourceforge.htmlunit.corejs.javascript.commonjs.module.provider", + "net.sourceforge.htmlunit.corejs.javascript.debug", + "net.sourceforge.htmlunit.corejs.javascript.engine", + "net.sourceforge.htmlunit.corejs.javascript.jdk18", + "net.sourceforge.htmlunit.corejs.javascript.json", + "net.sourceforge.htmlunit.corejs.javascript.optimizer", + "net.sourceforge.htmlunit.corejs.javascript.regexp", + "net.sourceforge.htmlunit.corejs.javascript.serialize", + "net.sourceforge.htmlunit.corejs.javascript.tools", + "net.sourceforge.htmlunit.corejs.javascript.tools.debugger", + "net.sourceforge.htmlunit.corejs.javascript.tools.debugger.treetable", + "net.sourceforge.htmlunit.corejs.javascript.tools.shell", + "net.sourceforge.htmlunit.corejs.javascript.typedarrays", + "net.sourceforge.htmlunit.corejs.javascript.v8dtoa", + "net.sourceforge.htmlunit.corejs.javascript.xml" + ], + "net.sourceforge.htmlunit:htmlunit-cssparser": [ + "com.gargoylesoftware.css.dom", + "com.gargoylesoftware.css.parser", + "com.gargoylesoftware.css.parser.condition", + "com.gargoylesoftware.css.parser.javacc", + "com.gargoylesoftware.css.parser.media", + "com.gargoylesoftware.css.parser.selector", + "com.gargoylesoftware.css.util" + ], + "net.sourceforge.htmlunit:htmlunit-xpath": [ + "net.sourceforge.htmlunit.xpath", + "net.sourceforge.htmlunit.xpath.axes", + "net.sourceforge.htmlunit.xpath.compiler", + "net.sourceforge.htmlunit.xpath.functions", + "net.sourceforge.htmlunit.xpath.objects", + "net.sourceforge.htmlunit.xpath.operations", + "net.sourceforge.htmlunit.xpath.patterns", + "net.sourceforge.htmlunit.xpath.res", + "net.sourceforge.htmlunit.xpath.xml.dtm", + "net.sourceforge.htmlunit.xpath.xml.dtm.ref", + "net.sourceforge.htmlunit.xpath.xml.dtm.ref.dom2dtm", + "net.sourceforge.htmlunit.xpath.xml.utils" + ], + "net.sourceforge.htmlunit:neko-htmlunit": [ + "net.sourceforge.htmlunit.cyberneko", + "net.sourceforge.htmlunit.cyberneko.filters", + "net.sourceforge.htmlunit.cyberneko.parsers", + "net.sourceforge.htmlunit.xerces.dom", + "net.sourceforge.htmlunit.xerces.impl", + "net.sourceforge.htmlunit.xerces.impl.msg", + "net.sourceforge.htmlunit.xerces.parsers", + "net.sourceforge.htmlunit.xerces.util", + "net.sourceforge.htmlunit.xerces.xni", + "net.sourceforge.htmlunit.xerces.xni.parser" + ], + "org.apache.commons:commons-exec": [ + "org.apache.commons.exec", + "org.apache.commons.exec.environment", + "org.apache.commons.exec.launcher", + "org.apache.commons.exec.util" + ], + "org.apache.commons:commons-lang3": [ + "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" + ], + "org.apache.commons:commons-text": [ + "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" + ], + "org.apache.httpcomponents:httpclient": [ + "org.apache.http.auth", + "org.apache.http.auth.params", + "org.apache.http.client", + "org.apache.http.client.config", + "org.apache.http.client.entity", + "org.apache.http.client.methods", + "org.apache.http.client.params", + "org.apache.http.client.protocol", + "org.apache.http.client.utils", + "org.apache.http.conn", + "org.apache.http.conn.params", + "org.apache.http.conn.routing", + "org.apache.http.conn.scheme", + "org.apache.http.conn.socket", + "org.apache.http.conn.ssl", + "org.apache.http.conn.util", + "org.apache.http.cookie", + "org.apache.http.cookie.params", + "org.apache.http.impl.auth", + "org.apache.http.impl.client", + "org.apache.http.impl.conn", + "org.apache.http.impl.conn.tsccm", + "org.apache.http.impl.cookie", + "org.apache.http.impl.execchain" + ], + "org.apache.httpcomponents:httpcore": [ + "org.apache.http", + "org.apache.http.annotation", + "org.apache.http.concurrent", + "org.apache.http.config", + "org.apache.http.entity", + "org.apache.http.impl", + "org.apache.http.impl.bootstrap", + "org.apache.http.impl.entity", + "org.apache.http.impl.io", + "org.apache.http.impl.pool", + "org.apache.http.io", + "org.apache.http.message", + "org.apache.http.params", + "org.apache.http.pool", + "org.apache.http.protocol", + "org.apache.http.ssl", + "org.apache.http.util" + ], + "org.apache.httpcomponents:httpmime": [ + "org.apache.http.entity.mime", + "org.apache.http.entity.mime.content" + ], + "org.apache.maven:maven-model": [ + "org.apache.maven.model", + "org.apache.maven.model.io.xpp3", + "org.apache.maven.model.merge" + ], + "org.atteo.classindex:classindex": [ + "org.atteo.classindex", + "org.atteo.classindex.processor", + "org.atteo.evo.classindex" + ], + "org.brotli:dec": [ + "org.brotli.dec" + ], + "org.checkerframework:checker-qual": [ + "org.checkerframework.checker.builder.qual", + "org.checkerframework.checker.calledmethods.qual", + "org.checkerframework.checker.compilermsgs.qual", + "org.checkerframework.checker.fenum.qual", + "org.checkerframework.checker.formatter.qual", + "org.checkerframework.checker.guieffect.qual", + "org.checkerframework.checker.i18n.qual", + "org.checkerframework.checker.i18nformatter.qual", + "org.checkerframework.checker.index.qual", + "org.checkerframework.checker.initialization.qual", + "org.checkerframework.checker.interning.qual", + "org.checkerframework.checker.lock.qual", + "org.checkerframework.checker.mustcall.qual", + "org.checkerframework.checker.nullness.qual", + "org.checkerframework.checker.optional.qual", + "org.checkerframework.checker.propkey.qual", + "org.checkerframework.checker.regex.qual", + "org.checkerframework.checker.signature.qual", + "org.checkerframework.checker.signedness.qual", + "org.checkerframework.checker.tainting.qual", + "org.checkerframework.checker.units.qual", + "org.checkerframework.common.aliasing.qual", + "org.checkerframework.common.initializedfields.qual", + "org.checkerframework.common.reflection.qual", + "org.checkerframework.common.returnsreceiver.qual", + "org.checkerframework.common.subtyping.qual", + "org.checkerframework.common.util.report.qual", + "org.checkerframework.common.value.qual", + "org.checkerframework.dataflow.qual", + "org.checkerframework.framework.qual" + ], + "org.codehaus.plexus:plexus-utils": [ + "org.codehaus.plexus.util", + "org.codehaus.plexus.util.cli", + "org.codehaus.plexus.util.cli.shell", + "org.codehaus.plexus.util.dag", + "org.codehaus.plexus.util.introspection", + "org.codehaus.plexus.util.io", + "org.codehaus.plexus.util.reflection", + "org.codehaus.plexus.util.xml", + "org.codehaus.plexus.util.xml.pull" + ], + "org.eclipse.jetty.websocket:websocket-api": [ + "org.eclipse.jetty.websocket.api", + "org.eclipse.jetty.websocket.api.annotations", + "org.eclipse.jetty.websocket.api.extensions", + "org.eclipse.jetty.websocket.api.util" + ], + "org.eclipse.jetty.websocket:websocket-client": [ + "org.eclipse.jetty.websocket.client", + "org.eclipse.jetty.websocket.client.io", + "org.eclipse.jetty.websocket.client.masks" + ], + "org.eclipse.jetty.websocket:websocket-common": [ + "org.eclipse.jetty.websocket.common", + "org.eclipse.jetty.websocket.common.events", + "org.eclipse.jetty.websocket.common.events.annotated", + "org.eclipse.jetty.websocket.common.extensions", + "org.eclipse.jetty.websocket.common.extensions.compress", + "org.eclipse.jetty.websocket.common.extensions.fragment", + "org.eclipse.jetty.websocket.common.extensions.identity", + "org.eclipse.jetty.websocket.common.frames", + "org.eclipse.jetty.websocket.common.io", + "org.eclipse.jetty.websocket.common.io.http", + "org.eclipse.jetty.websocket.common.io.payload", + "org.eclipse.jetty.websocket.common.message", + "org.eclipse.jetty.websocket.common.scopes", + "org.eclipse.jetty.websocket.common.util" + ], + "org.eclipse.jetty:jetty-client": [ + "org.eclipse.jetty.client", + "org.eclipse.jetty.client.api", + "org.eclipse.jetty.client.http", + "org.eclipse.jetty.client.jmx", + "org.eclipse.jetty.client.util" + ], + "org.eclipse.jetty:jetty-http": [ + "org.eclipse.jetty.http", + "org.eclipse.jetty.http.pathmap" + ], + "org.eclipse.jetty:jetty-io": [ + "org.eclipse.jetty.io", + "org.eclipse.jetty.io.jmx", + "org.eclipse.jetty.io.ssl" + ], + "org.eclipse.jetty:jetty-util": [ + "org.eclipse.jetty.util", + "org.eclipse.jetty.util.annotation", + "org.eclipse.jetty.util.component", + "org.eclipse.jetty.util.compression", + "org.eclipse.jetty.util.log", + "org.eclipse.jetty.util.preventers", + "org.eclipse.jetty.util.resource", + "org.eclipse.jetty.util.security", + "org.eclipse.jetty.util.ssl", + "org.eclipse.jetty.util.statistic", + "org.eclipse.jetty.util.thread", + "org.eclipse.jetty.util.thread.strategy" + ], + "org.hamcrest:hamcrest": [ + "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" + ], + "org.hamcrest:hamcrest-core": [ + "org.hamcrest", + "org.hamcrest.core", + "org.hamcrest.internal" + ], + "org.lz4:lz4-java": [ + "net.jpountz.lz4", + "net.jpountz.util", + "net.jpountz.xxhash" + ], + "org.mockito:mockito-core": [ + "org.mockito", + "org.mockito.codegen", + "org.mockito.configuration", + "org.mockito.creation.instance", + "org.mockito.exceptions.base", + "org.mockito.exceptions.misusing", + "org.mockito.exceptions.stacktrace", + "org.mockito.exceptions.verification", + "org.mockito.exceptions.verification.junit", + "org.mockito.exceptions.verification.opentest4j", + "org.mockito.hamcrest", + "org.mockito.internal", + "org.mockito.internal.configuration", + "org.mockito.internal.configuration.injection", + "org.mockito.internal.configuration.injection.filter", + "org.mockito.internal.configuration.injection.scanner", + "org.mockito.internal.configuration.plugins", + "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", + "org.mockito.internal.exceptions", + "org.mockito.internal.exceptions.stacktrace", + "org.mockito.internal.exceptions.util", + "org.mockito.internal.framework", + "org.mockito.internal.hamcrest", + "org.mockito.internal.handler", + "org.mockito.internal.invocation", + "org.mockito.internal.invocation.finder", + "org.mockito.internal.invocation.mockref", + "org.mockito.internal.junit", + "org.mockito.internal.listeners", + "org.mockito.internal.matchers", + "org.mockito.internal.matchers.apachecommons", + "org.mockito.internal.matchers.text", + "org.mockito.internal.progress", + "org.mockito.internal.reporting", + "org.mockito.internal.runners", + "org.mockito.internal.runners.util", + "org.mockito.internal.session", + "org.mockito.internal.stubbing", + "org.mockito.internal.stubbing.answers", + "org.mockito.internal.stubbing.defaultanswers", + "org.mockito.internal.util", + "org.mockito.internal.util.collections", + "org.mockito.internal.util.concurrent", + "org.mockito.internal.util.io", + "org.mockito.internal.util.reflection", + "org.mockito.internal.verification", + "org.mockito.internal.verification.api", + "org.mockito.internal.verification.argumentmatching", + "org.mockito.internal.verification.checkers", + "org.mockito.invocation", + "org.mockito.junit", + "org.mockito.listeners", + "org.mockito.mock", + "org.mockito.plugins", + "org.mockito.quality", + "org.mockito.session", + "org.mockito.stubbing", + "org.mockito.verification" + ], + "org.objenesis:objenesis": [ + "org.objenesis", + "org.objenesis.instantiator", + "org.objenesis.instantiator.android", + "org.objenesis.instantiator.annotations", + "org.objenesis.instantiator.basic", + "org.objenesis.instantiator.gcj", + "org.objenesis.instantiator.perc", + "org.objenesis.instantiator.sun", + "org.objenesis.instantiator.util", + "org.objenesis.strategy" + ], + "org.ow2.asm:asm": [ + "org.objectweb.asm", + "org.objectweb.asm.signature" + ], + "org.portable-scala:portable-scala-reflect_2.13": [ + "org.portablescala.reflect", + "org.portablescala.reflect.annotation", + "org.portablescala.reflect.internal" + ], + "org.reactivestreams:reactive-streams": [ + "org.reactivestreams" + ], + "org.scala-lang.modules:scala-java8-compat_2.13": [ + "scala.compat.java8", + "scala.compat.java8.FunctionConverters", + "scala.compat.java8.collectionImpl", + "scala.compat.java8.converterImpl", + "scala.compat.java8.functionConverterImpls", + "scala.compat.java8.wrappers", + "scala.concurrent.java8" + ], + "org.scala-lang.modules:scala-parser-combinators_2.13": [ + "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.json" + ], + "org.scala-lang.modules:scala-xml_2.13": [ + "scala.xml", + "scala.xml.dtd", + "scala.xml.dtd.impl", + "scala.xml.factory", + "scala.xml.include", + "scala.xml.include.sax", + "scala.xml.parsing", + "scala.xml.transform" + ], + "org.scala-lang:scala-library": [ + "scala", + "scala.annotation", + "scala.annotation.meta", + "scala.annotation.unchecked", + "scala.beans", + "scala.collection", + "scala.collection.concurrent", + "scala.collection.convert", + "scala.collection.convert.impl", + "scala.collection.generic", + "scala.collection.immutable", + "scala.collection.mutable", + "scala.compat", + "scala.concurrent", + "scala.concurrent.duration", + "scala.concurrent.impl", + "scala.io", + "scala.jdk", + "scala.jdk.javaapi", + "scala.math", + "scala.ref", + "scala.reflect", + "scala.reflect.macros.internal", + "scala.runtime", + "scala.runtime.java8", + "scala.sys", + "scala.sys.process", + "scala.util", + "scala.util.control", + "scala.util.hashing", + "scala.util.matching" + ], + "org.scala-lang:scala-reflect": [ + "scala.reflect.api", + "scala.reflect.internal", + "scala.reflect.internal.annotations", + "scala.reflect.internal.pickling", + "scala.reflect.internal.settings", + "scala.reflect.internal.tpe", + "scala.reflect.internal.transform", + "scala.reflect.internal.util", + "scala.reflect.io", + "scala.reflect.macros", + "scala.reflect.macros.blackbox", + "scala.reflect.macros.whitebox", + "scala.reflect.runtime" + ], + "org.scala-sbt:test-interface": [ + "org.scalatools.testing", + "sbt.testing" + ], + "org.seleniumhq.selenium:htmlunit-driver": [ + "org.openqa.selenium.htmlunit", + "org.openqa.selenium.htmlunit.logging", + "org.openqa.selenium.htmlunit.w3" + ], + "org.seleniumhq.selenium:selenium-api": [ + "org.openqa.selenium", + "org.openqa.selenium.federatedcredentialmanagement", + "org.openqa.selenium.html5", + "org.openqa.selenium.interactions", + "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" + ], + "org.seleniumhq.selenium:selenium-devtools-v85": [ + "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" + ], + "org.seleniumhq.selenium:selenium-firefox-driver": [ + "org.openqa.selenium.firefox" + ], + "org.seleniumhq.selenium:selenium-http": [ + "org.openqa.selenium.remote.http" + ], + "org.seleniumhq.selenium:selenium-json": [ + "org.openqa.selenium.json" + ], + "org.seleniumhq.selenium:selenium-manager": [ + "org.openqa.selenium.manager" + ], + "org.seleniumhq.selenium:selenium-os": [ + "org.openqa.selenium.io", + "org.openqa.selenium.os" + ], + "org.seleniumhq.selenium:selenium-remote-driver": [ + "org.openqa.selenium.bidi", + "org.openqa.selenium.bidi.browsingcontext", + "org.openqa.selenium.bidi.log", + "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.remote", + "org.openqa.selenium.remote.codec", + "org.openqa.selenium.remote.codec.w3c", + "org.openqa.selenium.remote.html5", + "org.openqa.selenium.remote.http.jdk", + "org.openqa.selenium.remote.internal", + "org.openqa.selenium.remote.locators", + "org.openqa.selenium.remote.mobile", + "org.openqa.selenium.remote.service", + "org.openqa.selenium.remote.tracing", + "org.openqa.selenium.remote.tracing.empty", + "org.openqa.selenium.remote.tracing.opentelemetry", + "org.openqa.selenium.support.decorators" + ], + "org.seleniumhq.selenium:selenium-support": [ + "org.openqa.selenium.support", + "org.openqa.selenium.support.events", + "org.openqa.selenium.support.locators", + "org.openqa.selenium.support.pagefactory", + "org.openqa.selenium.support.pagefactory.internal", + "org.openqa.selenium.support.ui" + ], + "org.slf4j:jcl-over-slf4j": [ + "org.apache.commons.logging", + "org.apache.commons.logging.impl" + ], + "org.slf4j:jul-to-slf4j": [ + "org.slf4j.bridge" + ], + "org.slf4j:slf4j-api": [ + "org.slf4j", + "org.slf4j.event", + "org.slf4j.helpers", + "org.slf4j.spi" + ], + "org.specs2:specs2-common_2.13": [ + "org.specs2", + "org.specs2.collection", + "org.specs2.concurrent", + "org.specs2.control", + "org.specs2.control.eff", + "org.specs2.control.eff.syntax", + "org.specs2.control.origami", + "org.specs2.control.producer", + "org.specs2.data", + "org.specs2.execute", + "org.specs2.io", + "org.specs2.main", + "org.specs2.reflect", + "org.specs2.text", + "org.specs2.time", + "specs2" + ], + "org.specs2:specs2-core_2.13": [ + "org.specs2", + "org.specs2.control", + "org.specs2.execute", + "org.specs2.io", + "org.specs2.matcher", + "org.specs2.mutable", + "org.specs2.mutable.script", + "org.specs2.reporter", + "org.specs2.runner", + "org.specs2.specification", + "org.specs2.specification.core", + "org.specs2.specification.core.mutable", + "org.specs2.specification.create", + "org.specs2.specification.create.mutable", + "org.specs2.specification.dsl", + "org.specs2.specification.dsl.mutable", + "org.specs2.specification.mutable", + "org.specs2.specification.process", + "org.specs2.specification.script", + "specs2" + ], + "org.specs2:specs2-fp_2.13": [ + "org.specs2.fp" + ], + "org.specs2:specs2-junit_2.13": [ + "org.specs2", + "org.specs2.matcher", + "org.specs2.mutable", + "org.specs2.reporter", + "org.specs2.runner" + ], + "org.specs2:specs2-matcher_2.13": [ + "org.specs2.matcher", + "org.specs2.matcher.describe" + ], + "org.specs2:specs2-mock_2.13": [ + "org.mockito.internal.invocation", + "org.mockito.internal.matchers", + "org.mockito.internal.progress", + "org.specs2.matcher", + "org.specs2.mock", + "org.specs2.mock.mockito" + ] + }, + "repositories": { + "https://repo.maven.apache.org/maven2/": [ + "aopalliance:aopalliance", + "aopalliance:aopalliance:jar:sources", + "cglib:cglib", + "cglib:cglib:jar:sources", + "ch.qos.logback:logback-classic", + "ch.qos.logback:logback-classic:jar:sources", + "ch.qos.logback:logback-core", + "ch.qos.logback:logback-core:jar:sources", + "com.fasterxml.jackson.core:jackson-annotations", + "com.fasterxml.jackson.core:jackson-annotations:jar:sources", + "com.fasterxml.jackson.core:jackson-core", + "com.fasterxml.jackson.core:jackson-core:jar:sources", + "com.fasterxml.jackson.core:jackson-databind", + "com.fasterxml.jackson.core:jackson-databind:jar:sources", + "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor", + "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:jar:sources", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources", + "com.fasterxml.jackson.module:jackson-module-parameter-names", + "com.fasterxml.jackson.module:jackson-module-parameter-names:jar:sources", + "com.fasterxml.jackson.module:jackson-module-scala_2.13", + "com.fasterxml.jackson.module:jackson-module-scala_2.13:jar:sources", + "com.github.sbt:junit-interface", + "com.github.sbt:junit-interface:jar:sources", + "com.google.auto.service:auto-service-annotations", + "com.google.auto.service:auto-service-annotations:jar:sources", + "com.google.code.findbugs:jsr305", + "com.google.code.findbugs:jsr305:jar:sources", + "com.google.code.gson:gson", + "com.google.code.gson:gson:jar:sources", + "com.google.errorprone:error_prone_annotations", + "com.google.errorprone:error_prone_annotations:jar:sources", + "com.google.guava:failureaccess", + "com.google.guava:failureaccess:jar:sources", + "com.google.guava:guava", + "com.google.guava:guava:jar:sources", + "com.google.guava:listenablefuture", + "com.google.inject.extensions:guice-assistedinject", + "com.google.inject.extensions:guice-assistedinject:jar:sources", + "com.google.inject:guice", + "com.google.inject:guice:jar:sources", + "com.google.j2objc:j2objc-annotations", + "com.google.j2objc:j2objc-annotations:jar:sources", + "com.shapesecurity:salvation2", + "com.shapesecurity:salvation2:jar:sources", + "com.thoughtworks.paranamer:paranamer", + "com.thoughtworks.paranamer:paranamer:jar:sources", + "com.typesafe.akka:akka-actor-typed_2.13", + "com.typesafe.akka:akka-actor-typed_2.13:jar:sources", + "com.typesafe.akka:akka-actor_2.13", + "com.typesafe.akka:akka-actor_2.13:jar:sources", + "com.typesafe.akka:akka-protobuf-v3_2.13", + "com.typesafe.akka:akka-protobuf-v3_2.13:jar:sources", + "com.typesafe.akka:akka-serialization-jackson_2.13", + "com.typesafe.akka:akka-serialization-jackson_2.13:jar:sources", + "com.typesafe.akka:akka-slf4j_2.13", + "com.typesafe.akka:akka-slf4j_2.13:jar:sources", + "com.typesafe.akka:akka-stream_2.13", + "com.typesafe.akka:akka-stream_2.13:jar:sources", + "com.typesafe.play:play-build-link", + "com.typesafe.play:play-build-link:jar:sources", + "com.typesafe.play:play-configuration_2.13", + "com.typesafe.play:play-configuration_2.13:jar:sources", + "com.typesafe.play:play-exceptions", + "com.typesafe.play:play-exceptions:jar:sources", + "com.typesafe.play:play-functional_2.13", + "com.typesafe.play:play-functional_2.13:jar:sources", + "com.typesafe.play:play-guice_2.13", + "com.typesafe.play:play-guice_2.13:jar:sources", + "com.typesafe.play:play-json_2.13", + "com.typesafe.play:play-json_2.13:jar:sources", + "com.typesafe.play:play-server_2.13", + "com.typesafe.play:play-server_2.13:jar:sources", + "com.typesafe.play:play-specs2_2.13", + "com.typesafe.play:play-specs2_2.13:jar:sources", + "com.typesafe.play:play-streams_2.13", + "com.typesafe.play:play-streams_2.13:jar:sources", + "com.typesafe.play:play-test_2.13", + "com.typesafe.play:play-test_2.13:jar:sources", + "com.typesafe.play:play_2.13", + "com.typesafe.play:play_2.13:jar:sources", + "com.typesafe.play:twirl-api_2.13", + "com.typesafe.play:twirl-api_2.13:jar:sources", + "com.typesafe:config", + "com.typesafe:config:jar:sources", + "com.typesafe:ssl-config-core_2.13", + "com.typesafe:ssl-config-core_2.13:jar:sources", + "commons-beanutils:commons-beanutils", + "commons-beanutils:commons-beanutils:jar:sources", + "commons-codec:commons-codec", + "commons-codec:commons-codec:jar:sources", + "commons-collections:commons-collections", + "commons-collections:commons-collections:jar:sources", + "commons-digester:commons-digester", + "commons-digester:commons-digester:jar:sources", + "commons-io:commons-io", + "commons-io:commons-io:jar:sources", + "commons-logging:commons-logging", + "commons-logging:commons-logging:jar:sources", + "commons-net:commons-net", + "commons-net:commons-net:jar:sources", + "commons-validator:commons-validator", + "commons-validator:commons-validator:jar:sources", + "dev.failsafe:failsafe", + "dev.failsafe:failsafe:jar:sources", + "io.appium:java-client", + "io.appium:java-client:jar:sources", + "io.fluentlenium:fluentlenium-core", + "io.fluentlenium:fluentlenium-core:jar:sources", + "io.jsonwebtoken:jjwt-api", + "io.jsonwebtoken:jjwt-api:jar:sources", + "io.jsonwebtoken:jjwt-impl", + "io.jsonwebtoken:jjwt-impl:jar:sources", + "io.jsonwebtoken:jjwt-jackson", + "io.jsonwebtoken:jjwt-jackson:jar:sources", + "io.opentelemetry:opentelemetry-api", + "io.opentelemetry:opentelemetry-api-events", + "io.opentelemetry:opentelemetry-api-events:jar:sources", + "io.opentelemetry:opentelemetry-api:jar:sources", + "io.opentelemetry:opentelemetry-context", + "io.opentelemetry:opentelemetry-context:jar:sources", + "io.opentelemetry:opentelemetry-exporter-logging", + "io.opentelemetry:opentelemetry-exporter-logging:jar:sources", + "io.opentelemetry:opentelemetry-extension-incubator", + "io.opentelemetry:opentelemetry-extension-incubator:jar:sources", + "io.opentelemetry:opentelemetry-sdk", + "io.opentelemetry:opentelemetry-sdk-common", + "io.opentelemetry:opentelemetry-sdk-common:jar:sources", + "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure", + "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi", + "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:jar:sources", + "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:jar:sources", + "io.opentelemetry:opentelemetry-sdk-logs", + "io.opentelemetry:opentelemetry-sdk-logs:jar:sources", + "io.opentelemetry:opentelemetry-sdk-metrics", + "io.opentelemetry:opentelemetry-sdk-metrics:jar:sources", + "io.opentelemetry:opentelemetry-sdk-trace", + "io.opentelemetry:opentelemetry-sdk-trace:jar:sources", + "io.opentelemetry:opentelemetry-sdk:jar:sources", + "io.opentelemetry:opentelemetry-semconv", + "io.opentelemetry:opentelemetry-semconv:jar:sources", + "jakarta.inject:jakarta.inject-api", + "jakarta.inject:jakarta.inject-api:jar:sources", + "javax.inject:javax.inject", + "javax.inject:javax.inject:jar:sources", + "junit:junit", + "junit:junit:jar:sources", + "net.bytebuddy:byte-buddy", + "net.bytebuddy:byte-buddy-agent", + "net.bytebuddy:byte-buddy-agent:jar:sources", + "net.bytebuddy:byte-buddy:jar:sources", + "net.sourceforge.htmlunit:htmlunit", + "net.sourceforge.htmlunit:htmlunit-core-js", + "net.sourceforge.htmlunit:htmlunit-core-js:jar:sources", + "net.sourceforge.htmlunit:htmlunit-cssparser", + "net.sourceforge.htmlunit:htmlunit-cssparser:jar:sources", + "net.sourceforge.htmlunit:htmlunit-xpath", + "net.sourceforge.htmlunit:htmlunit-xpath:jar:sources", + "net.sourceforge.htmlunit:htmlunit:jar:sources", + "net.sourceforge.htmlunit:neko-htmlunit", + "net.sourceforge.htmlunit:neko-htmlunit:jar:sources", + "org.apache.commons:commons-exec", + "org.apache.commons:commons-exec:jar:sources", + "org.apache.commons:commons-lang3", + "org.apache.commons:commons-lang3:jar:sources", + "org.apache.commons:commons-text", + "org.apache.commons:commons-text:jar:sources", + "org.apache.httpcomponents:httpclient", + "org.apache.httpcomponents:httpclient:jar:sources", + "org.apache.httpcomponents:httpcore", + "org.apache.httpcomponents:httpcore:jar:sources", + "org.apache.httpcomponents:httpmime", + "org.apache.httpcomponents:httpmime:jar:sources", + "org.apache.maven:maven-model", + "org.apache.maven:maven-model:jar:sources", + "org.atteo.classindex:classindex", + "org.atteo.classindex:classindex:jar:sources", + "org.brotli:dec", + "org.brotli:dec:jar:sources", + "org.checkerframework:checker-qual", + "org.checkerframework:checker-qual:jar:sources", + "org.codehaus.plexus:plexus-utils", + "org.codehaus.plexus:plexus-utils:jar:sources", + "org.eclipse.jetty.websocket:websocket-api", + "org.eclipse.jetty.websocket:websocket-api:jar:sources", + "org.eclipse.jetty.websocket:websocket-client", + "org.eclipse.jetty.websocket:websocket-client:jar:sources", + "org.eclipse.jetty.websocket:websocket-common", + "org.eclipse.jetty.websocket:websocket-common:jar:sources", + "org.eclipse.jetty:jetty-client", + "org.eclipse.jetty:jetty-client:jar:sources", + "org.eclipse.jetty:jetty-http", + "org.eclipse.jetty:jetty-http:jar:sources", + "org.eclipse.jetty:jetty-io", + "org.eclipse.jetty:jetty-io:jar:sources", + "org.eclipse.jetty:jetty-util", + "org.eclipse.jetty:jetty-util:jar:sources", + "org.hamcrest:hamcrest", + "org.hamcrest:hamcrest-core", + "org.hamcrest:hamcrest-core:jar:sources", + "org.hamcrest:hamcrest:jar:sources", + "org.lz4:lz4-java", + "org.lz4:lz4-java:jar:sources", + "org.mockito:mockito-core", + "org.mockito:mockito-core:jar:sources", + "org.objenesis:objenesis", + "org.objenesis:objenesis:jar:sources", + "org.ow2.asm:asm", + "org.ow2.asm:asm:jar:sources", + "org.portable-scala:portable-scala-reflect_2.13", + "org.portable-scala:portable-scala-reflect_2.13:jar:sources", + "org.reactivestreams:reactive-streams", + "org.reactivestreams:reactive-streams:jar:sources", + "org.scala-lang.modules:scala-java8-compat_2.13", + "org.scala-lang.modules:scala-java8-compat_2.13:jar:sources", + "org.scala-lang.modules:scala-parser-combinators_2.13", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources", + "org.scala-lang.modules:scala-xml_2.13", + "org.scala-lang.modules:scala-xml_2.13:jar:sources", + "org.scala-lang:scala-library", + "org.scala-lang:scala-library:jar:sources", + "org.scala-lang:scala-reflect", + "org.scala-lang:scala-reflect:jar:sources", + "org.scala-sbt:test-interface", + "org.scala-sbt:test-interface:jar:sources", + "org.seleniumhq.selenium:htmlunit-driver", + "org.seleniumhq.selenium:htmlunit-driver:jar:sources", + "org.seleniumhq.selenium:selenium-api", + "org.seleniumhq.selenium:selenium-api:jar:sources", + "org.seleniumhq.selenium:selenium-devtools-v85", + "org.seleniumhq.selenium:selenium-devtools-v85:jar:sources", + "org.seleniumhq.selenium:selenium-firefox-driver", + "org.seleniumhq.selenium:selenium-firefox-driver:jar:sources", + "org.seleniumhq.selenium:selenium-http", + "org.seleniumhq.selenium:selenium-http:jar:sources", + "org.seleniumhq.selenium:selenium-json", + "org.seleniumhq.selenium:selenium-json:jar:sources", + "org.seleniumhq.selenium:selenium-manager", + "org.seleniumhq.selenium:selenium-manager:jar:sources", + "org.seleniumhq.selenium:selenium-os", + "org.seleniumhq.selenium:selenium-os:jar:sources", + "org.seleniumhq.selenium:selenium-remote-driver", + "org.seleniumhq.selenium:selenium-remote-driver:jar:sources", + "org.seleniumhq.selenium:selenium-support", + "org.seleniumhq.selenium:selenium-support:jar:sources", + "org.slf4j:jcl-over-slf4j", + "org.slf4j:jcl-over-slf4j:jar:sources", + "org.slf4j:jul-to-slf4j", + "org.slf4j:jul-to-slf4j:jar:sources", + "org.slf4j:slf4j-api", + "org.slf4j:slf4j-api:jar:sources", + "org.specs2:specs2-common_2.13", + "org.specs2:specs2-common_2.13:jar:sources", + "org.specs2:specs2-core_2.13", + "org.specs2:specs2-core_2.13:jar:sources", + "org.specs2:specs2-fp_2.13", + "org.specs2:specs2-fp_2.13:jar:sources", + "org.specs2:specs2-junit_2.13", + "org.specs2:specs2-junit_2.13:jar:sources", + "org.specs2:specs2-matcher_2.13", + "org.specs2:specs2-matcher_2.13:jar:sources", + "org.specs2:specs2-mock_2.13", + "org.specs2:specs2-mock_2.13:jar:sources" + ] + }, + "version": "2" } diff --git a/scala/BUILD.bazel b/scala/BUILD.bazel index fc553e5..e1e2f4a 100644 --- a/scala/BUILD.bazel +++ b/scala/BUILD.bazel @@ -3,8 +3,7 @@ load( "configure_zinc_scala", "configure_bootstrap_scala", ) - -scala_version = "2.13.2" +load(":version.bzl", "scala_version") compiler_classpath = [ "@play_routes_compiler_cli_maven//:org_scala_lang_scala_compiler", diff --git a/scala/version.bzl b/scala/version.bzl new file mode 100644 index 0000000..7cb7198 --- /dev/null +++ b/scala/version.bzl @@ -0,0 +1 @@ +scala_version = "2.13.12" diff --git a/test/BUILD.bazel b/test/BUILD.bazel index 75f6620..973b411 100644 --- a/test/BUILD.bazel +++ b/test/BUILD.bazel @@ -88,6 +88,7 @@ scala_test( "@play_routes_compiler_cli_test_maven//:org_specs2_specs2_matcher_2_13", "@play_routes_compiler_cli_test_maven//:com_typesafe_akka_akka_actor_2_13", "@play_routes_compiler_cli_test_maven//:com_typesafe_play_play_2_13", + "@play_routes_compiler_cli_test_maven//:com_typesafe_play_play_configuration_2_13", "@play_routes_compiler_cli_test_maven//:com_typesafe_play_play_guice_2_13", "@play_routes_compiler_cli_test_maven//:com_typesafe_play_play_specs2_2_13", "@play_routes_compiler_cli_test_maven//:com_typesafe_play_play_test_2_13", @@ -125,6 +126,7 @@ scala_test( "@play_routes_compiler_cli_test_maven//:org_specs2_specs2_matcher_2_13", "@play_routes_compiler_cli_test_maven//:com_typesafe_akka_akka_actor_2_13", "@play_routes_compiler_cli_test_maven//:com_typesafe_play_play_2_13", + "@play_routes_compiler_cli_test_maven//:com_typesafe_play_play_configuration_2_13", "@play_routes_compiler_cli_test_maven//:com_typesafe_play_play_guice_2_13", "@play_routes_compiler_cli_test_maven//:com_typesafe_play_play_specs2_2_13", "@play_routes_compiler_cli_test_maven//:com_typesafe_play_play_test_2_13", diff --git a/test_workspace.bzl b/test_workspace.bzl index f4bc837..19681aa 100644 --- a/test_workspace.bzl +++ b/test_workspace.bzl @@ -3,18 +3,21 @@ Load test 3rd party maven dependencies """ load("@rules_jvm_external//:defs.bzl", "maven_install") +load(":workspace.bzl", "play_version") + +specs2_version = "4.20.3" def play_routes_compiler_cli_test_repositories(): maven_install( name = "play_routes_compiler_cli_test_maven", artifacts = [ - "org.specs2:specs2-common_2.13:4.7.0", - "org.specs2:specs2-core_2.13:4.7.0", - "org.specs2:specs2-matcher_2.13:4.7.0", - "com.typesafe.akka:akka-actor_2.13:2.5.24", - "com.typesafe.play:play_2.13:2.7.3", - "com.typesafe.play:play-test_2.13:2.7.3", - "com.typesafe.play:play-specs2_2.13:2.7.3", + "org.specs2:specs2-common_2.13:{}".format(specs2_version), + "org.specs2:specs2-core_2.13:{}".format(specs2_version), + "org.specs2:specs2-matcher_2.13:{}".format(specs2_version), + "com.typesafe.akka:akka-actor_2.13:2.6.21", + "com.typesafe.play:play_2.13:{}".format(play_version), + "com.typesafe.play:play-test_2.13:{}".format(play_version), + "com.typesafe.play:play-specs2_2.13:{}".format(play_version), ], repositories = [ "https://repo.maven.apache.org/maven2", diff --git a/workspace.bzl b/workspace.bzl index 51a83d0..0792d6a 100644 --- a/workspace.bzl +++ b/workspace.bzl @@ -3,19 +3,20 @@ Load 3rd party maven dependencies """ load("@rules_jvm_external//:defs.bzl", "maven_install") +load("//scala:version.bzl", "scala_version") + +play_version = "2.9.1" def play_routes_compiler_cli_repositories(): maven_install( name = "play_routes_compiler_cli_maven", artifacts = [ "com.github.scopt:scopt_2.13:3.7.1", - "com.typesafe.play:routes-compiler_2.13:2.8.7", - "org.scala-sbt:compiler-interface:1.2.1", - "org.scala-sbt:util-interface:1.2.0", - "org.scala-lang:scala-compiler:2.13.2", - "org.scala-lang:scala-library:2.13.2", - "org.scala-lang:scala-reflect:2.13.2", - "org.scala-sbt:compiler-bridge_2.13:1.3.4", + "com.typesafe.play:play-routes-compiler_2.13:{}".format(play_version), + "org.scala-lang:scala-compiler:{}".format(scala_version), + "org.scala-lang:scala-library:{}".format(scala_version), + "org.scala-lang:scala-reflect:{}".format(scala_version), + "org.scala-sbt:compiler-bridge_2.13:1.10.0-M1", ], repositories = [ "https://repo.maven.apache.org/maven2",