From 22a30c6d2d315e532b4e1963bb9e8a167c470545 Mon Sep 17 00:00:00 2001 From: James Judd Date: Mon, 29 Jul 2024 11:33:51 -0600 Subject: [PATCH 1/5] Update all the things, update to annex latest, and add worker support Heads up that there's a circular dependency between the cli repo and this repo, so things will be broken until the new cli gets published and then another commit to this repo is made. --- .bazelrc | 14 +- .bazelversion | 2 +- .github/workflows/ci.yml | 12 +- BUILD | 32 +- MODULE.bazel | 6 + MODULE.bazel.lock | 110 + README.md | 48 +- WORKSPACE | 234 +- default-compiler-clis/BUILD.bazel | 35 +- docs/stardoc/play-routes.md | 139 +- play-routes/BUILD | 8 +- play-routes/play-routes-helper.sh | 22 - play-routes/play-routes.bzl | 55 +- play_2_5_routes_compiler_cli_install.json | 793 +- play_2_6_routes_compiler_cli_install.json | 1168 +-- play_2_7_routes_compiler_cli_install.json | 1092 +- ...2_8__2_12_routes_compiler_cli_install.json | 849 +- ...2_8__2_13_routes_compiler_cli_install.json | 846 +- play_2_9_routes_compiler_cli_install.json | 237 + ...3_0__2_13_routes_compiler_cli_install.json | 237 + play_routes_test_install.json | 9302 +++++++---------- scala/BUILD.bazel | 54 - scripts/gen-deps.sh | 3 + test/BUILD.bazel | 82 +- test/PlayForwardRoutesOnlyTest.scala | 21 + test/PlayReverseRoutesOnlyTest.scala | 25 + test/PlayRoutesCompilerTest.scala | 57 +- test/app/binders/package.scala | 2 +- test/app/controllers/Controller1.scala | 9 +- test/app/controllers/Controller2.scala | 5 +- test/app/controllers/Controller3.scala | 5 +- .../app/controllers/GeneratorController.scala | 6 +- .../NamespaceReverseRoutesController.scala | 5 +- .../controllers/ReverseRoutesController.scala | 9 +- test/app/controllers/UserController.scala | 5 +- test/common/TestReverseRoutesOnly.scala | 7 + test/conf/routes | 3 +- test/conf2/routes | 1 + test/play_routes_compiler_bazel_e2e_test.sh | 3 +- test/run_all_tests.sh | 2 +- test_workspace.bzl | 18 +- workspace.bzl | 30 +- 42 files changed, 6928 insertions(+), 8665 deletions(-) create mode 100644 MODULE.bazel create mode 100644 MODULE.bazel.lock delete mode 100755 play-routes/play-routes-helper.sh create mode 100755 play_2_9_routes_compiler_cli_install.json create mode 100644 play_3_0__2_13_routes_compiler_cli_install.json mode change 100644 => 100755 play_routes_test_install.json delete mode 100644 scala/BUILD.bazel create mode 100644 test/PlayForwardRoutesOnlyTest.scala create mode 100644 test/PlayReverseRoutesOnlyTest.scala create mode 100644 test/common/TestReverseRoutesOnly.scala create mode 100644 test/conf2/routes diff --git a/.bazelrc b/.bazelrc index 5cacbcf..c186464 100644 --- a/.bazelrc +++ b/.bazelrc @@ -1,13 +1,15 @@ startup --expand_configs_in_place -build --javabase="//:jdk" -build --java_toolchain="@bazel_tools//tools/jdk:toolchain_hostjdk8" -build --host_javabase="//:jdk" -build --host_java_toolchain="@bazel_tools//tools/jdk:toolchain_hostjdk8" -build --incompatible_java_common_parameters=false - common:ci --color=yes +build --experimental_worker_multiplex_sandboxing +build --experimental_worker_cancellation + +build --java_language_version="21" +build --java_runtime_version="remotejdk_21" +build --tool_java_language_version="21" +build --tool_java_runtime_version="remotejdk_21" + build:ci --verbose_failures build:ci --sandbox_debug build:ci --spawn_strategy=standalone diff --git a/.bazelversion b/.bazelversion index 750aaed..ec9b27c 100644 --- a/.bazelversion +++ b/.bazelversion @@ -1 +1 @@ -bazelbuild/4.2.4 +bazelbuild/7.2.1 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d930f17..2f3b326 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,12 +11,14 @@ jobs: USE_BAZEL_VERSION: ${{ matrix.bazel_version }} strategy: matrix: - os: [ubuntu-20.04] - bazel_version: [bazelbuild/4.2.4] + os: [ubuntu-24.04] + bazel_version: [bazelbuild/6.5.0, bazelbuild/7.2.1] steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 - - run: npm install -g @bazel/bazelisk + - uses: actions/checkout@v4.1.1 + - uses: actions/setup-node@v4.0.2 + - uses: bazel-contrib/setup-bazel@0.8.5 + with: + bazelisk-version: 1.20.0 - run: cat .bazelrc.ci >> .bazelrc - run: ./scripts/format.sh check - run: ./test/run_all_tests.sh ci diff --git a/BUILD b/BUILD index 6d94944..6857fcc 100644 --- a/BUILD +++ b/BUILD @@ -1,4 +1,21 @@ load("@com_github_bazelbuild_buildtools//buildifier:def.bzl", "buildifier") +load( + "@rules_java//toolchains:default_java_toolchain.bzl", + "DEFAULT_JAVACOPTS", + "DEFAULT_TOOLCHAIN_CONFIGURATION", + "default_java_toolchain", +) + +default_java_toolchain( + name = "repository_default_toolchain_21", + configuration = DEFAULT_TOOLCHAIN_CONFIGURATION, + java_runtime = "@rules_java//toolchains:remotejdk_21", + javac_supports_worker_multiplex_sandboxing = True, + # 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 = "21", + target_version = "21", +) buildifier( name = "buildifier", @@ -8,18 +25,3 @@ buildifier( name = "buildifier_check", mode = "check", ) - -java_runtime( - name = "jdk", - srcs = select({ - "@bazel_tools//src/conditions:linux_x86_64": ["@jdk8-linux//:jdk"], - "@bazel_tools//src/conditions:darwin_x86_64": ["@jdk8-osx//:jdk"], - "@bazel_tools//src/conditions:darwin": ["@jdk8-osx//:jdk"], - }), - java = select({ - "@bazel_tools//src/conditions:linux_x86_64": "@jdk8-linux//:java", - "@bazel_tools//src/conditions:darwin_x86_64": "@jdk8-osx//:java", - "@bazel_tools//src/conditions:darwin": "@jdk8-osx//:java", - }), - visibility = ["//visibility:public"], -) diff --git a/MODULE.bazel b/MODULE.bazel new file mode 100644 index 0000000..00bb183 --- /dev/null +++ b/MODULE.bazel @@ -0,0 +1,6 @@ +############################################################################### +# Bazel now uses Bzlmod by default to manage external dependencies. +# Please consider migrating your external dependencies from WORKSPACE to MODULE.bazel. +# +# For more details, please check https://github.com/bazelbuild/bazel/issues/18958 +############################################################################### diff --git a/MODULE.bazel.lock b/MODULE.bazel.lock new file mode 100644 index 0000000..f5cd531 --- /dev/null +++ b/MODULE.bazel.lock @@ -0,0 +1,110 @@ +{ + "lockFileVersion": 11, + "registryFileHashes": { + "https://bcr.bazel.build/bazel_registry.json": "8a28e4aff06ee60aed2a8c281907fb8bcbf3b753c91fb5a5c57da3215d5b3497", + "https://bcr.bazel.build/modules/abseil-cpp/20210324.2/MODULE.bazel": "7cd0312e064fde87c8d1cd79ba06c876bd23630c83466e9500321be55c96ace2", + "https://bcr.bazel.build/modules/abseil-cpp/20211102.0/MODULE.bazel": "70390338f7a5106231d20620712f7cccb659cd0e9d073d1991c038eb9fc57589", + "https://bcr.bazel.build/modules/abseil-cpp/20211102.0/source.json": "7e3a9adf473e9af076ae485ed649d5641ad50ec5c11718103f34de03170d94ad", + "https://bcr.bazel.build/modules/apple_support/1.5.0/MODULE.bazel": "50341a62efbc483e8a2a6aec30994a58749bd7b885e18dd96aa8c33031e558ef", + "https://bcr.bazel.build/modules/apple_support/1.5.0/source.json": "eb98a7627c0bc486b57f598ad8da50f6625d974c8f723e9ea71bd39f709c9862", + "https://bcr.bazel.build/modules/bazel_features/1.11.0/MODULE.bazel": "f9382337dd5a474c3b7d334c2f83e50b6eaedc284253334cf823044a26de03e8", + "https://bcr.bazel.build/modules/bazel_features/1.11.0/source.json": "c9320aa53cd1c441d24bd6b716da087ad7e4ff0d9742a9884587596edfe53015", + "https://bcr.bazel.build/modules/bazel_skylib/1.0.3/MODULE.bazel": "bcb0fd896384802d1ad283b4e4eb4d718eebd8cb820b0a2c3a347fb971afd9d8", + "https://bcr.bazel.build/modules/bazel_skylib/1.2.1/MODULE.bazel": "f35baf9da0efe45fa3da1696ae906eea3d615ad41e2e3def4aeb4e8bc0ef9a7a", + "https://bcr.bazel.build/modules/bazel_skylib/1.3.0/MODULE.bazel": "20228b92868bf5cfc41bda7afc8a8ba2a543201851de39d990ec957b513579c5", + "https://bcr.bazel.build/modules/bazel_skylib/1.6.1/MODULE.bazel": "8fdee2dbaace6c252131c00e1de4b165dc65af02ea278476187765e1a617b917", + "https://bcr.bazel.build/modules/bazel_skylib/1.6.1/source.json": "082ed5f9837901fada8c68c2f3ddc958bb22b6d654f71dd73f3df30d45d4b749", + "https://bcr.bazel.build/modules/buildozer/7.1.2/MODULE.bazel": "2e8dd40ede9c454042645fd8d8d0cd1527966aa5c919de86661e62953cd73d84", + "https://bcr.bazel.build/modules/buildozer/7.1.2/source.json": "c9028a501d2db85793a6996205c8de120944f50a0d570438fcae0457a5f9d1f8", + "https://bcr.bazel.build/modules/googletest/1.11.0/MODULE.bazel": "3a83f095183f66345ca86aa13c58b59f9f94a2f81999c093d4eeaa2d262d12f4", + "https://bcr.bazel.build/modules/googletest/1.11.0/source.json": "c73d9ef4268c91bd0c1cd88f1f9dfa08e814b1dbe89b5f594a9f08ba0244d206", + "https://bcr.bazel.build/modules/platforms/0.0.4/MODULE.bazel": "9b328e31ee156f53f3c416a64f8491f7eb731742655a47c9eec4703a71644aee", + "https://bcr.bazel.build/modules/platforms/0.0.5/MODULE.bazel": "5733b54ea419d5eaf7997054bb55f6a1d0b5ff8aedf0176fef9eea44f3acda37", + "https://bcr.bazel.build/modules/platforms/0.0.6/MODULE.bazel": "ad6eeef431dc52aefd2d77ed20a4b353f8ebf0f4ecdd26a807d2da5aa8cd0615", + "https://bcr.bazel.build/modules/platforms/0.0.7/MODULE.bazel": "72fd4a0ede9ee5c021f6a8dd92b503e089f46c227ba2813ff183b71616034814", + "https://bcr.bazel.build/modules/platforms/0.0.9/MODULE.bazel": "4a87a60c927b56ddd67db50c89acaa62f4ce2a1d2149ccb63ffd871d5ce29ebc", + "https://bcr.bazel.build/modules/platforms/0.0.9/source.json": "cd74d854bf16a9e002fb2ca7b1a421f4403cda29f824a765acd3a8c56f8d43e6", + "https://bcr.bazel.build/modules/protobuf/21.7/MODULE.bazel": "a5a29bb89544f9b97edce05642fac225a808b5b7be74038ea3640fae2f8e66a7", + "https://bcr.bazel.build/modules/protobuf/21.7/source.json": "bbe500720421e582ff2d18b0802464205138c06056f443184de39fbb8187b09b", + "https://bcr.bazel.build/modules/protobuf/3.19.0/MODULE.bazel": "6b5fbb433f760a99a22b18b6850ed5784ef0e9928a72668b66e4d7ccd47db9b0", + "https://bcr.bazel.build/modules/protobuf/3.19.6/MODULE.bazel": "9233edc5e1f2ee276a60de3eaa47ac4132302ef9643238f23128fea53ea12858", + "https://bcr.bazel.build/modules/rules_cc/0.0.1/MODULE.bazel": "cb2aa0747f84c6c3a78dad4e2049c154f08ab9d166b1273835a8174940365647", + "https://bcr.bazel.build/modules/rules_cc/0.0.2/MODULE.bazel": "6915987c90970493ab97393024c156ea8fb9f3bea953b2f3ec05c34f19b5695c", + "https://bcr.bazel.build/modules/rules_cc/0.0.8/MODULE.bazel": "964c85c82cfeb6f3855e6a07054fdb159aced38e99a5eecf7bce9d53990afa3e", + "https://bcr.bazel.build/modules/rules_cc/0.0.9/MODULE.bazel": "836e76439f354b89afe6a911a7adf59a6b2518fafb174483ad78a2a2fde7b1c5", + "https://bcr.bazel.build/modules/rules_cc/0.0.9/source.json": "1f1ba6fea244b616de4a554a0f4983c91a9301640c8fe0dd1d410254115c8430", + "https://bcr.bazel.build/modules/rules_java/4.0.0/MODULE.bazel": "5a78a7ae82cd1a33cef56dc578c7d2a46ed0dca12643ee45edbb8417899e6f74", + "https://bcr.bazel.build/modules/rules_java/7.6.1/MODULE.bazel": "2f14b7e8a1aa2f67ae92bc69d1ec0fa8d9f827c4e17ff5e5f02e91caa3b2d0fe", + "https://bcr.bazel.build/modules/rules_java/7.6.1/source.json": "8f3f3076554e1558e8e468b2232991c510ecbcbed9e6f8c06ac31c93bcf38362", + "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel": "a56b85e418c83eb1839819f0b515c431010160383306d13ec21959ac412d2fe7", + "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/source.json": "a075731e1b46bc8425098512d038d416e966ab19684a10a34f4741295642fc35", + "https://bcr.bazel.build/modules/rules_license/0.0.3/MODULE.bazel": "627e9ab0247f7d1e05736b59dbb1b6871373de5ad31c3011880b4133cafd4bd0", + "https://bcr.bazel.build/modules/rules_license/0.0.7/MODULE.bazel": "088fbeb0b6a419005b89cf93fe62d9517c0a2b8bb56af3244af65ecfe37e7d5d", + "https://bcr.bazel.build/modules/rules_license/0.0.7/source.json": "355cc5737a0f294e560d52b1b7a6492d4fff2caf0bef1a315df5a298fca2d34a", + "https://bcr.bazel.build/modules/rules_pkg/0.7.0/MODULE.bazel": "df99f03fc7934a4737122518bb87e667e62d780b610910f0447665a7e2be62dc", + "https://bcr.bazel.build/modules/rules_pkg/0.7.0/source.json": "c2557066e0c0342223ba592510ad3d812d4963b9024831f7f66fd0584dd8c66c", + "https://bcr.bazel.build/modules/rules_proto/4.0.0/MODULE.bazel": "a7a7b6ce9bee418c1a760b3d84f83a299ad6952f9903c67f19e4edd964894e06", + "https://bcr.bazel.build/modules/rules_proto/5.3.0-21.7/MODULE.bazel": "e8dff86b0971688790ae75528fe1813f71809b5afd57facb44dad9e8eca631b7", + "https://bcr.bazel.build/modules/rules_proto/5.3.0-21.7/source.json": "d57902c052424dfda0e71646cb12668d39c4620ee0544294d9d941e7d12bc3a9", + "https://bcr.bazel.build/modules/rules_python/0.10.2/MODULE.bazel": "cc82bc96f2997baa545ab3ce73f196d040ffb8756fd2d66125a530031cd90e5f", + "https://bcr.bazel.build/modules/rules_python/0.22.1/MODULE.bazel": "26114f0c0b5e93018c0c066d6673f1a2c3737c7e90af95eff30cfee38d0bbac7", + "https://bcr.bazel.build/modules/rules_python/0.22.1/source.json": "57226905e783bae7c37c2dd662be078728e48fa28ee4324a7eabcafb5a43d014", + "https://bcr.bazel.build/modules/rules_python/0.4.0/MODULE.bazel": "9208ee05fd48bf09ac60ed269791cf17fb343db56c8226a720fbb1cdf467166c", + "https://bcr.bazel.build/modules/stardoc/0.5.1/MODULE.bazel": "1a05d92974d0c122f5ccf09291442580317cdd859f07a8655f1db9a60374f9f8", + "https://bcr.bazel.build/modules/stardoc/0.5.1/source.json": "a96f95e02123320aa015b956f29c00cb818fa891ef823d55148e1a362caacf29", + "https://bcr.bazel.build/modules/upb/0.0.0-20220923-a547704/MODULE.bazel": "7298990c00040a0e2f121f6c32544bab27d4452f80d9ce51349b1a28f3005c43", + "https://bcr.bazel.build/modules/upb/0.0.0-20220923-a547704/source.json": "f1ef7d3f9e0e26d4b23d1c39b5f5de71f584dd7d1b4ef83d9bbba6ec7a6a6459", + "https://bcr.bazel.build/modules/zlib/1.2.11/MODULE.bazel": "07b389abc85fdbca459b69e2ec656ae5622873af3f845e1c9d80fe179f3effa0", + "https://bcr.bazel.build/modules/zlib/1.2.12/MODULE.bazel": "3b1a8834ada2a883674be8cbd36ede1b6ec481477ada359cd2d3ddc562340b27", + "https://bcr.bazel.build/modules/zlib/1.3/MODULE.bazel": "6a9c02f19a24dcedb05572b2381446e27c272cd383aed11d41d99da9e3167a72", + "https://bcr.bazel.build/modules/zlib/1.3/source.json": "b6b43d0737af846022636e6e255fd4a96fee0d34f08f3830e6e0bac51465c37c" + }, + "selectedYankedVersions": {}, + "moduleExtensions": { + "@@apple_support~//crosstool:setup.bzl%apple_cc_configure_extension": { + "general": { + "bzlTransitiveDigest": "PjIds3feoYE8SGbbIq2SFTZy3zmxeO2tQevJZNDo7iY=", + "usagesDigest": "aLmqbvowmHkkBPve05yyDNGN7oh7QE9kBADr3QIZTZs=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "local_config_apple_cc": { + "bzlFile": "@@apple_support~//crosstool:setup.bzl", + "ruleClassName": "_apple_cc_autoconf", + "attributes": {} + }, + "local_config_apple_cc_toolchains": { + "bzlFile": "@@apple_support~//crosstool:setup.bzl", + "ruleClassName": "_apple_cc_autoconf_toolchains", + "attributes": {} + } + }, + "recordedRepoMappingEntries": [ + [ + "apple_support~", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@platforms//host:extension.bzl%host_platform": { + "general": { + "bzlTransitiveDigest": "xelQcPZH8+tmuOHVjL9vDxMnnQNMlwj0SlvgoqBkm4U=", + "usagesDigest": "meSzxn3DUCcYEhq4HQwExWkWtU4EjriRBQLsZN+Q0SU=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "host_platform": { + "bzlFile": "@@platforms//host:extension.bzl", + "ruleClassName": "host_platform_repo", + "attributes": {} + } + }, + "recordedRepoMappingEntries": [] + } + } + } +} diff --git a/README.md b/README.md index 0a844a3..ebdac24 100644 --- a/README.md +++ b/README.md @@ -16,32 +16,40 @@ Create a file at the top of your repository named `WORKSPACE` and add the follow ```python # update version as needed -rules_play_routes_version = "bfaca5f186f2c3b989c80fd00f37a53b84406b3d" +rules_play_routes_version = "TODO" http_archive( - name = "io_bazel_rules_play_routes", - sha256 = "b0ae17af402e88da31fa41b16a6cf1d8eea53d693dd6b4c0c219d421078a2af5", + name = "rules_play_routes", + sha256 = "TODO", strip_prefix = "rules_play_routes-{}".format(rules_play_routes_version), type = "zip", url = "https://github.com/lucidsoftware/rules_play_routes/archive/{}.zip".format(rules_play_routes_version), ) -RULES_JVM_EXTERNAL_TAG = "2.9" +# rules_jvm_external +rules_jvm_external_version = "6.2" + http_archive( name = "rules_jvm_external", - sha256 = "e5b97a31a3e8feed91636f42e19b11c49487b85e5de2f387c999ea14d77c7f45", - strip_prefix = "rules_jvm_external-{}".format(RULES_JVM_EXTERNAL_TAG), + sha256 = "aa39ecd47e16d5870eba817fe71476802bc371fe2724a2ddee565992df55f4af", + strip_prefix = "rules_jvm_external-{}".format(rules_jvm_external_version), type = "zip", - url = "https://github.com/bazelbuild/rules_jvm_external/archive/{}.zip".format(RULES_JVM_EXTERNAL_TAG), + url = "https://github.com/bazelbuild/rules_jvm_external/archive/{}.zip".format(rules_jvm_external_version), ) -load("@io_bazel_rules_play_routes//:workspace.bzl", "play_routes_repositories") -play_routes_repositories("2.7") +load("@rules_jvm_external//:repositories.bzl", "rules_jvm_external_deps") +rules_jvm_external_deps() + +load("@rules_jvm_external//:setup.bzl", "rules_jvm_external_setup") +rules_jvm_external_setup() + +load("@rules_play_routes//:workspace.bzl", "play_routes_repositories") +play_routes_repositories("3.0") load("@play_routes//:defs.bzl", play_routes_pinned_maven_install = "pinned_maven_install") play_routes_pinned_maven_install() bind( name = "default-play-routes-compiler-cli", - actual = "@io_bazel_rules_play_routes//default-compiler-clis:scala_2_12_play_2_7" + actual = "@rules_play_routes//default-compiler-clis:scala_2_13_play_3_0" ) ``` @@ -50,15 +58,17 @@ This installs `rules_play_routes` to your `WORKSPACE` and binds the default play In the above example, the play routes compiler cli for Scala 2.12 and Play 2.7 is used. However, you can specify a different compiler. -We provide 6 default compilers: +We provide several default compilers: -- For Scala 2.11 + Play 2.5: `@io_bazel_rules_play_routes//default-compiler-clis:scala_2_11_play_2_5` -- For Scala 2.11 + Play 2.6: `@io_bazel_rules_play_routes//default-compiler-clis:scala_2_11_play_2_6` -- For Scala 2.11 + Play 2.7: `@io_bazel_rules_play_routes//default-compiler-clis:scala_2_11_play_2_7` -- For Scala 2.12 + Play 2.6: `@io_bazel_rules_play_routes//default-compiler-clis:scala_2_12_play_2_6` -- For Scala 2.12 + Play 2.7: `@io_bazel_rules_play_routes//default-compiler-clis:scala_2_12_play_2_7` -- For Scala 2.12 + Play 2.8: `@io_bazel_rules_play_routes//default-compiler-clis:scala_2_12_play_2_8` -- For Scala 2.13 + Play 2.8: `@io_bazel_rules_play_routes//default-compiler-clis:scala_2_13_play_2_8` +- For Scala 2.11 + Play 2.5: `@rules_play_routes//default-compiler-clis:scala_2_11_play_2_5` +- For Scala 2.11 + Play 2.6: `@rules_play_routes//default-compiler-clis:scala_2_11_play_2_6` +- For Scala 2.11 + Play 2.7: `@rules_play_routes//default-compiler-clis:scala_2_11_play_2_7` +- For Scala 2.12 + Play 2.6: `@rules_play_routes//default-compiler-clis:scala_2_12_play_2_6` +- For Scala 2.12 + Play 2.7: `@rules_play_routes//default-compiler-clis:scala_2_12_play_2_7` +- For Scala 2.12 + Play 2.8: `@rules_play_routes//default-compiler-clis:scala_2_12_play_2_8` +- For Scala 2.13 + Play 2.8: `@rules_play_routes//default-compiler-clis:scala_2_13_play_2_8` +- For Scala 2.13 + Play 2.9: `@rules_play_routes//default-compiler-clis:scala_2_13_play_2_9` +- For Scala 2.13 + Play 3.0: `@rules_play_routes//default-compiler-clis:scala_2_13_play_3_0` To bind one of the default compilers, simply specify the correct Play version in the call to `play_routes_repositories` and update the bind statement: ```python @@ -81,7 +91,7 @@ You can optionally include the Scala version, this might be needed for certain v The `play_routes` rule compiles Play routes files to a source jar that can be used with the `rules_scala` rules. For example, ```python -load("@io_bazel_rules_play_routes//play-routes:play-routes.bzl", "play_routes") +load("@rules_play_routes//play-routes:play-routes.bzl", "play_routes") play_routes( name = "play-routes", diff --git a/WORKSPACE b/WORKSPACE index e349a0a..49e43b5 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -1,22 +1,48 @@ -workspace(name = "io_bazel_rules_play_routes") +workspace(name = "rules_play_routes") load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") +# rules_java +http_archive( + name = "rules_java", + sha256 = "41131de4417de70b9597e6ebd515168ed0ba843a325dc54a81b92d7af9a7b3ea", + urls = [ + "https://github.com/bazelbuild/rules_java/releases/download/7.9.0/rules_java-7.9.0.tar.gz", + ], +) + +load("@rules_java//java:repositories.bzl", "rules_java_dependencies") + +rules_java_dependencies() + +register_toolchains("//:repository_default_toolchain_21_definition") + # rules_jvm_external -RULES_JVM_EXTERNAL_TAG = "4.2" +rules_jvm_external_version = "6.2" http_archive( name = "rules_jvm_external", - sha256 = "cd1a77b7b02e8e008439ca76fd34f5b07aecb8c752961f9640dea15e9e5ba1ca", - strip_prefix = "rules_jvm_external-{}".format(RULES_JVM_EXTERNAL_TAG), + sha256 = "aa39ecd47e16d5870eba817fe71476802bc371fe2724a2ddee565992df55f4af", + strip_prefix = "rules_jvm_external-{}".format(rules_jvm_external_version), type = "zip", - url = "https://github.com/bazelbuild/rules_jvm_external/archive/{}.zip".format(RULES_JVM_EXTERNAL_TAG), + url = "https://github.com/bazelbuild/rules_jvm_external/archive/{}.zip".format(rules_jvm_external_version), ) -# Load dependencies +load("@rules_jvm_external//:repositories.bzl", "rules_jvm_external_deps") + +rules_jvm_external_deps() + +load("@rules_jvm_external//:setup.bzl", "rules_jvm_external_setup") + +rules_jvm_external_setup() + +# Set up 3rd party jvm dependencies load("//:workspace.bzl", "play_routes_repositories") -play_routes_repositories("2.7") +play_routes_repositories( + play_version = "3.0", + scala_version = "2.13", +) load("@play_routes//:defs.bzl", play_routes_pinned_maven_install = "pinned_maven_install") @@ -31,165 +57,110 @@ load("@play_routes_test//:defs.bzl", play_routes_test_pinned_maven_install = "pi play_routes_test_pinned_maven_install() # Skylib -skylib_version = "1.0.2" # update this as needed +skylib_version = "1.5.0" # update this as needed http_archive( name = "bazel_skylib", - sha256 = "64ad2728ccdd2044216e4cec7815918b7bb3bb28c95b7e9d951f9d4eccb07625", + sha256 = "19a99bc16079c8853f96d50e627afa158aa00bf52460f45f923466105ff8fe13", strip_prefix = "bazel-skylib-{}".format(skylib_version), type = "zip", url = "https://github.com/bazelbuild/bazel-skylib/archive/{}.zip".format(skylib_version), ) -# rules_nodejs -# To use the JavaScript version of Sass, we need to first install nodejs -rules_nodejs_version = "4.6.1" - -http_archive( - name = "build_bazel_rules_nodejs", - sha256 = "d63ecec7192394f5cc4ad95a115f8a6c9de55c60d56c1f08da79c306355e4654", - url = "https://github.com/bazelbuild/rules_nodejs/releases/download/{v}/rules_nodejs-{v}.tar.gz".format(v = rules_nodejs_version), -) - -load("@build_bazel_rules_nodejs//:index.bzl", "node_repositories") - -node_repositories(package_json = []) +load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace") -# rules_sass -rules_sass_version = "1.26.2" # update this as needed +bazel_skylib_workspace() +# Stardoc http_archive( - name = "io_bazel_rules_sass", - sha256 = "a31026741e4af6f1e5bcc9cce23db0549ecdea6270c8919da09110886102eb8e", - strip_prefix = "rules_sass-{}".format(rules_sass_version), - type = "zip", - url = "https://github.com/bazelbuild/rules_sass/archive/{}.zip".format(rules_sass_version), + name = "io_bazel_stardoc", + sha256 = "62bd2e60216b7a6fec3ac79341aa201e0956477e7c8f6ccc286f279ad1d96432", + urls = [ + "https://mirror.bazel.build/github.com/bazelbuild/stardoc/releases/download/0.6.2/stardoc-0.6.2.tar.gz", + "https://github.com/bazelbuild/stardoc/releases/download/0.6.2/stardoc-0.6.2.tar.gz", + ], ) -load("@io_bazel_rules_sass//:package.bzl", "rules_sass_dependencies") - -rules_sass_dependencies() +load("@io_bazel_stardoc//:setup.bzl", "stardoc_repositories") -load("@io_bazel_rules_sass//sass:sass_repositories.bzl", "sass_repositories") +stardoc_repositories() -sass_repositories() +load("@io_bazel_stardoc//:deps.bzl", "stardoc_external_deps") -# Skydoc -skydoc_version = "0.3.0" # update this as needed - -http_archive( - name = "io_bazel_skydoc", - sha256 = "8762a212cff5f81505a1632630edcfe9adce381479a50a03c968bd2fc217972d", - strip_prefix = "skydoc-{}".format(skydoc_version), - type = "zip", - url = "https://github.com/bazelbuild/skydoc/archive/{}.zip".format(skydoc_version), -) +stardoc_external_deps() -load("@io_bazel_skydoc//skylark:skylark.bzl", "skydoc_repositories") +load("@stardoc_maven//:defs.bzl", stardoc_pinned_maven_install = "pinned_maven_install") -skydoc_repositories() +stardoc_pinned_maven_install() # com_github_bazelbuild_buildtools -buildtools_tag = "0.29.0" - -buildtools_sha256 = "05eb52437fb250c7591dd6cbcfd1f9b5b61d85d6b20f04b041e0830dd1ab39b3" +# buildifier +buildtools_version = "4.2.2" http_archive( name = "com_github_bazelbuild_buildtools", - sha256 = buildtools_sha256, - strip_prefix = "buildtools-{}".format(buildtools_tag), - url = "https://github.com/bazelbuild/buildtools/archive/{}.zip".format(buildtools_tag), + sha256 = "ae34c344514e08c23e90da0e2d6cb700fcd28e80c02e23e4d5715dddcb42f7b3", + strip_prefix = "buildtools-{}".format(buildtools_version), + url = "https://github.com/bazelbuild/buildtools/archive/refs/tags/{}.tar.gz".format(buildtools_version), ) -load("@com_github_bazelbuild_buildtools//buildifier:deps.bzl", "buildifier_dependencies") - -buildifier_dependencies() - -# io_bazel_rules_go (for buildifier) - -rules_go_tag = "v0.28.0" - -rules_go_sha256 = "8e968b5fcea1d2d64071872b12737bbb5514524ee5f0a4f54f5920266c261acb" - +# buildifier is written in Go and hence needs rules_go to be built. +# See https://github.com/bazelbuild/rules_go for the up to date setup instructions. http_archive( name = "io_bazel_rules_go", - sha256 = rules_go_sha256, + sha256 = "6dc2da7ab4cf5d7bfc7c949776b1b7c733f05e56edc4bcd9022bb249d2e2a996", urls = [ - "https://storage.googleapis.com/bazel-mirror/github.com/bazelbuild/rules_go/releases/download/{tag}/rules_go-{tag}.zip".format(tag = rules_go_tag), - "https://github.com/bazelbuild/rules_go/releases/download/{tag}/rules_go-{tag}.zip".format(tag = rules_go_tag), + "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.39.1/rules_go-v0.39.1.zip", + "https://github.com/bazelbuild/rules_go/releases/download/v0.39.1/rules_go-v0.39.1.zip", ], ) -load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies") +load("@io_bazel_rules_go//go:deps.bzl", "go_rules_dependencies") go_rules_dependencies() -go_register_toolchains(version = "1.17") +load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains") -# Also for buildifier -# https://github.com/cgrushko/proto_library/blob/master/WORKSPACE -protobuf_version = "3.11.4" +go_register_toolchains(version = "1.20.3") + +# Also for buildifier. Comes from +# https://github.com/bazelbuild/buildtools/blob/master/buildifier/README.md +protobuf_version = "3.19.4" http_archive( name = "com_google_protobuf", - sha256 = "9748c0d90e54ea09e5e75fb7fac16edce15d2028d4356f32211cfa3c0e956564", + sha256 = "3bd7828aa5af4b13b99c191e8b1e884ebfa9ad371b0ce264605d347f135d2568", strip_prefix = "protobuf-{}".format(protobuf_version), - type = "zip", - url = "https://github.com/protocolbuffers/protobuf/archive/v{}.zip".format(protobuf_version), + url = "https://github.com/protocolbuffers/protobuf/archive/v{}.tar.gz".format(protobuf_version), ) load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps") protobuf_deps() -jdk_build_file_content = """ -filegroup( - name = "jdk", - srcs = glob(["**/*"]), - visibility = ["//visibility:public"], -) -filegroup( - name = "java", - srcs = ["bin/java"], - visibility = ["//visibility:public"], -) -""" - -http_archive( - name = "jdk8-linux", - build_file_content = jdk_build_file_content, - sha256 = "dd28d6d2cde2b931caf94ac2422a2ad082ea62f0beee3bf7057317c53093de93", - strip_prefix = "jdk8u212-b03", - url = "https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u212-b03/OpenJDK8U-jdk_x64_linux_hotspot_8u212b03.tar.gz", -) - -http_archive( - name = "jdk8-osx", - build_file_content = jdk_build_file_content, - sha256 = "3d80857e1bb44bf4abe6d70ba3bb2aae412794d335abe46b26eb904ab6226fe0", - strip_prefix = "jdk8u212-b03/Contents/Home", - url = "https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u212-b03/OpenJDK8U-jdk_x64_mac_hotspot_8u212b03.tar.gz", -) - # higherkindness/rules_scala (used for tests only) # TODO: Move tests into their own worskpace s.t. we don't need their dependenices here -rules_scala_annex_version = "ff423d8bdd0e5383f8f2c048ffd7704bb51a91bf" # update this as needed +rules_scala_annex_version = "f23c16037db66efb541dbbf5e17e6604886c85ff" http_archive( name = "rules_scala_annex", - sha256 = "ae53e9ed5fecadc7baf4637b88109471602be73dda4e5ff6b4bf1767932703c0", + integrity = "sha256-b/cPeh6J1Mq63u6fSWdEHAKL/kWfPhZcNL7m9If7PWM=", 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( name = "default_scala", - actual = "@rules_scala_annex//src/main/scala:zinc_2_12_10", + actual = "@rules_scala_annex//src/main/scala:zinc_3", ) -load("@rules_scala_annex//rules/scala:workspace.bzl", "scala_register_toolchains", "scala_repositories") +load( + "@rules_scala_annex//rules/scala:workspace.bzl", + "scala_register_toolchains", + "scala_repositories", +) scala_repositories() @@ -199,21 +170,60 @@ annex_pinned_maven_install() scala_register_toolchains() +## delete all this when cli changes are published upstream + +skylib_version = "1.4.1" + +http_archive( + name = "bazel_skylib", + 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), +) + +graknlabs_bazel_distribution_version = "ebb4660cff37574876d37bf7c498bd735155554f" + +http_archive( + name = "graknlabs_bazel_distribution", + sha256 = "c3181786d2544a7df54bcf326d5e40e6ec0b86dbc6c42e58d40f8c2c2225859f", + strip_prefix = "bazel-distribution-{}".format(graknlabs_bazel_distribution_version), + type = "zip", + url = "https://github.com/graknlabs/bazel-distribution/archive/{}.zip".format(graknlabs_bazel_distribution_version), +) + +# Make COMPILER_CLI_ARTIFACT_ID available in BUILD files +env_vars_to_bzl_vars_version = "d67a600bb0917cd0e1c7a17ee78a3e2110fdbde2" + +http_archive( + name = "env_vars_to_bzl_vars", + sha256 = "f0f7077a83590ff566c8ef17b74ca02728592f6f400eecb6d3ccef8997a9f41d", + strip_prefix = "env_vars_to_bzl_vars-{}".format(env_vars_to_bzl_vars_version), + type = "zip", + url = "https://github.com/SrodriguezO/env_vars_to_bzl_vars/archive/{}.zip".format(env_vars_to_bzl_vars_version), +) + +load("@env_vars_to_bzl_vars//:env_vars_loader.bzl", "load_env_vars") + +load_env_vars( + name = "env_vars", + env_vars = ["COMPILER_CLI_ARTIFACT_ID"], +) + # TODO: Once the tests are in their own workspaces, we might want to add a basic test for each of the defaults # This would require a separate workspace for each compiler being tested bind( name = "default-play-routes-compiler-cli", - actual = "//default-compiler-clis:scala_2_12_play_2_7", + actual = "@play_routes_compiler_cli//play-routes-compiler", ) -rules_pkg_version = "0.7.0" +# rules_pkg +rules_pkg_version = "0.10.1" http_archive( name = "rules_pkg", - sha256 = "8a298e832762eda1830597d64fe7db58178aa84cd5926d76d5b744d6558941c2", + sha256 = "d250924a2ecc5176808fc4c25d5cf5e9e79e6346d79d5ab1c493e289e722d1d0", urls = [ - "https://mirror.bazel.build/github.com/bazelbuild/rules_pkg/releases/download/{v}/rules_pkg-{v}.tar.gz".format(v = rules_pkg_version), - "https://github.com/bazelbuild/rules_pkg/releases/download/{v}/rules_pkg-{v}.tar.gz".format(v = rules_pkg_version), + "https://github.com/bazelbuild/rules_pkg/releases/download/{0}/rules_pkg-{0}.tar.gz".format(rules_pkg_version), ], ) diff --git a/default-compiler-clis/BUILD.bazel b/default-compiler-clis/BUILD.bazel index c04d67b..5f5da60 100644 --- a/default-compiler-clis/BUILD.bazel +++ b/default-compiler-clis/BUILD.bazel @@ -2,47 +2,68 @@ java_binary( name = "scala_2_11_play_2_5", main_class = "rulesplayroutes.routes.CommandLinePlayRoutesCompiler", visibility = ["//visibility:public"], - runtime_deps = ["@play_routes//:com_lucidchart_play_routes_compiler_cli_2_11"], + runtime_deps = ["@play_2_5_routes_compiler_cli//:com_lucidchart_play_routes_compiler_cli_2_11"], ) java_binary( name = "scala_2_11_play_2_6", main_class = "rulesplayroutes.routes.CommandLinePlayRoutesCompiler", visibility = ["//visibility:public"], - runtime_deps = ["@play_routes//:com_lucidchart_play_routes_compiler_cli_2_11"], + runtime_deps = ["@play_2_6_routes_compiler_cli//:com_lucidchart_play_routes_compiler_cli_2_11"], ) java_binary( name = "scala_2_11_play_2_7", main_class = "rulesplayroutes.routes.CommandLinePlayRoutesCompiler", visibility = ["//visibility:public"], - runtime_deps = ["@play_routes//:com_lucidchart_play_routes_compiler_cli_2_11"], + runtime_deps = ["@play_2_6_routes_compiler_cli//:com_lucidchart_play_routes_compiler_cli_2_11"], ) java_binary( name = "scala_2_12_play_2_6", main_class = "rulesplayroutes.routes.CommandLinePlayRoutesCompiler", visibility = ["//visibility:public"], - runtime_deps = ["@play_routes//:com_lucidchart_play_routes_compiler_cli_2_12"], + runtime_deps = ["@play_2_6_routes_compiler_cli//:com_lucidchart_play_routes_compiler_cli_2_12"], ) java_binary( name = "scala_2_12_play_2_7", main_class = "rulesplayroutes.routes.CommandLinePlayRoutesCompiler", visibility = ["//visibility:public"], - runtime_deps = ["@play_routes//:com_lucidchart_play_routes_compiler_cli_2_12"], + runtime_deps = ["@play_2_7_routes_compiler_cli//:com_lucidchart_play_routes_compiler_cli_2_12"], ) java_binary( name = "scala_2_12_play_2_8", main_class = "rulesplayroutes.routes.CommandLinePlayRoutesCompiler", visibility = ["//visibility:public"], - runtime_deps = ["@play_routes//:com_lucidchart_play_routes_compiler_cli_2_12"], + runtime_deps = ["@play_2_8__2_12_routes_compiler_cli//:com_lucidchart_play_routes_compiler_cli_2_12"], ) java_binary( name = "scala_2_13_play_2_8", main_class = "rulesplayroutes.routes.CommandLinePlayRoutesCompiler", visibility = ["//visibility:public"], - runtime_deps = ["@play_routes//:com_lucidchart_play_routes_compiler_cli_2_13"], + runtime_deps = ["@play_2_8__2_13_routes_compiler_cli//:com_lucidchart_play_routes_compiler_cli_2_13"], +) + +java_binary( + name = "scala_2_13_play_2_9", + main_class = "rulesplayroutes.routes.CommandLinePlayRoutesCompiler", + visibility = ["//visibility:public"], + runtime_deps = ["@play_2_9_routes_compiler_cli//:com_lucidchart_play_routes_compiler_cli_2_13"], +) + +java_binary( + name = "scala_2_13_play_3_0", + main_class = "rulesplayroutes.routes.CommandLinePlayRoutesCompiler", + visibility = ["//visibility:public"], + runtime_deps = ["@play_3_0__2_13_routes_compiler_cli//:com_lucidchart_play_routes_compiler_cli_2_13"], +) + +java_binary( + name = "scala_3_play_3_0", + main_class = "rulesplayroutes.routes.CommandLinePlayRoutesCompiler", + visibility = ["//visibility:public"], + runtime_deps = ["@play_3_0__3_routes_compiler_cli//:com_lucidchart_play_routes_compiler_cli_3"], ) diff --git a/docs/stardoc/play-routes.md b/docs/stardoc/play-routes.md index 5ae66e6..499af6b 100644 --- a/docs/stardoc/play-routes.md +++ b/docs/stardoc/play-routes.md @@ -1,106 +1,39 @@ - +Play Routes rules + +Bazel rules for running the +[Play routes file compiler](https://github.com/playframework/playframework/tree/master/framework/src/routes-compiler/src/main/scala/play/routes/compiler) +on Play routes files + + ## play_routes
-play_routes(name, generate_forwards_router, generate_reverse_router, include_play_imports, namespace_reverse_router, play_routes_compiler, routes_generator, routes_imports, srcs)
+play_routes(name, srcs, generate_forwards_router, generate_reverse_router, include_play_imports,
+            namespace_reverse_router, play_routes_compiler, routes_generator, routes_imports)
 
Compiles Play routes files templates to Scala sources files. -### Attributes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
name - Name; required -

- A unique name for this target. -

-
generate_forwards_router - Boolean; optional -

- Whether the forward router should be generated. Setting to false may help generate only the reverse routes -

-
generate_reverse_router - Boolean; optional -

- Whether the reverse router should be generated. Setting to false may reduce compile times if it's not needed. -

-
include_play_imports - Boolean; optional -

- If true, include the imports the Play project includes by default. -

-
namespace_reverse_router - Boolean; optional -

- Whether the reverse router should be namespaced. Useful if you have many routers that use the same actions. -

-
play_routes_compiler - Label; optional -
routes_generator - String; optional -

- The full class of the routes generator, e.g., `play.routes.compiler.InjectedRoutesGenerator` -

-
routes_imports - List of strings; optional -

- Additional imports to import to the Play routes -

-
srcs - List of labels; required -

- Play routes files -

-
- - - +**ATTRIBUTES** + + +| Name | Description | Type | Mandatory | Default | +| :------------- | :------------- | :------------- | :------------- | :------------- | +| name | A unique name for this target. | Name | required | | +| srcs | Play routes files | List of labels | required | | +| generate_forwards_router | Whether the forward router should be generated. Setting to false may help generate only the reverse routes | Boolean | optional | `True` | +| generate_reverse_router | Whether the reverse router should be generated. Setting to false may reduce compile times if it's not needed. | Boolean | optional | `False` | +| include_play_imports | If true, include the imports the Play project includes by default. | Boolean | optional | `False` | +| namespace_reverse_router | Whether the reverse router should be namespaced. Useful if you have many routers that use the same actions. | Boolean | optional | `False` | +| play_routes_compiler | - | Label | optional | `"@//external:default-play-routes-compiler-cli"` | +| routes_generator | The full class of the routes generator, e.g., `play.routes.compiler.InjectedRoutesGenerator` | String | optional | `""` | +| routes_imports | Additional imports to import to the Play routes | List of strings | optional | `[]` | + + + ## PlayRoutesInfo @@ -110,21 +43,11 @@ PlayRoutesInfo(srcjar) -### Fields +**FIELDS** + - - - - - - - - - - - -
srcjar -

The source jar created by this target.

-
+| Name | Description | +| :------------- | :------------- | +| srcjar | The source jar created by this target. | diff --git a/play-routes/BUILD b/play-routes/BUILD index c262685..a54882c 100644 --- a/play-routes/BUILD +++ b/play-routes/BUILD @@ -1,7 +1,7 @@ # Borrowed from higherkindness/rules_scala load("@bazel_skylib//:bzl_library.bzl", "bzl_library") -load("@io_bazel_skydoc//stardoc:stardoc.bzl", "stardoc") +load("@io_bazel_stardoc//stardoc:stardoc.bzl", "stardoc") load("@rules_pkg//:pkg.bzl", "pkg_tar") load("@bazel_skylib//lib:paths.bzl", "paths") @@ -38,9 +38,3 @@ bzl_library( name = "jdk_toolchain_utils", srcs = ["@bazel_tools//tools/jdk:toolchain_utils.bzl"], ) - -sh_binary( - name = "play-routes-helper", - srcs = ["play-routes-helper.sh"], - visibility = ["//visibility:public"], -) diff --git a/play-routes/play-routes-helper.sh b/play-routes/play-routes-helper.sh deleted file mode 100755 index 65df5e3..0000000 --- a/play-routes/play-routes-helper.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env bash - -set -e - -OUTPUT_DIR=$(mktemp -d) - -PREFIX=$1 -OUTPUT_SRCJAR=$2 -ZIPPER_PATH=$3 -shift 3 - - -# substitute output path and execute the compiler command -"${@/REPLACE_ME_OUTPUT_PATH/$OUTPUT_DIR}" - -files=() -while read -r path; do - files+=("${PREFIX}${path#"$OUTPUT_DIR"}=${path}") -done < <(find -L "${OUTPUT_DIR}" -type f) - -# produce resulting source jar -"${ZIPPER_PATH}" c "${OUTPUT_SRCJAR}" META-INF/= "${files[@]}" diff --git a/play-routes/play-routes.bzl b/play-routes/play-routes.bzl index c0ac161..841d414 100644 --- a/play-routes/play-routes.bzl +++ b/play-routes/play-routes.bzl @@ -4,8 +4,6 @@ Bazel rules for running the [Play routes file compiler](https://github.com/playframework/playframework/tree/master/framework/src/routes-compiler/src/main/scala/play/routes/compiler) on Play routes files """ -gendir_base_path = "play/routes" - play_imports = [ "controllers.Assets.Asset", ] @@ -22,44 +20,51 @@ def _sanitize_string_for_usage(s): res_array.append("_") return "".join(res_array) -def _format_import_args(imports): - return ["--routesImport={}".format(i) for i in imports] +def _format_import_arg(import_arg): + return "--routesImport={}".format(import_arg) def _impl(ctx): - prefix = ctx.label.package + "/" + gendir_base_path + "/" + _sanitize_string_for_usage(ctx.attr.name) + output_dir = ctx.actions.declare_directory("play_routes_{}".format(_sanitize_string_for_usage(ctx.attr.name))) paths = [f.path for f in ctx.files.srcs] - args = ["REPLACE_ME_OUTPUT_PATH"] + [",".join(paths)] + args = ctx.actions.args() + args.add(output_dir.path) + args.add(ctx.outputs.srcjar) + args.add_all([",".join(paths)]) if ctx.attr.include_play_imports: - args = args + _format_import_args(play_imports) + args.add_all(play_imports, map_each = _format_import_arg) - args = args + _format_import_args(ctx.attr.routes_imports) + args.add_all(ctx.attr.routes_imports, map_each = _format_import_arg) if ctx.attr.generate_reverse_router: - args = args + ["--generateReverseRouter"] + args.add("--generateReverseRouter") if ctx.attr.namespace_reverse_router: - args = args + ["--namespaceReverserRouter"] + args.add("--namespaceReverserRouter") if ctx.attr.routes_generator: - args = args + ["--routesGenerator={}".format(ctx.attr.routes_generator)] + args.add(ctx.attr.routes_generator, format = "--routesGenerator=%s") if ctx.attr.generate_forwards_router == False: - args = args + ["--generateForwardsRouter={}".format(ctx.attr.generate_forwards_router)] + args.add(ctx.attr.generate_forwards_router, format = "--generateForwardsRouter=%s") + + args.set_param_file_format("multiline") + args.use_param_file("@%s", use_always = True) ctx.actions.run( inputs = ctx.files.srcs, - outputs = [ctx.outputs.srcjar], - arguments = [ - prefix, - ctx.outputs.srcjar.path, - ctx.executable._zipper.path, - ctx.executable.play_routes_compiler.path, - ] + args, - progress_message = "Compiling play routes", + outputs = [output_dir, ctx.outputs.srcjar], + arguments = [args], + mnemonic = "PlayRoutesCompile", + execution_requirements = { + "supports-workers": "1", + "supports-multiplex-workers": "1", + "supports-multiplex-sandboxing": "1", + "supports-worker-cancellation": "1", + }, + progress_message = "Compiling play routes %{label}", use_default_shell_env = True, - executable = ctx.executable._play_route_helper, - tools = [ctx.executable.play_routes_compiler, ctx.executable._zipper], + executable = ctx.executable.play_routes_compiler, ) return [ @@ -106,12 +111,6 @@ play_routes = rule( allow_files = True, default = Label("//external:default-play-routes-compiler-cli"), ), - "_play_route_helper": attr.label( - executable = True, - cfg = "host", - default = Label("@io_bazel_rules_play_routes//play-routes:play-routes-helper"), - ), - "_zipper": attr.label(cfg = "host", default = "@bazel_tools//tools/zip:zipper", executable = True), }, outputs = { "srcjar": "play_routes_%{name}.srcjar", diff --git a/play_2_5_routes_compiler_cli_install.json b/play_2_5_routes_compiler_cli_install.json index a3b1fe9..b27419a 100644 --- a/play_2_5_routes_compiler_cli_install.json +++ b/play_2_5_routes_compiler_cli_install.json @@ -1,425 +1,374 @@ { - "dependency_tree": { - "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": -1124940629, - "__RESOLVED_ARTIFACTS_HASH": 1504487609, - "conflict_resolution": {}, - "dependencies": [ - { - "coord": "com.github.scopt:scopt_2.11:jar:sources:3.7.0", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.11.12" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.11.12" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar" - ], - "sha256": "1c9111bafb55ec192d04898123199e51440e1633118b112d0c14a611491805ef", - "url": "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar" - }, - { - "coord": "com.github.scopt:scopt_2.11:3.7.0", - "dependencies": [ - "org.scala-lang:scala-library:2.11.12" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.11.12" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar" - ], - "sha256": "cc05b6ac379f9b45b6d832b7be556312039f3d57928b62190d3dcd04f34470b5", - "url": "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar" - }, - { - "coord": "com.lucidchart:play-routes-compiler-cli:jar:sources:0.1", - "dependencies": [ - "com.github.scopt:scopt_2.11:jar:sources:3.7.0", - "com.typesafe.play:routes-compiler_2.11:jar:sources:2.5.19", - "com.typesafe.play:twirl-api_2.11:jar:sources:1.1.1", - "commons-io:commons-io:jar:sources:2.4", - "org.apache.commons:commons-lang3:jar:sources:3.4", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources:1.0.4", - "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.0.1", - "org.scala-lang:scala-library:jar:sources:2.11.12", - "org.scala-lang:scala-reflect:jar:sources:2.11.12" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.11:jar:sources:3.7.0", - "com.typesafe.play:routes-compiler_2.11:jar:sources:2.5.19", - "org.scala-lang:scala-reflect:jar:sources:2.11.12" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar" - ], - "sha256": "adb5006d0e85c9d3ea034e7d947dffcd7df6239843ee732f16f9895b10a7e8d3", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar" - }, - { - "coord": "com.lucidchart:play-routes-compiler-cli:0.1", - "dependencies": [ - "com.github.scopt:scopt_2.11:3.7.0", - "com.typesafe.play:routes-compiler_2.11:2.5.19", - "com.typesafe.play:twirl-api_2.11:1.1.1", - "commons-io:commons-io:2.4", - "org.apache.commons:commons-lang3:3.4", - "org.scala-lang.modules:scala-parser-combinators_2.11:1.0.4", - "org.scala-lang.modules:scala-xml_2.11:1.0.1", - "org.scala-lang:scala-library:2.11.12", - "org.scala-lang:scala-reflect:2.11.12" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.11:3.7.0", - "com.typesafe.play:routes-compiler_2.11:2.5.19", - "org.scala-lang:scala-reflect:2.11.12" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar" - ], - "sha256": "9b89f0f1a4a62b0a05c844b0c184b82dcd2cd45415eea842fd054d7cbb0719f7", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar" - }, - { - "coord": "com.lucidchart:play-routes-compiler-cli_2.11:jar:sources:2.5.19", - "dependencies": [ - "com.github.scopt:scopt_2.11:jar:sources:3.7.0", - "com.typesafe.play:routes-compiler_2.11:jar:sources:2.5.19", - "com.typesafe.play:twirl-api_2.11:jar:sources:1.1.1", - "commons-io:commons-io:jar:sources:2.4", - "org.apache.commons:commons-lang3:jar:sources:3.4", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources:1.0.4", - "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.0.1", - "org.scala-lang:scala-library:jar:sources:2.11.12", - "org.scala-lang:scala-reflect:jar:sources:2.11.12" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.11:jar:sources:3.7.0", - "com.typesafe.play:routes-compiler_2.11:jar:sources:2.5.19", - "org.scala-lang:scala-reflect:jar:sources:2.11.12" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.5.19/play-routes-compiler-cli_2.11-2.5.19-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.5.19/play-routes-compiler-cli_2.11-2.5.19-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.5.19/play-routes-compiler-cli_2.11-2.5.19-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.5.19/play-routes-compiler-cli_2.11-2.5.19-sources.jar" - ], - "sha256": "99d68d941a8d9cfae517de49123b6668294e6e52ed2b5710621ae1bf39adb7b3", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.5.19/play-routes-compiler-cli_2.11-2.5.19-sources.jar" - }, - { - "coord": "com.lucidchart:play-routes-compiler-cli_2.11:2.5.19", - "dependencies": [ - "com.github.scopt:scopt_2.11:3.7.0", - "com.typesafe.play:routes-compiler_2.11:2.5.19", - "com.typesafe.play:twirl-api_2.11:1.1.1", - "commons-io:commons-io:2.4", - "org.apache.commons:commons-lang3:3.4", - "org.scala-lang.modules:scala-parser-combinators_2.11:1.0.4", - "org.scala-lang.modules:scala-xml_2.11:1.0.1", - "org.scala-lang:scala-library:2.11.12", - "org.scala-lang:scala-reflect:2.11.12" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.11:3.7.0", - "com.typesafe.play:routes-compiler_2.11:2.5.19", - "org.scala-lang:scala-reflect:2.11.12" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.5.19/play-routes-compiler-cli_2.11-2.5.19.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.5.19/play-routes-compiler-cli_2.11-2.5.19.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.5.19/play-routes-compiler-cli_2.11-2.5.19.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.5.19/play-routes-compiler-cli_2.11-2.5.19.jar" - ], - "sha256": "9b89f0f1a4a62b0a05c844b0c184b82dcd2cd45415eea842fd054d7cbb0719f7", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.5.19/play-routes-compiler-cli_2.11-2.5.19.jar" - }, - { - "coord": "com.typesafe.play:routes-compiler_2.11:jar:sources:2.5.19", - "dependencies": [ - "com.typesafe.play:twirl-api_2.11:jar:sources:1.1.1", - "commons-io:commons-io:jar:sources:2.4", - "org.apache.commons:commons-lang3:jar:sources:3.4", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources:1.0.4", - "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.0.1", - "org.scala-lang:scala-library:jar:sources:2.11.12" - ], - "directDependencies": [ - "com.typesafe.play:twirl-api_2.11:jar:sources:1.1.1", - "commons-io:commons-io:jar:sources:2.4", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources:1.0.4", - "org.scala-lang:scala-library:jar:sources:2.11.12" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19-sources.jar" - ], - "sha256": "6b3e5fc188156fd8cb8518cddbcb0f4cf43dec876d703ff59146d73ea2f2d4b4", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19-sources.jar" - }, - { - "coord": "com.typesafe.play:routes-compiler_2.11:2.5.19", - "dependencies": [ - "com.typesafe.play:twirl-api_2.11:1.1.1", - "commons-io:commons-io:2.4", - "org.apache.commons:commons-lang3:3.4", - "org.scala-lang.modules:scala-parser-combinators_2.11:1.0.4", - "org.scala-lang.modules:scala-xml_2.11:1.0.1", - "org.scala-lang:scala-library:2.11.12" - ], - "directDependencies": [ - "com.typesafe.play:twirl-api_2.11:1.1.1", - "commons-io:commons-io:2.4", - "org.scala-lang.modules:scala-parser-combinators_2.11:1.0.4", - "org.scala-lang:scala-library:2.11.12" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19.jar" - ], - "sha256": "bc74bf8f8a4053bfebf506ade75bd917c6a91e98dbe78f8b8bb3cefaa44bebef", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19.jar" - }, - { - "coord": "com.typesafe.play:twirl-api_2.11:jar:sources:1.1.1", - "dependencies": [ - "org.apache.commons:commons-lang3:jar:sources:3.4", - "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.0.1", - "org.scala-lang:scala-library:jar:sources:2.11.12" - ], - "directDependencies": [ - "org.apache.commons:commons-lang3:jar:sources:3.4", - "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.0.1", - "org.scala-lang:scala-library:jar:sources:2.11.12" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1-sources.jar" - ], - "sha256": "aa59cc9ff4a00e95330f8e8fcb4d4489d168bde4c2c433e5741428d62971d5e8", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1-sources.jar" - }, - { - "coord": "com.typesafe.play:twirl-api_2.11:1.1.1", - "dependencies": [ - "org.apache.commons:commons-lang3:3.4", - "org.scala-lang.modules:scala-xml_2.11:1.0.1", - "org.scala-lang:scala-library:2.11.12" - ], - "directDependencies": [ - "org.apache.commons:commons-lang3:3.4", - "org.scala-lang.modules:scala-xml_2.11:1.0.1", - "org.scala-lang:scala-library:2.11.12" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1.jar" - ], - "sha256": "8cbc373640e2dab269bc0d4eada8fd47e9a06bb573ea9b7748eada58188547fa", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1.jar" - }, - { - "coord": "commons-io:commons-io:jar:sources:2.4", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/commons-io/commons-io/2.4/commons-io-2.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/commons-io/commons-io/2.4/commons-io-2.4-sources.jar" - ], - "sha256": "d4635b348bbbf3f166d972b052bc4cac5b326c133beed7b8a1cab7ea22b61e01", - "url": "https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4-sources.jar" - }, - { - "coord": "commons-io:commons-io:2.4", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.jar", - "https://maven-central.storage-download.googleapis.com/maven2/commons-io/commons-io/2.4/commons-io-2.4.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.jar" - ], - "sha256": "cc6a41dc3eaacc9e440a6bd0d2890b20d36b4ee408fe2d67122f328bb6e01581", - "url": "https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.jar" - }, - { - "coord": "org.apache.commons:commons-lang3:jar:sources:3.4", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4-sources.jar" - ], - "sha256": "4709f16a9e0f8fd83ae155083d63044e23045aac8f6f0183a2db09f492491b12", - "url": "https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4-sources.jar" - }, - { - "coord": "org.apache.commons:commons-lang3:3.4", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar" - ], - "sha256": "734c8356420cc8e30c795d64fd1fcd5d44ea9d90342a2cc3262c5158fbc6d98b", - "url": "https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar" - }, - { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources:1.0.4", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.11.12" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.11.12" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4-sources.jar" - ], - "sha256": "8b8155720b40c0f7aee7dbc19d4b407307f6e57dd5394b58a3bc9849e28d25c1", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4-sources.jar" - }, - { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.11:1.0.4", - "dependencies": [ - "org.scala-lang:scala-library:2.11.12" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.11.12" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4.jar" - ], - "sha256": "0dfaafce29a9a245b0a9180ec2c1073d2bd8f0330f03a9f1f6a74d1bc83f62d6", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4.jar" - }, - { - "coord": "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.0.1", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.11.12" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.11.12" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1-sources.jar" - ], - "sha256": "9f6233bc4240883dbf00bba36554a0864ee3fbab7cf949440d6523a2f882b611", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1-sources.jar" - }, - { - "coord": "org.scala-lang.modules:scala-xml_2.11:1.0.1", - "dependencies": [ - "org.scala-lang:scala-library:2.11.12" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.11.12" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1.jar" - ], - "sha256": "eb84f08e8e1874d56f01ee259f99b8fd3c10676959e45728535411182451eff2", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1.jar" - }, - { - "coord": "org.scala-lang:scala-library:jar:sources:2.11.12", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.11.12/scala-library-2.11.12-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.11.12/scala-library-2.11.12-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.11.12/scala-library-2.11.12-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.11.12/scala-library-2.11.12-sources.jar" - ], - "sha256": "a32ccfac851adeb094a31134af1034d0ba026512931433cba86d5dd12d91f1ff", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.11.12/scala-library-2.11.12-sources.jar" - }, - { - "coord": "org.scala-lang:scala-library:2.11.12", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.11.12/scala-library-2.11.12.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.11.12/scala-library-2.11.12.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.11.12/scala-library-2.11.12.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.11.12/scala-library-2.11.12.jar" - ], - "sha256": "0b3d6fd42958ee98715ba2ec5fe221f4ca1e694d7c981b0ae0cd68e97baf6dce", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.11.12/scala-library-2.11.12.jar" - }, - { - "coord": "org.scala-lang:scala-reflect:jar:sources:2.11.12", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.11.12" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.11.12" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.11.12/scala-reflect-2.11.12-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.11.12/scala-reflect-2.11.12-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.11.12/scala-reflect-2.11.12-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.11.12/scala-reflect-2.11.12-sources.jar" - ], - "sha256": "4d4adbc4f5f6be87ec555635dd40926bf71c6d638a06d59d929de04386099063", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.11.12/scala-reflect-2.11.12-sources.jar" - }, - { - "coord": "org.scala-lang:scala-reflect:2.11.12", - "dependencies": [ - "org.scala-lang:scala-library:2.11.12" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.11.12" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.11.12/scala-reflect-2.11.12.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.11.12/scala-reflect-2.11.12.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.11.12/scala-reflect-2.11.12.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.11.12/scala-reflect-2.11.12.jar" - ], - "sha256": "6ba385b450a6311a15c918cf8688b9af9327c6104f0ecbd35933cfcd3095fe04", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.11.12/scala-reflect-2.11.12.jar" - } - ], - "version": "0.1.0" + "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", + "__INPUT_ARTIFACTS_HASH": -298461886, + "__RESOLVED_ARTIFACTS_HASH": -1216510088, + "artifacts": { + "com.github.scopt:scopt_2.11": { + "shasums": { + "jar": "cc05b6ac379f9b45b6d832b7be556312039f3d57928b62190d3dcd04f34470b5", + "sources": "1c9111bafb55ec192d04898123199e51440e1633118b112d0c14a611491805ef" + }, + "version": "3.7.0" + }, + "com.lucidchart:play-routes-compiler-cli_2.11": { + "shasums": { + "jar": "9b89f0f1a4a62b0a05c844b0c184b82dcd2cd45415eea842fd054d7cbb0719f7", + "sources": "99d68d941a8d9cfae517de49123b6668294e6e52ed2b5710621ae1bf39adb7b3" + }, + "version": "2.5.19" + }, + "com.typesafe.play:routes-compiler_2.11": { + "shasums": { + "jar": "bc74bf8f8a4053bfebf506ade75bd917c6a91e98dbe78f8b8bb3cefaa44bebef", + "sources": "6b3e5fc188156fd8cb8518cddbcb0f4cf43dec876d703ff59146d73ea2f2d4b4" + }, + "version": "2.5.19" + }, + "com.typesafe.play:twirl-api_2.11": { + "shasums": { + "jar": "8cbc373640e2dab269bc0d4eada8fd47e9a06bb573ea9b7748eada58188547fa", + "sources": "aa59cc9ff4a00e95330f8e8fcb4d4489d168bde4c2c433e5741428d62971d5e8" + }, + "version": "1.1.1" + }, + "commons-io:commons-io": { + "shasums": { + "jar": "cc6a41dc3eaacc9e440a6bd0d2890b20d36b4ee408fe2d67122f328bb6e01581", + "sources": "d4635b348bbbf3f166d972b052bc4cac5b326c133beed7b8a1cab7ea22b61e01" + }, + "version": "2.4" + }, + "org.apache.commons:commons-lang3": { + "shasums": { + "jar": "734c8356420cc8e30c795d64fd1fcd5d44ea9d90342a2cc3262c5158fbc6d98b", + "sources": "4709f16a9e0f8fd83ae155083d63044e23045aac8f6f0183a2db09f492491b12" + }, + "version": "3.4" + }, + "org.scala-lang.modules:scala-parser-combinators_2.11": { + "shasums": { + "jar": "0dfaafce29a9a245b0a9180ec2c1073d2bd8f0330f03a9f1f6a74d1bc83f62d6", + "sources": "8b8155720b40c0f7aee7dbc19d4b407307f6e57dd5394b58a3bc9849e28d25c1" + }, + "version": "1.0.4" + }, + "org.scala-lang.modules:scala-xml_2.11": { + "shasums": { + "jar": "eb84f08e8e1874d56f01ee259f99b8fd3c10676959e45728535411182451eff2", + "sources": "9f6233bc4240883dbf00bba36554a0864ee3fbab7cf949440d6523a2f882b611" + }, + "version": "1.0.1" + }, + "org.scala-lang:scala-library": { + "shasums": { + "jar": "0b3d6fd42958ee98715ba2ec5fe221f4ca1e694d7c981b0ae0cd68e97baf6dce", + "sources": "a32ccfac851adeb094a31134af1034d0ba026512931433cba86d5dd12d91f1ff" + }, + "version": "2.11.12" + }, + "org.scala-lang:scala-reflect": { + "shasums": { + "jar": "6ba385b450a6311a15c918cf8688b9af9327c6104f0ecbd35933cfcd3095fe04", + "sources": "4d4adbc4f5f6be87ec555635dd40926bf71c6d638a06d59d929de04386099063" + }, + "version": "2.11.12" } + }, + "dependencies": { + "com.github.scopt:scopt_2.11": [ + "org.scala-lang:scala-library" + ], + "com.lucidchart:play-routes-compiler-cli_2.11": [ + "com.github.scopt:scopt_2.11", + "com.typesafe.play:routes-compiler_2.11", + "org.scala-lang:scala-reflect" + ], + "com.typesafe.play:routes-compiler_2.11": [ + "com.typesafe.play:twirl-api_2.11", + "commons-io:commons-io", + "org.scala-lang.modules:scala-parser-combinators_2.11", + "org.scala-lang:scala-library" + ], + "com.typesafe.play:twirl-api_2.11": [ + "org.apache.commons:commons-lang3", + "org.scala-lang.modules:scala-xml_2.11", + "org.scala-lang:scala-library" + ], + "org.scala-lang.modules:scala-parser-combinators_2.11": [ + "org.scala-lang:scala-library" + ], + "org.scala-lang.modules:scala-xml_2.11": [ + "org.scala-lang:scala-library" + ], + "org.scala-lang:scala-reflect": [ + "org.scala-lang:scala-library" + ] + }, + "packages": { + "com.github.scopt:scopt_2.11": [ + "scopt" + ], + "com.lucidchart:play-routes-compiler-cli_2.11": [ + "org.apache.commons.io", + "org.apache.commons.io.comparator", + "org.apache.commons.io.filefilter", + "org.apache.commons.io.input", + "org.apache.commons.io.monitor", + "org.apache.commons.io.output", + "org.apache.commons.lang3", + "org.apache.commons.lang3.builder", + "org.apache.commons.lang3.concurrent", + "org.apache.commons.lang3.event", + "org.apache.commons.lang3.exception", + "org.apache.commons.lang3.math", + "org.apache.commons.lang3.mutable", + "org.apache.commons.lang3.reflect", + "org.apache.commons.lang3.text", + "org.apache.commons.lang3.text.translate", + "org.apache.commons.lang3.time", + "org.apache.commons.lang3.tuple", + "play.routes.compiler", + "play.routes.compiler.inject.twirl", + "play.routes.compiler.static.twirl", + "play.routes.compiler.templates", + "play.twirl.api", + "rulesplayroutes.routes", + "scala", + "scala.annotation", + "scala.annotation.meta", + "scala.annotation.unchecked", + "scala.beans", + "scala.collection", + "scala.collection.concurrent", + "scala.collection.convert", + "scala.collection.generic", + "scala.collection.immutable", + "scala.collection.mutable", + "scala.collection.parallel", + "scala.collection.parallel.immutable", + "scala.collection.parallel.mutable", + "scala.collection.script", + "scala.compat", + "scala.concurrent", + "scala.concurrent.duration", + "scala.concurrent.forkjoin", + "scala.concurrent.impl", + "scala.concurrent.util", + "scala.io", + "scala.math", + "scala.ref", + "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.internal", + "scala.reflect.macros.whitebox", + "scala.reflect.runtime", + "scala.runtime", + "scala.sys", + "scala.sys.process", + "scala.text", + "scala.util", + "scala.util.control", + "scala.util.hashing", + "scala.util.matching", + "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", + "scala.xml", + "scala.xml.dtd", + "scala.xml.dtd.impl", + "scala.xml.factory", + "scala.xml.include", + "scala.xml.include.sax", + "scala.xml.parsing", + "scala.xml.persistent", + "scala.xml.pull", + "scala.xml.transform", + "scopt" + ], + "com.typesafe.play:routes-compiler_2.11": [ + "play.routes.compiler", + "play.routes.compiler.inject.twirl", + "play.routes.compiler.static.twirl", + "play.routes.compiler.templates" + ], + "com.typesafe.play:twirl-api_2.11": [ + "play.twirl.api" + ], + "commons-io:commons-io": [ + "org.apache.commons.io", + "org.apache.commons.io.comparator", + "org.apache.commons.io.filefilter", + "org.apache.commons.io.input", + "org.apache.commons.io.monitor", + "org.apache.commons.io.output" + ], + "org.apache.commons:commons-lang3": [ + "org.apache.commons.lang3", + "org.apache.commons.lang3.builder", + "org.apache.commons.lang3.concurrent", + "org.apache.commons.lang3.event", + "org.apache.commons.lang3.exception", + "org.apache.commons.lang3.math", + "org.apache.commons.lang3.mutable", + "org.apache.commons.lang3.reflect", + "org.apache.commons.lang3.text", + "org.apache.commons.lang3.text.translate", + "org.apache.commons.lang3.time", + "org.apache.commons.lang3.tuple" + ], + "org.scala-lang.modules:scala-parser-combinators_2.11": [ + "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.11": [ + "scala.xml", + "scala.xml.dtd", + "scala.xml.dtd.impl", + "scala.xml.factory", + "scala.xml.include", + "scala.xml.include.sax", + "scala.xml.parsing", + "scala.xml.persistent", + "scala.xml.pull", + "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.generic", + "scala.collection.immutable", + "scala.collection.mutable", + "scala.collection.parallel", + "scala.collection.parallel.immutable", + "scala.collection.parallel.mutable", + "scala.collection.script", + "scala.compat", + "scala.concurrent", + "scala.concurrent.duration", + "scala.concurrent.forkjoin", + "scala.concurrent.impl", + "scala.concurrent.util", + "scala.io", + "scala.math", + "scala.ref", + "scala.reflect", + "scala.reflect.macros.internal", + "scala.runtime", + "scala.sys", + "scala.sys.process", + "scala.text", + "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" + ] + }, + "repositories": { + "https://repo.maven.apache.org/maven2/": [ + "com.github.scopt:scopt_2.11", + "com.github.scopt:scopt_2.11:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.11", + "com.lucidchart:play-routes-compiler-cli_2.11:jar:sources", + "com.typesafe.play:routes-compiler_2.11", + "com.typesafe.play:routes-compiler_2.11:jar:sources", + "com.typesafe.play:twirl-api_2.11", + "com.typesafe.play:twirl-api_2.11:jar:sources", + "commons-io:commons-io", + "commons-io:commons-io:jar:sources", + "org.apache.commons:commons-lang3", + "org.apache.commons:commons-lang3:jar:sources", + "org.scala-lang.modules:scala-parser-combinators_2.11", + "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources", + "org.scala-lang.modules:scala-xml_2.11", + "org.scala-lang.modules:scala-xml_2.11: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" + ], + "https://maven-central.storage-download.googleapis.com/maven2/": [ + "com.github.scopt:scopt_2.11", + "com.github.scopt:scopt_2.11:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.11", + "com.lucidchart:play-routes-compiler-cli_2.11:jar:sources", + "com.typesafe.play:routes-compiler_2.11", + "com.typesafe.play:routes-compiler_2.11:jar:sources", + "com.typesafe.play:twirl-api_2.11", + "com.typesafe.play:twirl-api_2.11:jar:sources", + "commons-io:commons-io", + "commons-io:commons-io:jar:sources", + "org.apache.commons:commons-lang3", + "org.apache.commons:commons-lang3:jar:sources", + "org.scala-lang.modules:scala-parser-combinators_2.11", + "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources", + "org.scala-lang.modules:scala-xml_2.11", + "org.scala-lang.modules:scala-xml_2.11: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" + ], + "https://mirror.bazel.build/repo1.maven.org/maven2/": [ + "com.github.scopt:scopt_2.11", + "com.github.scopt:scopt_2.11:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.11", + "com.lucidchart:play-routes-compiler-cli_2.11:jar:sources", + "com.typesafe.play:routes-compiler_2.11", + "com.typesafe.play:routes-compiler_2.11:jar:sources", + "com.typesafe.play:twirl-api_2.11", + "com.typesafe.play:twirl-api_2.11:jar:sources", + "commons-io:commons-io", + "commons-io:commons-io:jar:sources", + "org.apache.commons:commons-lang3", + "org.apache.commons:commons-lang3:jar:sources", + "org.scala-lang.modules:scala-parser-combinators_2.11", + "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources", + "org.scala-lang.modules:scala-xml_2.11", + "org.scala-lang.modules:scala-xml_2.11: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" + ] + }, + "services": {}, + "version": "2" } diff --git a/play_2_6_routes_compiler_cli_install.json b/play_2_6_routes_compiler_cli_install.json index 5ac8c05..46b2e72 100644 --- a/play_2_6_routes_compiler_cli_install.json +++ b/play_2_6_routes_compiler_cli_install.json @@ -1,621 +1,553 @@ { - "dependency_tree": { - "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": -2125442134, - "__RESOLVED_ARTIFACTS_HASH": 1467084389, - "conflict_resolution": {}, - "dependencies": [ - { - "coord": "com.github.scopt:scopt_2.11:jar:sources:3.7.0", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar" - ], - "sha256": "1c9111bafb55ec192d04898123199e51440e1633118b112d0c14a611491805ef", - "url": "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar" - }, - { - "coord": "com.github.scopt:scopt_2.11:3.7.0", - "dependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar" - ], - "sha256": "cc05b6ac379f9b45b6d832b7be556312039f3d57928b62190d3dcd04f34470b5", - "url": "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar" - }, - { - "coord": "com.github.scopt:scopt_2.12:jar:sources:3.7.0", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0-sources.jar" - ], - "sha256": "5d642a8f96c9e0243d15badd519ffb2a7f2786ce70d5e5c21003bb9b70ff507d", - "url": "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0-sources.jar" - }, - { - "coord": "com.github.scopt:scopt_2.12:3.7.0", - "dependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0.jar" - ], - "sha256": "1105ff2819f267e06b9a84843231a9fd7a69817c49e5d67167cb601e47ce2c56", - "url": "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0.jar" - }, - { - "coord": "com.lucidchart:play-routes-compiler-cli:jar:sources:0.1", - "dependencies": [ - "com.github.scopt:scopt_2.11:jar:sources:3.7.0", - "com.typesafe.play:routes-compiler_2.11:jar:sources:2.6.23", - "org.scala-lang:scala-library:jar:sources:2.12.8", - "org.scala-lang:scala-reflect:jar:sources:2.12.8" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.11:jar:sources:3.7.0", - "com.typesafe.play:routes-compiler_2.11:jar:sources:2.6.23", - "org.scala-lang:scala-reflect:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar" - ], - "sha256": "adb5006d0e85c9d3ea034e7d947dffcd7df6239843ee732f16f9895b10a7e8d3", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar" - }, - { - "coord": "com.lucidchart:play-routes-compiler-cli:0.1", - "dependencies": [ - "com.github.scopt:scopt_2.11:3.7.0", - "com.typesafe.play:routes-compiler_2.11:2.6.23", - "org.scala-lang:scala-library:2.12.8", - "org.scala-lang:scala-reflect:2.12.8" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.11:3.7.0", - "com.typesafe.play:routes-compiler_2.11:2.6.23", - "org.scala-lang:scala-reflect:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar" - ], - "sha256": "9b89f0f1a4a62b0a05c844b0c184b82dcd2cd45415eea842fd054d7cbb0719f7", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar" - }, - { - "coord": "com.lucidchart:play-routes-compiler-cli_2.11:jar:sources:2.6.23", - "dependencies": [ - "com.github.scopt:scopt_2.11:jar:sources:3.7.0", - "com.typesafe.play:routes-compiler_2.11:jar:sources:2.6.23", - "com.typesafe.play:twirl-api_2.11:jar:sources:1.3.15", - "commons-io:commons-io:jar:sources:2.5", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources:1.0.7", - "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.0.6", - "org.scala-lang:scala-library:jar:sources:2.12.8", - "org.scala-lang:scala-reflect:jar:sources:2.12.8" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.11:jar:sources:3.7.0", - "com.typesafe.play:routes-compiler_2.11:jar:sources:2.6.23", - "org.scala-lang:scala-reflect:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.6.23/play-routes-compiler-cli_2.11-2.6.23-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.6.23/play-routes-compiler-cli_2.11-2.6.23-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.6.23/play-routes-compiler-cli_2.11-2.6.23-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.6.23/play-routes-compiler-cli_2.11-2.6.23-sources.jar" - ], - "sha256": "3af8ade252de1c9a00a9d07e4379f89990c3acde7cddbf9f1ba65efe819fa9f8", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.6.23/play-routes-compiler-cli_2.11-2.6.23-sources.jar" - }, - { - "coord": "com.lucidchart:play-routes-compiler-cli_2.11:2.6.23", - "dependencies": [ - "com.github.scopt:scopt_2.11:3.7.0", - "com.typesafe.play:routes-compiler_2.11:2.6.23", - "com.typesafe.play:twirl-api_2.11:1.3.15", - "commons-io:commons-io:2.5", - "org.scala-lang.modules:scala-parser-combinators_2.11:1.0.7", - "org.scala-lang.modules:scala-xml_2.11:1.0.6", - "org.scala-lang:scala-library:2.12.8", - "org.scala-lang:scala-reflect:2.12.8" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.11:3.7.0", - "com.typesafe.play:routes-compiler_2.11:2.6.23", - "org.scala-lang:scala-reflect:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.6.23/play-routes-compiler-cli_2.11-2.6.23.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.6.23/play-routes-compiler-cli_2.11-2.6.23.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.6.23/play-routes-compiler-cli_2.11-2.6.23.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.6.23/play-routes-compiler-cli_2.11-2.6.23.jar" - ], - "sha256": "1e83f3f3a2365a7286909bcd706b016a65f3d96d17c869979f0a31aea04d1a54", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.6.23/play-routes-compiler-cli_2.11-2.6.23.jar" - }, - { - "coord": "com.lucidchart:play-routes-compiler-cli_2.12:jar:sources:2.6.23", - "dependencies": [ - "com.github.scopt:scopt_2.12:jar:sources:3.7.0", - "com.typesafe.play:routes-compiler_2.12:jar:sources:2.6.23", - "com.typesafe.play:twirl-api_2.12:jar:sources:1.3.15", - "commons-io:commons-io:jar:sources:2.5", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.7", - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", - "org.scala-lang:scala-library:jar:sources:2.12.8", - "org.scala-lang:scala-reflect:jar:sources:2.12.8" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.12:jar:sources:3.7.0", - "com.typesafe.play:routes-compiler_2.12:jar:sources:2.6.23", - "org.scala-lang:scala-reflect:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.6.23/play-routes-compiler-cli_2.12-2.6.23-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.6.23/play-routes-compiler-cli_2.12-2.6.23-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.6.23/play-routes-compiler-cli_2.12-2.6.23-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.6.23/play-routes-compiler-cli_2.12-2.6.23-sources.jar" - ], - "sha256": "5599233cd5ee17d51aa43f1b969fd6105d8a839253487fc9517126244b3c3b20", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.6.23/play-routes-compiler-cli_2.12-2.6.23-sources.jar" - }, - { - "coord": "com.lucidchart:play-routes-compiler-cli_2.12:2.6.23", - "dependencies": [ - "com.github.scopt:scopt_2.12:3.7.0", - "com.typesafe.play:routes-compiler_2.12:2.6.23", - "com.typesafe.play:twirl-api_2.12:1.3.15", - "commons-io:commons-io:2.5", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.7", - "org.scala-lang.modules:scala-xml_2.12:1.0.6", - "org.scala-lang:scala-library:2.12.8", - "org.scala-lang:scala-reflect:2.12.8" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.12:3.7.0", - "com.typesafe.play:routes-compiler_2.12:2.6.23", - "org.scala-lang:scala-reflect:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.6.23/play-routes-compiler-cli_2.12-2.6.23.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.6.23/play-routes-compiler-cli_2.12-2.6.23.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.6.23/play-routes-compiler-cli_2.12-2.6.23.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.6.23/play-routes-compiler-cli_2.12-2.6.23.jar" - ], - "sha256": "d38f56370a913c4316ac4113bbf705630fb456b0fd47768f2b617d7d842810cc", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.6.23/play-routes-compiler-cli_2.12-2.6.23.jar" - }, - { - "coord": "com.typesafe.play:routes-compiler_2.11:jar:sources:2.6.23", - "dependencies": [ - "com.typesafe.play:twirl-api_2.11:jar:sources:1.3.15", - "commons-io:commons-io:jar:sources:2.5", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources:1.0.7", - "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.0.6", - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "directDependencies": [ - "com.typesafe.play:twirl-api_2.11:jar:sources:1.3.15", - "commons-io:commons-io:jar:sources:2.5", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources:1.0.7", - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.6.23/routes-compiler_2.11-2.6.23-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.6.23/routes-compiler_2.11-2.6.23-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/routes-compiler_2.11/2.6.23/routes-compiler_2.11-2.6.23-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/routes-compiler_2.11/2.6.23/routes-compiler_2.11-2.6.23-sources.jar" - ], - "sha256": "55c887551a399853e94342ebb31b0122ad9a85d45d581140aa7ef5d585a10a00", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.6.23/routes-compiler_2.11-2.6.23-sources.jar" - }, - { - "coord": "com.typesafe.play:routes-compiler_2.11:2.6.23", - "dependencies": [ - "com.typesafe.play:twirl-api_2.11:1.3.15", - "commons-io:commons-io:2.5", - "org.scala-lang.modules:scala-parser-combinators_2.11:1.0.7", - "org.scala-lang.modules:scala-xml_2.11:1.0.6", - "org.scala-lang:scala-library:2.12.8" - ], - "directDependencies": [ - "com.typesafe.play:twirl-api_2.11:1.3.15", - "commons-io:commons-io:2.5", - "org.scala-lang.modules:scala-parser-combinators_2.11:1.0.7", - "org.scala-lang:scala-library:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.6.23/routes-compiler_2.11-2.6.23.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.6.23/routes-compiler_2.11-2.6.23.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/routes-compiler_2.11/2.6.23/routes-compiler_2.11-2.6.23.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/routes-compiler_2.11/2.6.23/routes-compiler_2.11-2.6.23.jar" - ], - "sha256": "6ada0fc08724112ebc0ecd247d15a3d6f55f837706893a55068e238bef03fb5f", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.6.23/routes-compiler_2.11-2.6.23.jar" - }, - { - "coord": "com.typesafe.play:routes-compiler_2.12:jar:sources:2.6.23", - "dependencies": [ - "com.typesafe.play:twirl-api_2.12:jar:sources:1.3.15", - "commons-io:commons-io:jar:sources:2.5", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.7", - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "directDependencies": [ - "com.typesafe.play:twirl-api_2.12:jar:sources:1.3.15", - "commons-io:commons-io:jar:sources:2.5", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.7", - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.12/2.6.23/routes-compiler_2.12-2.6.23-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.12/2.6.23/routes-compiler_2.12-2.6.23-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/routes-compiler_2.12/2.6.23/routes-compiler_2.12-2.6.23-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/routes-compiler_2.12/2.6.23/routes-compiler_2.12-2.6.23-sources.jar" - ], - "sha256": "8b6f7dc5b424a2345aefe0f65c75afffad89a979148cdd741956dd924e13c284", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.12/2.6.23/routes-compiler_2.12-2.6.23-sources.jar" - }, - { - "coord": "com.typesafe.play:routes-compiler_2.12:2.6.23", - "dependencies": [ - "com.typesafe.play:twirl-api_2.12:1.3.15", - "commons-io:commons-io:2.5", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.7", - "org.scala-lang.modules:scala-xml_2.12:1.0.6", - "org.scala-lang:scala-library:2.12.8" - ], - "directDependencies": [ - "com.typesafe.play:twirl-api_2.12:1.3.15", - "commons-io:commons-io:2.5", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.7", - "org.scala-lang:scala-library:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.12/2.6.23/routes-compiler_2.12-2.6.23.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.12/2.6.23/routes-compiler_2.12-2.6.23.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/routes-compiler_2.12/2.6.23/routes-compiler_2.12-2.6.23.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/routes-compiler_2.12/2.6.23/routes-compiler_2.12-2.6.23.jar" - ], - "sha256": "11ae42e33faa093ab411d4e5d604c0252ff38bd19bb6e9dfecd8f6d4c5bcd08a", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.12/2.6.23/routes-compiler_2.12-2.6.23.jar" - }, - { - "coord": "com.typesafe.play:twirl-api_2.11:jar:sources:1.3.15", - "dependencies": [ - "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.0.6", - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.0.6", - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.3.15/twirl-api_2.11-1.3.15-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.3.15/twirl-api_2.11-1.3.15-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/twirl-api_2.11/1.3.15/twirl-api_2.11-1.3.15-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.11/1.3.15/twirl-api_2.11-1.3.15-sources.jar" - ], - "sha256": "fcb6759332475e5f8febf7cf29da9c42ec089a305709cc8c972305d045739727", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.3.15/twirl-api_2.11-1.3.15-sources.jar" - }, - { - "coord": "com.typesafe.play:twirl-api_2.11:1.3.15", - "dependencies": [ - "org.scala-lang.modules:scala-xml_2.11:1.0.6", - "org.scala-lang:scala-library:2.12.8" - ], - "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.11:1.0.6", - "org.scala-lang:scala-library:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.3.15/twirl-api_2.11-1.3.15.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.3.15/twirl-api_2.11-1.3.15.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/twirl-api_2.11/1.3.15/twirl-api_2.11-1.3.15.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.11/1.3.15/twirl-api_2.11-1.3.15.jar" - ], - "sha256": "a5148092bdbd1763506919e64ed9a683a354857077b3da3497052ae9c8a92e59", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.3.15/twirl-api_2.11-1.3.15.jar" - }, - { - "coord": "com.typesafe.play:twirl-api_2.12:jar:sources:1.3.15", - "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.3.15/twirl-api_2.12-1.3.15-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.3.15/twirl-api_2.12-1.3.15-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/twirl-api_2.12/1.3.15/twirl-api_2.12-1.3.15-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.12/1.3.15/twirl-api_2.12-1.3.15-sources.jar" - ], - "sha256": "0fda7b440bb4b03e0bd10ee05edf7939ff7b155483afdd7e94151af827333b6b", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.3.15/twirl-api_2.12-1.3.15-sources.jar" - }, - { - "coord": "com.typesafe.play:twirl-api_2.12:1.3.15", - "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.0.6", - "org.scala-lang:scala-library:2.12.8" - ], - "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.0.6", - "org.scala-lang:scala-library:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.3.15/twirl-api_2.12-1.3.15.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.3.15/twirl-api_2.12-1.3.15.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/twirl-api_2.12/1.3.15/twirl-api_2.12-1.3.15.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.12/1.3.15/twirl-api_2.12-1.3.15.jar" - ], - "sha256": "57cf1ac0b2d7b34d3995398eef72771aa5c9d3ed6b9c5d119a2fad3bee1a0f76", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.3.15/twirl-api_2.12-1.3.15.jar" - }, - { - "coord": "commons-io:commons-io:jar:sources:2.5", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/commons-io/commons-io/2.5/commons-io-2.5-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/commons-io/commons-io/2.5/commons-io-2.5-sources.jar" - ], - "sha256": "3b69b518d9a844732e35509b79e499fca63a960ee4301b1c96dc32e87f3f60a1", - "url": "https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5-sources.jar" - }, - { - "coord": "commons-io:commons-io:2.5", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar", - "https://maven-central.storage-download.googleapis.com/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar" - ], - "sha256": "a10418348d234968600ccb1d988efcbbd08716e1d96936ccc1880e7d22513474", - "url": "https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar" - }, - { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources:1.0.7", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.7/scala-parser-combinators_2.11-1.0.7-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.7/scala-parser-combinators_2.11-1.0.7-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.7/scala-parser-combinators_2.11-1.0.7-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.7/scala-parser-combinators_2.11-1.0.7-sources.jar" - ], - "sha256": "d13e495cd73a4b7cf01d611af02aaa589297addf90796d0c8bf112631642f0c7", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.7/scala-parser-combinators_2.11-1.0.7-sources.jar" - }, - { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.11:1.0.7", - "dependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.7/scala-parser-combinators_2.11-1.0.7.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.7/scala-parser-combinators_2.11-1.0.7.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.7/scala-parser-combinators_2.11-1.0.7.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.7/scala-parser-combinators_2.11-1.0.7.jar" - ], - "sha256": "a653cbe30fae8de295c520b7413a586ed4b1cb02ac8b3ee69a63e71b2cc01e70", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.7/scala-parser-combinators_2.11-1.0.7.jar" - }, - { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.7", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.0.7/scala-parser-combinators_2.12-1.0.7-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.0.7/scala-parser-combinators_2.12-1.0.7-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.0.7/scala-parser-combinators_2.12-1.0.7-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.0.7/scala-parser-combinators_2.12-1.0.7-sources.jar" - ], - "sha256": "7cce0fcf4695a9d17dd27ab3f63ffcad4c6fc7956a74f09e351242fdfba2ca21", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.0.7/scala-parser-combinators_2.12-1.0.7-sources.jar" - }, - { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.7", - "dependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.0.7/scala-parser-combinators_2.12-1.0.7.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.0.7/scala-parser-combinators_2.12-1.0.7.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.0.7/scala-parser-combinators_2.12-1.0.7.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.0.7/scala-parser-combinators_2.12-1.0.7.jar" - ], - "sha256": "a7f8c9998b61ff6333a72b5c1d28b027de4b5140c1eaad4de008893c160de800", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.0.7/scala-parser-combinators_2.12-1.0.7.jar" - }, - { - "coord": "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.0.6", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.6/scala-xml_2.11-1.0.6-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.6/scala-xml_2.11-1.0.6-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.6/scala-xml_2.11-1.0.6-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.6/scala-xml_2.11-1.0.6-sources.jar" - ], - "sha256": "02a63308c374fd82db89fba59739bd1f30ec160cf8e422f9d26fde07274da8b0", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.6/scala-xml_2.11-1.0.6-sources.jar" - }, - { - "coord": "org.scala-lang.modules:scala-xml_2.11:1.0.6", - "dependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.6/scala-xml_2.11-1.0.6.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.6/scala-xml_2.11-1.0.6.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.6/scala-xml_2.11-1.0.6.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.6/scala-xml_2.11-1.0.6.jar" - ], - "sha256": "a3ec190294a15a26706123f140a087a8c0a5db8980e86755e5b8e8fc33ac8d3d", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.6/scala-xml_2.11-1.0.6.jar" - }, - { - "coord": "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6-sources.jar" - ], - "sha256": "a7e8aac79394df396afda98b35537791809d815ce15ab2224f7d31e50c753922", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6-sources.jar" - }, - { - "coord": "org.scala-lang.modules:scala-xml_2.12:1.0.6", - "dependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6.jar" - ], - "sha256": "7cc3b6ceb56e879cb977e8e043f4bfe2e062f78795efd7efa09f85003cb3230a", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6.jar" - }, - { - "coord": "org.scala-lang:scala-library:jar:sources:2.12.8", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.8/scala-library-2.12.8-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.8/scala-library-2.12.8-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.12.8/scala-library-2.12.8-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.8/scala-library-2.12.8-sources.jar" - ], - "sha256": "11482bcb49b2e47baee89c3b1ae10c6a40b89e2fbb0da2a423e062f444e13492", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.8/scala-library-2.12.8-sources.jar" - }, - { - "coord": "org.scala-lang:scala-library:2.12.8", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.8/scala-library-2.12.8.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.8/scala-library-2.12.8.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.12.8/scala-library-2.12.8.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.8/scala-library-2.12.8.jar" - ], - "sha256": "321fb55685635c931eba4bc0d7668349da3f2c09aee2de93a70566066ff25c28", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.8/scala-library-2.12.8.jar" - }, - { - "coord": "org.scala-lang:scala-reflect:jar:sources:2.12.8", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.8/scala-reflect-2.12.8-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.8/scala-reflect-2.12.8-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.12.8/scala-reflect-2.12.8-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.8/scala-reflect-2.12.8-sources.jar" - ], - "sha256": "5c676791217d9b48560496556b8965cceabcbfdbb65bbebdc52e99c0a3847735", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.8/scala-reflect-2.12.8-sources.jar" - }, - { - "coord": "org.scala-lang:scala-reflect:2.12.8", - "dependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.8/scala-reflect-2.12.8.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.8/scala-reflect-2.12.8.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.12.8/scala-reflect-2.12.8.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.8/scala-reflect-2.12.8.jar" - ], - "sha256": "4d6405395c4599ce04cea08ba082339e3e42135de9aae2923c9f5367e957315a", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.8/scala-reflect-2.12.8.jar" - } - ], - "version": "0.1.0" + "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", + "__INPUT_ARTIFACTS_HASH": -570092027, + "__RESOLVED_ARTIFACTS_HASH": -1720847324, + "artifacts": { + "com.github.scopt:scopt_2.11": { + "shasums": { + "jar": "cc05b6ac379f9b45b6d832b7be556312039f3d57928b62190d3dcd04f34470b5", + "sources": "1c9111bafb55ec192d04898123199e51440e1633118b112d0c14a611491805ef" + }, + "version": "3.7.0" + }, + "com.github.scopt:scopt_2.12": { + "shasums": { + "jar": "1105ff2819f267e06b9a84843231a9fd7a69817c49e5d67167cb601e47ce2c56", + "sources": "5d642a8f96c9e0243d15badd519ffb2a7f2786ce70d5e5c21003bb9b70ff507d" + }, + "version": "3.7.0" + }, + "com.lucidchart:play-routes-compiler-cli_2.11": { + "shasums": { + "jar": "1e83f3f3a2365a7286909bcd706b016a65f3d96d17c869979f0a31aea04d1a54", + "sources": "3af8ade252de1c9a00a9d07e4379f89990c3acde7cddbf9f1ba65efe819fa9f8" + }, + "version": "2.6.23" + }, + "com.lucidchart:play-routes-compiler-cli_2.12": { + "shasums": { + "jar": "d38f56370a913c4316ac4113bbf705630fb456b0fd47768f2b617d7d842810cc", + "sources": "5599233cd5ee17d51aa43f1b969fd6105d8a839253487fc9517126244b3c3b20" + }, + "version": "2.6.23" + }, + "com.typesafe.play:routes-compiler_2.11": { + "shasums": { + "jar": "6ada0fc08724112ebc0ecd247d15a3d6f55f837706893a55068e238bef03fb5f", + "sources": "55c887551a399853e94342ebb31b0122ad9a85d45d581140aa7ef5d585a10a00" + }, + "version": "2.6.23" + }, + "com.typesafe.play:routes-compiler_2.12": { + "shasums": { + "jar": "11ae42e33faa093ab411d4e5d604c0252ff38bd19bb6e9dfecd8f6d4c5bcd08a", + "sources": "8b6f7dc5b424a2345aefe0f65c75afffad89a979148cdd741956dd924e13c284" + }, + "version": "2.6.23" + }, + "com.typesafe.play:twirl-api_2.11": { + "shasums": { + "jar": "a5148092bdbd1763506919e64ed9a683a354857077b3da3497052ae9c8a92e59", + "sources": "fcb6759332475e5f8febf7cf29da9c42ec089a305709cc8c972305d045739727" + }, + "version": "1.3.15" + }, + "com.typesafe.play:twirl-api_2.12": { + "shasums": { + "jar": "57cf1ac0b2d7b34d3995398eef72771aa5c9d3ed6b9c5d119a2fad3bee1a0f76", + "sources": "0fda7b440bb4b03e0bd10ee05edf7939ff7b155483afdd7e94151af827333b6b" + }, + "version": "1.3.15" + }, + "commons-io:commons-io": { + "shasums": { + "jar": "a10418348d234968600ccb1d988efcbbd08716e1d96936ccc1880e7d22513474", + "sources": "3b69b518d9a844732e35509b79e499fca63a960ee4301b1c96dc32e87f3f60a1" + }, + "version": "2.5" + }, + "org.scala-lang.modules:scala-parser-combinators_2.11": { + "shasums": { + "jar": "a653cbe30fae8de295c520b7413a586ed4b1cb02ac8b3ee69a63e71b2cc01e70", + "sources": "d13e495cd73a4b7cf01d611af02aaa589297addf90796d0c8bf112631642f0c7" + }, + "version": "1.0.7" + }, + "org.scala-lang.modules:scala-parser-combinators_2.12": { + "shasums": { + "jar": "a7f8c9998b61ff6333a72b5c1d28b027de4b5140c1eaad4de008893c160de800", + "sources": "7cce0fcf4695a9d17dd27ab3f63ffcad4c6fc7956a74f09e351242fdfba2ca21" + }, + "version": "1.0.7" + }, + "org.scala-lang.modules:scala-xml_2.11": { + "shasums": { + "jar": "a3ec190294a15a26706123f140a087a8c0a5db8980e86755e5b8e8fc33ac8d3d", + "sources": "02a63308c374fd82db89fba59739bd1f30ec160cf8e422f9d26fde07274da8b0" + }, + "version": "1.0.6" + }, + "org.scala-lang.modules:scala-xml_2.12": { + "shasums": { + "jar": "7cc3b6ceb56e879cb977e8e043f4bfe2e062f78795efd7efa09f85003cb3230a", + "sources": "a7e8aac79394df396afda98b35537791809d815ce15ab2224f7d31e50c753922" + }, + "version": "1.0.6" + }, + "org.scala-lang:scala-library": { + "shasums": { + "jar": "321fb55685635c931eba4bc0d7668349da3f2c09aee2de93a70566066ff25c28", + "sources": "11482bcb49b2e47baee89c3b1ae10c6a40b89e2fbb0da2a423e062f444e13492" + }, + "version": "2.12.8" + }, + "org.scala-lang:scala-reflect": { + "shasums": { + "jar": "4d6405395c4599ce04cea08ba082339e3e42135de9aae2923c9f5367e957315a", + "sources": "5c676791217d9b48560496556b8965cceabcbfdbb65bbebdc52e99c0a3847735" + }, + "version": "2.12.8" } + }, + "dependencies": { + "com.github.scopt:scopt_2.11": [ + "org.scala-lang:scala-library" + ], + "com.github.scopt:scopt_2.12": [ + "org.scala-lang:scala-library" + ], + "com.lucidchart:play-routes-compiler-cli_2.11": [ + "com.github.scopt:scopt_2.11", + "com.typesafe.play:routes-compiler_2.11", + "org.scala-lang:scala-reflect" + ], + "com.lucidchart:play-routes-compiler-cli_2.12": [ + "com.github.scopt:scopt_2.12", + "com.typesafe.play:routes-compiler_2.12", + "org.scala-lang:scala-reflect" + ], + "com.typesafe.play:routes-compiler_2.11": [ + "com.typesafe.play:twirl-api_2.11", + "commons-io:commons-io", + "org.scala-lang.modules:scala-parser-combinators_2.11", + "org.scala-lang:scala-library" + ], + "com.typesafe.play:routes-compiler_2.12": [ + "com.typesafe.play:twirl-api_2.12", + "commons-io:commons-io", + "org.scala-lang.modules:scala-parser-combinators_2.12", + "org.scala-lang:scala-library" + ], + "com.typesafe.play:twirl-api_2.11": [ + "org.scala-lang.modules:scala-xml_2.11", + "org.scala-lang:scala-library" + ], + "com.typesafe.play:twirl-api_2.12": [ + "org.scala-lang.modules:scala-xml_2.12", + "org.scala-lang:scala-library" + ], + "org.scala-lang.modules:scala-parser-combinators_2.11": [ + "org.scala-lang:scala-library" + ], + "org.scala-lang.modules:scala-parser-combinators_2.12": [ + "org.scala-lang:scala-library" + ], + "org.scala-lang.modules:scala-xml_2.11": [ + "org.scala-lang:scala-library" + ], + "org.scala-lang.modules:scala-xml_2.12": [ + "org.scala-lang:scala-library" + ], + "org.scala-lang:scala-reflect": [ + "org.scala-lang:scala-library" + ] + }, + "packages": { + "com.github.scopt:scopt_2.11": [ + "scopt" + ], + "com.github.scopt:scopt_2.12": [ + "scopt" + ], + "com.lucidchart:play-routes-compiler-cli_2.11": [ + "org.apache.commons.io", + "org.apache.commons.io.comparator", + "org.apache.commons.io.filefilter", + "org.apache.commons.io.input", + "org.apache.commons.io.monitor", + "org.apache.commons.io.output", + "org.apache.commons.io.serialization", + "play.routes.compiler", + "play.routes.compiler.inject.twirl", + "play.routes.compiler.static.twirl", + "play.routes.compiler.templates", + "play.twirl.api", + "play.twirl.api.utils", + "rulesplayroutes.routes", + "scala", + "scala.annotation", + "scala.annotation.meta", + "scala.annotation.unchecked", + "scala.beans", + "scala.collection", + "scala.collection.concurrent", + "scala.collection.convert", + "scala.collection.generic", + "scala.collection.immutable", + "scala.collection.mutable", + "scala.collection.parallel", + "scala.collection.parallel.immutable", + "scala.collection.parallel.mutable", + "scala.collection.script", + "scala.compat", + "scala.concurrent", + "scala.concurrent.duration", + "scala.concurrent.forkjoin", + "scala.concurrent.impl", + "scala.concurrent.util", + "scala.io", + "scala.math", + "scala.ref", + "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.internal", + "scala.reflect.macros.whitebox", + "scala.reflect.runtime", + "scala.runtime", + "scala.sys", + "scala.sys.process", + "scala.text", + "scala.util", + "scala.util.control", + "scala.util.hashing", + "scala.util.matching", + "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", + "scala.xml", + "scala.xml.dtd", + "scala.xml.dtd.impl", + "scala.xml.factory", + "scala.xml.include", + "scala.xml.include.sax", + "scala.xml.parsing", + "scala.xml.persistent", + "scala.xml.pull", + "scala.xml.transform", + "scopt" + ], + "com.lucidchart:play-routes-compiler-cli_2.12": [ + "org.apache.commons.io", + "org.apache.commons.io.comparator", + "org.apache.commons.io.filefilter", + "org.apache.commons.io.input", + "org.apache.commons.io.monitor", + "org.apache.commons.io.output", + "org.apache.commons.io.serialization", + "play.routes.compiler", + "play.routes.compiler.inject.twirl", + "play.routes.compiler.static.twirl", + "play.routes.compiler.templates", + "play.twirl.api", + "play.twirl.api.utils", + "rulesplayroutes.routes", + "scala", + "scala.annotation", + "scala.annotation.meta", + "scala.annotation.unchecked", + "scala.beans", + "scala.collection", + "scala.collection.concurrent", + "scala.collection.convert", + "scala.collection.generic", + "scala.collection.immutable", + "scala.collection.mutable", + "scala.collection.parallel", + "scala.collection.parallel.immutable", + "scala.collection.parallel.mutable", + "scala.collection.script", + "scala.compat", + "scala.concurrent", + "scala.concurrent.duration", + "scala.concurrent.forkjoin", + "scala.concurrent.impl", + "scala.io", + "scala.math", + "scala.ref", + "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.internal", + "scala.reflect.macros.whitebox", + "scala.reflect.runtime", + "scala.runtime", + "scala.runtime.java8", + "scala.sys", + "scala.sys.process", + "scala.text", + "scala.util", + "scala.util.control", + "scala.util.hashing", + "scala.util.matching", + "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", + "scala.xml", + "scala.xml.dtd", + "scala.xml.dtd.impl", + "scala.xml.factory", + "scala.xml.include", + "scala.xml.include.sax", + "scala.xml.parsing", + "scala.xml.persistent", + "scala.xml.pull", + "scala.xml.transform", + "scopt" + ], + "com.typesafe.play:routes-compiler_2.11": [ + "play.routes.compiler", + "play.routes.compiler.inject.twirl", + "play.routes.compiler.static.twirl", + "play.routes.compiler.templates" + ], + "com.typesafe.play:routes-compiler_2.12": [ + "play.routes.compiler", + "play.routes.compiler.inject.twirl", + "play.routes.compiler.static.twirl", + "play.routes.compiler.templates" + ], + "com.typesafe.play:twirl-api_2.11": [ + "play.twirl.api", + "play.twirl.api.utils" + ], + "com.typesafe.play:twirl-api_2.12": [ + "play.twirl.api", + "play.twirl.api.utils" + ], + "commons-io:commons-io": [ + "org.apache.commons.io", + "org.apache.commons.io.comparator", + "org.apache.commons.io.filefilter", + "org.apache.commons.io.input", + "org.apache.commons.io.monitor", + "org.apache.commons.io.output", + "org.apache.commons.io.serialization" + ], + "org.scala-lang.modules:scala-parser-combinators_2.11": [ + "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-parser-combinators_2.12": [ + "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.11": [ + "scala.xml", + "scala.xml.dtd", + "scala.xml.dtd.impl", + "scala.xml.factory", + "scala.xml.include", + "scala.xml.include.sax", + "scala.xml.parsing", + "scala.xml.persistent", + "scala.xml.pull", + "scala.xml.transform" + ], + "org.scala-lang.modules:scala-xml_2.12": [ + "scala.xml", + "scala.xml.dtd", + "scala.xml.dtd.impl", + "scala.xml.factory", + "scala.xml.include", + "scala.xml.include.sax", + "scala.xml.parsing", + "scala.xml.persistent", + "scala.xml.pull", + "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.generic", + "scala.collection.immutable", + "scala.collection.mutable", + "scala.collection.parallel", + "scala.collection.parallel.immutable", + "scala.collection.parallel.mutable", + "scala.collection.script", + "scala.compat", + "scala.concurrent", + "scala.concurrent.duration", + "scala.concurrent.forkjoin", + "scala.concurrent.impl", + "scala.io", + "scala.math", + "scala.ref", + "scala.reflect", + "scala.reflect.macros.internal", + "scala.runtime", + "scala.runtime.java8", + "scala.sys", + "scala.sys.process", + "scala.text", + "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" + ] + }, + "repositories": { + "https://repo.maven.apache.org/maven2/": [ + "com.github.scopt:scopt_2.11", + "com.github.scopt:scopt_2.11:jar:sources", + "com.github.scopt:scopt_2.12", + "com.github.scopt:scopt_2.12:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.11", + "com.lucidchart:play-routes-compiler-cli_2.11:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.12", + "com.lucidchart:play-routes-compiler-cli_2.12:jar:sources", + "com.typesafe.play:routes-compiler_2.11", + "com.typesafe.play:routes-compiler_2.11:jar:sources", + "com.typesafe.play:routes-compiler_2.12", + "com.typesafe.play:routes-compiler_2.12:jar:sources", + "com.typesafe.play:twirl-api_2.11", + "com.typesafe.play:twirl-api_2.11:jar:sources", + "com.typesafe.play:twirl-api_2.12", + "com.typesafe.play:twirl-api_2.12:jar:sources", + "commons-io:commons-io", + "commons-io:commons-io:jar:sources", + "org.scala-lang.modules:scala-parser-combinators_2.11", + "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources", + "org.scala-lang.modules:scala-parser-combinators_2.12", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources", + "org.scala-lang.modules:scala-xml_2.11", + "org.scala-lang.modules:scala-xml_2.11:jar:sources", + "org.scala-lang.modules:scala-xml_2.12", + "org.scala-lang.modules:scala-xml_2.12: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" + ], + "https://maven-central.storage-download.googleapis.com/maven2/": [ + "com.github.scopt:scopt_2.11", + "com.github.scopt:scopt_2.11:jar:sources", + "com.github.scopt:scopt_2.12", + "com.github.scopt:scopt_2.12:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.11", + "com.lucidchart:play-routes-compiler-cli_2.11:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.12", + "com.lucidchart:play-routes-compiler-cli_2.12:jar:sources", + "com.typesafe.play:routes-compiler_2.11", + "com.typesafe.play:routes-compiler_2.11:jar:sources", + "com.typesafe.play:routes-compiler_2.12", + "com.typesafe.play:routes-compiler_2.12:jar:sources", + "com.typesafe.play:twirl-api_2.11", + "com.typesafe.play:twirl-api_2.11:jar:sources", + "com.typesafe.play:twirl-api_2.12", + "com.typesafe.play:twirl-api_2.12:jar:sources", + "commons-io:commons-io", + "commons-io:commons-io:jar:sources", + "org.scala-lang.modules:scala-parser-combinators_2.11", + "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources", + "org.scala-lang.modules:scala-parser-combinators_2.12", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources", + "org.scala-lang.modules:scala-xml_2.11", + "org.scala-lang.modules:scala-xml_2.11:jar:sources", + "org.scala-lang.modules:scala-xml_2.12", + "org.scala-lang.modules:scala-xml_2.12: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" + ], + "https://mirror.bazel.build/repo1.maven.org/maven2/": [ + "com.github.scopt:scopt_2.11", + "com.github.scopt:scopt_2.11:jar:sources", + "com.github.scopt:scopt_2.12", + "com.github.scopt:scopt_2.12:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.11", + "com.lucidchart:play-routes-compiler-cli_2.11:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.12", + "com.lucidchart:play-routes-compiler-cli_2.12:jar:sources", + "com.typesafe.play:routes-compiler_2.11", + "com.typesafe.play:routes-compiler_2.11:jar:sources", + "com.typesafe.play:routes-compiler_2.12", + "com.typesafe.play:routes-compiler_2.12:jar:sources", + "com.typesafe.play:twirl-api_2.11", + "com.typesafe.play:twirl-api_2.11:jar:sources", + "com.typesafe.play:twirl-api_2.12", + "com.typesafe.play:twirl-api_2.12:jar:sources", + "commons-io:commons-io", + "commons-io:commons-io:jar:sources", + "org.scala-lang.modules:scala-parser-combinators_2.11", + "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources", + "org.scala-lang.modules:scala-parser-combinators_2.12", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources", + "org.scala-lang.modules:scala-xml_2.11", + "org.scala-lang.modules:scala-xml_2.11:jar:sources", + "org.scala-lang.modules:scala-xml_2.12", + "org.scala-lang.modules:scala-xml_2.12: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" + ] + }, + "services": {}, + "version": "2" } diff --git a/play_2_7_routes_compiler_cli_install.json b/play_2_7_routes_compiler_cli_install.json index e3cc7e2..4e70e9f 100644 --- a/play_2_7_routes_compiler_cli_install.json +++ b/play_2_7_routes_compiler_cli_install.json @@ -1,583 +1,515 @@ { - "dependency_tree": { - "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": -407855107, - "__RESOLVED_ARTIFACTS_HASH": -2076831559, - "conflict_resolution": {}, - "dependencies": [ - { - "coord": "com.github.scopt:scopt_2.11:jar:sources:3.7.0", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar" - ], - "sha256": "1c9111bafb55ec192d04898123199e51440e1633118b112d0c14a611491805ef", - "url": "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar" - }, - { - "coord": "com.github.scopt:scopt_2.11:3.7.0", - "dependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar" - ], - "sha256": "cc05b6ac379f9b45b6d832b7be556312039f3d57928b62190d3dcd04f34470b5", - "url": "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar" - }, - { - "coord": "com.github.scopt:scopt_2.12:jar:sources:3.7.0", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0-sources.jar" - ], - "sha256": "5d642a8f96c9e0243d15badd519ffb2a7f2786ce70d5e5c21003bb9b70ff507d", - "url": "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0-sources.jar" - }, - { - "coord": "com.github.scopt:scopt_2.12:3.7.0", - "dependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0.jar" - ], - "sha256": "1105ff2819f267e06b9a84843231a9fd7a69817c49e5d67167cb601e47ce2c56", - "url": "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0.jar" - }, - { - "coord": "com.lucidchart:play-routes-compiler-cli:jar:sources:0.1", - "dependencies": [ - "com.github.scopt:scopt_2.11:jar:sources:3.7.0", - "com.typesafe.play:routes-compiler_2.11:jar:sources:2.7.2", - "org.scala-lang:scala-library:jar:sources:2.12.8", - "org.scala-lang:scala-reflect:jar:sources:2.12.8" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.11:jar:sources:3.7.0", - "com.typesafe.play:routes-compiler_2.11:jar:sources:2.7.2", - "org.scala-lang:scala-reflect:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar" - ], - "sha256": "adb5006d0e85c9d3ea034e7d947dffcd7df6239843ee732f16f9895b10a7e8d3", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar" - }, - { - "coord": "com.lucidchart:play-routes-compiler-cli:0.1", - "dependencies": [ - "com.github.scopt:scopt_2.11:3.7.0", - "com.typesafe.play:routes-compiler_2.11:2.7.2", - "org.scala-lang:scala-library:2.12.8", - "org.scala-lang:scala-reflect:2.12.8" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.11:3.7.0", - "com.typesafe.play:routes-compiler_2.11:2.7.2", - "org.scala-lang:scala-reflect:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar" - ], - "sha256": "9b89f0f1a4a62b0a05c844b0c184b82dcd2cd45415eea842fd054d7cbb0719f7", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar" - }, - { - "coord": "com.lucidchart:play-routes-compiler-cli_2.11:jar:sources:2.7.2", - "dependencies": [ - "com.github.scopt:scopt_2.11:jar:sources:3.7.0", - "com.typesafe.play:routes-compiler_2.11:jar:sources:2.7.2", - "com.typesafe.play:twirl-api_2.11:jar:sources:1.4.0", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources:1.1.1", - "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.1.0", - "org.scala-lang:scala-library:jar:sources:2.12.8", - "org.scala-lang:scala-reflect:jar:sources:2.12.8" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.11:jar:sources:3.7.0", - "com.typesafe.play:routes-compiler_2.11:jar:sources:2.7.2", - "org.scala-lang:scala-reflect:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.7.2/play-routes-compiler-cli_2.11-2.7.2-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.7.2/play-routes-compiler-cli_2.11-2.7.2-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.7.2/play-routes-compiler-cli_2.11-2.7.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.7.2/play-routes-compiler-cli_2.11-2.7.2-sources.jar" - ], - "sha256": "187b0f4e6674aa98c7a486482c130ccbc65b31e707eca2ac3c7577298e7849ee", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.7.2/play-routes-compiler-cli_2.11-2.7.2-sources.jar" - }, - { - "coord": "com.lucidchart:play-routes-compiler-cli_2.11:2.7.2", - "dependencies": [ - "com.github.scopt:scopt_2.11:3.7.0", - "com.typesafe.play:routes-compiler_2.11:2.7.2", - "com.typesafe.play:twirl-api_2.11:1.4.0", - "org.scala-lang.modules:scala-parser-combinators_2.11:1.1.1", - "org.scala-lang.modules:scala-xml_2.11:1.1.0", - "org.scala-lang:scala-library:2.12.8", - "org.scala-lang:scala-reflect:2.12.8" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.11:3.7.0", - "com.typesafe.play:routes-compiler_2.11:2.7.2", - "org.scala-lang:scala-reflect:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.7.2/play-routes-compiler-cli_2.11-2.7.2.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.7.2/play-routes-compiler-cli_2.11-2.7.2.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.7.2/play-routes-compiler-cli_2.11-2.7.2.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.7.2/play-routes-compiler-cli_2.11-2.7.2.jar" - ], - "sha256": "927d32d1eb65c5c4450fff8a4bff0fd1deb8eea0db4a04a37080f4a3151a500a", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.11/2.7.2/play-routes-compiler-cli_2.11-2.7.2.jar" - }, - { - "coord": "com.lucidchart:play-routes-compiler-cli_2.12:jar:sources:2.7.3", - "dependencies": [ - "com.github.scopt:scopt_2.12:jar:sources:3.7.0", - "com.typesafe.play:routes-compiler_2.12:jar:sources:2.7.3", - "com.typesafe.play:twirl-api_2.12:jar:sources:1.4.2", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.12.8", - "org.scala-lang:scala-reflect:jar:sources:2.12.8" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.12:jar:sources:3.7.0", - "com.typesafe.play:routes-compiler_2.12:jar:sources:2.7.3", - "org.scala-lang:scala-reflect:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.7.3/play-routes-compiler-cli_2.12-2.7.3-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.7.3/play-routes-compiler-cli_2.12-2.7.3-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.7.3/play-routes-compiler-cli_2.12-2.7.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.7.3/play-routes-compiler-cli_2.12-2.7.3-sources.jar" - ], - "sha256": "200474ab0ee50b9022a4aa9ea04cb90e7ed4af65f1591be8614779ed91e9271c", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.7.3/play-routes-compiler-cli_2.12-2.7.3-sources.jar" - }, - { - "coord": "com.lucidchart:play-routes-compiler-cli_2.12:2.7.3", - "dependencies": [ - "com.github.scopt:scopt_2.12:3.7.0", - "com.typesafe.play:routes-compiler_2.12:2.7.3", - "com.typesafe.play:twirl-api_2.12:1.4.2", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "org.scala-lang:scala-library:2.12.8", - "org.scala-lang:scala-reflect:2.12.8" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.12:3.7.0", - "com.typesafe.play:routes-compiler_2.12:2.7.3", - "org.scala-lang:scala-reflect:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.7.3/play-routes-compiler-cli_2.12-2.7.3.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.7.3/play-routes-compiler-cli_2.12-2.7.3.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.7.3/play-routes-compiler-cli_2.12-2.7.3.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.7.3/play-routes-compiler-cli_2.12-2.7.3.jar" - ], - "sha256": "b1be4f330a35ce79489c3eb1483d734abfd08feb903118946e132565fa419f52", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.7.3/play-routes-compiler-cli_2.12-2.7.3.jar" - }, - { - "coord": "com.typesafe.play:routes-compiler_2.11:jar:sources:2.7.2", - "dependencies": [ - "com.typesafe.play:twirl-api_2.11:jar:sources:1.4.0", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources:1.1.1", - "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.1.0", - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "directDependencies": [ - "com.typesafe.play:twirl-api_2.11:jar:sources:1.4.0", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources:1.1.1", - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.7.2/routes-compiler_2.11-2.7.2-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.7.2/routes-compiler_2.11-2.7.2-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/routes-compiler_2.11/2.7.2/routes-compiler_2.11-2.7.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/routes-compiler_2.11/2.7.2/routes-compiler_2.11-2.7.2-sources.jar" - ], - "sha256": "e919c1008c17e34c92a179907922cc47bc0e1af564318d7131f3c54813b4a576", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.7.2/routes-compiler_2.11-2.7.2-sources.jar" - }, - { - "coord": "com.typesafe.play:routes-compiler_2.11:2.7.2", - "dependencies": [ - "com.typesafe.play:twirl-api_2.11:1.4.0", - "org.scala-lang.modules:scala-parser-combinators_2.11:1.1.1", - "org.scala-lang.modules:scala-xml_2.11:1.1.0", - "org.scala-lang:scala-library:2.12.8" - ], - "directDependencies": [ - "com.typesafe.play:twirl-api_2.11:1.4.0", - "org.scala-lang.modules:scala-parser-combinators_2.11:1.1.1", - "org.scala-lang:scala-library:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.7.2/routes-compiler_2.11-2.7.2.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.7.2/routes-compiler_2.11-2.7.2.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/routes-compiler_2.11/2.7.2/routes-compiler_2.11-2.7.2.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/routes-compiler_2.11/2.7.2/routes-compiler_2.11-2.7.2.jar" - ], - "sha256": "d332c0b2873514cfd1d65abcbd7e0dc832b2b94d0ff70c501460f487c8d37ec2", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.7.2/routes-compiler_2.11-2.7.2.jar" - }, - { - "coord": "com.typesafe.play:routes-compiler_2.12:jar:sources:2.7.3", - "dependencies": [ - "com.typesafe.play:twirl-api_2.12:jar:sources:1.4.2", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "directDependencies": [ - "com.typesafe.play:twirl-api_2.12:jar:sources:1.4.2", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.12/2.7.3/routes-compiler_2.12-2.7.3-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.12/2.7.3/routes-compiler_2.12-2.7.3-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/routes-compiler_2.12/2.7.3/routes-compiler_2.12-2.7.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/routes-compiler_2.12/2.7.3/routes-compiler_2.12-2.7.3-sources.jar" - ], - "sha256": "e654102e57de4858d72423e3df372cd3de2bf53448084f92d86d172de839defe", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.12/2.7.3/routes-compiler_2.12-2.7.3-sources.jar" - }, - { - "coord": "com.typesafe.play:routes-compiler_2.12:2.7.3", - "dependencies": [ - "com.typesafe.play:twirl-api_2.12:1.4.2", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "org.scala-lang:scala-library:2.12.8" - ], - "directDependencies": [ - "com.typesafe.play:twirl-api_2.12:1.4.2", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "org.scala-lang:scala-library:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.12/2.7.3/routes-compiler_2.12-2.7.3.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.12/2.7.3/routes-compiler_2.12-2.7.3.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/routes-compiler_2.12/2.7.3/routes-compiler_2.12-2.7.3.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/routes-compiler_2.12/2.7.3/routes-compiler_2.12-2.7.3.jar" - ], - "sha256": "358ddda4d89186f6dabec08f488b9a0c026409db1b55821a3a7179a6008d5341", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.12/2.7.3/routes-compiler_2.12-2.7.3.jar" - }, - { - "coord": "com.typesafe.play:twirl-api_2.11:jar:sources:1.4.0", - "dependencies": [ - "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.1.0", - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.1.0", - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.4.0/twirl-api_2.11-1.4.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.4.0/twirl-api_2.11-1.4.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/twirl-api_2.11/1.4.0/twirl-api_2.11-1.4.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.11/1.4.0/twirl-api_2.11-1.4.0-sources.jar" - ], - "sha256": "a68e6438261d242d4b0730617a2d8545a27fad4bd6e7516eb86ee3110210eb37", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.4.0/twirl-api_2.11-1.4.0-sources.jar" - }, - { - "coord": "com.typesafe.play:twirl-api_2.11:1.4.0", - "dependencies": [ - "org.scala-lang.modules:scala-xml_2.11:1.1.0", - "org.scala-lang:scala-library:2.12.8" - ], - "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.11:1.1.0", - "org.scala-lang:scala-library:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.4.0/twirl-api_2.11-1.4.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.4.0/twirl-api_2.11-1.4.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/twirl-api_2.11/1.4.0/twirl-api_2.11-1.4.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.11/1.4.0/twirl-api_2.11-1.4.0.jar" - ], - "sha256": "15d9eef2167234d9ac73f621456593dbeeb0ee82ee6b33dec3d095b4b015f223", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.4.0/twirl-api_2.11-1.4.0.jar" - }, - { - "coord": "com.typesafe.play:twirl-api_2.12:jar:sources:1.4.2", - "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.4.2/twirl-api_2.12-1.4.2-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.4.2/twirl-api_2.12-1.4.2-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/twirl-api_2.12/1.4.2/twirl-api_2.12-1.4.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.12/1.4.2/twirl-api_2.12-1.4.2-sources.jar" - ], - "sha256": "66f51aa6198090b88dc7d44ddc748df210a72a651a4ae28a0075ac9b6a925250", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.4.2/twirl-api_2.12-1.4.2-sources.jar" - }, - { - "coord": "com.typesafe.play:twirl-api_2.12:1.4.2", - "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "org.scala-lang:scala-library:2.12.8" - ], - "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "org.scala-lang:scala-library:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.4.2/twirl-api_2.12-1.4.2.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.4.2/twirl-api_2.12-1.4.2.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/twirl-api_2.12/1.4.2/twirl-api_2.12-1.4.2.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.12/1.4.2/twirl-api_2.12-1.4.2.jar" - ], - "sha256": "a7887a19bcd7ec2e76bc43ea10f2ac73a8d2cd1fe154819905652aa422675fa2", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.4.2/twirl-api_2.12-1.4.2.jar" - }, - { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources:1.1.1", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.1.1/scala-parser-combinators_2.11-1.1.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.1.1/scala-parser-combinators_2.11-1.1.1-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.1.1/scala-parser-combinators_2.11-1.1.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.1.1/scala-parser-combinators_2.11-1.1.1-sources.jar" - ], - "sha256": "8e9df68fae743e654df806b9c230e1d42222eb3777c706e990781c541d297c62", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.1.1/scala-parser-combinators_2.11-1.1.1-sources.jar" - }, - { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.11:1.1.1", - "dependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.1.1/scala-parser-combinators_2.11-1.1.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.1.1/scala-parser-combinators_2.11-1.1.1.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.1.1/scala-parser-combinators_2.11-1.1.1.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.1.1/scala-parser-combinators_2.11-1.1.1.jar" - ], - "sha256": "32ad5c2801fac8cc3a004ef819aedd1a74d4e8eef12f6f2b4e74e1964872284e", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.1.1/scala-parser-combinators_2.11-1.1.1.jar" - }, - { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2-sources.jar" - ], - "sha256": "8fbe3fa9e748f24aa6d6868c0c2be30d41a02d20428ed5429bb57a897cb756e3", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2-sources.jar" - }, - { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "dependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar" - ], - "sha256": "24985eb43e295a9dd77905ada307a850ca25acf819cdb579c093fc6987b0dbc2", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar" - }, - { - "coord": "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.1.0", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.1.0/scala-xml_2.11-1.1.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.1.0/scala-xml_2.11-1.1.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.11/1.1.0/scala-xml_2.11-1.1.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.1.0/scala-xml_2.11-1.1.0-sources.jar" - ], - "sha256": "23ec508f75f1b5a614a506a97ffbf7d006fa3e5d85f1ac2652124e600d96e617", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.1.0/scala-xml_2.11-1.1.0-sources.jar" - }, - { - "coord": "org.scala-lang.modules:scala-xml_2.11:1.1.0", - "dependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.1.0/scala-xml_2.11-1.1.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.1.0/scala-xml_2.11-1.1.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.11/1.1.0/scala-xml_2.11-1.1.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.1.0/scala-xml_2.11-1.1.0.jar" - ], - "sha256": "8aa1ac3077bd2bce0540ce589240fae70ad3384905a2318a28f962edb3a2491c", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.1.0/scala-xml_2.11-1.1.0.jar" - }, - { - "coord": "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0-sources.jar" - ], - "sha256": "288fdce0b296df28725707cc87cff0f65ef435c54e93e0c1fbc5a7fcc8e19ade", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0-sources.jar" - }, - { - "coord": "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "dependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar" - ], - "sha256": "1b48dc206f527b7604ef32492ada8e71706c63a65d999e0cabdafdc5793b4d63", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar" - }, - { - "coord": "org.scala-lang:scala-library:jar:sources:2.12.8", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.8/scala-library-2.12.8-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.8/scala-library-2.12.8-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.12.8/scala-library-2.12.8-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.8/scala-library-2.12.8-sources.jar" - ], - "sha256": "11482bcb49b2e47baee89c3b1ae10c6a40b89e2fbb0da2a423e062f444e13492", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.8/scala-library-2.12.8-sources.jar" - }, - { - "coord": "org.scala-lang:scala-library:2.12.8", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.8/scala-library-2.12.8.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.8/scala-library-2.12.8.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.12.8/scala-library-2.12.8.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.8/scala-library-2.12.8.jar" - ], - "sha256": "321fb55685635c931eba4bc0d7668349da3f2c09aee2de93a70566066ff25c28", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.8/scala-library-2.12.8.jar" - }, - { - "coord": "org.scala-lang:scala-reflect:jar:sources:2.12.8", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.8/scala-reflect-2.12.8-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.8/scala-reflect-2.12.8-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.12.8/scala-reflect-2.12.8-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.8/scala-reflect-2.12.8-sources.jar" - ], - "sha256": "5c676791217d9b48560496556b8965cceabcbfdbb65bbebdc52e99c0a3847735", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.8/scala-reflect-2.12.8-sources.jar" - }, - { - "coord": "org.scala-lang:scala-reflect:2.12.8", - "dependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.8" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.8/scala-reflect-2.12.8.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.8/scala-reflect-2.12.8.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.12.8/scala-reflect-2.12.8.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.8/scala-reflect-2.12.8.jar" - ], - "sha256": "4d6405395c4599ce04cea08ba082339e3e42135de9aae2923c9f5367e957315a", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.8/scala-reflect-2.12.8.jar" - } - ], - "version": "0.1.0" + "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", + "__INPUT_ARTIFACTS_HASH": -1062342512, + "__RESOLVED_ARTIFACTS_HASH": 421241932, + "artifacts": { + "com.github.scopt:scopt_2.11": { + "shasums": { + "jar": "cc05b6ac379f9b45b6d832b7be556312039f3d57928b62190d3dcd04f34470b5", + "sources": "1c9111bafb55ec192d04898123199e51440e1633118b112d0c14a611491805ef" + }, + "version": "3.7.0" + }, + "com.github.scopt:scopt_2.12": { + "shasums": { + "jar": "1105ff2819f267e06b9a84843231a9fd7a69817c49e5d67167cb601e47ce2c56", + "sources": "5d642a8f96c9e0243d15badd519ffb2a7f2786ce70d5e5c21003bb9b70ff507d" + }, + "version": "3.7.0" + }, + "com.lucidchart:play-routes-compiler-cli_2.11": { + "shasums": { + "jar": "927d32d1eb65c5c4450fff8a4bff0fd1deb8eea0db4a04a37080f4a3151a500a", + "sources": "187b0f4e6674aa98c7a486482c130ccbc65b31e707eca2ac3c7577298e7849ee" + }, + "version": "2.7.2" + }, + "com.lucidchart:play-routes-compiler-cli_2.12": { + "shasums": { + "jar": "b1be4f330a35ce79489c3eb1483d734abfd08feb903118946e132565fa419f52", + "sources": "200474ab0ee50b9022a4aa9ea04cb90e7ed4af65f1591be8614779ed91e9271c" + }, + "version": "2.7.3" + }, + "com.typesafe.play:routes-compiler_2.11": { + "shasums": { + "jar": "d332c0b2873514cfd1d65abcbd7e0dc832b2b94d0ff70c501460f487c8d37ec2", + "sources": "e919c1008c17e34c92a179907922cc47bc0e1af564318d7131f3c54813b4a576" + }, + "version": "2.7.2" + }, + "com.typesafe.play:routes-compiler_2.12": { + "shasums": { + "jar": "358ddda4d89186f6dabec08f488b9a0c026409db1b55821a3a7179a6008d5341", + "sources": "e654102e57de4858d72423e3df372cd3de2bf53448084f92d86d172de839defe" + }, + "version": "2.7.3" + }, + "com.typesafe.play:twirl-api_2.11": { + "shasums": { + "jar": "15d9eef2167234d9ac73f621456593dbeeb0ee82ee6b33dec3d095b4b015f223", + "sources": "a68e6438261d242d4b0730617a2d8545a27fad4bd6e7516eb86ee3110210eb37" + }, + "version": "1.4.0" + }, + "com.typesafe.play:twirl-api_2.12": { + "shasums": { + "jar": "a7887a19bcd7ec2e76bc43ea10f2ac73a8d2cd1fe154819905652aa422675fa2", + "sources": "66f51aa6198090b88dc7d44ddc748df210a72a651a4ae28a0075ac9b6a925250" + }, + "version": "1.4.2" + }, + "org.scala-lang.modules:scala-parser-combinators_2.11": { + "shasums": { + "jar": "32ad5c2801fac8cc3a004ef819aedd1a74d4e8eef12f6f2b4e74e1964872284e", + "sources": "8e9df68fae743e654df806b9c230e1d42222eb3777c706e990781c541d297c62" + }, + "version": "1.1.1" + }, + "org.scala-lang.modules:scala-parser-combinators_2.12": { + "shasums": { + "jar": "24985eb43e295a9dd77905ada307a850ca25acf819cdb579c093fc6987b0dbc2", + "sources": "8fbe3fa9e748f24aa6d6868c0c2be30d41a02d20428ed5429bb57a897cb756e3" + }, + "version": "1.1.2" + }, + "org.scala-lang.modules:scala-xml_2.11": { + "shasums": { + "jar": "8aa1ac3077bd2bce0540ce589240fae70ad3384905a2318a28f962edb3a2491c", + "sources": "23ec508f75f1b5a614a506a97ffbf7d006fa3e5d85f1ac2652124e600d96e617" + }, + "version": "1.1.0" + }, + "org.scala-lang.modules:scala-xml_2.12": { + "shasums": { + "jar": "1b48dc206f527b7604ef32492ada8e71706c63a65d999e0cabdafdc5793b4d63", + "sources": "288fdce0b296df28725707cc87cff0f65ef435c54e93e0c1fbc5a7fcc8e19ade" + }, + "version": "1.2.0" + }, + "org.scala-lang:scala-library": { + "shasums": { + "jar": "321fb55685635c931eba4bc0d7668349da3f2c09aee2de93a70566066ff25c28", + "sources": "11482bcb49b2e47baee89c3b1ae10c6a40b89e2fbb0da2a423e062f444e13492" + }, + "version": "2.12.8" + }, + "org.scala-lang:scala-reflect": { + "shasums": { + "jar": "4d6405395c4599ce04cea08ba082339e3e42135de9aae2923c9f5367e957315a", + "sources": "5c676791217d9b48560496556b8965cceabcbfdbb65bbebdc52e99c0a3847735" + }, + "version": "2.12.8" } + }, + "dependencies": { + "com.github.scopt:scopt_2.11": [ + "org.scala-lang:scala-library" + ], + "com.github.scopt:scopt_2.12": [ + "org.scala-lang:scala-library" + ], + "com.lucidchart:play-routes-compiler-cli_2.11": [ + "com.github.scopt:scopt_2.11", + "com.typesafe.play:routes-compiler_2.11", + "org.scala-lang:scala-reflect" + ], + "com.lucidchart:play-routes-compiler-cli_2.12": [ + "com.github.scopt:scopt_2.12", + "com.typesafe.play:routes-compiler_2.12", + "org.scala-lang:scala-reflect" + ], + "com.typesafe.play:routes-compiler_2.11": [ + "com.typesafe.play:twirl-api_2.11", + "org.scala-lang.modules:scala-parser-combinators_2.11", + "org.scala-lang:scala-library" + ], + "com.typesafe.play:routes-compiler_2.12": [ + "com.typesafe.play:twirl-api_2.12", + "org.scala-lang.modules:scala-parser-combinators_2.12", + "org.scala-lang:scala-library" + ], + "com.typesafe.play:twirl-api_2.11": [ + "org.scala-lang.modules:scala-xml_2.11", + "org.scala-lang:scala-library" + ], + "com.typesafe.play:twirl-api_2.12": [ + "org.scala-lang.modules:scala-xml_2.12", + "org.scala-lang:scala-library" + ], + "org.scala-lang.modules:scala-parser-combinators_2.11": [ + "org.scala-lang:scala-library" + ], + "org.scala-lang.modules:scala-parser-combinators_2.12": [ + "org.scala-lang:scala-library" + ], + "org.scala-lang.modules:scala-xml_2.11": [ + "org.scala-lang:scala-library" + ], + "org.scala-lang.modules:scala-xml_2.12": [ + "org.scala-lang:scala-library" + ], + "org.scala-lang:scala-reflect": [ + "org.scala-lang:scala-library" + ] + }, + "packages": { + "com.github.scopt:scopt_2.11": [ + "scopt" + ], + "com.github.scopt:scopt_2.12": [ + "scopt" + ], + "com.lucidchart:play-routes-compiler-cli_2.11": [ + "play.routes.compiler", + "play.routes.compiler.inject.twirl", + "play.routes.compiler.static.twirl", + "play.routes.compiler.templates", + "play.twirl.api", + "play.twirl.api.utils", + "rulesplayroutes.routes", + "scala", + "scala.annotation", + "scala.annotation.meta", + "scala.annotation.unchecked", + "scala.beans", + "scala.collection", + "scala.collection.concurrent", + "scala.collection.convert", + "scala.collection.generic", + "scala.collection.immutable", + "scala.collection.mutable", + "scala.collection.parallel", + "scala.collection.parallel.immutable", + "scala.collection.parallel.mutable", + "scala.collection.script", + "scala.compat", + "scala.concurrent", + "scala.concurrent.duration", + "scala.concurrent.forkjoin", + "scala.concurrent.impl", + "scala.concurrent.util", + "scala.io", + "scala.math", + "scala.ref", + "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.internal", + "scala.reflect.macros.whitebox", + "scala.reflect.runtime", + "scala.runtime", + "scala.sys", + "scala.sys.process", + "scala.text", + "scala.util", + "scala.util.control", + "scala.util.hashing", + "scala.util.matching", + "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", + "scala.xml", + "scala.xml.dtd", + "scala.xml.dtd.impl", + "scala.xml.factory", + "scala.xml.include", + "scala.xml.include.sax", + "scala.xml.parsing", + "scala.xml.persistent", + "scala.xml.pull", + "scala.xml.transform", + "scopt" + ], + "com.lucidchart:play-routes-compiler-cli_2.12": [ + "play.routes.compiler", + "play.routes.compiler.inject.twirl", + "play.routes.compiler.static.twirl", + "play.routes.compiler.templates", + "play.twirl.api", + "play.twirl.api.utils", + "rulesplayroutes.routes", + "scala", + "scala.annotation", + "scala.annotation.meta", + "scala.annotation.unchecked", + "scala.beans", + "scala.collection", + "scala.collection.concurrent", + "scala.collection.convert", + "scala.collection.generic", + "scala.collection.immutable", + "scala.collection.mutable", + "scala.collection.parallel", + "scala.collection.parallel.immutable", + "scala.collection.parallel.mutable", + "scala.collection.script", + "scala.compat", + "scala.concurrent", + "scala.concurrent.duration", + "scala.concurrent.forkjoin", + "scala.concurrent.impl", + "scala.io", + "scala.math", + "scala.ref", + "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.internal", + "scala.reflect.macros.whitebox", + "scala.reflect.runtime", + "scala.runtime", + "scala.runtime.java8", + "scala.sys", + "scala.sys.process", + "scala.text", + "scala.util", + "scala.util.control", + "scala.util.hashing", + "scala.util.matching", + "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", + "scala.xml", + "scala.xml.dtd", + "scala.xml.dtd.impl", + "scala.xml.factory", + "scala.xml.include", + "scala.xml.include.sax", + "scala.xml.parsing", + "scala.xml.persistent", + "scala.xml.pull", + "scala.xml.transform", + "scopt" + ], + "com.typesafe.play:routes-compiler_2.11": [ + "play.routes.compiler", + "play.routes.compiler.inject.twirl", + "play.routes.compiler.static.twirl", + "play.routes.compiler.templates" + ], + "com.typesafe.play:routes-compiler_2.12": [ + "play.routes.compiler", + "play.routes.compiler.inject.twirl", + "play.routes.compiler.static.twirl", + "play.routes.compiler.templates" + ], + "com.typesafe.play:twirl-api_2.11": [ + "play.twirl.api", + "play.twirl.api.utils" + ], + "com.typesafe.play:twirl-api_2.12": [ + "play.twirl.api", + "play.twirl.api.utils" + ], + "org.scala-lang.modules:scala-parser-combinators_2.11": [ + "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-parser-combinators_2.12": [ + "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.11": [ + "scala.xml", + "scala.xml.dtd", + "scala.xml.dtd.impl", + "scala.xml.factory", + "scala.xml.include", + "scala.xml.include.sax", + "scala.xml.parsing", + "scala.xml.persistent", + "scala.xml.pull", + "scala.xml.transform" + ], + "org.scala-lang.modules:scala-xml_2.12": [ + "scala.xml", + "scala.xml.dtd", + "scala.xml.dtd.impl", + "scala.xml.factory", + "scala.xml.include", + "scala.xml.include.sax", + "scala.xml.parsing", + "scala.xml.persistent", + "scala.xml.pull", + "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.generic", + "scala.collection.immutable", + "scala.collection.mutable", + "scala.collection.parallel", + "scala.collection.parallel.immutable", + "scala.collection.parallel.mutable", + "scala.collection.script", + "scala.compat", + "scala.concurrent", + "scala.concurrent.duration", + "scala.concurrent.forkjoin", + "scala.concurrent.impl", + "scala.io", + "scala.math", + "scala.ref", + "scala.reflect", + "scala.reflect.macros.internal", + "scala.runtime", + "scala.runtime.java8", + "scala.sys", + "scala.sys.process", + "scala.text", + "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" + ] + }, + "repositories": { + "https://repo.maven.apache.org/maven2/": [ + "com.github.scopt:scopt_2.11", + "com.github.scopt:scopt_2.11:jar:sources", + "com.github.scopt:scopt_2.12", + "com.github.scopt:scopt_2.12:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.11", + "com.lucidchart:play-routes-compiler-cli_2.11:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.12", + "com.lucidchart:play-routes-compiler-cli_2.12:jar:sources", + "com.typesafe.play:routes-compiler_2.11", + "com.typesafe.play:routes-compiler_2.11:jar:sources", + "com.typesafe.play:routes-compiler_2.12", + "com.typesafe.play:routes-compiler_2.12:jar:sources", + "com.typesafe.play:twirl-api_2.11", + "com.typesafe.play:twirl-api_2.11:jar:sources", + "com.typesafe.play:twirl-api_2.12", + "com.typesafe.play:twirl-api_2.12:jar:sources", + "org.scala-lang.modules:scala-parser-combinators_2.11", + "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources", + "org.scala-lang.modules:scala-parser-combinators_2.12", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources", + "org.scala-lang.modules:scala-xml_2.11", + "org.scala-lang.modules:scala-xml_2.11:jar:sources", + "org.scala-lang.modules:scala-xml_2.12", + "org.scala-lang.modules:scala-xml_2.12: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" + ], + "https://maven-central.storage-download.googleapis.com/maven2/": [ + "com.github.scopt:scopt_2.11", + "com.github.scopt:scopt_2.11:jar:sources", + "com.github.scopt:scopt_2.12", + "com.github.scopt:scopt_2.12:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.11", + "com.lucidchart:play-routes-compiler-cli_2.11:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.12", + "com.lucidchart:play-routes-compiler-cli_2.12:jar:sources", + "com.typesafe.play:routes-compiler_2.11", + "com.typesafe.play:routes-compiler_2.11:jar:sources", + "com.typesafe.play:routes-compiler_2.12", + "com.typesafe.play:routes-compiler_2.12:jar:sources", + "com.typesafe.play:twirl-api_2.11", + "com.typesafe.play:twirl-api_2.11:jar:sources", + "com.typesafe.play:twirl-api_2.12", + "com.typesafe.play:twirl-api_2.12:jar:sources", + "org.scala-lang.modules:scala-parser-combinators_2.11", + "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources", + "org.scala-lang.modules:scala-parser-combinators_2.12", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources", + "org.scala-lang.modules:scala-xml_2.11", + "org.scala-lang.modules:scala-xml_2.11:jar:sources", + "org.scala-lang.modules:scala-xml_2.12", + "org.scala-lang.modules:scala-xml_2.12: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" + ], + "https://mirror.bazel.build/repo1.maven.org/maven2/": [ + "com.github.scopt:scopt_2.11", + "com.github.scopt:scopt_2.11:jar:sources", + "com.github.scopt:scopt_2.12", + "com.github.scopt:scopt_2.12:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.11", + "com.lucidchart:play-routes-compiler-cli_2.11:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.12", + "com.lucidchart:play-routes-compiler-cli_2.12:jar:sources", + "com.typesafe.play:routes-compiler_2.11", + "com.typesafe.play:routes-compiler_2.11:jar:sources", + "com.typesafe.play:routes-compiler_2.12", + "com.typesafe.play:routes-compiler_2.12:jar:sources", + "com.typesafe.play:twirl-api_2.11", + "com.typesafe.play:twirl-api_2.11:jar:sources", + "com.typesafe.play:twirl-api_2.12", + "com.typesafe.play:twirl-api_2.12:jar:sources", + "org.scala-lang.modules:scala-parser-combinators_2.11", + "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources", + "org.scala-lang.modules:scala-parser-combinators_2.12", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources", + "org.scala-lang.modules:scala-xml_2.11", + "org.scala-lang.modules:scala-xml_2.11:jar:sources", + "org.scala-lang.modules:scala-xml_2.12", + "org.scala-lang.modules:scala-xml_2.12: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" + ] + }, + "services": {}, + "version": "2" } diff --git a/play_2_8__2_12_routes_compiler_cli_install.json b/play_2_8__2_12_routes_compiler_cli_install.json index f87e145..687b1f8 100644 --- a/play_2_8__2_12_routes_compiler_cli_install.json +++ b/play_2_8__2_12_routes_compiler_cli_install.json @@ -1,613 +1,242 @@ { - "dependency_tree": { - "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": 2014933260, - "__RESOLVED_ARTIFACTS_HASH": 1440784543, - "conflict_resolution": {}, - "dependencies": [ - { - "coord": "com.github.scopt:scopt_2.11:jar:sources:3.7.0", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.11" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.11" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar" - ], - "sha256": "1c9111bafb55ec192d04898123199e51440e1633118b112d0c14a611491805ef", - "url": "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar" - }, - { - "coord": "com.github.scopt:scopt_2.11:3.7.0", - "dependencies": [ - "org.scala-lang:scala-library:2.12.11" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.11" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar" - ], - "sha256": "cc05b6ac379f9b45b6d832b7be556312039f3d57928b62190d3dcd04f34470b5", - "url": "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar" - }, - { - "coord": "com.github.scopt:scopt_2.12:jar:sources:3.7.0", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.11" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.11" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0-sources.jar" - ], - "sha256": "5d642a8f96c9e0243d15badd519ffb2a7f2786ce70d5e5c21003bb9b70ff507d", - "url": "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0-sources.jar" - }, - { - "coord": "com.github.scopt:scopt_2.12:3.7.0", - "dependencies": [ - "org.scala-lang:scala-library:2.12.11" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.11" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0.jar" - ], - "sha256": "1105ff2819f267e06b9a84843231a9fd7a69817c49e5d67167cb601e47ce2c56", - "url": "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.12/3.7.0/scopt_2.12-3.7.0.jar" - }, - { - "coord": "com.lucidchart:play-routes-compiler-cli:jar:sources:0.1", - "dependencies": [ - "com.github.scopt:scopt_2.11:jar:sources:3.7.0", - "com.typesafe.play:routes-compiler_2.11:jar:sources:2.5.19", - "com.typesafe.play:twirl-api_2.11:jar:sources:1.1.1", - "commons-io:commons-io:jar:sources:2.4", - "org.apache.commons:commons-lang3:jar:sources:3.4", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources:1.0.4", - "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.0.1", - "org.scala-lang:scala-library:jar:sources:2.12.11", - "org.scala-lang:scala-reflect:jar:sources:2.12.10" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.11:jar:sources:3.7.0", - "com.typesafe.play:routes-compiler_2.11:jar:sources:2.5.19", - "org.scala-lang:scala-reflect:jar:sources:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar" - ], - "sha256": "adb5006d0e85c9d3ea034e7d947dffcd7df6239843ee732f16f9895b10a7e8d3", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar" - }, - { - "coord": "com.lucidchart:play-routes-compiler-cli:0.1", - "dependencies": [ - "com.github.scopt:scopt_2.11:3.7.0", - "com.typesafe.play:routes-compiler_2.11:2.5.19", - "com.typesafe.play:twirl-api_2.11:1.1.1", - "commons-io:commons-io:2.4", - "org.apache.commons:commons-lang3:3.4", - "org.scala-lang.modules:scala-parser-combinators_2.11:1.0.4", - "org.scala-lang.modules:scala-xml_2.11:1.0.1", - "org.scala-lang:scala-library:2.12.11", - "org.scala-lang:scala-reflect:2.12.10" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.11:3.7.0", - "com.typesafe.play:routes-compiler_2.11:2.5.19", - "org.scala-lang:scala-reflect:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar" - ], - "sha256": "9b89f0f1a4a62b0a05c844b0c184b82dcd2cd45415eea842fd054d7cbb0719f7", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar" - }, - { - "coord": "com.lucidchart:play-routes-compiler-cli_2.12:jar:sources:2.8.7", - "dependencies": [ - "com.github.scopt:scopt_2.12:jar:sources:3.7.0", - "com.typesafe.play:routes-compiler_2.12:jar:sources:2.8.7", - "com.typesafe.play:twirl-api_2.12:jar:sources:1.5.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.12.11", - "org.scala-lang:scala-reflect:jar:sources:2.12.10" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.12:jar:sources:3.7.0", - "com.typesafe.play:routes-compiler_2.12:jar:sources:2.8.7", - "com.typesafe.play:twirl-api_2.12:jar:sources:1.5.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.12.11", - "org.scala-lang:scala-reflect:jar:sources:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.8.7/play-routes-compiler-cli_2.12-2.8.7-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.8.7/play-routes-compiler-cli_2.12-2.8.7-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.8.7/play-routes-compiler-cli_2.12-2.8.7-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.8.7/play-routes-compiler-cli_2.12-2.8.7-sources.jar" - ], - "sha256": "62b92601ed5e0a608db3d6ac6d30396dd4a2e5e7446a03dceb81091fbab41325", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.8.7/play-routes-compiler-cli_2.12-2.8.7-sources.jar" - }, - { - "coord": "com.lucidchart:play-routes-compiler-cli_2.12:2.8.7", - "dependencies": [ - "com.github.scopt:scopt_2.12:3.7.0", - "com.typesafe.play:routes-compiler_2.12:2.8.7", - "com.typesafe.play:twirl-api_2.12:1.5.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "org.scala-lang:scala-library:2.12.11", - "org.scala-lang:scala-reflect:2.12.10" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.12:3.7.0", - "com.typesafe.play:routes-compiler_2.12:2.8.7", - "com.typesafe.play:twirl-api_2.12:1.5.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "org.scala-lang:scala-library:2.12.11", - "org.scala-lang:scala-reflect:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.8.7/play-routes-compiler-cli_2.12-2.8.7.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.8.7/play-routes-compiler-cli_2.12-2.8.7.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.8.7/play-routes-compiler-cli_2.12-2.8.7.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.8.7/play-routes-compiler-cli_2.12-2.8.7.jar" - ], - "sha256": "30fad84f1e175175a68b28066a946b71d5b2d3316a5a705cc602f323a69e86b7", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.12/2.8.7/play-routes-compiler-cli_2.12-2.8.7.jar" - }, - { - "coord": "com.typesafe.play:routes-compiler_2.11:jar:sources:2.5.19", - "dependencies": [ - "com.typesafe.play:twirl-api_2.11:jar:sources:1.1.1", - "commons-io:commons-io:jar:sources:2.4", - "org.apache.commons:commons-lang3:jar:sources:3.4", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources:1.0.4", - "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.0.1", - "org.scala-lang:scala-library:jar:sources:2.12.11" - ], - "directDependencies": [ - "com.typesafe.play:twirl-api_2.11:jar:sources:1.1.1", - "commons-io:commons-io:jar:sources:2.4", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources:1.0.4", - "org.scala-lang:scala-library:jar:sources:2.12.11" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19-sources.jar" - ], - "sha256": "6b3e5fc188156fd8cb8518cddbcb0f4cf43dec876d703ff59146d73ea2f2d4b4", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19-sources.jar" - }, - { - "coord": "com.typesafe.play:routes-compiler_2.11:2.5.19", - "dependencies": [ - "com.typesafe.play:twirl-api_2.11:1.1.1", - "commons-io:commons-io:2.4", - "org.apache.commons:commons-lang3:3.4", - "org.scala-lang.modules:scala-parser-combinators_2.11:1.0.4", - "org.scala-lang.modules:scala-xml_2.11:1.0.1", - "org.scala-lang:scala-library:2.12.11" - ], - "directDependencies": [ - "com.typesafe.play:twirl-api_2.11:1.1.1", - "commons-io:commons-io:2.4", - "org.scala-lang.modules:scala-parser-combinators_2.11:1.0.4", - "org.scala-lang:scala-library:2.12.11" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19.jar" - ], - "sha256": "bc74bf8f8a4053bfebf506ade75bd917c6a91e98dbe78f8b8bb3cefaa44bebef", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19.jar" - }, - { - "coord": "com.typesafe.play:routes-compiler_2.12:jar:sources:2.8.7", - "dependencies": [ - "com.typesafe.play:twirl-api_2.12:jar:sources:1.5.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.12.11" - ], - "directDependencies": [ - "com.typesafe.play:twirl-api_2.12:jar:sources:1.5.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "org.scala-lang:scala-library:jar:sources:2.12.11" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.12/2.8.7/routes-compiler_2.12-2.8.7-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.12/2.8.7/routes-compiler_2.12-2.8.7-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/routes-compiler_2.12/2.8.7/routes-compiler_2.12-2.8.7-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/routes-compiler_2.12/2.8.7/routes-compiler_2.12-2.8.7-sources.jar" - ], - "sha256": "2277dad903e34f7058046d3d0d551b3ac8fde8daf9bb5f4a13576f88e682b48c", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.12/2.8.7/routes-compiler_2.12-2.8.7-sources.jar" - }, - { - "coord": "com.typesafe.play:routes-compiler_2.12:2.8.7", - "dependencies": [ - "com.typesafe.play:twirl-api_2.12:1.5.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "org.scala-lang:scala-library:2.12.11" - ], - "directDependencies": [ - "com.typesafe.play:twirl-api_2.12:1.5.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "org.scala-lang:scala-library:2.12.11" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.12/2.8.7/routes-compiler_2.12-2.8.7.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.12/2.8.7/routes-compiler_2.12-2.8.7.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/routes-compiler_2.12/2.8.7/routes-compiler_2.12-2.8.7.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/routes-compiler_2.12/2.8.7/routes-compiler_2.12-2.8.7.jar" - ], - "sha256": "3f4118d029adbf9cde1da0bf163768930a61fa5e6a2912226c8f5043400d7bf2", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.12/2.8.7/routes-compiler_2.12-2.8.7.jar" - }, - { - "coord": "com.typesafe.play:twirl-api_2.11:jar:sources:1.1.1", - "dependencies": [ - "org.apache.commons:commons-lang3:jar:sources:3.4", - "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.0.1", - "org.scala-lang:scala-library:jar:sources:2.12.11" - ], - "directDependencies": [ - "org.apache.commons:commons-lang3:jar:sources:3.4", - "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.0.1", - "org.scala-lang:scala-library:jar:sources:2.12.11" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1-sources.jar" - ], - "sha256": "aa59cc9ff4a00e95330f8e8fcb4d4489d168bde4c2c433e5741428d62971d5e8", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1-sources.jar" - }, - { - "coord": "com.typesafe.play:twirl-api_2.11:1.1.1", - "dependencies": [ - "org.apache.commons:commons-lang3:3.4", - "org.scala-lang.modules:scala-xml_2.11:1.0.1", - "org.scala-lang:scala-library:2.12.11" - ], - "directDependencies": [ - "org.apache.commons:commons-lang3:3.4", - "org.scala-lang.modules:scala-xml_2.11:1.0.1", - "org.scala-lang:scala-library:2.12.11" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1.jar" - ], - "sha256": "8cbc373640e2dab269bc0d4eada8fd47e9a06bb573ea9b7748eada58188547fa", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1.jar" - }, - { - "coord": "com.typesafe.play:twirl-api_2.12:jar:sources:1.5.0", - "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.12.11" - ], - "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.12.11" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.5.0/twirl-api_2.12-1.5.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.5.0/twirl-api_2.12-1.5.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/twirl-api_2.12/1.5.0/twirl-api_2.12-1.5.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.12/1.5.0/twirl-api_2.12-1.5.0-sources.jar" - ], - "sha256": "dd5291bf8916f81b4d7f3f61b03e2298b8c74fa0a4622298200f025f3e9f6e6b", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.5.0/twirl-api_2.12-1.5.0-sources.jar" - }, - { - "coord": "com.typesafe.play:twirl-api_2.12:1.5.0", - "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "org.scala-lang:scala-library:2.12.11" - ], - "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "org.scala-lang:scala-library:2.12.11" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.5.0/twirl-api_2.12-1.5.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.5.0/twirl-api_2.12-1.5.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/twirl-api_2.12/1.5.0/twirl-api_2.12-1.5.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.12/1.5.0/twirl-api_2.12-1.5.0.jar" - ], - "sha256": "cb2cb22597d34d07832c0412523be92ab6b16f6f35f12d69c449a0b3bb8d523c", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.5.0/twirl-api_2.12-1.5.0.jar" - }, - { - "coord": "commons-io:commons-io:jar:sources:2.4", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/commons-io/commons-io/2.4/commons-io-2.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/commons-io/commons-io/2.4/commons-io-2.4-sources.jar" - ], - "sha256": "d4635b348bbbf3f166d972b052bc4cac5b326c133beed7b8a1cab7ea22b61e01", - "url": "https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4-sources.jar" - }, - { - "coord": "commons-io:commons-io:2.4", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.jar", - "https://maven-central.storage-download.googleapis.com/maven2/commons-io/commons-io/2.4/commons-io-2.4.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.jar" - ], - "sha256": "cc6a41dc3eaacc9e440a6bd0d2890b20d36b4ee408fe2d67122f328bb6e01581", - "url": "https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.jar" - }, - { - "coord": "org.apache.commons:commons-lang3:jar:sources:3.4", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4-sources.jar" - ], - "sha256": "4709f16a9e0f8fd83ae155083d63044e23045aac8f6f0183a2db09f492491b12", - "url": "https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4-sources.jar" - }, - { - "coord": "org.apache.commons:commons-lang3:3.4", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar" - ], - "sha256": "734c8356420cc8e30c795d64fd1fcd5d44ea9d90342a2cc3262c5158fbc6d98b", - "url": "https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar" - }, - { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources:1.0.4", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.11" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.11" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4-sources.jar" - ], - "sha256": "8b8155720b40c0f7aee7dbc19d4b407307f6e57dd5394b58a3bc9849e28d25c1", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4-sources.jar" - }, - { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.11:1.0.4", - "dependencies": [ - "org.scala-lang:scala-library:2.12.11" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.11" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4.jar" - ], - "sha256": "0dfaafce29a9a245b0a9180ec2c1073d2bd8f0330f03a9f1f6a74d1bc83f62d6", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4.jar" - }, - { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.11" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.11" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2-sources.jar" - ], - "sha256": "8fbe3fa9e748f24aa6d6868c0c2be30d41a02d20428ed5429bb57a897cb756e3", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2-sources.jar" - }, - { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "dependencies": [ - "org.scala-lang:scala-library:2.12.11" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.11" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar" - ], - "sha256": "24985eb43e295a9dd77905ada307a850ca25acf819cdb579c093fc6987b0dbc2", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar" - }, - { - "coord": "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.0.1", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.11" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.11" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1-sources.jar" - ], - "sha256": "9f6233bc4240883dbf00bba36554a0864ee3fbab7cf949440d6523a2f882b611", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1-sources.jar" - }, - { - "coord": "org.scala-lang.modules:scala-xml_2.11:1.0.1", - "dependencies": [ - "org.scala-lang:scala-library:2.12.11" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.11" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1.jar" - ], - "sha256": "eb84f08e8e1874d56f01ee259f99b8fd3c10676959e45728535411182451eff2", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1.jar" - }, - { - "coord": "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.11" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.11" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0-sources.jar" - ], - "sha256": "288fdce0b296df28725707cc87cff0f65ef435c54e93e0c1fbc5a7fcc8e19ade", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0-sources.jar" - }, - { - "coord": "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "dependencies": [ - "org.scala-lang:scala-library:2.12.11" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.11" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar" - ], - "sha256": "1b48dc206f527b7604ef32492ada8e71706c63a65d999e0cabdafdc5793b4d63", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar" - }, - { - "coord": "org.scala-lang:scala-library:jar:sources:2.12.11", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.11/scala-library-2.12.11-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.11/scala-library-2.12.11-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.12.11/scala-library-2.12.11-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.11/scala-library-2.12.11-sources.jar" - ], - "sha256": "9bdbd6a182ed1e4b42acb9f5ba87867c9e0a37ef8af7fb781502765c00027010", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.11/scala-library-2.12.11-sources.jar" - }, - { - "coord": "org.scala-lang:scala-library:2.12.11", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.11/scala-library-2.12.11.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.11/scala-library-2.12.11.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.12.11/scala-library-2.12.11.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.11/scala-library-2.12.11.jar" - ], - "sha256": "dbfe77a3fc7a16c0c7cb6cb2b91fecec5438f2803112a744cb1b187926a138be", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.11/scala-library-2.12.11.jar" - }, - { - "coord": "org.scala-lang:scala-reflect:jar:sources:2.12.10", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.11" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.11" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10-sources.jar" - ], - "sha256": "c3a883670038f8030c41e5e3840d592e2c8bd89bf33d7d42a15c60f1207b9a32", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10-sources.jar" - }, - { - "coord": "org.scala-lang:scala-reflect:2.12.10", - "dependencies": [ - "org.scala-lang:scala-library:2.12.11" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.11" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10.jar" - ], - "sha256": "56b609e1bab9144fb51525bfa01ccd72028154fc40a58685a1e9adcbe7835730", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10.jar" - } - ], - "version": "0.1.0" + "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", + "__INPUT_ARTIFACTS_HASH": -1019885803, + "__RESOLVED_ARTIFACTS_HASH": -1532712311, + "artifacts": { + "com.github.scopt:scopt_2.12": { + "shasums": { + "jar": "1105ff2819f267e06b9a84843231a9fd7a69817c49e5d67167cb601e47ce2c56", + "sources": "5d642a8f96c9e0243d15badd519ffb2a7f2786ce70d5e5c21003bb9b70ff507d" + }, + "version": "3.7.0" + }, + "com.lucidchart:play-routes-compiler-cli_2.12": { + "shasums": { + "jar": "30fad84f1e175175a68b28066a946b71d5b2d3316a5a705cc602f323a69e86b7", + "sources": "62b92601ed5e0a608db3d6ac6d30396dd4a2e5e7446a03dceb81091fbab41325" + }, + "version": "2.8.7" + }, + "com.typesafe.play:routes-compiler_2.12": { + "shasums": { + "jar": "3f4118d029adbf9cde1da0bf163768930a61fa5e6a2912226c8f5043400d7bf2", + "sources": "2277dad903e34f7058046d3d0d551b3ac8fde8daf9bb5f4a13576f88e682b48c" + }, + "version": "2.8.7" + }, + "com.typesafe.play:twirl-api_2.12": { + "shasums": { + "jar": "cb2cb22597d34d07832c0412523be92ab6b16f6f35f12d69c449a0b3bb8d523c", + "sources": "dd5291bf8916f81b4d7f3f61b03e2298b8c74fa0a4622298200f025f3e9f6e6b" + }, + "version": "1.5.0" + }, + "org.scala-lang.modules:scala-parser-combinators_2.12": { + "shasums": { + "jar": "24985eb43e295a9dd77905ada307a850ca25acf819cdb579c093fc6987b0dbc2", + "sources": "8fbe3fa9e748f24aa6d6868c0c2be30d41a02d20428ed5429bb57a897cb756e3" + }, + "version": "1.1.2" + }, + "org.scala-lang.modules:scala-xml_2.12": { + "shasums": { + "jar": "1b48dc206f527b7604ef32492ada8e71706c63a65d999e0cabdafdc5793b4d63", + "sources": "288fdce0b296df28725707cc87cff0f65ef435c54e93e0c1fbc5a7fcc8e19ade" + }, + "version": "1.2.0" + }, + "org.scala-lang:scala-library": { + "shasums": { + "jar": "dbfe77a3fc7a16c0c7cb6cb2b91fecec5438f2803112a744cb1b187926a138be", + "sources": "9bdbd6a182ed1e4b42acb9f5ba87867c9e0a37ef8af7fb781502765c00027010" + }, + "version": "2.12.11" + }, + "org.scala-lang:scala-reflect": { + "shasums": { + "jar": "56b609e1bab9144fb51525bfa01ccd72028154fc40a58685a1e9adcbe7835730", + "sources": "c3a883670038f8030c41e5e3840d592e2c8bd89bf33d7d42a15c60f1207b9a32" + }, + "version": "2.12.10" } + }, + "dependencies": { + "com.github.scopt:scopt_2.12": [ + "org.scala-lang:scala-library" + ], + "com.lucidchart:play-routes-compiler-cli_2.12": [ + "com.github.scopt:scopt_2.12", + "com.typesafe.play:routes-compiler_2.12", + "com.typesafe.play:twirl-api_2.12", + "org.scala-lang.modules:scala-parser-combinators_2.12", + "org.scala-lang.modules:scala-xml_2.12", + "org.scala-lang:scala-library", + "org.scala-lang:scala-reflect" + ], + "com.typesafe.play:routes-compiler_2.12": [ + "com.typesafe.play:twirl-api_2.12", + "org.scala-lang.modules:scala-parser-combinators_2.12", + "org.scala-lang:scala-library" + ], + "com.typesafe.play:twirl-api_2.12": [ + "org.scala-lang.modules:scala-xml_2.12", + "org.scala-lang:scala-library" + ], + "org.scala-lang.modules:scala-parser-combinators_2.12": [ + "org.scala-lang:scala-library" + ], + "org.scala-lang.modules:scala-xml_2.12": [ + "org.scala-lang:scala-library" + ], + "org.scala-lang:scala-reflect": [ + "org.scala-lang:scala-library" + ] + }, + "packages": { + "com.github.scopt:scopt_2.12": [ + "scopt" + ], + "com.lucidchart:play-routes-compiler-cli_2.12": [ + "rulesplayroutes.routes" + ], + "com.typesafe.play:routes-compiler_2.12": [ + "play.routes.compiler", + "play.routes.compiler.inject.twirl", + "play.routes.compiler.static.twirl", + "play.routes.compiler.templates" + ], + "com.typesafe.play:twirl-api_2.12": [ + "play.twirl.api", + "play.twirl.api.utils" + ], + "org.scala-lang.modules:scala-parser-combinators_2.12": [ + "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.12": [ + "scala.xml", + "scala.xml.dtd", + "scala.xml.dtd.impl", + "scala.xml.factory", + "scala.xml.include", + "scala.xml.include.sax", + "scala.xml.parsing", + "scala.xml.persistent", + "scala.xml.pull", + "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.generic", + "scala.collection.immutable", + "scala.collection.mutable", + "scala.collection.parallel", + "scala.collection.parallel.immutable", + "scala.collection.parallel.mutable", + "scala.collection.script", + "scala.compat", + "scala.concurrent", + "scala.concurrent.duration", + "scala.concurrent.forkjoin", + "scala.concurrent.impl", + "scala.io", + "scala.math", + "scala.ref", + "scala.reflect", + "scala.reflect.macros.internal", + "scala.runtime", + "scala.runtime.java8", + "scala.sys", + "scala.sys.process", + "scala.text", + "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" + ] + }, + "repositories": { + "https://repo.maven.apache.org/maven2/": [ + "com.github.scopt:scopt_2.12", + "com.github.scopt:scopt_2.12:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.12", + "com.lucidchart:play-routes-compiler-cli_2.12:jar:sources", + "com.typesafe.play:routes-compiler_2.12", + "com.typesafe.play:routes-compiler_2.12:jar:sources", + "com.typesafe.play:twirl-api_2.12", + "com.typesafe.play:twirl-api_2.12:jar:sources", + "org.scala-lang.modules:scala-parser-combinators_2.12", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources", + "org.scala-lang.modules:scala-xml_2.12", + "org.scala-lang.modules:scala-xml_2.12: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" + ], + "https://maven-central.storage-download.googleapis.com/maven2/": [ + "com.github.scopt:scopt_2.12", + "com.github.scopt:scopt_2.12:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.12", + "com.lucidchart:play-routes-compiler-cli_2.12:jar:sources", + "com.typesafe.play:routes-compiler_2.12", + "com.typesafe.play:routes-compiler_2.12:jar:sources", + "com.typesafe.play:twirl-api_2.12", + "com.typesafe.play:twirl-api_2.12:jar:sources", + "org.scala-lang.modules:scala-parser-combinators_2.12", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources", + "org.scala-lang.modules:scala-xml_2.12", + "org.scala-lang.modules:scala-xml_2.12: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" + ], + "https://mirror.bazel.build/repo1.maven.org/maven2/": [ + "com.github.scopt:scopt_2.12", + "com.github.scopt:scopt_2.12:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.12", + "com.lucidchart:play-routes-compiler-cli_2.12:jar:sources", + "com.typesafe.play:routes-compiler_2.12", + "com.typesafe.play:routes-compiler_2.12:jar:sources", + "com.typesafe.play:twirl-api_2.12", + "com.typesafe.play:twirl-api_2.12:jar:sources", + "org.scala-lang.modules:scala-parser-combinators_2.12", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources", + "org.scala-lang.modules:scala-xml_2.12", + "org.scala-lang.modules:scala-xml_2.12: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" + ] + }, + "services": {}, + "version": "2" } diff --git a/play_2_8__2_13_routes_compiler_cli_install.json b/play_2_8__2_13_routes_compiler_cli_install.json index 870b4ed..9b0a93d 100644 --- a/play_2_8__2_13_routes_compiler_cli_install.json +++ b/play_2_8__2_13_routes_compiler_cli_install.json @@ -1,613 +1,239 @@ { - "dependency_tree": { - "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": -647230037, - "__RESOLVED_ARTIFACTS_HASH": 1945586535, - "conflict_resolution": {}, - "dependencies": [ - { - "coord": "com.github.scopt:scopt_2.11:jar:sources:3.7.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/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar" - ], - "sha256": "1c9111bafb55ec192d04898123199e51440e1633118b112d0c14a611491805ef", - "url": "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0-sources.jar" - }, - { - "coord": "com.github.scopt:scopt_2.11:3.7.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/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.jar" - ], - "sha256": "cc05b6ac379f9b45b6d832b7be556312039f3d57928b62190d3dcd04f34470b5", - "url": "https://repo.maven.apache.org/maven2/com/github/scopt/scopt_2.11/3.7.0/scopt_2.11-3.7.0.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", - "https://maven-central.storage-download.googleapis.com/maven2/com/github/scopt/scopt_2.13/3.7.1/scopt_2.13-3.7.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/com/github/scopt/scopt_2.13/3.7.1/scopt_2.13-3.7.1.jar", - "https://mirror.bazel.build/repo1.maven.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.lucidchart:play-routes-compiler-cli:jar:sources:0.1", - "dependencies": [ - "com.github.scopt:scopt_2.11:jar:sources:3.7.0", - "com.typesafe.play:routes-compiler_2.11:jar:sources:2.5.19", - "com.typesafe.play:twirl-api_2.11:jar:sources:1.1.1", - "commons-io:commons-io:jar:sources:2.4", - "org.apache.commons:commons-lang3:jar:sources:3.4", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources:1.0.4", - "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.0.1", - "org.scala-lang:scala-library:jar:sources:2.13.2", - "org.scala-lang:scala-reflect:jar:sources:2.13.2" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.11:jar:sources:3.7.0", - "com.typesafe.play:routes-compiler_2.11:jar:sources:2.5.19", - "org.scala-lang:scala-reflect:jar:sources:2.13.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar" - ], - "sha256": "adb5006d0e85c9d3ea034e7d947dffcd7df6239843ee732f16f9895b10a7e8d3", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1-sources.jar" - }, - { - "coord": "com.lucidchart:play-routes-compiler-cli:0.1", - "dependencies": [ - "com.github.scopt:scopt_2.11:3.7.0", - "com.typesafe.play:routes-compiler_2.11:2.5.19", - "com.typesafe.play:twirl-api_2.11:1.1.1", - "commons-io:commons-io:2.4", - "org.apache.commons:commons-lang3:3.4", - "org.scala-lang.modules:scala-parser-combinators_2.11:1.0.4", - "org.scala-lang.modules:scala-xml_2.11:1.0.1", - "org.scala-lang:scala-library:2.13.2", - "org.scala-lang:scala-reflect:2.13.2" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.11:3.7.0", - "com.typesafe.play:routes-compiler_2.11:2.5.19", - "org.scala-lang:scala-reflect:2.13.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar" - ], - "sha256": "9b89f0f1a4a62b0a05c844b0c184b82dcd2cd45415eea842fd054d7cbb0719f7", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli/0.1/play-routes-compiler-cli-0.1.jar" - }, - { - "coord": "com.lucidchart:play-routes-compiler-cli_2.13:jar:sources:2.8.7", - "dependencies": [ - "com.github.scopt:scopt_2.13:jar:sources:3.7.1", - "com.typesafe.play:routes-compiler_2.13:jar:sources:2.8.7", - "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.modules:scala-xml_2.13:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.13.2", - "org.scala-lang:scala-reflect:jar:sources:2.13.2" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.13:jar:sources:3.7.1", - "com.typesafe.play:routes-compiler_2.13:jar:sources:2.8.7", - "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.modules:scala-xml_2.13:jar:sources:1.2.0", - "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/com/lucidchart/play-routes-compiler-cli_2.13/2.8.7/play-routes-compiler-cli_2.13-2.8.7-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.13/2.8.7/play-routes-compiler-cli_2.13-2.8.7-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli_2.13/2.8.7/play-routes-compiler-cli_2.13-2.8.7-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli_2.13/2.8.7/play-routes-compiler-cli_2.13-2.8.7-sources.jar" - ], - "sha256": "c6f49a5084e4b4bb2c51445d3b8300c484b6cc167e9214f804c914d872ac2084", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.13/2.8.7/play-routes-compiler-cli_2.13-2.8.7-sources.jar" - }, - { - "coord": "com.lucidchart:play-routes-compiler-cli_2.13:2.8.7", - "dependencies": [ - "com.github.scopt:scopt_2.13:3.7.1", - "com.typesafe.play:routes-compiler_2.13:2.8.7", - "com.typesafe.play:twirl-api_2.13:1.5.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "org.scala-lang.modules:scala-xml_2.13:1.2.0", - "org.scala-lang:scala-library:2.13.2", - "org.scala-lang:scala-reflect:2.13.2" - ], - "directDependencies": [ - "com.github.scopt:scopt_2.13:3.7.1", - "com.typesafe.play:routes-compiler_2.13:2.8.7", - "com.typesafe.play:twirl-api_2.13:1.5.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "org.scala-lang.modules:scala-xml_2.13:1.2.0", - "org.scala-lang:scala-library:2.13.2", - "org.scala-lang:scala-reflect:2.13.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.13/2.8.7/play-routes-compiler-cli_2.13-2.8.7.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.13/2.8.7/play-routes-compiler-cli_2.13-2.8.7.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/lucidchart/play-routes-compiler-cli_2.13/2.8.7/play-routes-compiler-cli_2.13-2.8.7.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/lucidchart/play-routes-compiler-cli_2.13/2.8.7/play-routes-compiler-cli_2.13-2.8.7.jar" - ], - "sha256": "24eb16aa22231d41386edf3bb30c8136e1686dc466c4a8b4e6cb282598a274ec", - "url": "https://repo.maven.apache.org/maven2/com/lucidchart/play-routes-compiler-cli_2.13/2.8.7/play-routes-compiler-cli_2.13-2.8.7.jar" - }, - { - "coord": "com.typesafe.play:routes-compiler_2.11:jar:sources:2.5.19", - "dependencies": [ - "com.typesafe.play:twirl-api_2.11:jar:sources:1.1.1", - "commons-io:commons-io:jar:sources:2.4", - "org.apache.commons:commons-lang3:jar:sources:3.4", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources:1.0.4", - "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.0.1", - "org.scala-lang:scala-library:jar:sources:2.13.2" - ], - "directDependencies": [ - "com.typesafe.play:twirl-api_2.11:jar:sources:1.1.1", - "commons-io:commons-io:jar:sources:2.4", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources:1.0.4", - "org.scala-lang:scala-library:jar:sources:2.13.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19-sources.jar" - ], - "sha256": "6b3e5fc188156fd8cb8518cddbcb0f4cf43dec876d703ff59146d73ea2f2d4b4", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19-sources.jar" - }, - { - "coord": "com.typesafe.play:routes-compiler_2.11:2.5.19", - "dependencies": [ - "com.typesafe.play:twirl-api_2.11:1.1.1", - "commons-io:commons-io:2.4", - "org.apache.commons:commons-lang3:3.4", - "org.scala-lang.modules:scala-parser-combinators_2.11:1.0.4", - "org.scala-lang.modules:scala-xml_2.11:1.0.1", - "org.scala-lang:scala-library:2.13.2" - ], - "directDependencies": [ - "com.typesafe.play:twirl-api_2.11:1.1.1", - "commons-io:commons-io:2.4", - "org.scala-lang.modules:scala-parser-combinators_2.11:1.0.4", - "org.scala-lang:scala-library:2.13.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19.jar" - ], - "sha256": "bc74bf8f8a4053bfebf506ade75bd917c6a91e98dbe78f8b8bb3cefaa44bebef", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/routes-compiler_2.11/2.5.19/routes-compiler_2.11-2.5.19.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.modules:scala-xml_2.13:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.13.2" - ], - "directDependencies": [ - "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" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/routes-compiler_2.13/2.8.7/routes-compiler_2.13-2.8.7-sources.jar", - "https://mirror.bazel.build/repo1.maven.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:routes-compiler_2.13:2.8.7", - "dependencies": [ - "com.typesafe.play:twirl-api_2.13:1.5.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "org.scala-lang.modules:scala-xml_2.13:1.2.0", - "org.scala-lang:scala-library:2.13.2" - ], - "directDependencies": [ - "com.typesafe.play:twirl-api_2.13:1.5.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "org.scala-lang:scala-library:2.13.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", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/routes-compiler_2.13/2.8.7/routes-compiler_2.13-2.8.7.jar", - "https://mirror.bazel.build/repo1.maven.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:twirl-api_2.11:jar:sources:1.1.1", - "dependencies": [ - "org.apache.commons:commons-lang3:jar:sources:3.4", - "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.0.1", - "org.scala-lang:scala-library:jar:sources:2.13.2" - ], - "directDependencies": [ - "org.apache.commons:commons-lang3:jar:sources:3.4", - "org.scala-lang.modules:scala-xml_2.11:jar:sources:1.0.1", - "org.scala-lang:scala-library:jar:sources:2.13.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1-sources.jar" - ], - "sha256": "aa59cc9ff4a00e95330f8e8fcb4d4489d168bde4c2c433e5741428d62971d5e8", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1-sources.jar" - }, - { - "coord": "com.typesafe.play:twirl-api_2.11:1.1.1", - "dependencies": [ - "org.apache.commons:commons-lang3:3.4", - "org.scala-lang.modules:scala-xml_2.11:1.0.1", - "org.scala-lang:scala-library:2.13.2" - ], - "directDependencies": [ - "org.apache.commons:commons-lang3:3.4", - "org.scala-lang.modules:scala-xml_2.11:1.0.1", - "org.scala-lang:scala-library:2.13.2" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1.jar" - ], - "sha256": "8cbc373640e2dab269bc0d4eada8fd47e9a06bb573ea9b7748eada58188547fa", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.11/1.1.1/twirl-api_2.11-1.1.1.jar" - }, - { - "coord": "com.typesafe.play:twirl-api_2.13:jar:sources:1.5.0", - "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.13.2" - ], - "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.13:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.13.2" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/twirl-api_2.13/1.5.0/twirl-api_2.13-1.5.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.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": "com.typesafe.play:twirl-api_2.13:1.5.0", - "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:1.2.0", - "org.scala-lang:scala-library:2.13.2" - ], - "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.13:1.2.0", - "org.scala-lang:scala-library:2.13.2" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/twirl-api_2.13/1.5.0/twirl-api_2.13-1.5.0.jar", - "https://mirror.bazel.build/repo1.maven.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": "commons-io:commons-io:jar:sources:2.4", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/commons-io/commons-io/2.4/commons-io-2.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/commons-io/commons-io/2.4/commons-io-2.4-sources.jar" - ], - "sha256": "d4635b348bbbf3f166d972b052bc4cac5b326c133beed7b8a1cab7ea22b61e01", - "url": "https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4-sources.jar" - }, - { - "coord": "commons-io:commons-io:2.4", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.jar", - "https://maven-central.storage-download.googleapis.com/maven2/commons-io/commons-io/2.4/commons-io-2.4.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.jar" - ], - "sha256": "cc6a41dc3eaacc9e440a6bd0d2890b20d36b4ee408fe2d67122f328bb6e01581", - "url": "https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.jar" - }, - { - "coord": "org.apache.commons:commons-lang3:jar:sources:3.4", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4-sources.jar" - ], - "sha256": "4709f16a9e0f8fd83ae155083d63044e23045aac8f6f0183a2db09f492491b12", - "url": "https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4-sources.jar" - }, - { - "coord": "org.apache.commons:commons-lang3:3.4", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar" - ], - "sha256": "734c8356420cc8e30c795d64fd1fcd5d44ea9d90342a2cc3262c5158fbc6d98b", - "url": "https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar" - }, - { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources:1.0.4", - "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.11/1.0.4/scala-parser-combinators_2.11-1.0.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4-sources.jar" - ], - "sha256": "8b8155720b40c0f7aee7dbc19d4b407307f6e57dd5394b58a3bc9849e28d25c1", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4-sources.jar" - }, - { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.11:1.0.4", - "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.11/1.0.4/scala-parser-combinators_2.11-1.0.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4.jar" - ], - "sha256": "0dfaafce29a9a245b0a9180ec2c1073d2bd8f0330f03a9f1f6a74d1bc83f62d6", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.4/scala-parser-combinators_2.11-1.0.4.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2-sources.jar" - ], - "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-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", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2.jar" - ], - "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-xml_2.11:jar:sources:1.0.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/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1-sources.jar" - ], - "sha256": "9f6233bc4240883dbf00bba36554a0864ee3fbab7cf949440d6523a2f882b611", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1-sources.jar" - }, - { - "coord": "org.scala-lang.modules:scala-xml_2.11:1.0.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/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1.jar" - ], - "sha256": "eb84f08e8e1874d56f01ee259f99b8fd3c10676959e45728535411182451eff2", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.1/scala-xml_2.11-1.0.1.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.13/1.2.0/scala-xml_2.13-1.2.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.13/1.2.0/scala-xml_2.13-1.2.0.jar", - "https://mirror.bazel.build/repo1.maven.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: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", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.13.2/scala-library-2.13.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-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", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.13.2/scala-library-2.13.2.jar", - "https://mirror.bazel.build/repo1.maven.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-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", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.13.2/scala-reflect-2.13.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-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", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.13.2/scala-reflect-2.13.2.jar", - "https://mirror.bazel.build/repo1.maven.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" - } - ], - "version": "0.1.0" + "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", + "__INPUT_ARTIFACTS_HASH": 568879732, + "__RESOLVED_ARTIFACTS_HASH": 1431939985, + "artifacts": { + "com.github.scopt:scopt_2.13": { + "shasums": { + "jar": "6592cd15368f6e26d1d73f81ed5bc93cf0dea713b8b2936a8f2f0edd3b392820", + "sources": "707366c0e18f8d4188daa9e0bf788fae616f0c77500c6aafda776a538d142135" + }, + "version": "3.7.1" + }, + "com.lucidchart:play-routes-compiler-cli_2.13": { + "shasums": { + "jar": "24eb16aa22231d41386edf3bb30c8136e1686dc466c4a8b4e6cb282598a274ec", + "sources": "c6f49a5084e4b4bb2c51445d3b8300c484b6cc167e9214f804c914d872ac2084" + }, + "version": "2.8.7" + }, + "com.typesafe.play:routes-compiler_2.13": { + "shasums": { + "jar": "0aa6842be84c902af07e15c1d2378ab1924202bca7de98e7e53a2d76238166b1", + "sources": "e5b98575fa36ea5e2cbc757e30814e945650679c3fc175e04affc91a50c0f5ba" + }, + "version": "2.8.7" + }, + "com.typesafe.play:twirl-api_2.13": { + "shasums": { + "jar": "fd8d62f9abf36eda8b578b4e96b087830f05f22e27905973c40a7941ea87493a", + "sources": "96ac5f61a0adb518f165053956271a92f70c9962760d0443443f745cc1b3e695" + }, + "version": "1.5.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": "213d2b7840bed5d1a1d5abfa1d72d7c7454473a6f77ea329fff0574910056fd3", + "sources": "e513d27835bcd489f70c24d5719a585f3323feae6610c06daa1533a462cf34bf" + }, + "version": "1.2.0" + }, + "org.scala-lang:scala-library": { + "shasums": { + "jar": "6a1c9846feb8f5d7d33b91e61e056d272215a79747a2b7b5e5ece690bf151d5d", + "sources": "dc7a4b19e478f3ad904ff398fd86f814ca172617edeb1e320323e3b4ca9b738c" + }, + "version": "2.13.2" + }, + "org.scala-lang:scala-reflect": { + "shasums": { + "jar": "21a7288874f186d6049e8b14a986011ffd96cb587f206eccf946624f2d476815", + "sources": "6652f8cb121d5adf50e0f909e4ce617a0e6bfca5013fc2272b1f4e2e3b1f176d" + }, + "version": "2.13.2" } + }, + "dependencies": { + "com.github.scopt:scopt_2.13": [ + "org.scala-lang:scala-library" + ], + "com.lucidchart:play-routes-compiler-cli_2.13": [ + "com.github.scopt:scopt_2.13", + "com.typesafe.play:routes-compiler_2.13", + "com.typesafe.play:twirl-api_2.13", + "org.scala-lang.modules:scala-parser-combinators_2.13", + "org.scala-lang.modules:scala-xml_2.13", + "org.scala-lang:scala-library", + "org.scala-lang:scala-reflect" + ], + "com.typesafe.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-reflect": [ + "org.scala-lang:scala-library" + ] + }, + "packages": { + "com.github.scopt:scopt_2.13": [ + "scopt" + ], + "com.lucidchart:play-routes-compiler-cli_2.13": [ + "rulesplayroutes.routes" + ], + "com.typesafe.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" + ], + "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.persistent", + "scala.xml.pull", + "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" + ] + }, + "repositories": { + "https://repo.maven.apache.org/maven2/": [ + "com.github.scopt:scopt_2.13", + "com.github.scopt:scopt_2.13:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.13", + "com.lucidchart:play-routes-compiler-cli_2.13:jar:sources", + "com.typesafe.play:routes-compiler_2.13", + "com.typesafe.play:routes-compiler_2.13:jar:sources", + "com.typesafe.play:twirl-api_2.13", + "com.typesafe.play:twirl-api_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" + ], + "https://maven-central.storage-download.googleapis.com/maven2/": [ + "com.github.scopt:scopt_2.13", + "com.github.scopt:scopt_2.13:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.13", + "com.lucidchart:play-routes-compiler-cli_2.13:jar:sources", + "com.typesafe.play:routes-compiler_2.13", + "com.typesafe.play:routes-compiler_2.13:jar:sources", + "com.typesafe.play:twirl-api_2.13", + "com.typesafe.play:twirl-api_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" + ], + "https://mirror.bazel.build/repo1.maven.org/maven2/": [ + "com.github.scopt:scopt_2.13", + "com.github.scopt:scopt_2.13:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.13", + "com.lucidchart:play-routes-compiler-cli_2.13:jar:sources", + "com.typesafe.play:routes-compiler_2.13", + "com.typesafe.play:routes-compiler_2.13:jar:sources", + "com.typesafe.play:twirl-api_2.13", + "com.typesafe.play:twirl-api_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" + ] + }, + "services": {}, + "version": "2" } diff --git a/play_2_9_routes_compiler_cli_install.json b/play_2_9_routes_compiler_cli_install.json new file mode 100755 index 0000000..7acac3d --- /dev/null +++ b/play_2_9_routes_compiler_cli_install.json @@ -0,0 +1,237 @@ +{ + "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", + "__INPUT_ARTIFACTS_HASH": 563767659, + "__RESOLVED_ARTIFACTS_HASH": 2107770471, + "artifacts": { + "com.github.scopt:scopt_2.13": { + "shasums": { + "jar": "6592cd15368f6e26d1d73f81ed5bc93cf0dea713b8b2936a8f2f0edd3b392820", + "sources": "707366c0e18f8d4188daa9e0bf788fae616f0c77500c6aafda776a538d142135" + }, + "version": "3.7.1" + }, + "com.lucidchart:play-routes-compiler-cli_2.13": { + "shasums": { + "jar": "50b715635c0110ca60d04fb1c416bf940f1e65ecc2e657c7f6532515d78c6d84", + "sources": "577281b5498714e4f51cde695643324b7a259350a99ab7d67889ae7fbc3cdab9" + }, + "version": "2.9.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" + }, + "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" + } + }, + "dependencies": { + "com.github.scopt:scopt_2.13": [ + "org.scala-lang:scala-library" + ], + "com.lucidchart:play-routes-compiler-cli_2.13": [ + "com.github.scopt:scopt_2.13", + "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.modules:scala-xml_2.13", + "org.scala-lang:scala-library", + "org.scala-lang:scala-reflect" + ], + "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-reflect": [ + "org.scala-lang:scala-library" + ] + }, + "packages": { + "com.github.scopt:scopt_2.13": [ + "scopt" + ], + "com.lucidchart:play-routes-compiler-cli_2.13": [ + "rulesplayroutes.routes" + ], + "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" + ], + "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" + ] + }, + "repositories": { + "https://repo.maven.apache.org/maven2/": [ + "com.github.scopt:scopt_2.13", + "com.github.scopt:scopt_2.13:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.13", + "com.lucidchart:play-routes-compiler-cli_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", + "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" + ], + "https://maven-central.storage-download.googleapis.com/maven2/": [ + "com.github.scopt:scopt_2.13", + "com.github.scopt:scopt_2.13:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.13", + "com.lucidchart:play-routes-compiler-cli_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", + "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" + ], + "https://mirror.bazel.build/repo1.maven.org/maven2/": [ + "com.github.scopt:scopt_2.13", + "com.github.scopt:scopt_2.13:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.13", + "com.lucidchart:play-routes-compiler-cli_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", + "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" + ] + }, + "services": {}, + "version": "2" +} diff --git a/play_3_0__2_13_routes_compiler_cli_install.json b/play_3_0__2_13_routes_compiler_cli_install.json new file mode 100644 index 0000000..f351a11 --- /dev/null +++ b/play_3_0__2_13_routes_compiler_cli_install.json @@ -0,0 +1,237 @@ +{ + "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", + "__INPUT_ARTIFACTS_HASH": 1836964385, + "__RESOLVED_ARTIFACTS_HASH": 1398563855, + "artifacts": { + "com.github.scopt:scopt_2.13": { + "shasums": { + "jar": "6592cd15368f6e26d1d73f81ed5bc93cf0dea713b8b2936a8f2f0edd3b392820", + "sources": "707366c0e18f8d4188daa9e0bf788fae616f0c77500c6aafda776a538d142135" + }, + "version": "3.7.1" + }, + "com.lucidchart:play-routes-compiler-cli_2.13": { + "shasums": { + "jar": "ee7ebce1e297fda1048ffe55036b313e77c590a069009a404d1fecafabf42895", + "sources": "31eeb2320eb80421fbf6f406c460e44c3b64c7d879ac4dd4b013f1dfbc1d86af" + }, + "version": "3.0.3" + }, + "org.playframework.twirl:twirl-api_2.13": { + "shasums": { + "jar": "ef156ad44588fff1a7214551a98b0a85834893ca4d09975aa5e9ab4dd42b9f42", + "sources": "f030b5a9b345b189e8a8c48866b919c9c7bca75a2f99f3e863255a37bcab373d" + }, + "version": "2.0.5" + }, + "org.playframework:play-routes-compiler_2.13": { + "shasums": { + "jar": "7f9abfaba8bd33b5045d3d0218975670c4cd248559d1e805d81ff05a4d93e840", + "sources": "ce8bfcae21a8b5e187760d7150436ec001bb938b6e4e6dde2c6175aa02815f6a" + }, + "version": "3.0.3" + }, + "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": "43e0ca1583df1966eaf02f0fbddcfb3784b995dd06bfc907209347758ce4b7e3", + "sources": "4be0650f427ebf6ff8a462fe634fdc02665d59ec3962c4d98dbf5ac766f1dd4f" + }, + "version": "2.13.14" + }, + "org.scala-lang:scala-reflect": { + "shasums": { + "jar": "c648ceb93a9fcbd22603e0be3d6a156723ae661f516c772a550a088bb3cbca7a", + "sources": "9a04bed34e8a706645139bf89f18841773d13405508ff1353d8aef0095d7cebb" + }, + "version": "2.13.12" + } + }, + "dependencies": { + "com.github.scopt:scopt_2.13": [ + "org.scala-lang:scala-library" + ], + "com.lucidchart:play-routes-compiler-cli_2.13": [ + "com.github.scopt:scopt_2.13", + "org.playframework.twirl:twirl-api_2.13", + "org.playframework:play-routes-compiler_2.13", + "org.scala-lang.modules:scala-parser-combinators_2.13", + "org.scala-lang.modules:scala-xml_2.13", + "org.scala-lang:scala-library", + "org.scala-lang:scala-reflect" + ], + "org.playframework.twirl:twirl-api_2.13": [ + "org.scala-lang.modules:scala-xml_2.13", + "org.scala-lang:scala-library" + ], + "org.playframework:play-routes-compiler_2.13": [ + "org.playframework.twirl:twirl-api_2.13", + "org.scala-lang.modules:scala-parser-combinators_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" + ] + }, + "packages": { + "com.github.scopt:scopt_2.13": [ + "scopt" + ], + "com.lucidchart:play-routes-compiler-cli_2.13": [ + "rulesplayroutes.routes" + ], + "org.playframework.twirl:twirl-api_2.13": [ + "play.twirl.api", + "play.twirl.api.utils" + ], + "org.playframework:play-routes-compiler_2.13": [ + "play.routes.compiler", + "play.routes.compiler.inject.twirl", + "play.routes.compiler.static.twirl", + "play.routes.compiler.templates" + ], + "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" + ] + }, + "repositories": { + "https://repo.maven.apache.org/maven2/": [ + "com.github.scopt:scopt_2.13", + "com.github.scopt:scopt_2.13:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.13", + "com.lucidchart:play-routes-compiler-cli_2.13:jar:sources", + "org.playframework.twirl:twirl-api_2.13", + "org.playframework.twirl:twirl-api_2.13:jar:sources", + "org.playframework:play-routes-compiler_2.13", + "org.playframework:play-routes-compiler_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" + ], + "https://maven-central.storage-download.googleapis.com/maven2/": [ + "com.github.scopt:scopt_2.13", + "com.github.scopt:scopt_2.13:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.13", + "com.lucidchart:play-routes-compiler-cli_2.13:jar:sources", + "org.playframework.twirl:twirl-api_2.13", + "org.playframework.twirl:twirl-api_2.13:jar:sources", + "org.playframework:play-routes-compiler_2.13", + "org.playframework:play-routes-compiler_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" + ], + "https://mirror.bazel.build/repo1.maven.org/maven2/": [ + "com.github.scopt:scopt_2.13", + "com.github.scopt:scopt_2.13:jar:sources", + "com.lucidchart:play-routes-compiler-cli_2.13", + "com.lucidchart:play-routes-compiler-cli_2.13:jar:sources", + "org.playframework.twirl:twirl-api_2.13", + "org.playframework.twirl:twirl-api_2.13:jar:sources", + "org.playframework:play-routes-compiler_2.13", + "org.playframework:play-routes-compiler_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" + ] + }, + "services": {}, + "version": "2" +} diff --git a/play_routes_test_install.json b/play_routes_test_install.json old mode 100644 new mode 100755 index ed95c8b..70965cc --- a/play_routes_test_install.json +++ b/play_routes_test_install.json @@ -1,5366 +1,3942 @@ { - "dependency_tree": { - "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": -725452166, - "__RESOLVED_ARTIFACTS_HASH": 1734496827, - "conflict_resolution": { - "com.typesafe.akka:akka-actor_2.12:2.5.24": "com.typesafe.akka:akka-actor_2.12:2.5.26" - }, - "dependencies": [ - { - "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", - "https://maven-central.storage-download.googleapis.com/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.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": "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", - "https://maven-central.storage-download.googleapis.com/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar", - "https://mirror.bazel.build/repo1.maven.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": "ch.qos.logback:logback-classic:jar:sources:1.2.3", - "dependencies": [ - "ch.qos.logback:logback-core:jar:sources:1.2.3", - "org.slf4j:slf4j-api:jar:sources:1.7.26" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-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", - "https://maven-central.storage-download.googleapis.com/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar", - "https://mirror.bazel.build/repo1.maven.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-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", - "https://maven-central.storage-download.googleapis.com/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.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": "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", - "https://maven-central.storage-download.googleapis.com/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar", - "https://mirror.bazel.build/repo1.maven.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": "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.10", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/jackson-annotations-2.9.10-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/jackson-annotations-2.9.10-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/jackson-annotations-2.9.10-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/jackson-annotations-2.9.10-sources.jar" - ], - "sha256": "32362fd5b64e79143215da37f883dc7b589aea188b7d88601c1102005acc7b9f", - "url": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/jackson-annotations-2.9.10-sources.jar" - }, - { - "coord": "com.fasterxml.jackson.core:jackson-annotations:2.9.10", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/jackson-annotations-2.9.10.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/jackson-annotations-2.9.10.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/jackson-annotations-2.9.10.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/jackson-annotations-2.9.10.jar" - ], - "sha256": "c876f2e85d0f108a34cdd11ccc9d8d7875697367efc75bf10a89c2c26aee994c", - "url": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/jackson-annotations-2.9.10.jar" - }, - { - "coord": "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.10", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10-sources.jar" - ], - "sha256": "68c6cea3770d2a7660e4ec0ceac41fd0e95b9e0595f50db8471b2030d76213c7", - "url": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10-sources.jar" - }, - { - "coord": "com.fasterxml.jackson.core:jackson-core:2.9.10", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10.jar" - ], - "sha256": "65fe26d7554a4409652c86ee38f2e94bc42934326d88b3c78c61f66ff2222c53", - "url": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10.jar" - }, - { - "coord": "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.10.1", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.10" - ], - "directDependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/jackson-databind-2.9.10.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/jackson-databind-2.9.10.1-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/jackson-databind-2.9.10.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/jackson-databind-2.9.10.1-sources.jar" - ], - "sha256": "722eeb286133e7e54e5612c7557571e68e9d53b4e706b0df3017b2ae3ca41a50", - "url": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/jackson-databind-2.9.10.1-sources.jar" - }, - { - "coord": "com.fasterxml.jackson.core:jackson-databind:2.9.10.1", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:2.9.10", - "com.fasterxml.jackson.core:jackson-core:2.9.10" - ], - "directDependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:2.9.10", - "com.fasterxml.jackson.core:jackson-core:2.9.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/jackson-databind-2.9.10.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/jackson-databind-2.9.10.1.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/jackson-databind-2.9.10.1.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/jackson-databind-2.9.10.1.jar" - ], - "sha256": "737c1165a617eac7275431f76615fd18447b001c0dc4f4f4db4e24b3b3cce0f9", - "url": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/jackson-databind-2.9.10.1.jar" - }, - { - "coord": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources:2.9.10", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.10.1" - ], - "directDependencies": [ - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.10.1" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/jackson-datatype-jdk8-2.9.10-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/jackson-datatype-jdk8-2.9.10-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/jackson-datatype-jdk8-2.9.10-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/jackson-datatype-jdk8-2.9.10-sources.jar" - ], - "sha256": "c5d327dd853cf88b0e6f1ee5ba763e3c288edc730f4e954c1aea20fa2d9b90c2", - "url": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/jackson-datatype-jdk8-2.9.10-sources.jar" - }, - { - "coord": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.10", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-core:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:2.9.10.1" - ], - "directDependencies": [ - "com.fasterxml.jackson.core:jackson-core:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:2.9.10.1" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/jackson-datatype-jdk8-2.9.10.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/jackson-datatype-jdk8-2.9.10.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/jackson-datatype-jdk8-2.9.10.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/jackson-datatype-jdk8-2.9.10.jar" - ], - "sha256": "b305510c0fec81480cbc3516948f9ac5b326811e35c4b6563d2ccfe330079db6", - "url": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/jackson-datatype-jdk8-2.9.10.jar" - }, - { - "coord": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources:2.9.10", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.10.1" - ], - "directDependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.10.1" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10-sources.jar" - ], - "sha256": "8912d7a6039013f8afac0971c5e8557e07152503cbb525b6eb40af53890c86bf", - "url": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10-sources.jar" - }, - { - "coord": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.10", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:2.9.10", - "com.fasterxml.jackson.core:jackson-core:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:2.9.10.1" - ], - "directDependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:2.9.10", - "com.fasterxml.jackson.core:jackson-core:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:2.9.10.1" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10.jar" - ], - "sha256": "a86f035a641f1a36aebacce8415e14568ce5b0088e3ad5b8cf3ea3c9c0c5b64e", - "url": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10.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", - "https://maven-central.storage-download.googleapis.com/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/com/google/errorprone/error_prone_annotations/2.2.0/error_prone_annotations-2.2.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/com/google/errorprone/error_prone_annotations/2.2.0/error_prone_annotations-2.2.0.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.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: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", - "https://maven-central.storage-download.googleapis.com/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar", - "https://mirror.bazel.build/repo1.maven.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:guava:jar:sources:27.1-jre", - "dependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.2.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17" - ], - "directDependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.2.0", - "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/com/google/guava/guava/27.1-jre/guava-27.1-jre-sources.jar", - "https://mirror.bazel.build/repo1.maven.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:guava:27.1-jre", - "dependencies": [ - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.2.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:1.1", - "org.checkerframework:checker-qual:2.5.2", - "org.codehaus.mojo:animal-sniffer-annotations:1.17" - ], - "directDependencies": [ - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.2.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:1.1", - "org.checkerframework:checker-qual:2.5.2", - "org.codehaus.mojo:animal-sniffer-annotations:1.17" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/com/google/guava/guava/27.1-jre/guava-27.1-jre.jar", - "https://mirror.bazel.build/repo1.maven.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: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", - "https://maven-central.storage-download.googleapis.com/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar", - "https://mirror.bazel.build/repo1.maven.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:jar:sources:4.2.2", - "dependencies": [ - "aopalliance:aopalliance:jar:sources:1.0", - "com.google.guava:guava:jar:sources:27.1-jre", - "com.google.inject:guice:jar:sources:4.2.2", - "javax.inject:javax.inject:jar:sources:1" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/com/google/inject/extensions/guice-assistedinject/4.2.2/guice-assistedinject-4.2.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.extensions:guice-assistedinject:4.2.2", - "dependencies": [ - "aopalliance:aopalliance:1.0", - "com.google.guava:guava:27.1-jre", - "com.google.inject:guice:4.2.2", - "javax.inject:javax.inject:1" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/com/google/inject/extensions/guice-assistedinject/4.2.2/guice-assistedinject-4.2.2.jar", - "https://mirror.bazel.build/repo1.maven.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:guice:jar:sources:4.2.2", - "dependencies": [ - "aopalliance:aopalliance:jar:sources:1.0", - "com.google.guava:guava:jar:sources:27.1-jre", - "javax.inject:javax.inject:jar:sources:1" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/com/google/inject/guice/4.2.2/guice-4.2.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.inject:guice:4.2.2", - "dependencies": [ - "aopalliance:aopalliance:1.0", - "com.google.guava:guava:27.1-jre", - "javax.inject:javax.inject:1" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/com/google/inject/guice/4.2.2/guice-4.2.2.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar", - "https://mirror.bazel.build/repo1.maven.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.novocode:junit-interface:jar:sources:0.11", - "dependencies": [ - "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", - "https://maven-central.storage-download.googleapis.com/maven2/com/novocode/junit-interface/0.11/junit-interface-0.11-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.novocode:junit-interface:0.11", - "dependencies": [ - "junit:junit:4.12", - "org.scala-sbt:test-interface:1.0" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/com/novocode/junit-interface/0.11/junit-interface-0.11.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/com/squareup/okio/okio/1.14.0/okio-1.14.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/com/squareup/okio/okio/1.14.0/okio-1.14.0.jar", - "https://mirror.bazel.build/repo1.maven.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.typesafe.akka:akka-actor_2.12:jar:sources:2.5.26", - "dependencies": [ - "com.typesafe:config:jar:sources:1.3.3", - "org.scala-lang.modules:scala-java8-compat_2.12:jar:sources:0.9.0", - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "directDependencies": [ - "com.typesafe:config:jar:sources:1.3.3", - "org.scala-lang.modules:scala-java8-compat_2.12:jar:sources:0.9.0", - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-actor_2.12/2.5.26/akka-actor_2.12-2.5.26-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-actor_2.12/2.5.26/akka-actor_2.12-2.5.26-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/akka/akka-actor_2.12/2.5.26/akka-actor_2.12-2.5.26-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12/2.5.26/akka-actor_2.12-2.5.26-sources.jar" - ], - "sha256": "eb7e716a34f57ad9e5089bb5458a607592cc9ad8f2762ad6034484c18de02aef", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-actor_2.12/2.5.26/akka-actor_2.12-2.5.26-sources.jar" - }, - { - "coord": "com.typesafe.akka:akka-actor_2.12:2.5.26", - "dependencies": [ - "com.typesafe:config:1.3.3", - "org.scala-lang.modules:scala-java8-compat_2.12:0.9.0", - "org.scala-lang:scala-library:2.12.10" - ], - "directDependencies": [ - "com.typesafe:config:1.3.3", - "org.scala-lang.modules:scala-java8-compat_2.12:0.9.0", - "org.scala-lang:scala-library:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-actor_2.12/2.5.26/akka-actor_2.12-2.5.26.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-actor_2.12/2.5.26/akka-actor_2.12-2.5.26.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/akka/akka-actor_2.12/2.5.26/akka-actor_2.12-2.5.26.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12/2.5.26/akka-actor_2.12-2.5.26.jar" - ], - "sha256": "51ed6589759674381ebc2e50f2b3c78a6ac73b66d91823aff36e2c31b2ade30f", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-actor_2.12/2.5.26/akka-actor_2.12-2.5.26.jar" - }, - { - "coord": "com.typesafe.akka:akka-http-core_2.12:jar:sources:10.1.11", - "dependencies": [ - "com.typesafe.akka:akka-parsing_2.12:jar:sources:10.1.11", - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "directDependencies": [ - "com.typesafe.akka:akka-parsing_2.12:jar:sources:10.1.11", - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-http-core_2.12/10.1.11/akka-http-core_2.12-10.1.11-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-http-core_2.12/10.1.11/akka-http-core_2.12-10.1.11-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/akka/akka-http-core_2.12/10.1.11/akka-http-core_2.12-10.1.11-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/akka/akka-http-core_2.12/10.1.11/akka-http-core_2.12-10.1.11-sources.jar" - ], - "sha256": "86bfc56059da447612a9daf9d025806f82a95486bbd2e1d3fb2362dde7052e11", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-http-core_2.12/10.1.11/akka-http-core_2.12-10.1.11-sources.jar" - }, - { - "coord": "com.typesafe.akka:akka-http-core_2.12:10.1.11", - "dependencies": [ - "com.typesafe.akka:akka-parsing_2.12:10.1.11", - "org.scala-lang:scala-library:2.12.10" - ], - "directDependencies": [ - "com.typesafe.akka:akka-parsing_2.12:10.1.11", - "org.scala-lang:scala-library:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-http-core_2.12/10.1.11/akka-http-core_2.12-10.1.11.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-http-core_2.12/10.1.11/akka-http-core_2.12-10.1.11.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/akka/akka-http-core_2.12/10.1.11/akka-http-core_2.12-10.1.11.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/akka/akka-http-core_2.12/10.1.11/akka-http-core_2.12-10.1.11.jar" - ], - "sha256": "2c4b31ac7c722a20feee465316b1b18460080d80d1bc6dea7b751a686711b8f5", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-http-core_2.12/10.1.11/akka-http-core_2.12-10.1.11.jar" - }, - { - "coord": "com.typesafe.akka:akka-parsing_2.12:jar:sources:10.1.11", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-parsing_2.12/10.1.11/akka-parsing_2.12-10.1.11-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-parsing_2.12/10.1.11/akka-parsing_2.12-10.1.11-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/akka/akka-parsing_2.12/10.1.11/akka-parsing_2.12-10.1.11-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/akka/akka-parsing_2.12/10.1.11/akka-parsing_2.12-10.1.11-sources.jar" - ], - "sha256": "7444e238f9e6a48b6c9e8e6ad320ff961f9c644b50a4a889eaac45d4cc25e50a", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-parsing_2.12/10.1.11/akka-parsing_2.12-10.1.11-sources.jar" - }, - { - "coord": "com.typesafe.akka:akka-parsing_2.12:10.1.11", - "dependencies": [ - "org.scala-lang:scala-library:2.12.10" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-parsing_2.12/10.1.11/akka-parsing_2.12-10.1.11.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-parsing_2.12/10.1.11/akka-parsing_2.12-10.1.11.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/akka/akka-parsing_2.12/10.1.11/akka-parsing_2.12-10.1.11.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/akka/akka-parsing_2.12/10.1.11/akka-parsing_2.12-10.1.11.jar" - ], - "sha256": "cee22a5dc468aef174c84d46dad58e65f70c47e3258244b9ea1c11c47f4597a1", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-parsing_2.12/10.1.11/akka-parsing_2.12-10.1.11.jar" - }, - { - "coord": "com.typesafe.akka:akka-protobuf_2.12:jar:sources:2.5.26", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-protobuf_2.12/2.5.26/akka-protobuf_2.12-2.5.26-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-protobuf_2.12/2.5.26/akka-protobuf_2.12-2.5.26-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/akka/akka-protobuf_2.12/2.5.26/akka-protobuf_2.12-2.5.26-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/akka/akka-protobuf_2.12/2.5.26/akka-protobuf_2.12-2.5.26-sources.jar" - ], - "sha256": "c715ff479492c2f3bf360f2817f954a8a51eab4b7a8f34d801fc2a6c68f636ee", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-protobuf_2.12/2.5.26/akka-protobuf_2.12-2.5.26-sources.jar" - }, - { - "coord": "com.typesafe.akka:akka-protobuf_2.12:2.5.26", - "dependencies": [ - "org.scala-lang:scala-library:2.12.10" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-protobuf_2.12/2.5.26/akka-protobuf_2.12-2.5.26.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-protobuf_2.12/2.5.26/akka-protobuf_2.12-2.5.26.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/akka/akka-protobuf_2.12/2.5.26/akka-protobuf_2.12-2.5.26.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/akka/akka-protobuf_2.12/2.5.26/akka-protobuf_2.12-2.5.26.jar" - ], - "sha256": "09b7e6982bad6794bbac249b2ab3330e2b324611703496415ab5da06dd8e48e2", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-protobuf_2.12/2.5.26/akka-protobuf_2.12-2.5.26.jar" - }, - { - "coord": "com.typesafe.akka:akka-slf4j_2.12:jar:sources:2.5.26", - "dependencies": [ - "com.typesafe.akka:akka-actor_2.12:jar:sources:2.5.26", - "com.typesafe:config:jar:sources:1.3.3", - "org.scala-lang.modules:scala-java8-compat_2.12:jar:sources:0.9.0", - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.slf4j:slf4j-api:jar:sources:1.7.26" - ], - "directDependencies": [ - "com.typesafe.akka:akka-actor_2.12:jar:sources:2.5.26", - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.slf4j:slf4j-api:jar:sources:1.7.26" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-slf4j_2.12/2.5.26/akka-slf4j_2.12-2.5.26-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-slf4j_2.12/2.5.26/akka-slf4j_2.12-2.5.26-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/akka/akka-slf4j_2.12/2.5.26/akka-slf4j_2.12-2.5.26-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/akka/akka-slf4j_2.12/2.5.26/akka-slf4j_2.12-2.5.26-sources.jar" - ], - "sha256": "64b647ffff17608ce44ce31f39e889b32156ab40a0e97871368617736d9cdd2b", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-slf4j_2.12/2.5.26/akka-slf4j_2.12-2.5.26-sources.jar" - }, - { - "coord": "com.typesafe.akka:akka-slf4j_2.12:2.5.26", - "dependencies": [ - "com.typesafe.akka:akka-actor_2.12:2.5.26", - "com.typesafe:config:1.3.3", - "org.scala-lang.modules:scala-java8-compat_2.12:0.9.0", - "org.scala-lang:scala-library:2.12.10", - "org.slf4j:slf4j-api:1.7.26" - ], - "directDependencies": [ - "com.typesafe.akka:akka-actor_2.12:2.5.26", - "org.scala-lang:scala-library:2.12.10", - "org.slf4j:slf4j-api:1.7.26" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-slf4j_2.12/2.5.26/akka-slf4j_2.12-2.5.26.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-slf4j_2.12/2.5.26/akka-slf4j_2.12-2.5.26.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/akka/akka-slf4j_2.12/2.5.26/akka-slf4j_2.12-2.5.26.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/akka/akka-slf4j_2.12/2.5.26/akka-slf4j_2.12-2.5.26.jar" - ], - "sha256": "35a926d2ed023dfd15655cc670438081404e40e47b30522da5db596c8bf94684", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-slf4j_2.12/2.5.26/akka-slf4j_2.12-2.5.26.jar" - }, - { - "coord": "com.typesafe.akka:akka-stream_2.12:jar:sources:2.5.26", - "dependencies": [ - "com.typesafe.akka:akka-actor_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-protobuf_2.12:jar:sources:2.5.26", - "com.typesafe:config:jar:sources:1.3.3", - "com.typesafe:ssl-config-core_2.12:jar:sources:0.3.8", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "org.scala-lang.modules:scala-java8-compat_2.12:jar:sources:0.9.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "directDependencies": [ - "com.typesafe.akka:akka-actor_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-protobuf_2.12:jar:sources:2.5.26", - "com.typesafe:ssl-config-core_2.12:jar:sources:0.3.8", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-stream_2.12/2.5.26/akka-stream_2.12-2.5.26-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-stream_2.12/2.5.26/akka-stream_2.12-2.5.26-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/akka/akka-stream_2.12/2.5.26/akka-stream_2.12-2.5.26-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/akka/akka-stream_2.12/2.5.26/akka-stream_2.12-2.5.26-sources.jar" - ], - "sha256": "7f693c2030e49ef20ef9532e3a40b5c053fb73e5a49ec4d8a690a4806b4f4f62", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-stream_2.12/2.5.26/akka-stream_2.12-2.5.26-sources.jar" - }, - { - "coord": "com.typesafe.akka:akka-stream_2.12:2.5.26", - "dependencies": [ - "com.typesafe.akka:akka-actor_2.12:2.5.26", - "com.typesafe.akka:akka-protobuf_2.12:2.5.26", - "com.typesafe:config:1.3.3", - "com.typesafe:ssl-config-core_2.12:0.3.8", - "org.reactivestreams:reactive-streams:1.0.2", - "org.scala-lang.modules:scala-java8-compat_2.12:0.9.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "org.scala-lang:scala-library:2.12.10" - ], - "directDependencies": [ - "com.typesafe.akka:akka-actor_2.12:2.5.26", - "com.typesafe.akka:akka-protobuf_2.12:2.5.26", - "com.typesafe:ssl-config-core_2.12:0.3.8", - "org.reactivestreams:reactive-streams:1.0.2", - "org.scala-lang:scala-library:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/akka/akka-stream_2.12/2.5.26/akka-stream_2.12-2.5.26.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-stream_2.12/2.5.26/akka-stream_2.12-2.5.26.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/akka/akka-stream_2.12/2.5.26/akka-stream_2.12-2.5.26.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/akka/akka-stream_2.12/2.5.26/akka-stream_2.12-2.5.26.jar" - ], - "sha256": "9d1d3852215d155ac14869cbee4779e9642784c7a9378d0534e6a1e1efd577bd", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/akka/akka-stream_2.12/2.5.26/akka-stream_2.12-2.5.26.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", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/config/1.3.3/config-1.3.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.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: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", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/config/1.3.3/config-1.3.3.jar", - "https://mirror.bazel.build/repo1.maven.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.netty:netty-reactive-streams-http:jar:sources:2.0.3", - "dependencies": [ - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.3", - "io.netty:netty-buffer:jar:sources:4.1.43.Final", - "io.netty:netty-codec-http:jar:sources:4.1.34.Final", - "io.netty:netty-codec:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.43.Final", - "io.netty:netty-handler:jar:sources:4.1.34.Final", - "io.netty:netty-transport:jar:sources:4.1.43.Final", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/netty/netty-reactive-streams-http/2.0.3/netty-reactive-streams-http-2.0.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-http:2.0.3", - "dependencies": [ - "com.typesafe.netty:netty-reactive-streams:2.0.3", - "io.netty:netty-buffer:4.1.43.Final", - "io.netty:netty-codec-http:4.1.34.Final", - "io.netty:netty-codec:4.1.34.Final", - "io.netty:netty-common:4.1.43.Final", - "io.netty:netty-handler:4.1.34.Final", - "io.netty:netty-transport:4.1.43.Final", - "org.reactivestreams:reactive-streams:1.0.2" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/netty/netty-reactive-streams-http/2.0.3/netty-reactive-streams-http-2.0.3.jar", - "https://mirror.bazel.build/repo1.maven.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:jar:sources:2.0.3", - "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.43.Final", - "io.netty:netty-codec:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.43.Final", - "io.netty:netty-handler:jar:sources:4.1.34.Final", - "io.netty:netty-transport:jar:sources:4.1.43.Final", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/netty/netty-reactive-streams/2.0.3/netty-reactive-streams-2.0.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.netty:netty-reactive-streams:2.0.3", - "dependencies": [ - "io.netty:netty-buffer:4.1.43.Final", - "io.netty:netty-codec:4.1.34.Final", - "io.netty:netty-common:4.1.43.Final", - "io.netty:netty-handler:4.1.34.Final", - "io.netty:netty-transport:4.1.43.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", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/netty/netty-reactive-streams/2.0.3/netty-reactive-streams-2.0.3.jar", - "https://mirror.bazel.build/repo1.maven.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.play:build-link:jar:sources:2.7.4", - "dependencies": [ - "com.typesafe.play:play-exceptions:jar:sources:2.7.4" - ], - "directDependencies": [ - "com.typesafe.play:play-exceptions:jar:sources:2.7.4" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/build-link/2.7.4/build-link-2.7.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/build-link/2.7.4/build-link-2.7.4-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/build-link/2.7.4/build-link-2.7.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/build-link/2.7.4/build-link-2.7.4-sources.jar" - ], - "sha256": "28e05424f103718d9e27543b0013059f692b05f1d9533758b70cf8eb6978946f", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/build-link/2.7.4/build-link-2.7.4-sources.jar" - }, - { - "coord": "com.typesafe.play:build-link:2.7.4", - "dependencies": [ - "com.typesafe.play:play-exceptions:2.7.4" - ], - "directDependencies": [ - "com.typesafe.play:play-exceptions:2.7.4" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/build-link/2.7.4/build-link-2.7.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/build-link/2.7.4/build-link-2.7.4.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/build-link/2.7.4/build-link-2.7.4.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/build-link/2.7.4/build-link-2.7.4.jar" - ], - "sha256": "8cf6bd807ac797d264f903d0e5fb5f10b95ece467b5050893ec068d2fb17d8fd", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/build-link/2.7.4/build-link-2.7.4.jar" - }, - { - "coord": "com.typesafe.play:play-akka-http-server_2.12:jar:sources:2.7.4", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.10.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources:2.9.10", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources:2.9.10", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "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.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "com.typesafe.akka:akka-actor_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-http-core_2.12:jar:sources:10.1.11", - "com.typesafe.akka:akka-parsing_2.12:jar:sources:10.1.11", - "com.typesafe.akka:akka-protobuf_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-slf4j_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-stream_2.12:jar:sources:2.5.26", - "com.typesafe.play:build-link:jar:sources:2.7.4", - "com.typesafe.play:play-exceptions:jar:sources:2.7.4", - "com.typesafe.play:play-functional_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-json_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-server_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-streams_2.12:jar:sources:2.7.4", - "com.typesafe.play:play_2.12:jar:sources:2.7.4", - "com.typesafe.play:twirl-api_2.12:jar:sources:1.4.2", - "com.typesafe:config:jar:sources:1.3.3", - "com.typesafe:ssl-config-core_2.12:jar:sources:0.3.8", - "io.jsonwebtoken:jjwt:jar:sources:0.9.1", - "javax.activation:javax.activation-api:jar:sources:1.2.0", - "javax.inject:javax.inject:jar:sources:1", - "javax.transaction:jta:jar:sources:1.1", - "javax.xml.bind:jaxb-api:jar:sources:2.3.1", - "joda-time:joda-time:jar:sources:2.10.1", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "org.scala-lang.modules:scala-java8-compat_2.12:jar:sources:0.9.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.scala-lang:scala-reflect:jar:sources:2.12.10", - "org.slf4j:jcl-over-slf4j:jar:sources:1.7.26", - "org.slf4j:jul-to-slf4j:jar:sources:1.7.26", - "org.slf4j:slf4j-api:jar:sources:1.7.26" - ], - "directDependencies": [ - "com.typesafe.akka:akka-http-core_2.12:jar:sources:10.1.11", - "com.typesafe.play:play-server_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-streams_2.12:jar:sources:2.7.4", - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-akka-http-server_2.12/2.7.4/play-akka-http-server_2.12-2.7.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-akka-http-server_2.12/2.7.4/play-akka-http-server_2.12-2.7.4-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/play-akka-http-server_2.12/2.7.4/play-akka-http-server_2.12-2.7.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/play-akka-http-server_2.12/2.7.4/play-akka-http-server_2.12-2.7.4-sources.jar" - ], - "sha256": "b8d263280d625afc111afac23ecf8371c4997794001ba2e12ab3791ee58dbfd3", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-akka-http-server_2.12/2.7.4/play-akka-http-server_2.12-2.7.4-sources.jar" - }, - { - "coord": "com.typesafe.play:play-akka-http-server_2.12:2.7.4", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:2.9.10", - "com.fasterxml.jackson.core:jackson-core:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:2.9.10.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.10", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.10", - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.2.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.guava:guava:27.1-jre", - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:1.1", - "com.typesafe.akka:akka-actor_2.12:2.5.26", - "com.typesafe.akka:akka-http-core_2.12:10.1.11", - "com.typesafe.akka:akka-parsing_2.12:10.1.11", - "com.typesafe.akka:akka-protobuf_2.12:2.5.26", - "com.typesafe.akka:akka-slf4j_2.12:2.5.26", - "com.typesafe.akka:akka-stream_2.12:2.5.26", - "com.typesafe.play:build-link:2.7.4", - "com.typesafe.play:play-exceptions:2.7.4", - "com.typesafe.play:play-functional_2.12:2.7.4", - "com.typesafe.play:play-json_2.12:2.7.4", - "com.typesafe.play:play-server_2.12:2.7.4", - "com.typesafe.play:play-streams_2.12:2.7.4", - "com.typesafe.play:play_2.12:2.7.4", - "com.typesafe.play:twirl-api_2.12:1.4.2", - "com.typesafe:config:1.3.3", - "com.typesafe:ssl-config-core_2.12:0.3.8", - "io.jsonwebtoken:jjwt:0.9.1", - "javax.activation:javax.activation-api:1.2.0", - "javax.inject:javax.inject:1", - "javax.transaction:jta:1.1", - "javax.xml.bind:jaxb-api:2.3.1", - "joda-time:joda-time:2.10.1", - "org.checkerframework:checker-qual:2.5.2", - "org.codehaus.mojo:animal-sniffer-annotations:1.17", - "org.reactivestreams:reactive-streams:1.0.2", - "org.scala-lang.modules:scala-java8-compat_2.12:0.9.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "org.scala-lang:scala-library:2.12.10", - "org.scala-lang:scala-reflect:2.12.10", - "org.slf4j:jcl-over-slf4j:1.7.26", - "org.slf4j:jul-to-slf4j:1.7.26", - "org.slf4j:slf4j-api:1.7.26" - ], - "directDependencies": [ - "com.typesafe.akka:akka-http-core_2.12:10.1.11", - "com.typesafe.play:play-server_2.12:2.7.4", - "com.typesafe.play:play-streams_2.12:2.7.4", - "org.scala-lang:scala-library:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-akka-http-server_2.12/2.7.4/play-akka-http-server_2.12-2.7.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-akka-http-server_2.12/2.7.4/play-akka-http-server_2.12-2.7.4.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/play-akka-http-server_2.12/2.7.4/play-akka-http-server_2.12-2.7.4.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/play-akka-http-server_2.12/2.7.4/play-akka-http-server_2.12-2.7.4.jar" - ], - "sha256": "f84391c2b9338153f55129b44ecc8c3dd028238abd1725b31dccd42b194b3398", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-akka-http-server_2.12/2.7.4/play-akka-http-server_2.12-2.7.4.jar" - }, - { - "coord": "com.typesafe.play:play-exceptions:jar:sources:2.7.4", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-exceptions/2.7.4/play-exceptions-2.7.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-exceptions/2.7.4/play-exceptions-2.7.4-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/play-exceptions/2.7.4/play-exceptions-2.7.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/play-exceptions/2.7.4/play-exceptions-2.7.4-sources.jar" - ], - "sha256": "5c78955a2d8c6821cd673e310c99d5decdc51f78b28692a46978659039406498", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-exceptions/2.7.4/play-exceptions-2.7.4-sources.jar" - }, - { - "coord": "com.typesafe.play:play-exceptions:2.7.4", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-exceptions/2.7.4/play-exceptions-2.7.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-exceptions/2.7.4/play-exceptions-2.7.4.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/play-exceptions/2.7.4/play-exceptions-2.7.4.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/play-exceptions/2.7.4/play-exceptions-2.7.4.jar" - ], - "sha256": "d3da61308e6a79d56910f665261ac4dca985ad5941606bb23c3a4822605b2158", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-exceptions/2.7.4/play-exceptions-2.7.4.jar" - }, - { - "coord": "com.typesafe.play:play-functional_2.12:jar:sources:2.7.4", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-functional_2.12/2.7.4/play-functional_2.12-2.7.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-functional_2.12/2.7.4/play-functional_2.12-2.7.4-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/play-functional_2.12/2.7.4/play-functional_2.12-2.7.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/play-functional_2.12/2.7.4/play-functional_2.12-2.7.4-sources.jar" - ], - "sha256": "0a8399e5b0671d2d3fd6c54a16e6e371a866ac8810db79ef4b45491da3bacdb0", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-functional_2.12/2.7.4/play-functional_2.12-2.7.4-sources.jar" - }, - { - "coord": "com.typesafe.play:play-functional_2.12:2.7.4", - "dependencies": [ - "org.scala-lang:scala-library:2.12.10" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-functional_2.12/2.7.4/play-functional_2.12-2.7.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-functional_2.12/2.7.4/play-functional_2.12-2.7.4.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/play-functional_2.12/2.7.4/play-functional_2.12-2.7.4.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/play-functional_2.12/2.7.4/play-functional_2.12-2.7.4.jar" - ], - "sha256": "c26915573315fcb1af7ff53a15ba6ac1e35eb15e82d09e74b53e66e0f305dc07", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-functional_2.12/2.7.4/play-functional_2.12-2.7.4.jar" - }, - { - "coord": "com.typesafe.play:play-guice_2.12:jar:sources:2.7.4", - "dependencies": [ - "aopalliance:aopalliance:jar:sources:1.0", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.10.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources:2.9.10", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources:2.9.10", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "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.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.inject.extensions:guice-assistedinject:jar:sources:4.2.2", - "com.google.inject:guice:jar:sources:4.2.2", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "com.typesafe.akka:akka-actor_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-protobuf_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-slf4j_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-stream_2.12:jar:sources:2.5.26", - "com.typesafe.play:build-link:jar:sources:2.7.4", - "com.typesafe.play:play-exceptions:jar:sources:2.7.4", - "com.typesafe.play:play-functional_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-json_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-streams_2.12:jar:sources:2.7.4", - "com.typesafe.play:play_2.12:jar:sources:2.7.4", - "com.typesafe.play:twirl-api_2.12:jar:sources:1.4.2", - "com.typesafe:config:jar:sources:1.3.3", - "com.typesafe:ssl-config-core_2.12:jar:sources:0.3.8", - "io.jsonwebtoken:jjwt:jar:sources:0.9.1", - "javax.activation:javax.activation-api:jar:sources:1.2.0", - "javax.inject:javax.inject:jar:sources:1", - "javax.transaction:jta:jar:sources:1.1", - "javax.xml.bind:jaxb-api:jar:sources:2.3.1", - "joda-time:joda-time:jar:sources:2.10.1", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "org.scala-lang.modules:scala-java8-compat_2.12:jar:sources:0.9.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.scala-lang:scala-reflect:jar:sources:2.12.10", - "org.slf4j:jcl-over-slf4j:jar:sources:1.7.26", - "org.slf4j:jul-to-slf4j:jar:sources:1.7.26", - "org.slf4j:slf4j-api:jar:sources:1.7.26" - ], - "directDependencies": [ - "com.google.inject.extensions:guice-assistedinject:jar:sources:4.2.2", - "com.google.inject:guice:jar:sources:4.2.2", - "com.typesafe.play:play_2.12:jar:sources:2.7.4", - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-guice_2.12/2.7.4/play-guice_2.12-2.7.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-guice_2.12/2.7.4/play-guice_2.12-2.7.4-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/play-guice_2.12/2.7.4/play-guice_2.12-2.7.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/play-guice_2.12/2.7.4/play-guice_2.12-2.7.4-sources.jar" - ], - "sha256": "4aeddec0e126b2a8c6f28aed7c06f79a30c30862e74950ddc9a02609877644cd", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-guice_2.12/2.7.4/play-guice_2.12-2.7.4-sources.jar" - }, - { - "coord": "com.typesafe.play:play-guice_2.12:2.7.4", - "dependencies": [ - "aopalliance:aopalliance:1.0", - "com.fasterxml.jackson.core:jackson-annotations:2.9.10", - "com.fasterxml.jackson.core:jackson-core:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:2.9.10.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.10", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.10", - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.2.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.guava:guava:27.1-jre", - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.inject.extensions:guice-assistedinject:4.2.2", - "com.google.inject:guice:4.2.2", - "com.google.j2objc:j2objc-annotations:1.1", - "com.typesafe.akka:akka-actor_2.12:2.5.26", - "com.typesafe.akka:akka-protobuf_2.12:2.5.26", - "com.typesafe.akka:akka-slf4j_2.12:2.5.26", - "com.typesafe.akka:akka-stream_2.12:2.5.26", - "com.typesafe.play:build-link:2.7.4", - "com.typesafe.play:play-exceptions:2.7.4", - "com.typesafe.play:play-functional_2.12:2.7.4", - "com.typesafe.play:play-json_2.12:2.7.4", - "com.typesafe.play:play-streams_2.12:2.7.4", - "com.typesafe.play:play_2.12:2.7.4", - "com.typesafe.play:twirl-api_2.12:1.4.2", - "com.typesafe:config:1.3.3", - "com.typesafe:ssl-config-core_2.12:0.3.8", - "io.jsonwebtoken:jjwt:0.9.1", - "javax.activation:javax.activation-api:1.2.0", - "javax.inject:javax.inject:1", - "javax.transaction:jta:1.1", - "javax.xml.bind:jaxb-api:2.3.1", - "joda-time:joda-time:2.10.1", - "org.checkerframework:checker-qual:2.5.2", - "org.codehaus.mojo:animal-sniffer-annotations:1.17", - "org.reactivestreams:reactive-streams:1.0.2", - "org.scala-lang.modules:scala-java8-compat_2.12:0.9.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "org.scala-lang:scala-library:2.12.10", - "org.scala-lang:scala-reflect:2.12.10", - "org.slf4j:jcl-over-slf4j:1.7.26", - "org.slf4j:jul-to-slf4j:1.7.26", - "org.slf4j:slf4j-api:1.7.26" - ], - "directDependencies": [ - "com.google.inject.extensions:guice-assistedinject:4.2.2", - "com.google.inject:guice:4.2.2", - "com.typesafe.play:play_2.12:2.7.4", - "org.scala-lang:scala-library:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-guice_2.12/2.7.4/play-guice_2.12-2.7.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-guice_2.12/2.7.4/play-guice_2.12-2.7.4.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/play-guice_2.12/2.7.4/play-guice_2.12-2.7.4.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/play-guice_2.12/2.7.4/play-guice_2.12-2.7.4.jar" - ], - "sha256": "77c0161bff8dd6cbaae95cfbaf90acf9b7609c5bb37bcf4205ffd1b0b9cfe131", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-guice_2.12/2.7.4/play-guice_2.12-2.7.4.jar" - }, - { - "coord": "com.typesafe.play:play-json_2.12:jar:sources:2.7.4", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.10.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources:2.9.10", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources:2.9.10", - "com.typesafe.play:play-functional_2.12:jar:sources:2.7.4", - "joda-time:joda-time:jar:sources:2.10.1", - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.scala-lang:scala-reflect:jar:sources:2.12.10" - ], - "directDependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.10.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources:2.9.10", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources:2.9.10", - "com.typesafe.play:play-functional_2.12:jar:sources:2.7.4", - "joda-time:joda-time:jar:sources:2.10.1", - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.scala-lang:scala-reflect:jar:sources:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-json_2.12/2.7.4/play-json_2.12-2.7.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-json_2.12/2.7.4/play-json_2.12-2.7.4-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/play-json_2.12/2.7.4/play-json_2.12-2.7.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/play-json_2.12/2.7.4/play-json_2.12-2.7.4-sources.jar" - ], - "sha256": "b50b28d8687ad0690b1a72d59f846bdb16955d0a58d03a6bded43b25e3d9ed97", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-json_2.12/2.7.4/play-json_2.12-2.7.4-sources.jar" - }, - { - "coord": "com.typesafe.play:play-json_2.12:2.7.4", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:2.9.10", - "com.fasterxml.jackson.core:jackson-core:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:2.9.10.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.10", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.10", - "com.typesafe.play:play-functional_2.12:2.7.4", - "joda-time:joda-time:2.10.1", - "org.scala-lang:scala-library:2.12.10", - "org.scala-lang:scala-reflect:2.12.10" - ], - "directDependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:2.9.10", - "com.fasterxml.jackson.core:jackson-core:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:2.9.10.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.10", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.10", - "com.typesafe.play:play-functional_2.12:2.7.4", - "joda-time:joda-time:2.10.1", - "org.scala-lang:scala-library:2.12.10", - "org.scala-lang:scala-reflect:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-json_2.12/2.7.4/play-json_2.12-2.7.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-json_2.12/2.7.4/play-json_2.12-2.7.4.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/play-json_2.12/2.7.4/play-json_2.12-2.7.4.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/play-json_2.12/2.7.4/play-json_2.12-2.7.4.jar" - ], - "sha256": "32bf61fd9d1b1a6fa8b9d39c4409a73844112f56e7db5c29c174ab79e7a3e880", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-json_2.12/2.7.4/play-json_2.12-2.7.4.jar" - }, - { - "coord": "com.typesafe.play:play-netty-server_2.12:jar:sources:2.7.4", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.10.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources:2.9.10", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources:2.9.10", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "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.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "com.typesafe.akka:akka-actor_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-protobuf_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-slf4j_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-stream_2.12:jar:sources:2.5.26", - "com.typesafe.netty:netty-reactive-streams-http:jar:sources:2.0.3", - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.3", - "com.typesafe.play:build-link:jar:sources:2.7.4", - "com.typesafe.play:play-exceptions:jar:sources:2.7.4", - "com.typesafe.play:play-functional_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-json_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-server_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-streams_2.12:jar:sources:2.7.4", - "com.typesafe.play:play_2.12:jar:sources:2.7.4", - "com.typesafe.play:twirl-api_2.12:jar:sources:1.4.2", - "com.typesafe:config:jar:sources:1.3.3", - "com.typesafe:ssl-config-core_2.12:jar:sources:0.3.8", - "io.jsonwebtoken:jjwt:jar:sources:0.9.1", - "io.netty:netty-buffer:jar:sources:4.1.43.Final", - "io.netty:netty-codec-http:jar:sources:4.1.34.Final", - "io.netty:netty-codec:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.43.Final", - "io.netty:netty-handler:jar:sources:4.1.34.Final", - "io.netty:netty-resolver:jar:sources:4.1.43.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.43.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.43.Final", - "io.netty:netty-transport:jar:sources:4.1.43.Final", - "javax.activation:javax.activation-api:jar:sources:1.2.0", - "javax.inject:javax.inject:jar:sources:1", - "javax.transaction:jta:jar:sources:1.1", - "javax.xml.bind:jaxb-api:jar:sources:2.3.1", - "joda-time:joda-time:jar:sources:2.10.1", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "org.scala-lang.modules:scala-java8-compat_2.12:jar:sources:0.9.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.scala-lang:scala-reflect:jar:sources:2.12.10", - "org.slf4j:jcl-over-slf4j:jar:sources:1.7.26", - "org.slf4j:jul-to-slf4j:jar:sources:1.7.26", - "org.slf4j:slf4j-api:jar:sources:1.7.26" - ], - "directDependencies": [ - "com.typesafe.netty:netty-reactive-streams-http:jar:sources:2.0.3", - "com.typesafe.play:play-server_2.12:jar:sources:2.7.4", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.43.Final", - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-netty-server_2.12/2.7.4/play-netty-server_2.12-2.7.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-netty-server_2.12/2.7.4/play-netty-server_2.12-2.7.4-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/play-netty-server_2.12/2.7.4/play-netty-server_2.12-2.7.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/play-netty-server_2.12/2.7.4/play-netty-server_2.12-2.7.4-sources.jar" - ], - "sha256": "fa8e4ae3bbecd043b8efc5218ca05faa9f50b10104ba650ae41ef2a057bed9d2", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-netty-server_2.12/2.7.4/play-netty-server_2.12-2.7.4-sources.jar" - }, - { - "coord": "com.typesafe.play:play-netty-server_2.12:2.7.4", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:2.9.10", - "com.fasterxml.jackson.core:jackson-core:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:2.9.10.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.10", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.10", - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.2.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.guava:guava:27.1-jre", - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:1.1", - "com.typesafe.akka:akka-actor_2.12:2.5.26", - "com.typesafe.akka:akka-protobuf_2.12:2.5.26", - "com.typesafe.akka:akka-slf4j_2.12:2.5.26", - "com.typesafe.akka:akka-stream_2.12:2.5.26", - "com.typesafe.netty:netty-reactive-streams-http:2.0.3", - "com.typesafe.netty:netty-reactive-streams:2.0.3", - "com.typesafe.play:build-link:2.7.4", - "com.typesafe.play:play-exceptions:2.7.4", - "com.typesafe.play:play-functional_2.12:2.7.4", - "com.typesafe.play:play-json_2.12:2.7.4", - "com.typesafe.play:play-server_2.12:2.7.4", - "com.typesafe.play:play-streams_2.12:2.7.4", - "com.typesafe.play:play_2.12:2.7.4", - "com.typesafe.play:twirl-api_2.12:1.4.2", - "com.typesafe:config:1.3.3", - "com.typesafe:ssl-config-core_2.12:0.3.8", - "io.jsonwebtoken:jjwt:0.9.1", - "io.netty:netty-buffer:4.1.43.Final", - "io.netty:netty-codec-http:4.1.34.Final", - "io.netty:netty-codec:4.1.34.Final", - "io.netty:netty-common:4.1.43.Final", - "io.netty:netty-handler:4.1.34.Final", - "io.netty:netty-resolver:4.1.43.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.43.Final", - "io.netty:netty-transport-native-unix-common:4.1.43.Final", - "io.netty:netty-transport:4.1.43.Final", - "javax.activation:javax.activation-api:1.2.0", - "javax.inject:javax.inject:1", - "javax.transaction:jta:1.1", - "javax.xml.bind:jaxb-api:2.3.1", - "joda-time:joda-time:2.10.1", - "org.checkerframework:checker-qual:2.5.2", - "org.codehaus.mojo:animal-sniffer-annotations:1.17", - "org.reactivestreams:reactive-streams:1.0.2", - "org.scala-lang.modules:scala-java8-compat_2.12:0.9.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "org.scala-lang:scala-library:2.12.10", - "org.scala-lang:scala-reflect:2.12.10", - "org.slf4j:jcl-over-slf4j:1.7.26", - "org.slf4j:jul-to-slf4j:1.7.26", - "org.slf4j:slf4j-api:1.7.26" - ], - "directDependencies": [ - "com.typesafe.netty:netty-reactive-streams-http:2.0.3", - "com.typesafe.play:play-server_2.12:2.7.4", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.43.Final", - "org.scala-lang:scala-library:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-netty-server_2.12/2.7.4/play-netty-server_2.12-2.7.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-netty-server_2.12/2.7.4/play-netty-server_2.12-2.7.4.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/play-netty-server_2.12/2.7.4/play-netty-server_2.12-2.7.4.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/play-netty-server_2.12/2.7.4/play-netty-server_2.12-2.7.4.jar" - ], - "sha256": "7f5e850c5f60f3b6eb04b14f4d5fa8fd06ac96d81bd3f9160ba84b52895e3d9d", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-netty-server_2.12/2.7.4/play-netty-server_2.12-2.7.4.jar" - }, - { - "coord": "com.typesafe.play:play-server_2.12:jar:sources:2.7.4", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.10.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources:2.9.10", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources:2.9.10", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "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.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "com.typesafe.akka:akka-actor_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-protobuf_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-slf4j_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-stream_2.12:jar:sources:2.5.26", - "com.typesafe.play:build-link:jar:sources:2.7.4", - "com.typesafe.play:play-exceptions:jar:sources:2.7.4", - "com.typesafe.play:play-functional_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-json_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-streams_2.12:jar:sources:2.7.4", - "com.typesafe.play:play_2.12:jar:sources:2.7.4", - "com.typesafe.play:twirl-api_2.12:jar:sources:1.4.2", - "com.typesafe:config:jar:sources:1.3.3", - "com.typesafe:ssl-config-core_2.12:jar:sources:0.3.8", - "io.jsonwebtoken:jjwt:jar:sources:0.9.1", - "javax.activation:javax.activation-api:jar:sources:1.2.0", - "javax.inject:javax.inject:jar:sources:1", - "javax.transaction:jta:jar:sources:1.1", - "javax.xml.bind:jaxb-api:jar:sources:2.3.1", - "joda-time:joda-time:jar:sources:2.10.1", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "org.scala-lang.modules:scala-java8-compat_2.12:jar:sources:0.9.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.scala-lang:scala-reflect:jar:sources:2.12.10", - "org.slf4j:jcl-over-slf4j:jar:sources:1.7.26", - "org.slf4j:jul-to-slf4j:jar:sources:1.7.26", - "org.slf4j:slf4j-api:jar:sources:1.7.26" - ], - "directDependencies": [ - "com.typesafe.play:play_2.12:jar:sources:2.7.4", - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-server_2.12/2.7.4/play-server_2.12-2.7.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-server_2.12/2.7.4/play-server_2.12-2.7.4-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/play-server_2.12/2.7.4/play-server_2.12-2.7.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/play-server_2.12/2.7.4/play-server_2.12-2.7.4-sources.jar" - ], - "sha256": "74e0daf3396094880a3b5d69a8706b65183b0f4e229d2d9ec281d149b4128bd3", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-server_2.12/2.7.4/play-server_2.12-2.7.4-sources.jar" - }, - { - "coord": "com.typesafe.play:play-server_2.12:2.7.4", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:2.9.10", - "com.fasterxml.jackson.core:jackson-core:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:2.9.10.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.10", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.10", - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.2.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.guava:guava:27.1-jre", - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:1.1", - "com.typesafe.akka:akka-actor_2.12:2.5.26", - "com.typesafe.akka:akka-protobuf_2.12:2.5.26", - "com.typesafe.akka:akka-slf4j_2.12:2.5.26", - "com.typesafe.akka:akka-stream_2.12:2.5.26", - "com.typesafe.play:build-link:2.7.4", - "com.typesafe.play:play-exceptions:2.7.4", - "com.typesafe.play:play-functional_2.12:2.7.4", - "com.typesafe.play:play-json_2.12:2.7.4", - "com.typesafe.play:play-streams_2.12:2.7.4", - "com.typesafe.play:play_2.12:2.7.4", - "com.typesafe.play:twirl-api_2.12:1.4.2", - "com.typesafe:config:1.3.3", - "com.typesafe:ssl-config-core_2.12:0.3.8", - "io.jsonwebtoken:jjwt:0.9.1", - "javax.activation:javax.activation-api:1.2.0", - "javax.inject:javax.inject:1", - "javax.transaction:jta:1.1", - "javax.xml.bind:jaxb-api:2.3.1", - "joda-time:joda-time:2.10.1", - "org.checkerframework:checker-qual:2.5.2", - "org.codehaus.mojo:animal-sniffer-annotations:1.17", - "org.reactivestreams:reactive-streams:1.0.2", - "org.scala-lang.modules:scala-java8-compat_2.12:0.9.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "org.scala-lang:scala-library:2.12.10", - "org.scala-lang:scala-reflect:2.12.10", - "org.slf4j:jcl-over-slf4j:1.7.26", - "org.slf4j:jul-to-slf4j:1.7.26", - "org.slf4j:slf4j-api:1.7.26" - ], - "directDependencies": [ - "com.typesafe.play:play_2.12:2.7.4", - "org.scala-lang:scala-library:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-server_2.12/2.7.4/play-server_2.12-2.7.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-server_2.12/2.7.4/play-server_2.12-2.7.4.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/play-server_2.12/2.7.4/play-server_2.12-2.7.4.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/play-server_2.12/2.7.4/play-server_2.12-2.7.4.jar" - ], - "sha256": "57daa60a91aa8829e93fe3d3ba3886d55df69e96613e8addf14e69c2c62f96e2", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-server_2.12/2.7.4/play-server_2.12-2.7.4.jar" - }, - { - "coord": "com.typesafe.play:play-specs2_2.12:jar:sources:2.7.4", - "dependencies": [ - "aopalliance:aopalliance:jar:sources:1.0", - "ch.qos.logback:logback-classic:jar:sources:1.2.3", - "ch.qos.logback:logback-core:jar:sources:1.2.3", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.10.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources:2.9.10", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources:2.9.10", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "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.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.inject.extensions:guice-assistedinject:jar:sources:4.2.2", - "com.google.inject:guice:jar:sources:4.2.2", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "com.novocode:junit-interface:jar:sources:0.11", - "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", - "com.squareup.okio:okio:jar:sources:1.14.0", - "com.typesafe.akka:akka-actor_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-http-core_2.12:jar:sources:10.1.11", - "com.typesafe.akka:akka-parsing_2.12:jar:sources:10.1.11", - "com.typesafe.akka:akka-protobuf_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-slf4j_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-stream_2.12:jar:sources:2.5.26", - "com.typesafe.netty:netty-reactive-streams-http:jar:sources:2.0.3", - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.3", - "com.typesafe.play:build-link:jar:sources:2.7.4", - "com.typesafe.play:play-akka-http-server_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-exceptions:jar:sources:2.7.4", - "com.typesafe.play:play-functional_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-guice_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-json_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-netty-server_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-server_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-streams_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-test_2.12:jar:sources:2.7.4", - "com.typesafe.play:play_2.12:jar:sources:2.7.4", - "com.typesafe.play:twirl-api_2.12:jar:sources:1.4.2", - "com.typesafe:config:jar:sources:1.3.3", - "com.typesafe:ssl-config-core_2.12:jar:sources:0.3.8", - "commons-codec:commons-codec:jar:sources:1.10", - "commons-io:commons-io:jar:sources:2.6", - "commons-logging:commons-logging:jar:sources:1.2", - "commons-net:commons-net:jar:sources:3.6", - "io.jsonwebtoken:jjwt:jar:sources:0.9.1", - "io.netty:netty-buffer:jar:sources:4.1.43.Final", - "io.netty:netty-codec-http:jar:sources:4.1.34.Final", - "io.netty:netty-codec:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.43.Final", - "io.netty:netty-handler:jar:sources:4.1.34.Final", - "io.netty:netty-resolver:jar:sources:4.1.43.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.43.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.43.Final", - "io.netty:netty-transport:jar:sources:4.1.43.Final", - "javax.activation:javax.activation-api:jar:sources:1.2.0", - "javax.inject:javax.inject:jar:sources:1", - "javax.transaction:jta:jar:sources:1.1", - "javax.xml.bind:jaxb-api:jar:sources:2.3.1", - "joda-time:joda-time:jar:sources:2.10.1", - "junit:junit:jar:sources:4.12", - "net.bytebuddy:byte-buddy-agent:jar:sources:1.9.3", - "net.bytebuddy:byte-buddy:jar:sources:1.9.3", - "net.sourceforge.htmlunit:htmlunit-core-js:jar:sources:2.33", - "net.sourceforge.htmlunit:htmlunit-cssparser:jar:sources:1.2.0", - "net.sourceforge.htmlunit:htmlunit:jar:sources:2.33", - "net.sourceforge.htmlunit:neko-htmlunit:jar:sources:2.33", - "org.apache.commons:commons-exec:jar:sources:1.3", - "org.apache.commons:commons-lang3:jar:sources:3.8", - "org.apache.commons:commons-text:jar:sources:1.4", - "org.apache.httpcomponents:httpclient:jar:sources:4.5.6", - "org.apache.httpcomponents:httpcore:jar:sources:4.4.10", - "org.apache.httpcomponents:httpmime:jar:sources:4.5.6", - "org.atteo.classindex:classindex:jar:sources:3.4", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17", - "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-client:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-http:jar:sources:9.4.12.v20180830", - "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:jetty-xml:jar:sources:9.4.12.v20180830", - "org.fluentlenium:fluentlenium-core:jar:sources:3.7.1", - "org.hamcrest:hamcrest-core:jar:sources:1.3", - "org.mockito:mockito-core:jar:sources:2.23.4", - "org.objenesis:objenesis:jar:sources:2.6", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "org.scala-lang.modules:scala-java8-compat_2.12:jar:sources:0.9.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.scala-lang:scala-reflect:jar:sources:2.12.10", - "org.scala-sbt:test-interface:jar:sources:1.0", - "org.seleniumhq.selenium:htmlunit-driver:jar:sources:2.33.3", - "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", - "org.seleniumhq.selenium:selenium-firefox-driver:jar:sources:3.141.59", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", - "org.seleniumhq.selenium:selenium-support:jar:sources:3.141.59", - "org.slf4j:jcl-over-slf4j:jar:sources:1.7.26", - "org.slf4j:jul-to-slf4j:jar:sources:1.7.26", - "org.slf4j:slf4j-api:jar:sources:1.7.26", - "org.specs2:specs2-core_2.12:jar:sources:4.7.0", - "org.specs2:specs2-junit_2.12:jar:sources:4.5.1", - "org.specs2:specs2-mock_2.12:jar:sources:4.5.1", - "xalan:serializer:jar:sources:2.7.2", - "xalan:xalan:jar:sources:2.7.2", - "xerces:xercesImpl:jar:sources:2.12.0", - "xml-apis:xml-apis:jar:sources:1.4.01" - ], - "directDependencies": [ - "com.typesafe.play:play-test_2.12:jar:sources:2.7.4", - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.specs2:specs2-core_2.12:jar:sources:4.7.0", - "org.specs2:specs2-junit_2.12:jar:sources:4.5.1", - "org.specs2:specs2-mock_2.12:jar:sources:4.5.1" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-specs2_2.12/2.7.4/play-specs2_2.12-2.7.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-specs2_2.12/2.7.4/play-specs2_2.12-2.7.4-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/play-specs2_2.12/2.7.4/play-specs2_2.12-2.7.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/play-specs2_2.12/2.7.4/play-specs2_2.12-2.7.4-sources.jar" - ], - "sha256": "33f76812e741dc0f3d7c81586470ac231e706b7c9e7555343b5246861589d515", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-specs2_2.12/2.7.4/play-specs2_2.12-2.7.4-sources.jar" - }, - { - "coord": "com.typesafe.play:play-specs2_2.12:2.7.4", - "dependencies": [ - "aopalliance:aopalliance:1.0", - "ch.qos.logback:logback-classic:1.2.3", - "ch.qos.logback:logback-core:1.2.3", - "com.fasterxml.jackson.core:jackson-annotations:2.9.10", - "com.fasterxml.jackson.core:jackson-core:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:2.9.10.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.10", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.10", - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.2.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.guava:guava:27.1-jre", - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.inject.extensions:guice-assistedinject:4.2.2", - "com.google.inject:guice:4.2.2", - "com.google.j2objc:j2objc-annotations:1.1", - "com.novocode:junit-interface:0.11", - "com.squareup.okhttp3:okhttp:3.11.0", - "com.squareup.okio:okio:1.14.0", - "com.typesafe.akka:akka-actor_2.12:2.5.26", - "com.typesafe.akka:akka-http-core_2.12:10.1.11", - "com.typesafe.akka:akka-parsing_2.12:10.1.11", - "com.typesafe.akka:akka-protobuf_2.12:2.5.26", - "com.typesafe.akka:akka-slf4j_2.12:2.5.26", - "com.typesafe.akka:akka-stream_2.12:2.5.26", - "com.typesafe.netty:netty-reactive-streams-http:2.0.3", - "com.typesafe.netty:netty-reactive-streams:2.0.3", - "com.typesafe.play:build-link:2.7.4", - "com.typesafe.play:play-akka-http-server_2.12:2.7.4", - "com.typesafe.play:play-exceptions:2.7.4", - "com.typesafe.play:play-functional_2.12:2.7.4", - "com.typesafe.play:play-guice_2.12:2.7.4", - "com.typesafe.play:play-json_2.12:2.7.4", - "com.typesafe.play:play-netty-server_2.12:2.7.4", - "com.typesafe.play:play-server_2.12:2.7.4", - "com.typesafe.play:play-streams_2.12:2.7.4", - "com.typesafe.play:play-test_2.12:2.7.4", - "com.typesafe.play:play_2.12:2.7.4", - "com.typesafe.play:twirl-api_2.12:1.4.2", - "com.typesafe:config:1.3.3", - "com.typesafe:ssl-config-core_2.12:0.3.8", - "commons-codec:commons-codec:1.10", - "commons-io:commons-io:2.6", - "commons-logging:commons-logging:1.2", - "commons-net:commons-net:3.6", - "io.jsonwebtoken:jjwt:0.9.1", - "io.netty:netty-buffer:4.1.43.Final", - "io.netty:netty-codec-http:4.1.34.Final", - "io.netty:netty-codec:4.1.34.Final", - "io.netty:netty-common:4.1.43.Final", - "io.netty:netty-handler:4.1.34.Final", - "io.netty:netty-resolver:4.1.43.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.43.Final", - "io.netty:netty-transport-native-unix-common:4.1.43.Final", - "io.netty:netty-transport:4.1.43.Final", - "javax.activation:javax.activation-api:1.2.0", - "javax.inject:javax.inject:1", - "javax.transaction:jta:1.1", - "javax.xml.bind:jaxb-api:2.3.1", - "joda-time:joda-time:2.10.1", - "junit:junit:4.12", - "net.bytebuddy:byte-buddy-agent:1.9.3", - "net.bytebuddy:byte-buddy:1.9.3", - "net.sourceforge.htmlunit:htmlunit-core-js:2.33", - "net.sourceforge.htmlunit:htmlunit-cssparser:1.2.0", - "net.sourceforge.htmlunit:htmlunit:2.33", - "net.sourceforge.htmlunit:neko-htmlunit:2.33", - "org.apache.commons:commons-exec:1.3", - "org.apache.commons:commons-lang3:3.8", - "org.apache.commons:commons-text:1.4", - "org.apache.httpcomponents:httpclient:4.5.6", - "org.apache.httpcomponents:httpcore:4.4.10", - "org.apache.httpcomponents:httpmime:4.5.6", - "org.atteo.classindex:classindex:3.4", - "org.checkerframework:checker-qual:2.5.2", - "org.codehaus.mojo:animal-sniffer-annotations:1.17", - "org.eclipse.jetty.websocket:websocket-api:9.4.12.v20180830", - "org.eclipse.jetty.websocket:websocket-client:9.4.12.v20180830", - "org.eclipse.jetty.websocket:websocket-common:9.4.12.v20180830", - "org.eclipse.jetty:jetty-client:9.4.12.v20180830", - "org.eclipse.jetty:jetty-http:9.4.12.v20180830", - "org.eclipse.jetty:jetty-io:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util:9.4.12.v20180830", - "org.eclipse.jetty:jetty-xml:9.4.12.v20180830", - "org.fluentlenium:fluentlenium-core:3.7.1", - "org.hamcrest:hamcrest-core:1.3", - "org.mockito:mockito-core:2.23.4", - "org.objenesis:objenesis:2.6", - "org.reactivestreams:reactive-streams:1.0.2", - "org.scala-lang.modules:scala-java8-compat_2.12:0.9.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "org.scala-lang:scala-library:2.12.10", - "org.scala-lang:scala-reflect:2.12.10", - "org.scala-sbt:test-interface:1.0", - "org.seleniumhq.selenium:htmlunit-driver:2.33.3", - "org.seleniumhq.selenium:selenium-api:3.141.59", - "org.seleniumhq.selenium:selenium-firefox-driver:3.141.59", - "org.seleniumhq.selenium:selenium-remote-driver:3.141.59", - "org.seleniumhq.selenium:selenium-support:3.141.59", - "org.slf4j:jcl-over-slf4j:1.7.26", - "org.slf4j:jul-to-slf4j:1.7.26", - "org.slf4j:slf4j-api:1.7.26", - "org.specs2:specs2-core_2.12:4.7.0", - "org.specs2:specs2-junit_2.12:4.5.1", - "org.specs2:specs2-mock_2.12:4.5.1", - "xalan:serializer:2.7.2", - "xalan:xalan:2.7.2", - "xerces:xercesImpl:2.12.0", - "xml-apis:xml-apis:1.4.01" - ], - "directDependencies": [ - "com.typesafe.play:play-test_2.12:2.7.4", - "org.scala-lang:scala-library:2.12.10", - "org.specs2:specs2-core_2.12:4.7.0", - "org.specs2:specs2-junit_2.12:4.5.1", - "org.specs2:specs2-mock_2.12:4.5.1" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-specs2_2.12/2.7.4/play-specs2_2.12-2.7.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-specs2_2.12/2.7.4/play-specs2_2.12-2.7.4.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/play-specs2_2.12/2.7.4/play-specs2_2.12-2.7.4.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/play-specs2_2.12/2.7.4/play-specs2_2.12-2.7.4.jar" - ], - "sha256": "870314b098a6958398d784ff25dbd8bbc0c18d1555a2346a6bfd3b1770309800", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-specs2_2.12/2.7.4/play-specs2_2.12-2.7.4.jar" - }, - { - "coord": "com.typesafe.play:play-streams_2.12:jar:sources:2.7.4", - "dependencies": [ - "com.typesafe.akka:akka-actor_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-protobuf_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-stream_2.12:jar:sources:2.5.26", - "com.typesafe:config:jar:sources:1.3.3", - "com.typesafe:ssl-config-core_2.12:jar:sources:0.3.8", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "org.scala-lang.modules:scala-java8-compat_2.12:jar:sources:0.9.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "directDependencies": [ - "com.typesafe.akka:akka-stream_2.12:jar:sources:2.5.26", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "org.scala-lang.modules:scala-java8-compat_2.12:jar:sources:0.9.0", - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-streams_2.12/2.7.4/play-streams_2.12-2.7.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-streams_2.12/2.7.4/play-streams_2.12-2.7.4-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/play-streams_2.12/2.7.4/play-streams_2.12-2.7.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/play-streams_2.12/2.7.4/play-streams_2.12-2.7.4-sources.jar" - ], - "sha256": "05e20e6ab5c6fde3d1372d4fd00ec17f290caae216d71606be77d5887bac2a54", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-streams_2.12/2.7.4/play-streams_2.12-2.7.4-sources.jar" - }, - { - "coord": "com.typesafe.play:play-streams_2.12:2.7.4", - "dependencies": [ - "com.typesafe.akka:akka-actor_2.12:2.5.26", - "com.typesafe.akka:akka-protobuf_2.12:2.5.26", - "com.typesafe.akka:akka-stream_2.12:2.5.26", - "com.typesafe:config:1.3.3", - "com.typesafe:ssl-config-core_2.12:0.3.8", - "org.reactivestreams:reactive-streams:1.0.2", - "org.scala-lang.modules:scala-java8-compat_2.12:0.9.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "org.scala-lang:scala-library:2.12.10" - ], - "directDependencies": [ - "com.typesafe.akka:akka-stream_2.12:2.5.26", - "org.reactivestreams:reactive-streams:1.0.2", - "org.scala-lang.modules:scala-java8-compat_2.12:0.9.0", - "org.scala-lang:scala-library:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-streams_2.12/2.7.4/play-streams_2.12-2.7.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-streams_2.12/2.7.4/play-streams_2.12-2.7.4.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/play-streams_2.12/2.7.4/play-streams_2.12-2.7.4.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/play-streams_2.12/2.7.4/play-streams_2.12-2.7.4.jar" - ], - "sha256": "c7233f2e7e2d31212e990754caeb1ee853544f1c9448f6fd97c0fad187d6b857", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-streams_2.12/2.7.4/play-streams_2.12-2.7.4.jar" - }, - { - "coord": "com.typesafe.play:play-test_2.12:jar:sources:2.7.4", - "dependencies": [ - "aopalliance:aopalliance:jar:sources:1.0", - "ch.qos.logback:logback-classic:jar:sources:1.2.3", - "ch.qos.logback:logback-core:jar:sources:1.2.3", - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.10.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources:2.9.10", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources:2.9.10", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "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.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.inject.extensions:guice-assistedinject:jar:sources:4.2.2", - "com.google.inject:guice:jar:sources:4.2.2", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "com.novocode:junit-interface:jar:sources:0.11", - "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", - "com.squareup.okio:okio:jar:sources:1.14.0", - "com.typesafe.akka:akka-actor_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-http-core_2.12:jar:sources:10.1.11", - "com.typesafe.akka:akka-parsing_2.12:jar:sources:10.1.11", - "com.typesafe.akka:akka-protobuf_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-slf4j_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-stream_2.12:jar:sources:2.5.26", - "com.typesafe.netty:netty-reactive-streams-http:jar:sources:2.0.3", - "com.typesafe.netty:netty-reactive-streams:jar:sources:2.0.3", - "com.typesafe.play:build-link:jar:sources:2.7.4", - "com.typesafe.play:play-akka-http-server_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-exceptions:jar:sources:2.7.4", - "com.typesafe.play:play-functional_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-guice_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-json_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-netty-server_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-server_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-streams_2.12:jar:sources:2.7.4", - "com.typesafe.play:play_2.12:jar:sources:2.7.4", - "com.typesafe.play:twirl-api_2.12:jar:sources:1.4.2", - "com.typesafe:config:jar:sources:1.3.3", - "com.typesafe:ssl-config-core_2.12:jar:sources:0.3.8", - "commons-codec:commons-codec:jar:sources:1.10", - "commons-io:commons-io:jar:sources:2.6", - "commons-logging:commons-logging:jar:sources:1.2", - "commons-net:commons-net:jar:sources:3.6", - "io.jsonwebtoken:jjwt:jar:sources:0.9.1", - "io.netty:netty-buffer:jar:sources:4.1.43.Final", - "io.netty:netty-codec-http:jar:sources:4.1.34.Final", - "io.netty:netty-codec:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.43.Final", - "io.netty:netty-handler:jar:sources:4.1.34.Final", - "io.netty:netty-resolver:jar:sources:4.1.43.Final", - "io.netty:netty-transport-native-epoll:jar:sources:4.1.43.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.43.Final", - "io.netty:netty-transport:jar:sources:4.1.43.Final", - "javax.activation:javax.activation-api:jar:sources:1.2.0", - "javax.inject:javax.inject:jar:sources:1", - "javax.transaction:jta:jar:sources:1.1", - "javax.xml.bind:jaxb-api:jar:sources:2.3.1", - "joda-time:joda-time:jar:sources:2.10.1", - "junit:junit:jar:sources:4.12", - "net.bytebuddy:byte-buddy:jar:sources:1.9.3", - "net.sourceforge.htmlunit:htmlunit-core-js:jar:sources:2.33", - "net.sourceforge.htmlunit:htmlunit-cssparser:jar:sources:1.2.0", - "net.sourceforge.htmlunit:htmlunit:jar:sources:2.33", - "net.sourceforge.htmlunit:neko-htmlunit:jar:sources:2.33", - "org.apache.commons:commons-exec:jar:sources:1.3", - "org.apache.commons:commons-lang3:jar:sources:3.8", - "org.apache.commons:commons-text:jar:sources:1.4", - "org.apache.httpcomponents:httpclient:jar:sources:4.5.6", - "org.apache.httpcomponents:httpcore:jar:sources:4.4.10", - "org.apache.httpcomponents:httpmime:jar:sources:4.5.6", - "org.atteo.classindex:classindex:jar:sources:3.4", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17", - "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-client:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-http:jar:sources:9.4.12.v20180830", - "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:jetty-xml:jar:sources:9.4.12.v20180830", - "org.fluentlenium:fluentlenium-core:jar:sources:3.7.1", - "org.hamcrest:hamcrest-core:jar:sources:1.3", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "org.scala-lang.modules:scala-java8-compat_2.12:jar:sources:0.9.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.scala-lang:scala-reflect:jar:sources:2.12.10", - "org.scala-sbt:test-interface:jar:sources:1.0", - "org.seleniumhq.selenium:htmlunit-driver:jar:sources:2.33.3", - "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", - "org.seleniumhq.selenium:selenium-firefox-driver:jar:sources:3.141.59", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", - "org.seleniumhq.selenium:selenium-support:jar:sources:3.141.59", - "org.slf4j:jcl-over-slf4j:jar:sources:1.7.26", - "org.slf4j:jul-to-slf4j:jar:sources:1.7.26", - "org.slf4j:slf4j-api:jar:sources:1.7.26", - "xalan:serializer:jar:sources:2.7.2", - "xalan:xalan:jar:sources:2.7.2", - "xerces:xercesImpl:jar:sources:2.12.0", - "xml-apis:xml-apis:jar:sources:1.4.01" - ], - "directDependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.3", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "com.google.guava:guava:jar:sources:27.1-jre", - "com.google.inject.extensions:guice-assistedinject:jar:sources:4.2.2", - "com.google.inject:guice:jar:sources:4.2.2", - "com.novocode:junit-interface:jar:sources:0.11", - "com.typesafe.play:play-akka-http-server_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-guice_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-netty-server_2.12:jar:sources:2.7.4", - "junit:junit:jar:sources:4.12", - "org.fluentlenium:fluentlenium-core:jar:sources:3.7.1", - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.seleniumhq.selenium:htmlunit-driver:jar:sources:2.33.3", - "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", - "org.seleniumhq.selenium:selenium-firefox-driver:jar:sources:3.141.59", - "org.seleniumhq.selenium:selenium-support:jar:sources:3.141.59" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-test_2.12/2.7.4/play-test_2.12-2.7.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-test_2.12/2.7.4/play-test_2.12-2.7.4-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/play-test_2.12/2.7.4/play-test_2.12-2.7.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/play-test_2.12/2.7.4/play-test_2.12-2.7.4-sources.jar" - ], - "sha256": "9fbb6d799f0cad0099c19abc2a18c9a45ae94b25ba33486e6f377296820d5361", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-test_2.12/2.7.4/play-test_2.12-2.7.4-sources.jar" - }, - { - "coord": "com.typesafe.play:play-test_2.12:2.7.4", - "dependencies": [ - "aopalliance:aopalliance:1.0", - "ch.qos.logback:logback-classic:1.2.3", - "ch.qos.logback:logback-core:1.2.3", - "com.fasterxml.jackson.core:jackson-annotations:2.9.10", - "com.fasterxml.jackson.core:jackson-core:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:2.9.10.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.10", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.10", - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.2.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.guava:guava:27.1-jre", - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.inject.extensions:guice-assistedinject:4.2.2", - "com.google.inject:guice:4.2.2", - "com.google.j2objc:j2objc-annotations:1.1", - "com.novocode:junit-interface:0.11", - "com.squareup.okhttp3:okhttp:3.11.0", - "com.squareup.okio:okio:1.14.0", - "com.typesafe.akka:akka-actor_2.12:2.5.26", - "com.typesafe.akka:akka-http-core_2.12:10.1.11", - "com.typesafe.akka:akka-parsing_2.12:10.1.11", - "com.typesafe.akka:akka-protobuf_2.12:2.5.26", - "com.typesafe.akka:akka-slf4j_2.12:2.5.26", - "com.typesafe.akka:akka-stream_2.12:2.5.26", - "com.typesafe.netty:netty-reactive-streams-http:2.0.3", - "com.typesafe.netty:netty-reactive-streams:2.0.3", - "com.typesafe.play:build-link:2.7.4", - "com.typesafe.play:play-akka-http-server_2.12:2.7.4", - "com.typesafe.play:play-exceptions:2.7.4", - "com.typesafe.play:play-functional_2.12:2.7.4", - "com.typesafe.play:play-guice_2.12:2.7.4", - "com.typesafe.play:play-json_2.12:2.7.4", - "com.typesafe.play:play-netty-server_2.12:2.7.4", - "com.typesafe.play:play-server_2.12:2.7.4", - "com.typesafe.play:play-streams_2.12:2.7.4", - "com.typesafe.play:play_2.12:2.7.4", - "com.typesafe.play:twirl-api_2.12:1.4.2", - "com.typesafe:config:1.3.3", - "com.typesafe:ssl-config-core_2.12:0.3.8", - "commons-codec:commons-codec:1.10", - "commons-io:commons-io:2.6", - "commons-logging:commons-logging:1.2", - "commons-net:commons-net:3.6", - "io.jsonwebtoken:jjwt:0.9.1", - "io.netty:netty-buffer:4.1.43.Final", - "io.netty:netty-codec-http:4.1.34.Final", - "io.netty:netty-codec:4.1.34.Final", - "io.netty:netty-common:4.1.43.Final", - "io.netty:netty-handler:4.1.34.Final", - "io.netty:netty-resolver:4.1.43.Final", - "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.43.Final", - "io.netty:netty-transport-native-unix-common:4.1.43.Final", - "io.netty:netty-transport:4.1.43.Final", - "javax.activation:javax.activation-api:1.2.0", - "javax.inject:javax.inject:1", - "javax.transaction:jta:1.1", - "javax.xml.bind:jaxb-api:2.3.1", - "joda-time:joda-time:2.10.1", - "junit:junit:4.12", - "net.bytebuddy:byte-buddy:1.9.3", - "net.sourceforge.htmlunit:htmlunit-core-js:2.33", - "net.sourceforge.htmlunit:htmlunit-cssparser:1.2.0", - "net.sourceforge.htmlunit:htmlunit:2.33", - "net.sourceforge.htmlunit:neko-htmlunit:2.33", - "org.apache.commons:commons-exec:1.3", - "org.apache.commons:commons-lang3:3.8", - "org.apache.commons:commons-text:1.4", - "org.apache.httpcomponents:httpclient:4.5.6", - "org.apache.httpcomponents:httpcore:4.4.10", - "org.apache.httpcomponents:httpmime:4.5.6", - "org.atteo.classindex:classindex:3.4", - "org.checkerframework:checker-qual:2.5.2", - "org.codehaus.mojo:animal-sniffer-annotations:1.17", - "org.eclipse.jetty.websocket:websocket-api:9.4.12.v20180830", - "org.eclipse.jetty.websocket:websocket-client:9.4.12.v20180830", - "org.eclipse.jetty.websocket:websocket-common:9.4.12.v20180830", - "org.eclipse.jetty:jetty-client:9.4.12.v20180830", - "org.eclipse.jetty:jetty-http:9.4.12.v20180830", - "org.eclipse.jetty:jetty-io:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util:9.4.12.v20180830", - "org.eclipse.jetty:jetty-xml:9.4.12.v20180830", - "org.fluentlenium:fluentlenium-core:3.7.1", - "org.hamcrest:hamcrest-core:1.3", - "org.reactivestreams:reactive-streams:1.0.2", - "org.scala-lang.modules:scala-java8-compat_2.12:0.9.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "org.scala-lang:scala-library:2.12.10", - "org.scala-lang:scala-reflect:2.12.10", - "org.scala-sbt:test-interface:1.0", - "org.seleniumhq.selenium:htmlunit-driver:2.33.3", - "org.seleniumhq.selenium:selenium-api:3.141.59", - "org.seleniumhq.selenium:selenium-firefox-driver:3.141.59", - "org.seleniumhq.selenium:selenium-remote-driver:3.141.59", - "org.seleniumhq.selenium:selenium-support:3.141.59", - "org.slf4j:jcl-over-slf4j:1.7.26", - "org.slf4j:jul-to-slf4j:1.7.26", - "org.slf4j:slf4j-api:1.7.26", - "xalan:serializer:2.7.2", - "xalan:xalan:2.7.2", - "xerces:xercesImpl:2.12.0", - "xml-apis:xml-apis:1.4.01" - ], - "directDependencies": [ - "ch.qos.logback:logback-classic:1.2.3", - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.guava:guava:27.1-jre", - "com.google.inject.extensions:guice-assistedinject:4.2.2", - "com.google.inject:guice:4.2.2", - "com.novocode:junit-interface:0.11", - "com.typesafe.play:play-akka-http-server_2.12:2.7.4", - "com.typesafe.play:play-guice_2.12:2.7.4", - "com.typesafe.play:play-netty-server_2.12:2.7.4", - "junit:junit:4.12", - "org.fluentlenium:fluentlenium-core:3.7.1", - "org.scala-lang:scala-library:2.12.10", - "org.seleniumhq.selenium:htmlunit-driver:2.33.3", - "org.seleniumhq.selenium:selenium-api:3.141.59", - "org.seleniumhq.selenium:selenium-firefox-driver:3.141.59", - "org.seleniumhq.selenium:selenium-support:3.141.59" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play-test_2.12/2.7.4/play-test_2.12-2.7.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play-test_2.12/2.7.4/play-test_2.12-2.7.4.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/play-test_2.12/2.7.4/play-test_2.12-2.7.4.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/play-test_2.12/2.7.4/play-test_2.12-2.7.4.jar" - ], - "sha256": "5b394e70b5e602ca0ad54f9f31533299f0b2717fe638b13f403b6e30a58b30f2", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play-test_2.12/2.7.4/play-test_2.12-2.7.4.jar" - }, - { - "coord": "com.typesafe.play:play_2.12:jar:sources:2.7.4", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.10.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources:2.9.10", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources:2.9.10", - "com.google.code.findbugs:jsr305:jar:sources:3.0.2", - "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.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "com.typesafe.akka:akka-actor_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-protobuf_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-slf4j_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-stream_2.12:jar:sources:2.5.26", - "com.typesafe.play:build-link:jar:sources:2.7.4", - "com.typesafe.play:play-exceptions:jar:sources:2.7.4", - "com.typesafe.play:play-functional_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-json_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-streams_2.12:jar:sources:2.7.4", - "com.typesafe.play:twirl-api_2.12:jar:sources:1.4.2", - "com.typesafe:config:jar:sources:1.3.3", - "com.typesafe:ssl-config-core_2.12:jar:sources:0.3.8", - "io.jsonwebtoken:jjwt:jar:sources:0.9.1", - "javax.activation:javax.activation-api:jar:sources:1.2.0", - "javax.inject:javax.inject:jar:sources:1", - "javax.transaction:jta:jar:sources:1.1", - "javax.xml.bind:jaxb-api:jar:sources:2.3.1", - "joda-time:joda-time:jar:sources:2.10.1", - "org.checkerframework:checker-qual:jar:sources:2.5.2", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.17", - "org.reactivestreams:reactive-streams:jar:sources:1.0.2", - "org.scala-lang.modules:scala-java8-compat_2.12:jar:sources:0.9.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.scala-lang:scala-reflect:jar:sources:2.12.10", - "org.slf4j:jcl-over-slf4j:jar:sources:1.7.26", - "org.slf4j:jul-to-slf4j:jar:sources:1.7.26", - "org.slf4j:slf4j-api:jar:sources:1.7.26" - ], - "directDependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-core:jar:sources:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.10.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources:2.9.10", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources:2.9.10", - "com.google.guava:guava:jar:sources:27.1-jre", - "com.typesafe.akka:akka-actor_2.12:jar:sources:2.5.26", - "com.typesafe.akka:akka-slf4j_2.12:jar:sources:2.5.26", - "com.typesafe.play:build-link:jar:sources:2.7.4", - "com.typesafe.play:play-json_2.12:jar:sources:2.7.4", - "com.typesafe.play:play-streams_2.12:jar:sources:2.7.4", - "com.typesafe.play:twirl-api_2.12:jar:sources:1.4.2", - "com.typesafe:ssl-config-core_2.12:jar:sources:0.3.8", - "io.jsonwebtoken:jjwt:jar:sources:0.9.1", - "javax.inject:javax.inject:jar:sources:1", - "javax.transaction:jta:jar:sources:1.1", - "javax.xml.bind:jaxb-api:jar:sources:2.3.1", - "org.scala-lang.modules:scala-java8-compat_2.12:jar:sources:0.9.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.scala-lang:scala-reflect:jar:sources:2.12.10", - "org.slf4j:jcl-over-slf4j:jar:sources:1.7.26", - "org.slf4j:jul-to-slf4j:jar:sources:1.7.26", - "org.slf4j:slf4j-api:jar:sources:1.7.26" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play_2.12/2.7.4/play_2.12-2.7.4-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play_2.12/2.7.4/play_2.12-2.7.4-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/play_2.12/2.7.4/play_2.12-2.7.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/play_2.12/2.7.4/play_2.12-2.7.4-sources.jar" - ], - "sha256": "3474d4a919decb7661f026658603efd4f44f679ed753e692c161a5c961b178e5", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play_2.12/2.7.4/play_2.12-2.7.4-sources.jar" - }, - { - "coord": "com.typesafe.play:play_2.12:2.7.4", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:2.9.10", - "com.fasterxml.jackson.core:jackson-core:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:2.9.10.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.10", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.10", - "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.2.0", - "com.google.guava:failureaccess:1.0.1", - "com.google.guava:guava:27.1-jre", - "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", - "com.google.j2objc:j2objc-annotations:1.1", - "com.typesafe.akka:akka-actor_2.12:2.5.26", - "com.typesafe.akka:akka-protobuf_2.12:2.5.26", - "com.typesafe.akka:akka-slf4j_2.12:2.5.26", - "com.typesafe.akka:akka-stream_2.12:2.5.26", - "com.typesafe.play:build-link:2.7.4", - "com.typesafe.play:play-exceptions:2.7.4", - "com.typesafe.play:play-functional_2.12:2.7.4", - "com.typesafe.play:play-json_2.12:2.7.4", - "com.typesafe.play:play-streams_2.12:2.7.4", - "com.typesafe.play:twirl-api_2.12:1.4.2", - "com.typesafe:config:1.3.3", - "com.typesafe:ssl-config-core_2.12:0.3.8", - "io.jsonwebtoken:jjwt:0.9.1", - "javax.activation:javax.activation-api:1.2.0", - "javax.inject:javax.inject:1", - "javax.transaction:jta:1.1", - "javax.xml.bind:jaxb-api:2.3.1", - "joda-time:joda-time:2.10.1", - "org.checkerframework:checker-qual:2.5.2", - "org.codehaus.mojo:animal-sniffer-annotations:1.17", - "org.reactivestreams:reactive-streams:1.0.2", - "org.scala-lang.modules:scala-java8-compat_2.12:0.9.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "org.scala-lang:scala-library:2.12.10", - "org.scala-lang:scala-reflect:2.12.10", - "org.slf4j:jcl-over-slf4j:1.7.26", - "org.slf4j:jul-to-slf4j:1.7.26", - "org.slf4j:slf4j-api:1.7.26" - ], - "directDependencies": [ - "com.fasterxml.jackson.core:jackson-annotations:2.9.10", - "com.fasterxml.jackson.core:jackson-core:2.9.10", - "com.fasterxml.jackson.core:jackson-databind:2.9.10.1", - "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.10", - "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.10", - "com.google.guava:guava:27.1-jre", - "com.typesafe.akka:akka-actor_2.12:2.5.26", - "com.typesafe.akka:akka-slf4j_2.12:2.5.26", - "com.typesafe.play:build-link:2.7.4", - "com.typesafe.play:play-json_2.12:2.7.4", - "com.typesafe.play:play-streams_2.12:2.7.4", - "com.typesafe.play:twirl-api_2.12:1.4.2", - "com.typesafe:ssl-config-core_2.12:0.3.8", - "io.jsonwebtoken:jjwt:0.9.1", - "javax.inject:javax.inject:1", - "javax.transaction:jta:1.1", - "javax.xml.bind:jaxb-api:2.3.1", - "org.scala-lang.modules:scala-java8-compat_2.12:0.9.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "org.scala-lang:scala-library:2.12.10", - "org.scala-lang:scala-reflect:2.12.10", - "org.slf4j:jcl-over-slf4j:1.7.26", - "org.slf4j:jul-to-slf4j:1.7.26", - "org.slf4j:slf4j-api:1.7.26" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/play_2.12/2.7.4/play_2.12-2.7.4.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/play_2.12/2.7.4/play_2.12-2.7.4.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/play_2.12/2.7.4/play_2.12-2.7.4.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/play_2.12/2.7.4/play_2.12-2.7.4.jar" - ], - "sha256": "a2ae298f1e8a2883645da5b80047e93dd9f02199a532ab5f8d622bc0ae267d7d", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/play_2.12/2.7.4/play_2.12-2.7.4.jar" - }, - { - "coord": "com.typesafe.play:twirl-api_2.12:jar:sources:1.4.2", - "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.4.2/twirl-api_2.12-1.4.2-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.4.2/twirl-api_2.12-1.4.2-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/twirl-api_2.12/1.4.2/twirl-api_2.12-1.4.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.12/1.4.2/twirl-api_2.12-1.4.2-sources.jar" - ], - "sha256": "66f51aa6198090b88dc7d44ddc748df210a72a651a4ae28a0075ac9b6a925250", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.4.2/twirl-api_2.12-1.4.2-sources.jar" - }, - { - "coord": "com.typesafe.play:twirl-api_2.12:1.4.2", - "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "org.scala-lang:scala-library:2.12.10" - ], - "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "org.scala-lang:scala-library:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.4.2/twirl-api_2.12-1.4.2.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.4.2/twirl-api_2.12-1.4.2.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/play/twirl-api_2.12/1.4.2/twirl-api_2.12-1.4.2.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.12/1.4.2/twirl-api_2.12-1.4.2.jar" - ], - "sha256": "a7887a19bcd7ec2e76bc43ea10f2ac73a8d2cd1fe154819905652aa422675fa2", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/play/twirl-api_2.12/1.4.2/twirl-api_2.12-1.4.2.jar" - }, - { - "coord": "com.typesafe:ssl-config-core_2.12:jar:sources:0.3.8", - "dependencies": [ - "com.typesafe:config:jar:sources:1.3.3", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "directDependencies": [ - "com.typesafe:config:jar:sources:1.3.3", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/ssl-config-core_2.12/0.3.8/ssl-config-core_2.12-0.3.8-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/ssl-config-core_2.12/0.3.8/ssl-config-core_2.12-0.3.8-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/ssl-config-core_2.12/0.3.8/ssl-config-core_2.12-0.3.8-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.3.8/ssl-config-core_2.12-0.3.8-sources.jar" - ], - "sha256": "a3ada946f01a3654829f6a925f61403f2ffd8baaec36f3c2f9acd798034f7369", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/ssl-config-core_2.12/0.3.8/ssl-config-core_2.12-0.3.8-sources.jar" - }, - { - "coord": "com.typesafe:ssl-config-core_2.12:0.3.8", - "dependencies": [ - "com.typesafe:config:1.3.3", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "org.scala-lang:scala-library:2.12.10" - ], - "directDependencies": [ - "com.typesafe:config:1.3.3", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "org.scala-lang:scala-library:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/ssl-config-core_2.12/0.3.8/ssl-config-core_2.12-0.3.8.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/typesafe/ssl-config-core_2.12/0.3.8/ssl-config-core_2.12-0.3.8.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/ssl-config-core_2.12/0.3.8/ssl-config-core_2.12-0.3.8.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.3.8/ssl-config-core_2.12-0.3.8.jar" - ], - "sha256": "481ef324783374d8ab2e832f03754d80efa1a9a37d82ea4e0d2ed4cd61b0e221", - "url": "https://repo.maven.apache.org/maven2/com/typesafe/ssl-config-core_2.12/0.3.8/ssl-config-core_2.12-0.3.8.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", - "https://maven-central.storage-download.googleapis.com/maven2/commons-codec/commons-codec/1.10/commons-codec-1.10-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-codec:commons-codec: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.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.10/commons-codec-1.10.jar", - "https://maven-central.storage-download.googleapis.com/maven2/commons-codec/commons-codec/1.10/commons-codec-1.10.jar", - "https://mirror.bazel.build/repo1.maven.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-io:commons-io:jar:sources: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-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/commons-io/commons-io/2.6/commons-io-2.6-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-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", - "https://maven-central.storage-download.googleapis.com/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar", - "https://mirror.bazel.build/repo1.maven.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-logging:commons-logging:jar:sources: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-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-logging:commons-logging: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.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar", - "https://maven-central.storage-download.googleapis.com/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar", - "https://mirror.bazel.build/repo1.maven.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-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", - "https://maven-central.storage-download.googleapis.com/maven2/commons-net/commons-net/3.6/commons-net-3.6-sources.jar", - "https://mirror.bazel.build/repo1.maven.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": "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", - "https://maven-central.storage-download.googleapis.com/maven2/commons-net/commons-net/3.6/commons-net-3.6.jar", - "https://mirror.bazel.build/repo1.maven.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": "io.jsonwebtoken:jjwt:jar:sources:0.9.1", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.10.1" - ], - "directDependencies": [ - "com.fasterxml.jackson.core:jackson-databind:jar:sources:2.9.10.1" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.jsonwebtoken:jjwt:0.9.1", - "dependencies": [ - "com.fasterxml.jackson.core:jackson-databind:2.9.10.1" - ], - "directDependencies": [ - "com.fasterxml.jackson.core:jackson-databind:2.9.10.1" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.jar", - "https://mirror.bazel.build/repo1.maven.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.netty:netty-buffer:jar:sources:4.1.43.Final", - "dependencies": [ - "io.netty:netty-common:jar:sources:4.1.43.Final" - ], - "directDependencies": [ - "io.netty:netty-common:jar:sources:4.1.43.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.43.Final/netty-buffer-4.1.43.Final-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.43.Final/netty-buffer-4.1.43.Final-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/io/netty/netty-buffer/4.1.43.Final/netty-buffer-4.1.43.Final-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/io/netty/netty-buffer/4.1.43.Final/netty-buffer-4.1.43.Final-sources.jar" - ], - "sha256": "2c17514b4e4fe7264917881e34252143f60ae121d6590beb82a0ee55713bbd86", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.43.Final/netty-buffer-4.1.43.Final-sources.jar" - }, - { - "coord": "io.netty:netty-buffer:4.1.43.Final", - "dependencies": [ - "io.netty:netty-common:4.1.43.Final" - ], - "directDependencies": [ - "io.netty:netty-common:4.1.43.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.43.Final/netty-buffer-4.1.43.Final.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.43.Final/netty-buffer-4.1.43.Final.jar", - "https://maven-central.storage-download.googleapis.com/maven2/io/netty/netty-buffer/4.1.43.Final/netty-buffer-4.1.43.Final.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/io/netty/netty-buffer/4.1.43.Final/netty-buffer-4.1.43.Final.jar" - ], - "sha256": "03f4cc9bf6ec527ed271e60948a51817c98e3cdd1dfc504beb6b9e1653767626", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.43.Final/netty-buffer-4.1.43.Final.jar" - }, - { - "coord": "io.netty:netty-codec-http:jar:sources:4.1.34.Final", - "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.43.Final", - "io.netty:netty-codec:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.43.Final", - "io.netty:netty-handler:jar:sources:4.1.34.Final", - "io.netty:netty-transport:jar:sources:4.1.43.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.43.Final", - "io.netty:netty-codec:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.43.Final", - "io.netty:netty-handler:jar:sources:4.1.34.Final", - "io.netty:netty-transport:jar:sources:4.1.43.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", - "https://maven-central.storage-download.googleapis.com/maven2/io/netty/netty-codec-http/4.1.34.Final/netty-codec-http-4.1.34.Final-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-http:4.1.34.Final", - "dependencies": [ - "io.netty:netty-buffer:4.1.43.Final", - "io.netty:netty-codec:4.1.34.Final", - "io.netty:netty-common:4.1.43.Final", - "io.netty:netty-handler:4.1.34.Final", - "io.netty:netty-transport:4.1.43.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:4.1.43.Final", - "io.netty:netty-codec:4.1.34.Final", - "io.netty:netty-common:4.1.43.Final", - "io.netty:netty-handler:4.1.34.Final", - "io.netty:netty-transport:4.1.43.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", - "https://maven-central.storage-download.googleapis.com/maven2/io/netty/netty-codec-http/4.1.34.Final/netty-codec-http-4.1.34.Final.jar", - "https://mirror.bazel.build/repo1.maven.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:jar:sources:4.1.34.Final", - "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.43.Final", - "io.netty:netty-common:jar:sources:4.1.43.Final", - "io.netty:netty-transport:jar:sources:4.1.43.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.43.Final", - "io.netty:netty-common:jar:sources:4.1.43.Final", - "io.netty:netty-transport:jar:sources:4.1.43.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", - "https://maven-central.storage-download.googleapis.com/maven2/io/netty/netty-codec/4.1.34.Final/netty-codec-4.1.34.Final-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-codec:4.1.34.Final", - "dependencies": [ - "io.netty:netty-buffer:4.1.43.Final", - "io.netty:netty-common:4.1.43.Final", - "io.netty:netty-transport:4.1.43.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:4.1.43.Final", - "io.netty:netty-common:4.1.43.Final", - "io.netty:netty-transport:4.1.43.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", - "https://maven-central.storage-download.googleapis.com/maven2/io/netty/netty-codec/4.1.34.Final/netty-codec-4.1.34.Final.jar", - "https://mirror.bazel.build/repo1.maven.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-common:jar:sources:4.1.43.Final", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-common/4.1.43.Final/netty-common-4.1.43.Final-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.43.Final/netty-common-4.1.43.Final-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/io/netty/netty-common/4.1.43.Final/netty-common-4.1.43.Final-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/io/netty/netty-common/4.1.43.Final/netty-common-4.1.43.Final-sources.jar" - ], - "sha256": "d240501384b5b5927832f7624ba484dc87454a5adf8754eda993c0c2f9a3f993", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.43.Final/netty-common-4.1.43.Final-sources.jar" - }, - { - "coord": "io.netty:netty-common:4.1.43.Final", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-common/4.1.43.Final/netty-common-4.1.43.Final.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.43.Final/netty-common-4.1.43.Final.jar", - "https://maven-central.storage-download.googleapis.com/maven2/io/netty/netty-common/4.1.43.Final/netty-common-4.1.43.Final.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/io/netty/netty-common/4.1.43.Final/netty-common-4.1.43.Final.jar" - ], - "sha256": "729737a2a57c460d3543aa309cbf971ad2f0ffec431751d48409f5e865bae88e", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.43.Final/netty-common-4.1.43.Final.jar" - }, - { - "coord": "io.netty:netty-handler:jar:sources:4.1.34.Final", - "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.43.Final", - "io.netty:netty-codec:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.43.Final", - "io.netty:netty-transport:jar:sources:4.1.43.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.43.Final", - "io.netty:netty-codec:jar:sources:4.1.34.Final", - "io.netty:netty-common:jar:sources:4.1.43.Final", - "io.netty:netty-transport:jar:sources:4.1.43.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", - "https://maven-central.storage-download.googleapis.com/maven2/io/netty/netty-handler/4.1.34.Final/netty-handler-4.1.34.Final-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-handler:4.1.34.Final", - "dependencies": [ - "io.netty:netty-buffer:4.1.43.Final", - "io.netty:netty-codec:4.1.34.Final", - "io.netty:netty-common:4.1.43.Final", - "io.netty:netty-transport:4.1.43.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:4.1.43.Final", - "io.netty:netty-codec:4.1.34.Final", - "io.netty:netty-common:4.1.43.Final", - "io.netty:netty-transport:4.1.43.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", - "https://maven-central.storage-download.googleapis.com/maven2/io/netty/netty-handler/4.1.34.Final/netty-handler-4.1.34.Final.jar", - "https://mirror.bazel.build/repo1.maven.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-resolver:jar:sources:4.1.43.Final", - "dependencies": [ - "io.netty:netty-common:jar:sources:4.1.43.Final" - ], - "directDependencies": [ - "io.netty:netty-common:jar:sources:4.1.43.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.43.Final/netty-resolver-4.1.43.Final-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.43.Final/netty-resolver-4.1.43.Final-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/io/netty/netty-resolver/4.1.43.Final/netty-resolver-4.1.43.Final-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/io/netty/netty-resolver/4.1.43.Final/netty-resolver-4.1.43.Final-sources.jar" - ], - "sha256": "dc9c4210c7acba3953b4d31bc35913d1e3d206003e0ac3b8e9eeb6f32149cc84", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.43.Final/netty-resolver-4.1.43.Final-sources.jar" - }, - { - "coord": "io.netty:netty-resolver:4.1.43.Final", - "dependencies": [ - "io.netty:netty-common:4.1.43.Final" - ], - "directDependencies": [ - "io.netty:netty-common:4.1.43.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.43.Final/netty-resolver-4.1.43.Final.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.43.Final/netty-resolver-4.1.43.Final.jar", - "https://maven-central.storage-download.googleapis.com/maven2/io/netty/netty-resolver/4.1.43.Final/netty-resolver-4.1.43.Final.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/io/netty/netty-resolver/4.1.43.Final/netty-resolver-4.1.43.Final.jar" - ], - "sha256": "f39b887d6fcc56de1b144ef2e58d9232d78e9c0e5994a90fa4e6645074bea17e", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.43.Final/netty-resolver-4.1.43.Final.jar" - }, - { - "coord": "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.43.Final", - "dependencies": [ - "io.netty:netty-buffer:4.1.43.Final", - "io.netty:netty-common:4.1.43.Final", - "io.netty:netty-resolver:4.1.43.Final", - "io.netty:netty-transport-native-unix-common:4.1.43.Final", - "io.netty:netty-transport:4.1.43.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:4.1.43.Final", - "io.netty:netty-common:4.1.43.Final", - "io.netty:netty-transport-native-unix-common:4.1.43.Final", - "io.netty:netty-transport:4.1.43.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.43.Final/netty-transport-native-epoll-4.1.43.Final-linux-x86_64.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.43.Final/netty-transport-native-epoll-4.1.43.Final-linux-x86_64.jar", - "https://maven-central.storage-download.googleapis.com/maven2/io/netty/netty-transport-native-epoll/4.1.43.Final/netty-transport-native-epoll-4.1.43.Final-linux-x86_64.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.43.Final/netty-transport-native-epoll-4.1.43.Final-linux-x86_64.jar" - ], - "sha256": "abdfa866770d16ff575b2ad499fbeba28153dcad50178b4e92d9e19dbff9ee4c", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.43.Final/netty-transport-native-epoll-4.1.43.Final-linux-x86_64.jar" - }, - { - "coord": "io.netty:netty-transport-native-epoll:jar:sources:4.1.43.Final", - "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.43.Final", - "io.netty:netty-common:jar:sources:4.1.43.Final", - "io.netty:netty-resolver:jar:sources:4.1.43.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.43.Final", - "io.netty:netty-transport:jar:sources:4.1.43.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.43.Final", - "io.netty:netty-common:jar:sources:4.1.43.Final", - "io.netty:netty-transport-native-unix-common:jar:sources:4.1.43.Final", - "io.netty:netty-transport:jar:sources:4.1.43.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.43.Final/netty-transport-native-epoll-4.1.43.Final-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.43.Final/netty-transport-native-epoll-4.1.43.Final-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/io/netty/netty-transport-native-epoll/4.1.43.Final/netty-transport-native-epoll-4.1.43.Final-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.43.Final/netty-transport-native-epoll-4.1.43.Final-sources.jar" - ], - "sha256": "af840af921b8ca50f16cbf9a3cc102c13c60c9b7f56dc958a676e004a99bde37", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.43.Final/netty-transport-native-epoll-4.1.43.Final-sources.jar" - }, - { - "coord": "io.netty:netty-transport-native-unix-common:jar:sources:4.1.43.Final", - "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.43.Final", - "io.netty:netty-common:jar:sources:4.1.43.Final", - "io.netty:netty-resolver:jar:sources:4.1.43.Final", - "io.netty:netty-transport:jar:sources:4.1.43.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.43.Final", - "io.netty:netty-common:jar:sources:4.1.43.Final", - "io.netty:netty-transport:jar:sources:4.1.43.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.43.Final/netty-transport-native-unix-common-4.1.43.Final-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.43.Final/netty-transport-native-unix-common-4.1.43.Final-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/io/netty/netty-transport-native-unix-common/4.1.43.Final/netty-transport-native-unix-common-4.1.43.Final-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/io/netty/netty-transport-native-unix-common/4.1.43.Final/netty-transport-native-unix-common-4.1.43.Final-sources.jar" - ], - "sha256": "02b8703e5844b90fb4667564940ff5d4a2623e2982be1c63e2e39544e2b83a73", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.43.Final/netty-transport-native-unix-common-4.1.43.Final-sources.jar" - }, - { - "coord": "io.netty:netty-transport-native-unix-common:4.1.43.Final", - "dependencies": [ - "io.netty:netty-buffer:4.1.43.Final", - "io.netty:netty-common:4.1.43.Final", - "io.netty:netty-resolver:4.1.43.Final", - "io.netty:netty-transport:4.1.43.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:4.1.43.Final", - "io.netty:netty-common:4.1.43.Final", - "io.netty:netty-transport:4.1.43.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.43.Final/netty-transport-native-unix-common-4.1.43.Final.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.43.Final/netty-transport-native-unix-common-4.1.43.Final.jar", - "https://maven-central.storage-download.googleapis.com/maven2/io/netty/netty-transport-native-unix-common/4.1.43.Final/netty-transport-native-unix-common-4.1.43.Final.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/io/netty/netty-transport-native-unix-common/4.1.43.Final/netty-transport-native-unix-common-4.1.43.Final.jar" - ], - "sha256": "52096f19e091d9e58a107fb111404b93208ab040b3ad37e255caed6481bdd988", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.43.Final/netty-transport-native-unix-common-4.1.43.Final.jar" - }, - { - "coord": "io.netty:netty-transport:jar:sources:4.1.43.Final", - "dependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.43.Final", - "io.netty:netty-common:jar:sources:4.1.43.Final", - "io.netty:netty-resolver:jar:sources:4.1.43.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:jar:sources:4.1.43.Final", - "io.netty:netty-common:jar:sources:4.1.43.Final", - "io.netty:netty-resolver:jar:sources:4.1.43.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.43.Final/netty-transport-4.1.43.Final-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.43.Final/netty-transport-4.1.43.Final-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/io/netty/netty-transport/4.1.43.Final/netty-transport-4.1.43.Final-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/io/netty/netty-transport/4.1.43.Final/netty-transport-4.1.43.Final-sources.jar" - ], - "sha256": "e064da58f75210e21c0bf7066d8d9a6fcd377feb20cfd86bc5d14db09d7409ea", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.43.Final/netty-transport-4.1.43.Final-sources.jar" - }, - { - "coord": "io.netty:netty-transport:4.1.43.Final", - "dependencies": [ - "io.netty:netty-buffer:4.1.43.Final", - "io.netty:netty-common:4.1.43.Final", - "io.netty:netty-resolver:4.1.43.Final" - ], - "directDependencies": [ - "io.netty:netty-buffer:4.1.43.Final", - "io.netty:netty-common:4.1.43.Final", - "io.netty:netty-resolver:4.1.43.Final" - ], - "file": "v1/https/repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.43.Final/netty-transport-4.1.43.Final.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.43.Final/netty-transport-4.1.43.Final.jar", - "https://maven-central.storage-download.googleapis.com/maven2/io/netty/netty-transport/4.1.43.Final/netty-transport-4.1.43.Final.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/io/netty/netty-transport/4.1.43.Final/netty-transport-4.1.43.Final.jar" - ], - "sha256": "94f2b881f1c8d62afe9f349bf6c0ea0c8e58811715c74282872c735069b78503", - "url": "https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.43.Final/netty-transport-4.1.43.Final.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", - "https://maven-central.storage-download.googleapis.com/maven2/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/javax/inject/javax.inject/1/javax.inject-1-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/javax/inject/javax.inject/1/javax.inject-1.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/javax/transaction/jta/1.1/jta-1.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/javax/transaction/jta/1.1/jta-1.1.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.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": "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", - "https://maven-central.storage-download.googleapis.com/maven2/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.jar", - "https://mirror.bazel.build/repo1.maven.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": "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", - "https://maven-central.storage-download.googleapis.com/maven2/joda-time/joda-time/2.10.1/joda-time-2.10.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.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": "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", - "https://maven-central.storage-download.googleapis.com/maven2/joda-time/joda-time/2.10.1/joda-time-2.10.1.jar", - "https://mirror.bazel.build/repo1.maven.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": "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", - "https://maven-central.storage-download.googleapis.com/maven2/junit/junit/4.12/junit-4.12-sources.jar", - "https://mirror.bazel.build/repo1.maven.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": "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", - "https://maven-central.storage-download.googleapis.com/maven2/junit/junit/4.12/junit-4.12.jar", - "https://mirror.bazel.build/repo1.maven.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": "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", - "https://maven-central.storage-download.googleapis.com/maven2/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-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", - "https://maven-central.storage-download.googleapis.com/maven2/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3.jar", - "https://mirror.bazel.build/repo1.maven.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: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", - "https://maven-central.storage-download.googleapis.com/maven2/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.33/htmlunit-core-js-2.33-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-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", - "https://maven-central.storage-download.googleapis.com/maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.33/htmlunit-core-js-2.33.jar", - "https://mirror.bazel.build/repo1.maven.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-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", - "https://maven-central.storage-download.googleapis.com/maven2/net/sourceforge/htmlunit/htmlunit-cssparser/1.2.0/htmlunit-cssparser-1.2.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-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", - "https://maven-central.storage-download.googleapis.com/maven2/net/sourceforge/htmlunit/htmlunit-cssparser/1.2.0/htmlunit-cssparser-1.2.0.jar", - "https://mirror.bazel.build/repo1.maven.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:jar:sources:2.33", - "dependencies": [ - "commons-codec:commons-codec:jar:sources:1.10", - "commons-io:commons-io:jar:sources:2.6", - "commons-logging:commons-logging:jar:sources:1.2", - "commons-net:commons-net:jar:sources:3.6", - "net.sourceforge.htmlunit:htmlunit-core-js:jar:sources:2.33", - "net.sourceforge.htmlunit:htmlunit-cssparser:jar:sources:1.2.0", - "net.sourceforge.htmlunit:neko-htmlunit:jar:sources:2.33", - "org.apache.commons:commons-lang3:jar:sources:3.8", - "org.apache.commons:commons-text:jar:sources:1.4", - "org.apache.httpcomponents:httpclient:jar:sources:4.5.6", - "org.apache.httpcomponents:httpcore:jar:sources:4.4.10", - "org.apache.httpcomponents:httpmime:jar:sources:4.5.6", - "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-client:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-http:jar:sources:9.4.12.v20180830", - "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:jetty-xml:jar:sources:9.4.12.v20180830", - "xalan:serializer:jar:sources:2.7.2", - "xalan:xalan:jar:sources:2.7.2", - "xerces:xercesImpl:jar:sources:2.12.0", - "xml-apis:xml-apis:jar:sources:1.4.01" - ], - "directDependencies": [ - "commons-io:commons-io:jar:sources:2.6", - "commons-logging:commons-logging:jar:sources:1.2", - "commons-net:commons-net:jar:sources:3.6", - "net.sourceforge.htmlunit:htmlunit-core-js:jar:sources:2.33", - "net.sourceforge.htmlunit:htmlunit-cssparser:jar:sources:1.2.0", - "net.sourceforge.htmlunit:neko-htmlunit:jar:sources:2.33", - "org.apache.commons:commons-lang3:jar:sources:3.8", - "org.apache.commons:commons-text:jar:sources:1.4", - "org.apache.httpcomponents:httpmime:jar:sources:4.5.6", - "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.12.v20180830", - "xalan:xalan:jar:sources:2.7.2" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/net/sourceforge/htmlunit/htmlunit/2.33/htmlunit-2.33-sources.jar", - "https://mirror.bazel.build/repo1.maven.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:htmlunit:2.33", - "dependencies": [ - "commons-codec:commons-codec:1.10", - "commons-io:commons-io:2.6", - "commons-logging:commons-logging:1.2", - "commons-net:commons-net:3.6", - "net.sourceforge.htmlunit:htmlunit-core-js:2.33", - "net.sourceforge.htmlunit:htmlunit-cssparser:1.2.0", - "net.sourceforge.htmlunit:neko-htmlunit:2.33", - "org.apache.commons:commons-lang3:3.8", - "org.apache.commons:commons-text:1.4", - "org.apache.httpcomponents:httpclient:4.5.6", - "org.apache.httpcomponents:httpcore:4.4.10", - "org.apache.httpcomponents:httpmime:4.5.6", - "org.eclipse.jetty.websocket:websocket-api:9.4.12.v20180830", - "org.eclipse.jetty.websocket:websocket-client:9.4.12.v20180830", - "org.eclipse.jetty.websocket:websocket-common:9.4.12.v20180830", - "org.eclipse.jetty:jetty-client:9.4.12.v20180830", - "org.eclipse.jetty:jetty-http:9.4.12.v20180830", - "org.eclipse.jetty:jetty-io:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util:9.4.12.v20180830", - "org.eclipse.jetty:jetty-xml:9.4.12.v20180830", - "xalan:serializer:2.7.2", - "xalan:xalan:2.7.2", - "xerces:xercesImpl:2.12.0", - "xml-apis:xml-apis:1.4.01" - ], - "directDependencies": [ - "commons-io:commons-io:2.6", - "commons-logging:commons-logging:1.2", - "commons-net:commons-net:3.6", - "net.sourceforge.htmlunit:htmlunit-core-js:2.33", - "net.sourceforge.htmlunit:htmlunit-cssparser:1.2.0", - "net.sourceforge.htmlunit:neko-htmlunit:2.33", - "org.apache.commons:commons-lang3:3.8", - "org.apache.commons:commons-text:1.4", - "org.apache.httpcomponents:httpmime:4.5.6", - "org.eclipse.jetty.websocket:websocket-client:9.4.12.v20180830", - "xalan:xalan:2.7.2" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/net/sourceforge/htmlunit/htmlunit/2.33/htmlunit-2.33.jar", - "https://mirror.bazel.build/repo1.maven.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: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", - "https://maven-central.storage-download.googleapis.com/maven2/net/sourceforge/htmlunit/neko-htmlunit/2.33/neko-htmlunit-2.33-sources.jar", - "https://mirror.bazel.build/repo1.maven.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": "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", - "https://maven-central.storage-download.googleapis.com/maven2/net/sourceforge/htmlunit/neko-htmlunit/2.33/neko-htmlunit-2.33.jar", - "https://mirror.bazel.build/repo1.maven.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": "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", - "https://maven-central.storage-download.googleapis.com/maven2/org/apache/commons/commons-exec/1.3/commons-exec-1.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-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", - "https://maven-central.storage-download.googleapis.com/maven2/org/apache/commons/commons-exec/1.3/commons-exec-1.3.jar", - "https://mirror.bazel.build/repo1.maven.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-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", - "https://maven-central.storage-download.googleapis.com/maven2/org/apache/commons/commons-lang3/3.8/commons-lang3-3.8-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-lang3:3.8", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.jboss.netty:netty" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/org/apache/commons/commons-lang3/3.8/commons-lang3-3.8.jar", - "https://mirror.bazel.build/repo1.maven.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-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", - "https://maven-central.storage-download.googleapis.com/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4.jar", - "https://mirror.bazel.build/repo1.maven.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.httpcomponents:httpclient:jar:sources:4.5.6", - "dependencies": [ - "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" - ], - "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.jboss.netty:netty" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/org/apache/httpcomponents/httpclient/4.5.6/httpclient-4.5.6-sources.jar", - "https://mirror.bazel.build/repo1.maven.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: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.jboss.netty:netty" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/org/apache/httpcomponents/httpclient/4.5.6/httpclient-4.5.6.jar", - "https://mirror.bazel.build/repo1.maven.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:httpcore:jar:sources:4.4.10", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.jboss.netty:netty" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/org/apache/httpcomponents/httpcore/4.4.10/httpcore-4.4.10-sources.jar", - "https://mirror.bazel.build/repo1.maven.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:httpcore:4.4.10", - "dependencies": [], - "directDependencies": [], - "exclusions": [ - "org.jboss.netty:netty" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/org/apache/httpcomponents/httpcore/4.4.10/httpcore-4.4.10.jar", - "https://mirror.bazel.build/repo1.maven.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:httpmime:jar:sources:4.5.6", - "dependencies": [ - "commons-codec:commons-codec:jar:sources:1.10", - "commons-logging:commons-logging:jar:sources:1.2", - "org.apache.httpcomponents:httpclient:jar:sources:4.5.6", - "org.apache.httpcomponents:httpcore:jar:sources:4.4.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/apache/httpcomponents/httpmime/4.5.6/httpmime-4.5.6-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/apache/httpcomponents/httpmime/4.5.6/httpmime-4.5.6.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/atteo/classindex/classindex/3.4/classindex-3.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/atteo/classindex/classindex/3.4/classindex-3.4.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.jar", - "https://mirror.bazel.build/repo1.maven.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.eclipse.jetty:jetty-client:jar:sources:9.4.12.v20180830", - "dependencies": [ - "org.eclipse.jetty:jetty-http:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util: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", - "https://maven-central.storage-download.googleapis.com/maven2/org/eclipse/jetty/jetty-client/9.4.12.v20180830/jetty-client-9.4.12.v20180830-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-client:9.4.12.v20180830", - "dependencies": [ - "org.eclipse.jetty:jetty-http:9.4.12.v20180830", - "org.eclipse.jetty:jetty-io:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util: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", - "https://maven-central.storage-download.googleapis.com/maven2/org/eclipse/jetty/jetty-client/9.4.12.v20180830/jetty-client-9.4.12.v20180830.jar", - "https://mirror.bazel.build/repo1.maven.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-http:jar:sources:9.4.12.v20180830", - "dependencies": [ - "org.eclipse.jetty:jetty-io:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util: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", - "https://maven-central.storage-download.googleapis.com/maven2/org/eclipse/jetty/jetty-http/9.4.12.v20180830/jetty-http-9.4.12.v20180830-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-http:9.4.12.v20180830", - "dependencies": [ - "org.eclipse.jetty:jetty-io:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util: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", - "https://maven-central.storage-download.googleapis.com/maven2/org/eclipse/jetty/jetty-http/9.4.12.v20180830/jetty-http-9.4.12.v20180830.jar", - "https://mirror.bazel.build/repo1.maven.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-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", - "https://maven-central.storage-download.googleapis.com/maven2/org/eclipse/jetty/jetty-io/9.4.12.v20180830/jetty-io-9.4.12.v20180830-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-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", - "https://maven-central.storage-download.googleapis.com/maven2/org/eclipse/jetty/jetty-io/9.4.12.v20180830/jetty-io-9.4.12.v20180830.jar", - "https://mirror.bazel.build/repo1.maven.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-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", - "https://maven-central.storage-download.googleapis.com/maven2/org/eclipse/jetty/jetty-util/9.4.12.v20180830/jetty-util-9.4.12.v20180830-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-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", - "https://maven-central.storage-download.googleapis.com/maven2/org/eclipse/jetty/jetty-util/9.4.12.v20180830/jetty-util-9.4.12.v20180830.jar", - "https://mirror.bazel.build/repo1.maven.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-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", - "https://maven-central.storage-download.googleapis.com/maven2/org/eclipse/jetty/jetty-xml/9.4.12.v20180830/jetty-xml-9.4.12.v20180830-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/eclipse/jetty/jetty-xml/9.4.12.v20180830/jetty-xml-9.4.12.v20180830.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.12.v20180830/websocket-api-9.4.12.v20180830-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-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", - "https://maven-central.storage-download.googleapis.com/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.12.v20180830/websocket-api-9.4.12.v20180830.jar", - "https://mirror.bazel.build/repo1.maven.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-client:jar:sources:9.4.12.v20180830", - "dependencies": [ - "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-client:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-http:jar:sources:9.4.12.v20180830", - "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:jetty-xml:jar:sources:9.4.12.v20180830" - ], - "directDependencies": [ - "org.eclipse.jetty.websocket:websocket-common: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-util: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", - "https://maven-central.storage-download.googleapis.com/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.12.v20180830/websocket-client-9.4.12.v20180830-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-client:9.4.12.v20180830", - "dependencies": [ - "org.eclipse.jetty.websocket:websocket-api:9.4.12.v20180830", - "org.eclipse.jetty.websocket:websocket-common:9.4.12.v20180830", - "org.eclipse.jetty:jetty-client:9.4.12.v20180830", - "org.eclipse.jetty:jetty-http:9.4.12.v20180830", - "org.eclipse.jetty:jetty-io:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util:9.4.12.v20180830", - "org.eclipse.jetty:jetty-xml: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-io:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util:9.4.12.v20180830", - "org.eclipse.jetty:jetty-xml: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", - "https://maven-central.storage-download.googleapis.com/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.12.v20180830/websocket-client-9.4.12.v20180830.jar", - "https://mirror.bazel.build/repo1.maven.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-common:jar:sources:9.4.12.v20180830", - "dependencies": [ - "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-io:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util:jar:sources:9.4.12.v20180830" - ], - "directDependencies": [ - "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.12.v20180830", - "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/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", - "https://maven-central.storage-download.googleapis.com/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.12.v20180830/websocket-common-9.4.12.v20180830-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.websocket:websocket-common:9.4.12.v20180830", - "dependencies": [ - "org.eclipse.jetty.websocket:websocket-api:9.4.12.v20180830", - "org.eclipse.jetty:jetty-io:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util:9.4.12.v20180830" - ], - "directDependencies": [ - "org.eclipse.jetty.websocket:websocket-api:9.4.12.v20180830", - "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/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", - "https://maven-central.storage-download.googleapis.com/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.12.v20180830/websocket-common-9.4.12.v20180830.jar", - "https://mirror.bazel.build/repo1.maven.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.fluentlenium:fluentlenium-core:jar:sources:3.7.1", - "dependencies": [ - "com.google.guava:guava:jar:sources:27.1-jre", - "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", - "com.squareup.okio:okio:jar:sources:1.14.0", - "commons-codec:commons-codec:jar:sources:1.10", - "commons-io:commons-io:jar:sources:2.6", - "commons-logging:commons-logging:jar:sources:1.2", - "net.bytebuddy:byte-buddy:jar:sources:1.9.3", - "org.apache.commons:commons-exec:jar:sources:1.3", - "org.apache.commons:commons-lang3:jar:sources:3.8", - "org.apache.httpcomponents:httpclient:jar:sources:4.5.6", - "org.apache.httpcomponents:httpcore:jar:sources:4.4.10", - "org.atteo.classindex:classindex:jar:sources:3.4", - "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", - "org.seleniumhq.selenium:selenium-support:jar:sources:3.141.59" - ], - "directDependencies": [ - "commons-io:commons-io:jar:sources:2.6", - "org.apache.commons:commons-lang3:jar:sources:3.8", - "org.apache.httpcomponents:httpclient:jar:sources:4.5.6", - "org.atteo.classindex:classindex:jar:sources:3.4", - "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59", - "org.seleniumhq.selenium:selenium-support:jar:sources:3.141.59" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/org/fluentlenium/fluentlenium-core/3.7.1/fluentlenium-core-3.7.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.fluentlenium:fluentlenium-core:3.7.1", - "dependencies": [ - "com.google.guava:guava:27.1-jre", - "com.squareup.okhttp3:okhttp:3.11.0", - "com.squareup.okio:okio:1.14.0", - "commons-codec:commons-codec:1.10", - "commons-io:commons-io:2.6", - "commons-logging:commons-logging:1.2", - "net.bytebuddy:byte-buddy:1.9.3", - "org.apache.commons:commons-exec:1.3", - "org.apache.commons:commons-lang3:3.8", - "org.apache.httpcomponents:httpclient:4.5.6", - "org.apache.httpcomponents:httpcore:4.4.10", - "org.atteo.classindex:classindex:3.4", - "org.seleniumhq.selenium:selenium-api:3.141.59", - "org.seleniumhq.selenium:selenium-remote-driver:3.141.59", - "org.seleniumhq.selenium:selenium-support:3.141.59" - ], - "directDependencies": [ - "commons-io:commons-io:2.6", - "org.apache.commons:commons-lang3:3.8", - "org.apache.httpcomponents:httpclient:4.5.6", - "org.atteo.classindex:classindex:3.4", - "org.seleniumhq.selenium:selenium-api:3.141.59", - "org.seleniumhq.selenium:selenium-remote-driver:3.141.59", - "org.seleniumhq.selenium:selenium-support:3.141.59" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/org/fluentlenium/fluentlenium-core/3.7.1/fluentlenium-core-3.7.1.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar", - "https://mirror.bazel.build/repo1.maven.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.mockito:mockito-core:jar:sources:2.23.4", - "dependencies": [ - "net.bytebuddy:byte-buddy-agent:jar:sources:1.9.3", - "net.bytebuddy:byte-buddy:jar:sources:1.9.3", - "org.objenesis:objenesis:jar:sources:2.6" - ], - "directDependencies": [ - "net.bytebuddy:byte-buddy-agent:jar:sources:1.9.3", - "net.bytebuddy:byte-buddy: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", - "https://maven-central.storage-download.googleapis.com/maven2/org/mockito/mockito-core/2.23.4/mockito-core-2.23.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.mockito:mockito-core:2.23.4", - "dependencies": [ - "net.bytebuddy:byte-buddy-agent:1.9.3", - "net.bytebuddy:byte-buddy:1.9.3", - "org.objenesis:objenesis:2.6" - ], - "directDependencies": [ - "net.bytebuddy:byte-buddy-agent:1.9.3", - "net.bytebuddy:byte-buddy: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", - "https://maven-central.storage-download.googleapis.com/maven2/org/mockito/mockito-core/2.23.4/mockito-core-2.23.4.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/objenesis/objenesis/2.6/objenesis-2.6-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/objenesis/objenesis/2.6/objenesis-2.6.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar", - "https://mirror.bazel.build/repo1.maven.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.scala-lang.modules:scala-java8-compat_2.12:jar:sources:0.9.0", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-java8-compat_2.12/0.9.0/scala-java8-compat_2.12-0.9.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-java8-compat_2.12/0.9.0/scala-java8-compat_2.12-0.9.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-java8-compat_2.12/0.9.0/scala-java8-compat_2.12-0.9.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-java8-compat_2.12/0.9.0/scala-java8-compat_2.12-0.9.0-sources.jar" - ], - "sha256": "1383c220b0c25125841d7afcd9f0c580d5fa6ef8872d07477123a8e232d86b14", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-java8-compat_2.12/0.9.0/scala-java8-compat_2.12-0.9.0-sources.jar" - }, - { - "coord": "org.scala-lang.modules:scala-java8-compat_2.12:0.9.0", - "dependencies": [ - "org.scala-lang:scala-library:2.12.10" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-java8-compat_2.12/0.9.0/scala-java8-compat_2.12-0.9.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-java8-compat_2.12/0.9.0/scala-java8-compat_2.12-0.9.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-java8-compat_2.12/0.9.0/scala-java8-compat_2.12-0.9.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-java8-compat_2.12/0.9.0/scala-java8-compat_2.12-0.9.0.jar" - ], - "sha256": "1875d3cf1399bb2d3675e5852cd18f282f069e7c38e35b2fff553eefd6428bd8", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-java8-compat_2.12/0.9.0/scala-java8-compat_2.12-0.9.0.jar" - }, - { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2-sources.jar" - ], - "sha256": "8fbe3fa9e748f24aa6d6868c0c2be30d41a02d20428ed5429bb57a897cb756e3", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2-sources.jar" - }, - { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "dependencies": [ - "org.scala-lang:scala-library:2.12.10" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar" - ], - "sha256": "24985eb43e295a9dd77905ada307a850ca25acf819cdb579c093fc6987b0dbc2", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar" - }, - { - "coord": "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0-sources.jar" - ], - "sha256": "288fdce0b296df28725707cc87cff0f65ef435c54e93e0c1fbc5a7fcc8e19ade", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0-sources.jar" - }, - { - "coord": "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "dependencies": [ - "org.scala-lang:scala-library:2.12.10" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar" - ], - "sha256": "1b48dc206f527b7604ef32492ada8e71706c63a65d999e0cabdafdc5793b4d63", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar" - }, - { - "coord": "org.scala-lang:scala-library:jar:sources:2.12.10", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10-sources.jar" - ], - "sha256": "a6f873aeb9b861848e0d0b4ec368a3f1682e33bdf11a82ce26f0bfe5fb197647", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10-sources.jar" - }, - { - "coord": "org.scala-lang:scala-library:2.12.10", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10.jar" - ], - "sha256": "0a57044d10895f8d3dd66ad4286891f607169d948845ac51e17b4c1cf0ab569d", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10.jar" - }, - { - "coord": "org.scala-lang:scala-reflect:jar:sources:2.12.10", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10-sources.jar" - ], - "sha256": "c3a883670038f8030c41e5e3840d592e2c8bd89bf33d7d42a15c60f1207b9a32", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10-sources.jar" - }, - { - "coord": "org.scala-lang:scala-reflect:2.12.10", - "dependencies": [ - "org.scala-lang:scala-library:2.12.10" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10.jar" - ], - "sha256": "56b609e1bab9144fb51525bfa01ccd72028154fc40a58685a1e9adcbe7835730", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0.jar", - "https://mirror.bazel.build/repo1.maven.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.seleniumhq.selenium:htmlunit-driver:jar:sources:2.33.3", - "dependencies": [ - "commons-codec:commons-codec:jar:sources:1.10", - "commons-io:commons-io:jar:sources:2.6", - "commons-logging:commons-logging:jar:sources:1.2", - "commons-net:commons-net:jar:sources:3.6", - "net.sourceforge.htmlunit:htmlunit-core-js:jar:sources:2.33", - "net.sourceforge.htmlunit:htmlunit-cssparser:jar:sources:1.2.0", - "net.sourceforge.htmlunit:htmlunit:jar:sources:2.33", - "net.sourceforge.htmlunit:neko-htmlunit:jar:sources:2.33", - "org.apache.commons:commons-lang3:jar:sources:3.8", - "org.apache.commons:commons-text:jar:sources:1.4", - "org.apache.httpcomponents:httpclient:jar:sources:4.5.6", - "org.apache.httpcomponents:httpcore:jar:sources:4.4.10", - "org.apache.httpcomponents:httpmime:jar:sources:4.5.6", - "org.eclipse.jetty.websocket:websocket-api:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty.websocket:websocket-client:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty.websocket:websocket-common:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-client:jar:sources:9.4.12.v20180830", - "org.eclipse.jetty:jetty-http:jar:sources:9.4.12.v20180830", - "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:jetty-xml:jar:sources:9.4.12.v20180830", - "xalan:serializer:jar:sources:2.7.2", - "xalan:xalan:jar:sources:2.7.2", - "xerces:xercesImpl:jar:sources:2.12.0", - "xml-apis:xml-apis:jar:sources:1.4.01" - ], - "directDependencies": [ - "net.sourceforge.htmlunit:htmlunit:jar:sources:2.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/seleniumhq/selenium/htmlunit-driver/2.33.3/htmlunit-driver-2.33.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.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:htmlunit-driver:2.33.3", - "dependencies": [ - "commons-codec:commons-codec:1.10", - "commons-io:commons-io:2.6", - "commons-logging:commons-logging:1.2", - "commons-net:commons-net:3.6", - "net.sourceforge.htmlunit:htmlunit-core-js:2.33", - "net.sourceforge.htmlunit:htmlunit-cssparser:1.2.0", - "net.sourceforge.htmlunit:htmlunit:2.33", - "net.sourceforge.htmlunit:neko-htmlunit:2.33", - "org.apache.commons:commons-lang3:3.8", - "org.apache.commons:commons-text:1.4", - "org.apache.httpcomponents:httpclient:4.5.6", - "org.apache.httpcomponents:httpcore:4.4.10", - "org.apache.httpcomponents:httpmime:4.5.6", - "org.eclipse.jetty.websocket:websocket-api:9.4.12.v20180830", - "org.eclipse.jetty.websocket:websocket-client:9.4.12.v20180830", - "org.eclipse.jetty.websocket:websocket-common:9.4.12.v20180830", - "org.eclipse.jetty:jetty-client:9.4.12.v20180830", - "org.eclipse.jetty:jetty-http:9.4.12.v20180830", - "org.eclipse.jetty:jetty-io:9.4.12.v20180830", - "org.eclipse.jetty:jetty-util:9.4.12.v20180830", - "org.eclipse.jetty:jetty-xml:9.4.12.v20180830", - "xalan:serializer:2.7.2", - "xalan:xalan:2.7.2", - "xerces:xercesImpl:2.12.0", - "xml-apis:xml-apis:1.4.01" - ], - "directDependencies": [ - "net.sourceforge.htmlunit:htmlunit:2.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/seleniumhq/selenium/htmlunit-driver/2.33.3/htmlunit-driver-2.33.3.jar", - "https://mirror.bazel.build/repo1.maven.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: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", - "https://maven-central.storage-download.googleapis.com/maven2/org/seleniumhq/selenium/selenium-api/3.141.59/selenium-api-3.141.59-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-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", - "https://maven-central.storage-download.googleapis.com/maven2/org/seleniumhq/selenium/selenium-api/3.141.59/selenium-api-3.141.59.jar", - "https://mirror.bazel.build/repo1.maven.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-firefox-driver:jar:sources:3.141.59", - "dependencies": [ - "com.google.guava:guava:jar:sources:27.1-jre", - "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", - "com.squareup.okio:okio:jar:sources:1.14.0", - "net.bytebuddy:byte-buddy:jar:sources:1.9.3", - "org.apache.commons:commons-exec:jar:sources:1.3", - "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59" - ], - "directDependencies": [ - "com.google.guava:guava:jar:sources:27.1-jre", - "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", - "com.squareup.okio:okio:jar:sources:1.14.0", - "net.bytebuddy:byte-buddy:jar:sources:1.9.3", - "org.apache.commons:commons-exec:jar:sources:1.3", - "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59" - ], - "file": "v1/https/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", - "https://maven-central.storage-download.googleapis.com/maven2/org/seleniumhq/selenium/selenium-firefox-driver/3.141.59/selenium-firefox-driver-3.141.59-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-firefox-driver:3.141.59", - "dependencies": [ - "com.google.guava:guava:27.1-jre", - "com.squareup.okhttp3:okhttp:3.11.0", - "com.squareup.okio:okio:1.14.0", - "net.bytebuddy:byte-buddy:1.9.3", - "org.apache.commons:commons-exec:1.3", - "org.seleniumhq.selenium:selenium-api:3.141.59", - "org.seleniumhq.selenium:selenium-remote-driver:3.141.59" - ], - "directDependencies": [ - "com.google.guava:guava:27.1-jre", - "com.squareup.okhttp3:okhttp:3.11.0", - "com.squareup.okio:okio:1.14.0", - "net.bytebuddy:byte-buddy:1.9.3", - "org.apache.commons:commons-exec:1.3", - "org.seleniumhq.selenium:selenium-api:3.141.59", - "org.seleniumhq.selenium:selenium-remote-driver:3.141.59" - ], - "file": "v1/https/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", - "https://maven-central.storage-download.googleapis.com/maven2/org/seleniumhq/selenium/selenium-firefox-driver/3.141.59/selenium-firefox-driver-3.141.59.jar", - "https://mirror.bazel.build/repo1.maven.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-remote-driver:jar:sources:3.141.59", - "dependencies": [ - "com.google.guava:guava:jar:sources:27.1-jre", - "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", - "com.squareup.okio:okio:jar:sources:1.14.0", - "net.bytebuddy:byte-buddy:jar:sources:1.9.3", - "org.apache.commons:commons-exec:jar:sources:1.3", - "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59" - ], - "directDependencies": [ - "com.google.guava:guava:jar:sources:27.1-jre", - "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", - "com.squareup.okio:okio:jar:sources:1.14.0", - "net.bytebuddy:byte-buddy:jar:sources:1.9.3", - "org.apache.commons:commons-exec:jar:sources:1.3", - "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59" - ], - "exclusions": [ - "org.jboss.netty:netty" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/org/seleniumhq/selenium/selenium-remote-driver/3.141.59/selenium-remote-driver-3.141.59-sources.jar", - "https://mirror.bazel.build/repo1.maven.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-remote-driver:3.141.59", - "dependencies": [ - "com.google.guava:guava:27.1-jre", - "com.squareup.okhttp3:okhttp:3.11.0", - "com.squareup.okio:okio:1.14.0", - "net.bytebuddy:byte-buddy:1.9.3", - "org.apache.commons:commons-exec:1.3", - "org.seleniumhq.selenium:selenium-api:3.141.59" - ], - "directDependencies": [ - "com.google.guava:guava:27.1-jre", - "com.squareup.okhttp3:okhttp:3.11.0", - "com.squareup.okio:okio:1.14.0", - "net.bytebuddy:byte-buddy:1.9.3", - "org.apache.commons:commons-exec:1.3", - "org.seleniumhq.selenium:selenium-api:3.141.59" - ], - "exclusions": [ - "org.jboss.netty:netty" - ], - "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", - "https://maven-central.storage-download.googleapis.com/maven2/org/seleniumhq/selenium/selenium-remote-driver/3.141.59/selenium-remote-driver-3.141.59.jar", - "https://mirror.bazel.build/repo1.maven.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-support:jar:sources:3.141.59", - "dependencies": [ - "com.google.guava:guava:jar:sources:27.1-jre", - "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", - "com.squareup.okio:okio:jar:sources:1.14.0", - "net.bytebuddy:byte-buddy:jar:sources:1.9.3", - "org.apache.commons:commons-exec:jar:sources:1.3", - "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59" - ], - "directDependencies": [ - "com.google.guava:guava:jar:sources:27.1-jre", - "com.squareup.okhttp3:okhttp:jar:sources:3.11.0", - "com.squareup.okio:okio:jar:sources:1.14.0", - "net.bytebuddy:byte-buddy:jar:sources:1.9.3", - "org.apache.commons:commons-exec:jar:sources:1.3", - "org.seleniumhq.selenium:selenium-api:jar:sources:3.141.59", - "org.seleniumhq.selenium:selenium-remote-driver:jar:sources:3.141.59" - ], - "file": "v1/https/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", - "https://maven-central.storage-download.googleapis.com/maven2/org/seleniumhq/selenium/selenium-support/3.141.59/selenium-support-3.141.59-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.seleniumhq.selenium:selenium-support:3.141.59", - "dependencies": [ - "com.google.guava:guava:27.1-jre", - "com.squareup.okhttp3:okhttp:3.11.0", - "com.squareup.okio:okio:1.14.0", - "net.bytebuddy:byte-buddy:1.9.3", - "org.apache.commons:commons-exec:1.3", - "org.seleniumhq.selenium:selenium-api:3.141.59", - "org.seleniumhq.selenium:selenium-remote-driver:3.141.59" - ], - "directDependencies": [ - "com.google.guava:guava:27.1-jre", - "com.squareup.okhttp3:okhttp:3.11.0", - "com.squareup.okio:okio:1.14.0", - "net.bytebuddy:byte-buddy:1.9.3", - "org.apache.commons:commons-exec:1.3", - "org.seleniumhq.selenium:selenium-api:3.141.59", - "org.seleniumhq.selenium:selenium-remote-driver:3.141.59" - ], - "file": "v1/https/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", - "https://maven-central.storage-download.googleapis.com/maven2/org/seleniumhq/selenium/selenium-support/3.141.59/selenium-support-3.141.59.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/slf4j/jcl-over-slf4j/1.7.26/jcl-over-slf4j-1.7.26-sources.jar", - "https://mirror.bazel.build/repo1.maven.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: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", - "https://maven-central.storage-download.googleapis.com/maven2/org/slf4j/jcl-over-slf4j/1.7.26/jcl-over-slf4j-1.7.26.jar", - "https://mirror.bazel.build/repo1.maven.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: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", - "https://maven-central.storage-download.googleapis.com/maven2/org/slf4j/jul-to-slf4j/1.7.26/jul-to-slf4j-1.7.26-sources.jar", - "https://mirror.bazel.build/repo1.maven.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: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", - "https://maven-central.storage-download.googleapis.com/maven2/org/slf4j/jul-to-slf4j/1.7.26/jul-to-slf4j-1.7.26.jar", - "https://mirror.bazel.build/repo1.maven.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: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", - "https://maven-central.storage-download.googleapis.com/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26-sources.jar", - "https://mirror.bazel.build/repo1.maven.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.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", - "https://maven-central.storage-download.googleapis.com/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26.jar", - "https://mirror.bazel.build/repo1.maven.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.specs2:specs2-common_2.12:jar:sources:4.7.0", - "dependencies": [ - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.scala-lang:scala-reflect:jar:sources:2.12.10", - "org.specs2:specs2-fp_2.12:jar:sources:4.7.0" - ], - "directDependencies": [ - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.scala-lang:scala-reflect:jar:sources:2.12.10", - "org.specs2:specs2-fp_2.12:jar:sources:4.7.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-common_2.12/4.7.0/specs2-common_2.12-4.7.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.12/4.7.0/specs2-common_2.12-4.7.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-common_2.12/4.7.0/specs2-common_2.12-4.7.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-common_2.12/4.7.0/specs2-common_2.12-4.7.0-sources.jar" - ], - "sha256": "49d15a046fab2a52cbbaf74e7d11500e0b0231f71f309a581c05089e62528658", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.12/4.7.0/specs2-common_2.12-4.7.0-sources.jar" - }, - { - "coord": "org.specs2:specs2-common_2.12:4.7.0", - "dependencies": [ - "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "org.scala-lang:scala-library:2.12.10", - "org.scala-lang:scala-reflect:2.12.10", - "org.specs2:specs2-fp_2.12:4.7.0" - ], - "directDependencies": [ - "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "org.scala-lang:scala-library:2.12.10", - "org.scala-lang:scala-reflect:2.12.10", - "org.specs2:specs2-fp_2.12:4.7.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-common_2.12/4.7.0/specs2-common_2.12-4.7.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.12/4.7.0/specs2-common_2.12-4.7.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-common_2.12/4.7.0/specs2-common_2.12-4.7.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-common_2.12/4.7.0/specs2-common_2.12-4.7.0.jar" - ], - "sha256": "3adf0501036081f8314853030775dda79d879dbd9b57f4ec6836f2b220f84dfa", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.12/4.7.0/specs2-common_2.12-4.7.0.jar" - }, - { - "coord": "org.specs2:specs2-core_2.12:jar:sources:4.7.0", - "dependencies": [ - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.scala-lang:scala-reflect:jar:sources:2.12.10", - "org.scala-sbt:test-interface:jar:sources:1.0", - "org.specs2:specs2-common_2.12:jar:sources:4.7.0", - "org.specs2:specs2-fp_2.12:jar:sources:4.7.0", - "org.specs2:specs2-matcher_2.12:jar:sources:4.7.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.scala-sbt:test-interface:jar:sources:1.0", - "org.specs2:specs2-common_2.12:jar:sources:4.7.0", - "org.specs2:specs2-matcher_2.12:jar:sources:4.7.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-core_2.12/4.7.0/specs2-core_2.12-4.7.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.12/4.7.0/specs2-core_2.12-4.7.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-core_2.12/4.7.0/specs2-core_2.12-4.7.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-core_2.12/4.7.0/specs2-core_2.12-4.7.0-sources.jar" - ], - "sha256": "3ce357d6143a2c8457059a86206552001d3bbdadab5199e71389fd9270190079", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.12/4.7.0/specs2-core_2.12-4.7.0-sources.jar" - }, - { - "coord": "org.specs2:specs2-core_2.12:4.7.0", - "dependencies": [ - "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "org.scala-lang:scala-library:2.12.10", - "org.scala-lang:scala-reflect:2.12.10", - "org.scala-sbt:test-interface:1.0", - "org.specs2:specs2-common_2.12:4.7.0", - "org.specs2:specs2-fp_2.12:4.7.0", - "org.specs2:specs2-matcher_2.12:4.7.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.10", - "org.scala-sbt:test-interface:1.0", - "org.specs2:specs2-common_2.12:4.7.0", - "org.specs2:specs2-matcher_2.12:4.7.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-core_2.12/4.7.0/specs2-core_2.12-4.7.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.12/4.7.0/specs2-core_2.12-4.7.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-core_2.12/4.7.0/specs2-core_2.12-4.7.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-core_2.12/4.7.0/specs2-core_2.12-4.7.0.jar" - ], - "sha256": "f34c0bddab74432cb0524f18ddae92369936cfd40f76f896857c2f193357018d", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.12/4.7.0/specs2-core_2.12-4.7.0.jar" - }, - { - "coord": "org.specs2:specs2-fp_2.12:jar:sources:4.7.0", - "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.12/4.7.0/specs2-fp_2.12-4.7.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.12/4.7.0/specs2-fp_2.12-4.7.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-fp_2.12/4.7.0/specs2-fp_2.12-4.7.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-fp_2.12/4.7.0/specs2-fp_2.12-4.7.0-sources.jar" - ], - "sha256": "fb7c9e16589a19bed1002a5ab9d473151ec8b2bd6253e13877fe53749b349dd8", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.12/4.7.0/specs2-fp_2.12-4.7.0-sources.jar" - }, - { - "coord": "org.specs2:specs2-fp_2.12:4.7.0", - "dependencies": [ - "org.scala-lang:scala-library:2.12.10" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.10" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.12/4.7.0/specs2-fp_2.12-4.7.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.12/4.7.0/specs2-fp_2.12-4.7.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-fp_2.12/4.7.0/specs2-fp_2.12-4.7.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-fp_2.12/4.7.0/specs2-fp_2.12-4.7.0.jar" - ], - "sha256": "279baac59790c83f7de0de03ad7fc468f4dd5594f94dc2bc12e35d8d7694c4a1", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.12/4.7.0/specs2-fp_2.12-4.7.0.jar" - }, - { - "coord": "org.specs2:specs2-junit_2.12:jar:sources:4.5.1", - "dependencies": [ - "junit:junit:jar:sources:4.12", - "org.hamcrest:hamcrest-core:jar:sources:1.3", - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.scala-sbt:test-interface:jar:sources:1.0", - "org.specs2:specs2-core_2.12:jar:sources:4.7.0" - ], - "directDependencies": [ - "junit:junit:jar:sources:4.12", - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.scala-sbt:test-interface:jar:sources:1.0", - "org.specs2:specs2-core_2.12:jar:sources:4.7.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-junit_2.12/4.5.1/specs2-junit_2.12-4.5.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-junit_2.12/4.5.1/specs2-junit_2.12-4.5.1-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-junit_2.12/4.5.1/specs2-junit_2.12-4.5.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-junit_2.12/4.5.1/specs2-junit_2.12-4.5.1-sources.jar" - ], - "sha256": "af64659fde831171a7403c997efd895292554d2474e9ea7c263618586ea5600f", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-junit_2.12/4.5.1/specs2-junit_2.12-4.5.1-sources.jar" - }, - { - "coord": "org.specs2:specs2-junit_2.12:4.5.1", - "dependencies": [ - "junit:junit:4.12", - "org.hamcrest:hamcrest-core:1.3", - "org.scala-lang:scala-library:2.12.10", - "org.scala-sbt:test-interface:1.0", - "org.specs2:specs2-core_2.12:4.7.0" - ], - "directDependencies": [ - "junit:junit:4.12", - "org.scala-lang:scala-library:2.12.10", - "org.scala-sbt:test-interface:1.0", - "org.specs2:specs2-core_2.12:4.7.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-junit_2.12/4.5.1/specs2-junit_2.12-4.5.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-junit_2.12/4.5.1/specs2-junit_2.12-4.5.1.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-junit_2.12/4.5.1/specs2-junit_2.12-4.5.1.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-junit_2.12/4.5.1/specs2-junit_2.12-4.5.1.jar" - ], - "sha256": "eeb7ca677273b256d1b0c4b610b3b1ea5eb436005b316641bde9582f25c5a3fb", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-junit_2.12/4.5.1/specs2-junit_2.12-4.5.1.jar" - }, - { - "coord": "org.specs2:specs2-matcher_2.12:jar:sources:4.7.0", - "dependencies": [ - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.2.0", - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.scala-lang:scala-reflect:jar:sources:2.12.10", - "org.specs2:specs2-common_2.12:jar:sources:4.7.0", - "org.specs2:specs2-fp_2.12:jar:sources:4.7.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.specs2:specs2-common_2.12:jar:sources:4.7.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.12/4.7.0/specs2-matcher_2.12-4.7.0-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.12/4.7.0/specs2-matcher_2.12-4.7.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-matcher_2.12/4.7.0/specs2-matcher_2.12-4.7.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-matcher_2.12/4.7.0/specs2-matcher_2.12-4.7.0-sources.jar" - ], - "sha256": "d2ec230cea850db83045a549b9f5897020f953252d5cf70c04294d8828e27ba0", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.12/4.7.0/specs2-matcher_2.12-4.7.0-sources.jar" - }, - { - "coord": "org.specs2:specs2-matcher_2.12:4.7.0", - "dependencies": [ - "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", - "org.scala-lang.modules:scala-xml_2.12:1.2.0", - "org.scala-lang:scala-library:2.12.10", - "org.scala-lang:scala-reflect:2.12.10", - "org.specs2:specs2-common_2.12:4.7.0", - "org.specs2:specs2-fp_2.12:4.7.0" - ], - "directDependencies": [ - "org.scala-lang:scala-library:2.12.10", - "org.specs2:specs2-common_2.12:4.7.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.12/4.7.0/specs2-matcher_2.12-4.7.0.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.12/4.7.0/specs2-matcher_2.12-4.7.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-matcher_2.12/4.7.0/specs2-matcher_2.12-4.7.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-matcher_2.12/4.7.0/specs2-matcher_2.12-4.7.0.jar" - ], - "sha256": "e15a253fed025db193c63a188eb212c2bb7160ab6bb70a9a841bbc2686bca18b", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.12/4.7.0/specs2-matcher_2.12-4.7.0.jar" - }, - { - "coord": "org.specs2:specs2-mock_2.12:jar:sources:4.5.1", - "dependencies": [ - "net.bytebuddy:byte-buddy-agent:jar:sources:1.9.3", - "net.bytebuddy:byte-buddy:jar:sources:1.9.3", - "org.hamcrest:hamcrest-core:jar:sources:1.3", - "org.mockito:mockito-core:jar:sources:2.23.4", - "org.objenesis:objenesis:jar:sources:2.6", - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.scala-sbt:test-interface:jar:sources:1.0", - "org.specs2:specs2-core_2.12:jar:sources:4.7.0" - ], - "directDependencies": [ - "org.hamcrest:hamcrest-core:jar:sources:1.3", - "org.mockito:mockito-core:jar:sources:2.23.4", - "org.scala-lang:scala-library:jar:sources:2.12.10", - "org.scala-sbt:test-interface:jar:sources:1.0", - "org.specs2:specs2-core_2.12:jar:sources:4.7.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-mock_2.12/4.5.1/specs2-mock_2.12-4.5.1-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-mock_2.12/4.5.1/specs2-mock_2.12-4.5.1-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-mock_2.12/4.5.1/specs2-mock_2.12-4.5.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-mock_2.12/4.5.1/specs2-mock_2.12-4.5.1-sources.jar" - ], - "sha256": "dac556f40a776346d91700926bb931003ea5bbb4427f3f51ac1233eef5782ec6", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-mock_2.12/4.5.1/specs2-mock_2.12-4.5.1-sources.jar" - }, - { - "coord": "org.specs2:specs2-mock_2.12:4.5.1", - "dependencies": [ - "net.bytebuddy:byte-buddy-agent:1.9.3", - "net.bytebuddy:byte-buddy:1.9.3", - "org.hamcrest:hamcrest-core:1.3", - "org.mockito:mockito-core:2.23.4", - "org.objenesis:objenesis:2.6", - "org.scala-lang:scala-library:2.12.10", - "org.scala-sbt:test-interface:1.0", - "org.specs2:specs2-core_2.12:4.7.0" - ], - "directDependencies": [ - "org.hamcrest:hamcrest-core:1.3", - "org.mockito:mockito-core:2.23.4", - "org.scala-lang:scala-library:2.12.10", - "org.scala-sbt:test-interface:1.0", - "org.specs2:specs2-core_2.12:4.7.0" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-mock_2.12/4.5.1/specs2-mock_2.12-4.5.1.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-mock_2.12/4.5.1/specs2-mock_2.12-4.5.1.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-mock_2.12/4.5.1/specs2-mock_2.12-4.5.1.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-mock_2.12/4.5.1/specs2-mock_2.12-4.5.1.jar" - ], - "sha256": "1ee77f935757654c00511d0b452b8472042a5b9bd235535e7f2968613822b7c5", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-mock_2.12/4.5.1/specs2-mock_2.12-4.5.1.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", - "https://maven-central.storage-download.googleapis.com/maven2/xalan/serializer/2.7.2/serializer-2.7.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.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: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", - "https://maven-central.storage-download.googleapis.com/maven2/xalan/serializer/2.7.2/serializer-2.7.2.jar", - "https://mirror.bazel.build/repo1.maven.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: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", - "https://maven-central.storage-download.googleapis.com/maven2/xalan/xalan/2.7.2/xalan-2.7.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.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": "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", - "https://maven-central.storage-download.googleapis.com/maven2/xalan/xalan/2.7.2/xalan-2.7.2.jar", - "https://mirror.bazel.build/repo1.maven.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": "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", - "https://maven-central.storage-download.googleapis.com/maven2/xerces/xercesImpl/2.12.0/xercesImpl-2.12.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.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": "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", - "https://maven-central.storage-download.googleapis.com/maven2/xerces/xercesImpl/2.12.0/xercesImpl-2.12.0.jar", - "https://mirror.bazel.build/repo1.maven.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": "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", - "https://maven-central.storage-download.googleapis.com/maven2/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01-sources.jar", - "https://mirror.bazel.build/repo1.maven.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": "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", - "https://maven-central.storage-download.googleapis.com/maven2/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar", - "https://mirror.bazel.build/repo1.maven.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": "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": 1893403208, + "__RESOLVED_ARTIFACTS_HASH": 1697034617, + "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": "6115c6cac5ed1d9db810d14f2f7f4dd6a9f21f0acbba8016e4daaca2ba0f5eb8", + "sources": "14b250277885d0b36aace020d4dbace25eafc5908b339fa90a872e848044731f" + }, + "version": "1.5.6" + }, + "ch.qos.logback:logback-core": { + "shasums": { + "jar": "898c7d120199f37e1acc8118d97ab15a4d02b0e72e27ba9f05843cb374e160c6", + "sources": "5e06c4e3cfd283ea10b4f73c199a8acb913eb7201d95b609c601e50b2bff7b61" + }, + "version": "1.5.6" + }, + "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_3": { + "shasums": { + "jar": "b90e5de7dd9d3a215c448d5075a34cacf8489bbadb98ff0095d43a9dd3393aba", + "sources": "c30c481efbec70704a0aa92fc1f01f958439e228bb40f789c9d89ea580fe45c7" + }, + "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:config": { + "shasums": { + "jar": "8ada4c185ce72416712d63e0b5afdc5f009c0cdf405e5f26efecdf156aa5dfb6", + "sources": "d3330505601cc47d97d03349d93dff32c85ec3881b5b168a8881c6af8ceb852a" + }, + "version": "1.4.3" + }, + "com.typesafe:ssl-config-core_3": { + "shasums": { + "jar": "429b65decb3794be9430b3ff5330de61cd0a058b2345521636e698d3fd34e7e5", + "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": "94f53baeefe84c9778cd19ffb4f3d2af55eccbccac5e54a3cbf19ec17f0ede25", + "sources": "8a2e6ed855b9c83a05f09a37c02288206da65a02f55d652da0c54539814cf02d" + }, + "version": "1.14.8" + }, + "net.bytebuddy:byte-buddy-agent": { + "shasums": { + "jar": "f7c60fd229df2b0f4e390f50e0582a23ac1d895645df0d487c54dd67a289800b", + "sources": "d7ddd0c47c810e493ffc91debe7e6737ce9b08960bb64f2712f642e8db5108f6" + }, + "version": "1.14.8" + }, + "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.apache.pekko:pekko-actor-typed_3": { + "shasums": { + "jar": "4af9b5c4dc8943bb0f92aedabe5169a1baa1689b86478b84b285f5324b5b7546", + "sources": "13bd3cb99da7b076dafa8504868d835ff59750b3a3ec2f2dc4686d0bb164661f" + }, + "version": "1.0.2" + }, + "org.apache.pekko:pekko-actor_3": { + "shasums": { + "jar": "e38a6f9948687b2cefdfc4dbf0a99bf4c0b4b81108cf842dc14786d482b93f32", + "sources": "0167d02017fc2de80fac638c2715c60118cc238dade10089032d2788fd97aa95" + }, + "version": "1.0.2" + }, + "org.apache.pekko:pekko-protobuf-v3_3": { + "shasums": { + "jar": "7fb0dfbd827e7fb19443cfd5f8449e6c97d11b6705949179cf240275d67b0dd8", + "sources": "e096a2c00dabdd7078c8f77ab9f5a52994e07c92c675fff4a4b2825c2dcac0da" + }, + "version": "1.0.2" + }, + "org.apache.pekko:pekko-serialization-jackson_3": { + "shasums": { + "jar": "5d7006344b354c65cb3666dc613616a5a4c03247e577966a6427003a88e20ebe", + "sources": "be360b0897748217829733a27278a0eefe82ad0611f16e601870ab3db8ab4413" + }, + "version": "1.0.2" + }, + "org.apache.pekko:pekko-slf4j_3": { + "shasums": { + "jar": "a3383b3ec3523693b44ad7598e3c39d91b357c1e66cd6063e32e456bb0c53aaa", + "sources": "7ea4ad9a7f5e42f987ee9f4c08e7af1f7bb7632ad2deab3e7cd958502c0c1498" + }, + "version": "1.0.2" + }, + "org.apache.pekko:pekko-stream_3": { + "shasums": { + "jar": "992896d35678ce1cc6fc17540b4a7ad7866cf346e4fc6b16b3b236b75af034ab", + "sources": "84f2bb1d1b37f708ea4b173aed9a081a9ca63166e9715ed79e5f56dc113cb2e4" + }, + "version": "1.0.2" + }, + "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-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": "aaf9aabadf375eb2755b5aab685f14e5c74268c657cb95c0cc7badbd665d9cda", + "sources": "0a42c1a87adaa4271dcf9cf545c9c78f1a2f0e8b90a1c410b6c419e3e1d99f51" + }, + "version": "5.6.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.playframework.twirl:twirl-api_3": { + "shasums": { + "jar": "550e4b0b2ef22d22124a1f83b8f6b1b12c3643707b9d32354af5760aa6f696fc", + "sources": "4505baa19a38c5fe3498a42c7a56d0fb833176debd064e4385ef2cd6800e22df" + }, + "version": "2.0.6" + }, + "org.playframework:play-build-link": { + "shasums": { + "jar": "ac8b9ec2dc2bc0a56ac89191bd1a8e21a40c60dc938c59f7e259ad12acc60d70", + "sources": "5db19dda9ffd3827fc48aa3e880946886b5d51c16cdfbb656c55358907fff5a8" + }, + "version": "3.0.4" + }, + "org.playframework:play-configuration_3": { + "shasums": { + "jar": "a59f01ddeadf4ef81e039700dfa9c154fc73d5c8fdc7be651634d8075b6a2193", + "sources": "e403f1f020f95899e8d8d493c2d3563dcf22df0dfd3b3dcacc017d41b654dd81" + }, + "version": "3.0.4" + }, + "org.playframework:play-exceptions": { + "shasums": { + "jar": "2edfcfdbd3576421768a8f9fa0ae4f1884fb9a432e69f7d5e89272fa17acb489", + "sources": "05a56c4b29ed10e0cf6ce7caef7dc7cb23b19d02c66468bff43fed2f407db668" + }, + "version": "3.0.4" + }, + "org.playframework:play-functional_3": { + "shasums": { + "jar": "a0ff6d625cb7066a3e559148751e6d5822b76847008e544fceddac29a63ccf3e", + "sources": "130056318d90cadcbb1c8bd65c188963a9d20a302d71b168460d2c7deb54a972" + }, + "version": "3.0.4" + }, + "org.playframework:play-guice_3": { + "shasums": { + "jar": "a82ad83337c53784cce38c9317e12fa52f777e08a3022a437fe1807f17ab09a2", + "sources": "6be0e0b0214968a87d86b8eb678feb7e1aa86e28c02d5d450232d5fbcc35f96c" + }, + "version": "3.0.4" + }, + "org.playframework:play-json_3": { + "shasums": { + "jar": "cccc992d104f5694798ee5391d29758ba59e374d1edc82a43cd9f3bdcc57764a", + "sources": "b8eec5e983e866af339aea1aca4d2104fcfa47e90daadfff99409f8509b804fb" + }, + "version": "3.0.4" + }, + "org.playframework:play-server_3": { + "shasums": { + "jar": "ad0a962c08fd948e469d2e146f167d994d6181109edcfc8f941220596ae34002", + "sources": "88331a786fbd0929a06234d4998549665bce5c4b7705798e6f87354dd0b512ba" + }, + "version": "3.0.4" + }, + "org.playframework:play-specs2_3": { + "shasums": { + "jar": "252b9110c39a242f683442280b71398b394b8d01f308e4d0237735e507f2e8a3", + "sources": "b7cdf363db85311810eda05027685e319ebfbea7214c44c84d6bfa7ce83f8123" + }, + "version": "3.0.4" + }, + "org.playframework:play-streams_3": { + "shasums": { + "jar": "03799cbaf0d7e5ae0e799b467378190d63606c41e21c621ecfb8fafdcd833392", + "sources": "1eec54ddc52d96d0a8889bd5ee2cd4f68b1372043affc7a820769a26bc3cf55b" + }, + "version": "3.0.4" + }, + "org.playframework:play-test_3": { + "shasums": { + "jar": "2e3ae91bc88db1816bdc41baa59eac3514d31f4f15bee61562fd3f5f48b89353", + "sources": "0a1fcd4734f8628ca853d9ef2b049164c069c69770d863c694f8da125a80f035" + }, + "version": "3.0.4" + }, + "org.playframework:play_3": { + "shasums": { + "jar": "4750a911c7b465fbbbd6303a9b9e393a1a0a791de706b6494c875ceef6f21fe3", + "sources": "c3cf5bea4f18b87eb7bc2fe80595afcd2686d4d552fa1e6677d3094ea7b06659" + }, + "version": "3.0.4" + }, + "org.portable-scala:portable-scala-reflect_2.13": { + "shasums": { + "jar": "920f62979293069cf721865f931e42f9f7b0b2720ee9f6a9ddff76a19ecf8d4e", + "sources": "3bbb19a14c6cff77e19b64310d8dbfc54e5aa2b9d08d40dd8951e85d2d5d8b2f" + }, + "version": "1.1.3" + }, + "org.reactivestreams:reactive-streams": { + "shasums": { + "jar": "f75ca597789b3dac58f61857b9ac2e1034a68fa672db35055a8fb4509e325f28", + "sources": "5a7a36ae9536698c434ebe119feb374d721210fee68eb821a37ef3859b64b708" + }, + "version": "1.0.4" + }, + "org.scala-lang.modules:scala-parser-combinators_3": { + "shasums": { + "jar": "c3d4e8de5d2ce71d70d5d227b54714a50b32a1edf2d4be0a9fdbe88cdcd44b48", + "sources": "57890ac2e087209d1e7bdba49f3f78fada9e254c4a3c43b9c5afb10405ecf3ab" + }, + "version": "2.3.0" + }, + "org.scala-lang.modules:scala-xml_3": { + "shasums": { + "jar": "3220723238102107ab83182468e5dbe351b081a0601386710ef46c81a95d38d0", + "sources": "d76b5646ed58104dfbc9705d70031c35b3aad49c23f652e9d83a45398e9292f2" + }, + "version": "2.3.0" + }, + "org.scala-lang:scala-library": { + "shasums": { + "jar": "c6a879e4973a60f6162668542a33eaccc2bb565d1c934fb061c5844259131dd1", + "sources": "df3f19e71b4d2dd6bb882a6deafb31c7dceaad4f26489b9fd9ca56b493229174" + }, + "version": "2.13.12" + }, + "org.scala-lang:scala3-library_3": { + "shasums": { + "jar": "16fe064f1373ed6f098d3d9f812a398ed5075db4bf2721c04e630502cb352816", + "sources": "8ad889e79b1e8c393dc7e03ae2b510d280bea4561c2e35c0948919bd9724e757" + }, + "version": "3.3.3" + }, + "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": "c53560fa3a0837964207dd1f7835d0e6cea0835bd110e94696f2dc65f27e6f5a", + "sources": "f092ac7019818e222049883cd479b23527b6ba27141c111c784e5f0fe7ed1660" + }, + "version": "2.0.13" + }, + "org.slf4j:jul-to-slf4j": { + "shasums": { + "jar": "fa5ed8f23df2158d0d4d5c82f85cae289d36cc3cd7b7497deff5a37b0b7d7878", + "sources": "0881e75e604ae0e9d8a5884712ba6f05b512cb9dffaa09a52e168b95fff3eadc" + }, + "version": "2.0.13" + }, + "org.slf4j:slf4j-api": { + "shasums": { + "jar": "e7c2a48e8515ba1f49fa637d57b4e2f590b3f5bd97407ac699c3aa5efb1204a9", + "sources": "84f366caa66ddaa9d204e5525580b562271663c05970f056815a1be8489e8b52" + }, + "version": "2.0.13" + }, + "org.specs2:specs2-common_3": { + "shasums": { + "jar": "56752caa2a417833638f896b76a0928b4f95918d07e0509f2b415991e9fa5d77", + "sources": "75033f87e585d3ed806ae5478715b19e8528c027e8d7fba0a29cf7f81f81183b" + }, + "version": "4.20.8" + }, + "org.specs2:specs2-core_3": { + "shasums": { + "jar": "a8ac36943f31eddc30c21dda64b71e8d27eee70aa909dcec39f7375296387b36", + "sources": "ae6852534e2a77e1d53865a62bd882c63aaa66042e0b85735cfc339a93855b88" + }, + "version": "4.20.8" + }, + "org.specs2:specs2-fp_3": { + "shasums": { + "jar": "7dbe493a33f90cad205a4611320eb606cf6a511f5ff98537f66f59e5bfa9a525", + "sources": "8862e46078702b21cd42a6c666f53af4eb6a2a1bbb0baa1060d065feeef69734" + }, + "version": "4.20.8" + }, + "org.specs2:specs2-junit_3": { + "shasums": { + "jar": "5ca54267d0925c48a16b6e9f00d17e76a06476d670d4ba978b6a70efd103c756", + "sources": "28f2c6e7eb9b8297f79939e7f7f429ba4e0ac910babf7dba42a45f115d0b5fc7" + }, + "version": "4.20.7" + }, + "org.specs2:specs2-matcher_3": { + "shasums": { + "jar": "12b15282c22ea47165bf5cf4be58bf91553155b1c529da540e84805c205cd744", + "sources": "dd951378437b77a58523bc53074c517a10d42dedb7ca0bf511bc94d16d9220af" + }, + "version": "4.20.8" } + }, + "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_3": [ + "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:scala3-library_3" + ], + "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:ssl-config-core_3": [ + "com.typesafe:config", + "org.scala-lang:scala3-library_3" + ], + "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.apache.pekko:pekko-actor-typed_3": [ + "org.apache.pekko:pekko-actor_3", + "org.apache.pekko:pekko-slf4j_3", + "org.scala-lang:scala3-library_3", + "org.slf4j:slf4j-api" + ], + "org.apache.pekko:pekko-actor_3": [ + "com.typesafe:config", + "org.scala-lang:scala3-library_3" + ], + "org.apache.pekko:pekko-serialization-jackson_3": [ + "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_3", + "org.apache.pekko:pekko-actor_3", + "org.lz4:lz4-java", + "org.scala-lang:scala3-library_3" + ], + "org.apache.pekko:pekko-slf4j_3": [ + "org.apache.pekko:pekko-actor_3", + "org.scala-lang:scala3-library_3", + "org.slf4j:slf4j-api" + ], + "org.apache.pekko:pekko-stream_3": [ + "com.typesafe:ssl-config-core_3", + "org.apache.pekko:pekko-actor_3", + "org.apache.pekko:pekko-protobuf-v3_3", + "org.reactivestreams:reactive-streams", + "org.scala-lang:scala3-library_3" + ], + "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.playframework.twirl:twirl-api_3": [ + "org.scala-lang.modules:scala-xml_3", + "org.scala-lang:scala3-library_3" + ], + "org.playframework:play-build-link": [ + "org.playframework:play-exceptions" + ], + "org.playframework:play-configuration_3": [ + "com.typesafe:config", + "org.playframework:play-exceptions", + "org.scala-lang:scala3-library_3", + "org.slf4j:slf4j-api" + ], + "org.playframework:play-functional_3": [ + "org.scala-lang:scala3-library_3" + ], + "org.playframework:play-guice_3": [ + "com.google.inject.extensions:guice-assistedinject", + "com.google.inject:guice", + "org.playframework:play_3", + "org.scala-lang:scala3-library_3" + ], + "org.playframework:play-json_3": [ + "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", + "org.playframework:play-functional_3", + "org.scala-lang:scala3-library_3" + ], + "org.playframework:play-server_3": [ + "org.playframework:play_3", + "org.scala-lang:scala3-library_3" + ], + "org.playframework:play-specs2_3": [ + "org.mockito:mockito-core", + "org.playframework:play-test_3", + "org.scala-lang:scala3-library_3", + "org.specs2:specs2-core_3", + "org.specs2:specs2-junit_3" + ], + "org.playframework:play-streams_3": [ + "org.apache.pekko:pekko-stream_3", + "org.reactivestreams:reactive-streams", + "org.scala-lang:scala3-library_3" + ], + "org.playframework:play-test_3": [ + "ch.qos.logback:logback-classic", + "com.github.sbt:junit-interface", + "com.google.guava:guava", + "com.google.inject.extensions:guice-assistedinject", + "com.google.inject:guice", + "io.fluentlenium:fluentlenium-core", + "junit:junit", + "org.playframework:play-guice_3", + "org.playframework:play-server_3", + "org.scala-lang:scala3-library_3", + "org.seleniumhq.selenium:htmlunit-driver", + "org.seleniumhq.selenium:selenium-api", + "org.seleniumhq.selenium:selenium-firefox-driver", + "org.seleniumhq.selenium:selenium-support" + ], + "org.playframework:play_3": [ + "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_3", + "com.google.guava:guava", + "com.typesafe:ssl-config-core_3", + "io.jsonwebtoken:jjwt-api", + "io.jsonwebtoken:jjwt-impl", + "io.jsonwebtoken:jjwt-jackson", + "javax.inject:javax.inject", + "org.apache.pekko:pekko-actor-typed_3", + "org.apache.pekko:pekko-actor_3", + "org.apache.pekko:pekko-serialization-jackson_3", + "org.apache.pekko:pekko-slf4j_3", + "org.playframework.twirl:twirl-api_3", + "org.playframework:play-build-link", + "org.playframework:play-configuration_3", + "org.playframework:play-json_3", + "org.playframework:play-streams_3", + "org.scala-lang.modules:scala-parser-combinators_3", + "org.scala-lang:scala3-library_3", + "org.slf4j:jcl-over-slf4j", + "org.slf4j:jul-to-slf4j", + "org.slf4j:slf4j-api" + ], + "org.portable-scala:portable-scala-reflect_2.13": [ + "org.scala-lang:scala-library" + ], + "org.scala-lang.modules:scala-parser-combinators_3": [ + "org.scala-lang:scala3-library_3" + ], + "org.scala-lang.modules:scala-xml_3": [ + "org.scala-lang:scala3-library_3" + ], + "org.scala-lang:scala3-library_3": [ + "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_3": [ + "org.portable-scala:portable-scala-reflect_2.13", + "org.scala-lang:scala3-library_3", + "org.scala-sbt:test-interface", + "org.specs2:specs2-fp_3" + ], + "org.specs2:specs2-core_3": [ + "org.portable-scala:portable-scala-reflect_2.13", + "org.scala-lang:scala3-library_3", + "org.scala-sbt:test-interface", + "org.specs2:specs2-common_3", + "org.specs2:specs2-matcher_3" + ], + "org.specs2:specs2-fp_3": [ + "org.scala-lang:scala3-library_3" + ], + "org.specs2:specs2-junit_3": [ + "junit:junit", + "org.portable-scala:portable-scala-reflect_2.13", + "org.scala-lang.modules:scala-xml_3", + "org.scala-lang:scala3-library_3", + "org.scala-sbt:test-interface", + "org.specs2:specs2-core_3" + ], + "org.specs2:specs2-matcher_3": [ + "org.scala-lang:scala3-library_3", + "org.specs2:specs2-common_3" + ] + }, + "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.tyler", + "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_3": [ + "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:config": [ + "com.typesafe.config", + "com.typesafe.config.impl", + "com.typesafe.config.parser" + ], + "com.typesafe:ssl-config-core_3": [ + "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.apache.pekko:pekko-actor-typed_3": [ + "org.apache.pekko.actor.typed", + "org.apache.pekko.actor.typed.delivery", + "org.apache.pekko.actor.typed.delivery.internal", + "org.apache.pekko.actor.typed.eventstream", + "org.apache.pekko.actor.typed.internal", + "org.apache.pekko.actor.typed.internal.adapter", + "org.apache.pekko.actor.typed.internal.jfr", + "org.apache.pekko.actor.typed.internal.pubsub", + "org.apache.pekko.actor.typed.internal.receptionist", + "org.apache.pekko.actor.typed.internal.routing", + "org.apache.pekko.actor.typed.javadsl", + "org.apache.pekko.actor.typed.pubsub", + "org.apache.pekko.actor.typed.receptionist", + "org.apache.pekko.actor.typed.scaladsl", + "org.apache.pekko.actor.typed.scaladsl.adapter" + ], + "org.apache.pekko:pekko-actor_3": [ + "org.apache.pekko", + "org.apache.pekko.actor", + "org.apache.pekko.actor.dungeon", + "org.apache.pekko.actor.setup", + "org.apache.pekko.annotation", + "org.apache.pekko.compat", + "org.apache.pekko.dispatch", + "org.apache.pekko.dispatch.affinity", + "org.apache.pekko.dispatch.internal", + "org.apache.pekko.dispatch.sysmsg", + "org.apache.pekko.event", + "org.apache.pekko.event.japi", + "org.apache.pekko.event.jul", + "org.apache.pekko.io", + "org.apache.pekko.io.dns", + "org.apache.pekko.io.dns.internal", + "org.apache.pekko.japi", + "org.apache.pekko.japi.function", + "org.apache.pekko.japi.pf", + "org.apache.pekko.japi.tuple", + "org.apache.pekko.pattern", + "org.apache.pekko.pattern.extended", + "org.apache.pekko.pattern.internal", + "org.apache.pekko.routing", + "org.apache.pekko.serialization", + "org.apache.pekko.util", + "org.apache.pekko.util.ccompat" + ], + "org.apache.pekko:pekko-protobuf-v3_3": [ + "org.apache.pekko.protobufv3.internal", + "org.apache.pekko.protobufv3.internal.compiler" + ], + "org.apache.pekko:pekko-serialization-jackson_3": [ + "org.apache.pekko.serialization.jackson" + ], + "org.apache.pekko:pekko-slf4j_3": [ + "org.apache.pekko.event.slf4j" + ], + "org.apache.pekko:pekko-stream_3": [ + "com.typesafe.sslconfig.pekko", + "com.typesafe.sslconfig.pekko.util", + "org.apache.pekko.stream", + "org.apache.pekko.stream.impl", + "org.apache.pekko.stream.impl.fusing", + "org.apache.pekko.stream.impl.io", + "org.apache.pekko.stream.impl.io.compression", + "org.apache.pekko.stream.impl.streamref", + "org.apache.pekko.stream.javadsl", + "org.apache.pekko.stream.scaladsl", + "org.apache.pekko.stream.serialization", + "org.apache.pekko.stream.snapshot", + "org.apache.pekko.stream.stage" + ], + "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-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.playframework.twirl:twirl-api_3": [ + "play.twirl.api", + "play.twirl.api.utils" + ], + "org.playframework:play-build-link": [ + "play", + "play.core", + "play.core.server" + ], + "org.playframework:play-configuration_3": [ + "play", + "play.api" + ], + "org.playframework:play-exceptions": [ + "play.api" + ], + "org.playframework:play-functional_3": [ + "play.api.libs.functional", + "play.api.libs.functional.syntax" + ], + "org.playframework:play-guice_3": [ + "play.api.inject.guice", + "play.api.libs.concurrent", + "play.inject.guice", + "play.libs.pekko" + ], + "org.playframework:play-json_3": [ + "play.api.libs.json", + "play.api.libs.json.jackson", + "play.api.libs.json.util" + ], + "org.playframework:play-server_3": [ + "play.core.server", + "play.core.server.common", + "play.core.server.ssl", + "play.server" + ], + "org.playframework:play-specs2_3": [ + "play.api.test" + ], + "org.playframework:play-streams_3": [ + "play.api.libs.streams", + "play.libs.streams" + ], + "org.playframework:play-test_3": [ + "org.apache.pekko.stream.testkit", + "play.api.test", + "play.test" + ], + "org.playframework:play_3": [ + "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.concurrent", + "play.libs.crypto", + "play.libs.exception", + "play.libs.pekko", + "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" + ], + "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-parser-combinators_3": [ + "scala.util.parsing.combinator", + "scala.util.parsing.combinator.lexical", + "scala.util.parsing.combinator.syntactical", + "scala.util.parsing.combinator.token", + "scala.util.parsing.input" + ], + "org.scala-lang.modules:scala-xml_3": [ + "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:scala3-library_3": [ + "scala", + "scala.annotation", + "scala.annotation.internal", + "scala.annotation.unchecked", + "scala.compiletime", + "scala.compiletime.ops", + "scala.compiletime.testing", + "scala.deriving", + "scala.quoted", + "scala.quoted.runtime", + "scala.reflect", + "scala.runtime", + "scala.runtime.coverage", + "scala.runtime.function", + "scala.runtime.stdLibPatches", + "scala.util", + "scala.util.control" + ], + "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_3": [ + "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_3": [ + "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_3": [ + "org.specs2.fp" + ], + "org.specs2:specs2-junit_3": [ + "org.specs2", + "org.specs2.matcher", + "org.specs2.mutable", + "org.specs2.reporter", + "org.specs2.runner" + ], + "org.specs2:specs2-matcher_3": [ + "org.specs2.matcher", + "org.specs2.matcher.describe" + ] + }, + "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_3", + "com.fasterxml.jackson.module:jackson-module-scala_3: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:config", + "com.typesafe:config:jar:sources", + "com.typesafe:ssl-config-core_3", + "com.typesafe:ssl-config-core_3: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.apache.pekko:pekko-actor-typed_3", + "org.apache.pekko:pekko-actor-typed_3:jar:sources", + "org.apache.pekko:pekko-actor_3", + "org.apache.pekko:pekko-actor_3:jar:sources", + "org.apache.pekko:pekko-protobuf-v3_3", + "org.apache.pekko:pekko-protobuf-v3_3:jar:sources", + "org.apache.pekko:pekko-serialization-jackson_3", + "org.apache.pekko:pekko-serialization-jackson_3:jar:sources", + "org.apache.pekko:pekko-slf4j_3", + "org.apache.pekko:pekko-slf4j_3:jar:sources", + "org.apache.pekko:pekko-stream_3", + "org.apache.pekko:pekko-stream_3: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-core", + "org.hamcrest:hamcrest-core: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.playframework.twirl:twirl-api_3", + "org.playframework.twirl:twirl-api_3:jar:sources", + "org.playframework:play-build-link", + "org.playframework:play-build-link:jar:sources", + "org.playframework:play-configuration_3", + "org.playframework:play-configuration_3:jar:sources", + "org.playframework:play-exceptions", + "org.playframework:play-exceptions:jar:sources", + "org.playframework:play-functional_3", + "org.playframework:play-functional_3:jar:sources", + "org.playframework:play-guice_3", + "org.playframework:play-guice_3:jar:sources", + "org.playframework:play-json_3", + "org.playframework:play-json_3:jar:sources", + "org.playframework:play-server_3", + "org.playframework:play-server_3:jar:sources", + "org.playframework:play-specs2_3", + "org.playframework:play-specs2_3:jar:sources", + "org.playframework:play-streams_3", + "org.playframework:play-streams_3:jar:sources", + "org.playframework:play-test_3", + "org.playframework:play-test_3:jar:sources", + "org.playframework:play_3", + "org.playframework:play_3: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-parser-combinators_3", + "org.scala-lang.modules:scala-parser-combinators_3:jar:sources", + "org.scala-lang.modules:scala-xml_3", + "org.scala-lang.modules:scala-xml_3:jar:sources", + "org.scala-lang:scala-library", + "org.scala-lang:scala-library:jar:sources", + "org.scala-lang:scala3-library_3", + "org.scala-lang:scala3-library_3: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_3", + "org.specs2:specs2-common_3:jar:sources", + "org.specs2:specs2-core_3", + "org.specs2:specs2-core_3:jar:sources", + "org.specs2:specs2-fp_3", + "org.specs2:specs2-fp_3:jar:sources", + "org.specs2:specs2-junit_3", + "org.specs2:specs2-junit_3:jar:sources", + "org.specs2:specs2-matcher_3", + "org.specs2:specs2-matcher_3:jar:sources" + ], + "https://maven-central.storage-download.googleapis.com/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_3", + "com.fasterxml.jackson.module:jackson-module-scala_3: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:config", + "com.typesafe:config:jar:sources", + "com.typesafe:ssl-config-core_3", + "com.typesafe:ssl-config-core_3: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.apache.pekko:pekko-actor-typed_3", + "org.apache.pekko:pekko-actor-typed_3:jar:sources", + "org.apache.pekko:pekko-actor_3", + "org.apache.pekko:pekko-actor_3:jar:sources", + "org.apache.pekko:pekko-protobuf-v3_3", + "org.apache.pekko:pekko-protobuf-v3_3:jar:sources", + "org.apache.pekko:pekko-serialization-jackson_3", + "org.apache.pekko:pekko-serialization-jackson_3:jar:sources", + "org.apache.pekko:pekko-slf4j_3", + "org.apache.pekko:pekko-slf4j_3:jar:sources", + "org.apache.pekko:pekko-stream_3", + "org.apache.pekko:pekko-stream_3: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-core", + "org.hamcrest:hamcrest-core: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.playframework.twirl:twirl-api_3", + "org.playframework.twirl:twirl-api_3:jar:sources", + "org.playframework:play-build-link", + "org.playframework:play-build-link:jar:sources", + "org.playframework:play-configuration_3", + "org.playframework:play-configuration_3:jar:sources", + "org.playframework:play-exceptions", + "org.playframework:play-exceptions:jar:sources", + "org.playframework:play-functional_3", + "org.playframework:play-functional_3:jar:sources", + "org.playframework:play-guice_3", + "org.playframework:play-guice_3:jar:sources", + "org.playframework:play-json_3", + "org.playframework:play-json_3:jar:sources", + "org.playframework:play-server_3", + "org.playframework:play-server_3:jar:sources", + "org.playframework:play-specs2_3", + "org.playframework:play-specs2_3:jar:sources", + "org.playframework:play-streams_3", + "org.playframework:play-streams_3:jar:sources", + "org.playframework:play-test_3", + "org.playframework:play-test_3:jar:sources", + "org.playframework:play_3", + "org.playframework:play_3: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-parser-combinators_3", + "org.scala-lang.modules:scala-parser-combinators_3:jar:sources", + "org.scala-lang.modules:scala-xml_3", + "org.scala-lang.modules:scala-xml_3:jar:sources", + "org.scala-lang:scala-library", + "org.scala-lang:scala-library:jar:sources", + "org.scala-lang:scala3-library_3", + "org.scala-lang:scala3-library_3: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_3", + "org.specs2:specs2-common_3:jar:sources", + "org.specs2:specs2-core_3", + "org.specs2:specs2-core_3:jar:sources", + "org.specs2:specs2-fp_3", + "org.specs2:specs2-fp_3:jar:sources", + "org.specs2:specs2-junit_3", + "org.specs2:specs2-junit_3:jar:sources", + "org.specs2:specs2-matcher_3", + "org.specs2:specs2-matcher_3:jar:sources" + ], + "https://mirror.bazel.build/repo1.maven.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_3", + "com.fasterxml.jackson.module:jackson-module-scala_3: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:config", + "com.typesafe:config:jar:sources", + "com.typesafe:ssl-config-core_3", + "com.typesafe:ssl-config-core_3: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.apache.pekko:pekko-actor-typed_3", + "org.apache.pekko:pekko-actor-typed_3:jar:sources", + "org.apache.pekko:pekko-actor_3", + "org.apache.pekko:pekko-actor_3:jar:sources", + "org.apache.pekko:pekko-protobuf-v3_3", + "org.apache.pekko:pekko-protobuf-v3_3:jar:sources", + "org.apache.pekko:pekko-serialization-jackson_3", + "org.apache.pekko:pekko-serialization-jackson_3:jar:sources", + "org.apache.pekko:pekko-slf4j_3", + "org.apache.pekko:pekko-slf4j_3:jar:sources", + "org.apache.pekko:pekko-stream_3", + "org.apache.pekko:pekko-stream_3: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-core", + "org.hamcrest:hamcrest-core: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.playframework.twirl:twirl-api_3", + "org.playframework.twirl:twirl-api_3:jar:sources", + "org.playframework:play-build-link", + "org.playframework:play-build-link:jar:sources", + "org.playframework:play-configuration_3", + "org.playframework:play-configuration_3:jar:sources", + "org.playframework:play-exceptions", + "org.playframework:play-exceptions:jar:sources", + "org.playframework:play-functional_3", + "org.playframework:play-functional_3:jar:sources", + "org.playframework:play-guice_3", + "org.playframework:play-guice_3:jar:sources", + "org.playframework:play-json_3", + "org.playframework:play-json_3:jar:sources", + "org.playframework:play-server_3", + "org.playframework:play-server_3:jar:sources", + "org.playframework:play-specs2_3", + "org.playframework:play-specs2_3:jar:sources", + "org.playframework:play-streams_3", + "org.playframework:play-streams_3:jar:sources", + "org.playframework:play-test_3", + "org.playframework:play-test_3:jar:sources", + "org.playframework:play_3", + "org.playframework:play_3: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-parser-combinators_3", + "org.scala-lang.modules:scala-parser-combinators_3:jar:sources", + "org.scala-lang.modules:scala-xml_3", + "org.scala-lang.modules:scala-xml_3:jar:sources", + "org.scala-lang:scala-library", + "org.scala-lang:scala-library:jar:sources", + "org.scala-lang:scala3-library_3", + "org.scala-lang:scala3-library_3: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_3", + "org.specs2:specs2-common_3:jar:sources", + "org.specs2:specs2-core_3", + "org.specs2:specs2-core_3:jar:sources", + "org.specs2:specs2-fp_3", + "org.specs2:specs2-fp_3:jar:sources", + "org.specs2:specs2-junit_3", + "org.specs2:specs2-junit_3:jar:sources", + "org.specs2:specs2-matcher_3", + "org.specs2:specs2-matcher_3:jar:sources" + ] + }, + "services": { + "ch.qos.logback:logback-classic": { + "jakarta.servlet.ServletContainerInitializer": [ + "ch.qos.logback.classic.servlet.LogbackServletContainerInitializer" + ], + "org.slf4j.spi.SLF4JServiceProvider": [ + "ch.qos.logback.classic.spi.LogbackServiceProvider" + ] + }, + "ch.qos.logback:logback-classic:jar:sources": { + "jakarta.servlet.ServletContainerInitializer": [ + "ch.qos.logback.classic.servlet.LogbackServletContainerInitializer" + ], + "org.slf4j.spi.SLF4JServiceProvider": [ + "ch.qos.logback.classic.spi.LogbackServiceProvider" + ] + }, + "com.fasterxml.jackson.core:jackson-core": { + "com.fasterxml.jackson.core.JsonFactory": [ + "com.fasterxml.jackson.core.JsonFactory" + ] + }, + "com.fasterxml.jackson.core:jackson-core:jar:sources": { + "com.fasterxml.jackson.core.JsonFactory": [ + "com.fasterxml.jackson.core.JsonFactory" + ] + }, + "com.fasterxml.jackson.core:jackson-databind": { + "com.fasterxml.jackson.core.ObjectCodec": [ + "com.fasterxml.jackson.databind.ObjectMapper" + ] + }, + "com.fasterxml.jackson.core:jackson-databind:jar:sources": { + "com.fasterxml.jackson.core.ObjectCodec": [ + "com.fasterxml.jackson.databind.ObjectMapper" + ] + }, + "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor": { + "com.fasterxml.jackson.core.JsonFactory": [ + "com.fasterxml.jackson.dataformat.cbor.CBORFactory" + ] + }, + "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:jar:sources": { + "com.fasterxml.jackson.core.JsonFactory": [ + "com.fasterxml.jackson.dataformat.cbor.CBORFactory" + ] + }, + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8": { + "com.fasterxml.jackson.databind.Module": [ + "com.fasterxml.jackson.datatype.jdk8.Jdk8Module" + ] + }, + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources": { + "com.fasterxml.jackson.databind.Module": [ + "com.fasterxml.jackson.datatype.jdk8.Jdk8Module" + ] + }, + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310": { + "com.fasterxml.jackson.databind.Module": [ + "com.fasterxml.jackson.datatype.jsr310.JavaTimeModule" + ] + }, + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources": { + "com.fasterxml.jackson.databind.Module": [ + "com.fasterxml.jackson.datatype.jsr310.JavaTimeModule" + ] + }, + "com.fasterxml.jackson.module:jackson-module-parameter-names": { + "com.fasterxml.jackson.databind.Module": [ + "com.fasterxml.jackson.module.paramnames.ParameterNamesModule" + ] + }, + "com.fasterxml.jackson.module:jackson-module-parameter-names:jar:sources": { + "com.fasterxml.jackson.databind.Module": [ + "com.fasterxml.jackson.module.paramnames.ParameterNamesModule" + ] + }, + "com.fasterxml.jackson.module:jackson-module-scala_3": { + "com.fasterxml.jackson.databind.Module": [ + "com.fasterxml.jackson.module.scala.DefaultScalaModule" + ] + }, + "com.fasterxml.jackson.module:jackson-module-scala_3:jar:sources": { + "com.fasterxml.jackson.databind.Module": [ + "com.fasterxml.jackson.module.scala.DefaultScalaModule" + ] + }, + "io.fluentlenium:fluentlenium-core": { + "io.fluentlenium.configuration.CapabilitiesFactory": [ + "io.fluentlenium.configuration.CapabilitiesRegistryImpl$DesiredCapabilitiesFactory", + "io.fluentlenium.configuration.MethodInvocationReflectionFactory", + "io.fluentlenium.configuration.ReflectiveCapabilitiesFactory" + ], + "io.fluentlenium.configuration.WebDriverFactory": [ + "io.fluentlenium.configuration.DefaultWebDriverFactories$ChromeWebDriverFactory", + "io.fluentlenium.configuration.DefaultWebDriverFactories$EdgeWebDriverFactory", + "io.fluentlenium.configuration.DefaultWebDriverFactories$FirefoxWebDriverFactory", + "io.fluentlenium.configuration.DefaultWebDriverFactories$HtmlUnitWebDriverFactory", + "io.fluentlenium.configuration.DefaultWebDriverFactories$InternetExplorerWebDriverFactory", + "io.fluentlenium.configuration.DefaultWebDriverFactories$RemoteWebDriverFactory", + "io.fluentlenium.configuration.DefaultWebDriverFactories$SafariWebDriverFactory", + "io.fluentlenium.configuration.ReflectiveWebDriverFactory" + ] + }, + "io.jsonwebtoken:jjwt-impl": { + "io.jsonwebtoken.CompressionCodec": [ + "io.jsonwebtoken.impl.compression.DeflateCompressionCodec", + "io.jsonwebtoken.impl.compression.GzipCompressionCodec" + ] + }, + "io.jsonwebtoken:jjwt-impl:jar:sources": { + "io.jsonwebtoken.CompressionCodec": [ + "io.jsonwebtoken.impl.compression.DeflateCompressionCodec", + "io.jsonwebtoken.impl.compression.GzipCompressionCodec" + ] + }, + "io.jsonwebtoken:jjwt-jackson": { + "io.jsonwebtoken.io.Deserializer": [ + "io.jsonwebtoken.jackson.io.JacksonDeserializer" + ], + "io.jsonwebtoken.io.Serializer": [ + "io.jsonwebtoken.jackson.io.JacksonSerializer" + ] + }, + "io.jsonwebtoken:jjwt-jackson:jar:sources": { + "io.jsonwebtoken.io.Deserializer": [ + "io.jsonwebtoken.jackson.io.JacksonDeserializer" + ], + "io.jsonwebtoken.io.Serializer": [ + "io.jsonwebtoken.jackson.io.JacksonSerializer" + ] + }, + "io.opentelemetry:opentelemetry-exporter-logging": { + "io.opentelemetry.sdk.autoconfigure.spi.logs.ConfigurableLogRecordExporterProvider": [ + "io.opentelemetry.exporter.logging.internal.LoggingLogRecordExporterProvider" + ], + "io.opentelemetry.sdk.autoconfigure.spi.metrics.ConfigurableMetricExporterProvider": [ + "io.opentelemetry.exporter.logging.internal.LoggingMetricExporterProvider" + ], + "io.opentelemetry.sdk.autoconfigure.spi.traces.ConfigurableSpanExporterProvider": [ + "io.opentelemetry.exporter.logging.internal.LoggingSpanExporterProvider" + ] + }, + "io.opentelemetry:opentelemetry-exporter-logging:jar:sources": { + "io.opentelemetry.sdk.autoconfigure.spi.logs.ConfigurableLogRecordExporterProvider": [ + "io.opentelemetry.exporter.logging.internal.LoggingLogRecordExporterProvider" + ], + "io.opentelemetry.sdk.autoconfigure.spi.metrics.ConfigurableMetricExporterProvider": [ + "io.opentelemetry.exporter.logging.internal.LoggingMetricExporterProvider" + ], + "io.opentelemetry.sdk.autoconfigure.spi.traces.ConfigurableSpanExporterProvider": [ + "io.opentelemetry.exporter.logging.internal.LoggingSpanExporterProvider" + ] + }, + "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure": { + "io.opentelemetry.sdk.autoconfigure.spi.ResourceProvider": [ + "io.opentelemetry.sdk.autoconfigure.internal.EnvironmentResourceProvider" + ] + }, + "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:jar:sources": { + "io.opentelemetry.sdk.autoconfigure.spi.ResourceProvider": [ + "io.opentelemetry.sdk.autoconfigure.internal.EnvironmentResourceProvider" + ] + }, + "org.atteo.classindex:classindex": { + "javax.annotation.processing.Processor": [ + "org.atteo.classindex.processor.ClassIndexProcessor" + ] + }, + "org.atteo.classindex:classindex:jar:sources": { + "javax.annotation.processing.Processor": [ + "org.atteo.classindex.processor.ClassIndexProcessor" + ] + }, + "org.eclipse.jetty.websocket:websocket-common": { + "org.eclipse.jetty.websocket.api.extensions.Extension": [ + "org.eclipse.jetty.websocket.common.extensions.compress.DeflateFrameExtension", + "org.eclipse.jetty.websocket.common.extensions.compress.PerMessageDeflateExtension", + "org.eclipse.jetty.websocket.common.extensions.compress.XWebkitDeflateFrameExtension", + "org.eclipse.jetty.websocket.common.extensions.fragment.FragmentExtension", + "org.eclipse.jetty.websocket.common.extensions.identity.IdentityExtension" + ] + }, + "org.eclipse.jetty.websocket:websocket-common:jar:sources": { + "org.eclipse.jetty.websocket.api.extensions.Extension": [ + "org.eclipse.jetty.websocket.common.extensions.compress.DeflateFrameExtension", + "org.eclipse.jetty.websocket.common.extensions.compress.PerMessageDeflateExtension", + "org.eclipse.jetty.websocket.common.extensions.compress.XWebkitDeflateFrameExtension", + "org.eclipse.jetty.websocket.common.extensions.fragment.FragmentExtension", + "org.eclipse.jetty.websocket.common.extensions.identity.IdentityExtension" + ] + }, + "org.eclipse.jetty:jetty-http": { + "org.eclipse.jetty.http.HttpFieldPreEncoder": [ + "org.eclipse.jetty.http.Http1FieldPreEncoder" + ] + }, + "org.eclipse.jetty:jetty-http:jar:sources": { + "org.eclipse.jetty.http.HttpFieldPreEncoder": [ + "org.eclipse.jetty.http.Http1FieldPreEncoder" + ] + }, + "org.seleniumhq.selenium:selenium-devtools-v85": { + "org.openqa.selenium.devtools.CdpInfo": [ + "org.openqa.selenium.devtools.v85.V85CdpInfo" + ] + }, + "org.seleniumhq.selenium:selenium-firefox-driver": { + "org.openqa.selenium.WebDriverInfo": [ + "org.openqa.selenium.firefox.GeckoDriverInfo" + ], + "org.openqa.selenium.remote.AdditionalHttpCommands": [ + "org.openqa.selenium.firefox.AddHasContext", + "org.openqa.selenium.firefox.AddHasExtensions", + "org.openqa.selenium.firefox.AddHasFullPageScreenshot" + ], + "org.openqa.selenium.remote.AugmenterProvider": [ + "org.openqa.selenium.firefox.AddHasContext", + "org.openqa.selenium.firefox.AddHasExtensions", + "org.openqa.selenium.firefox.AddHasFullPageScreenshot" + ], + "org.openqa.selenium.remote.service.DriverService$Builder": [ + "org.openqa.selenium.firefox.GeckoDriverService$Builder" + ] + }, + "org.seleniumhq.selenium:selenium-remote-driver": { + "org.openqa.selenium.remote.AugmenterProvider": [ + "org.openqa.selenium.bidi.BiDiProvider", + "org.openqa.selenium.devtools.DevToolsProvider" + ], + "org.openqa.selenium.remote.http.HttpClient$Factory": [ + "org.openqa.selenium.remote.http.jdk.JdkHttpClient$Factory" + ] + }, + "org.seleniumhq.selenium:selenium-support": { + "org.openqa.selenium.remote.locators.CustomLocator": [ + "org.openqa.selenium.support.locators.RelativeLocatorServerSide" + ] + }, + "org.slf4j:jcl-over-slf4j": { + "org.apache.commons.logging.LogFactory": [ + "org.apache.commons.logging.impl.SLF4JLogFactory" + ] + }, + "org.slf4j:jcl-over-slf4j:jar:sources": { + "org.apache.commons.logging.LogFactory": [ + "org.apache.commons.logging.impl.SLF4JLogFactory" + ] + } + }, + "skipped": [ + "com.google.guava:listenablefuture:jar:sources" + ], + "version": "2" } diff --git a/scala/BUILD.bazel b/scala/BUILD.bazel deleted file mode 100644 index 0536c79..0000000 --- a/scala/BUILD.bazel +++ /dev/null @@ -1,54 +0,0 @@ -load( - "@rules_scala_annex//rules:scala.bzl", - "configure_bootstrap_scala", - "configure_zinc_scala", - "scala_library", -) - -scala_version = "2.11.12" - -compiler_classpath = [ - "@play_routes//:org_scala_lang_scala_compiler", - "@play_routes//:org_scala_lang_scala_library", - "@play_routes//:org_scala_lang_scala_reflect", -] - -runtime_classpath = [ - "@play_routes//:org_scala_lang_scala_library", -] - -configure_bootstrap_scala( - name = "bootstrap", - compiler_classpath = compiler_classpath, - runtime_classpath = runtime_classpath, - version = scala_version, - visibility = ["//visibility:public"], -) - -scala_library( - name = "compiler_bridge", - srcs = [ - "@compiler_bridge_2_11//:src", - ], - scala = ":bootstrap", - visibility = ["//visibility:public"], - deps = compiler_classpath + [ - "@play_routes//:org_scala_sbt_compiler_interface", - "@play_routes//:org_scala_sbt_util_interface", - ], -) - -configure_zinc_scala( - name = "zinc", - compiler_bridge = ":compiler_bridge", - compiler_classpath = compiler_classpath, - runtime_classpath = runtime_classpath, - version = scala_version, - visibility = ["//visibility:public"], -) - -alias( - name = "default_scala", - actual = ":zinc", - visibility = ["//visibility:public"], -) diff --git a/scripts/gen-deps.sh b/scripts/gen-deps.sh index 8165fff..fb11795 100755 --- a/scripts/gen-deps.sh +++ b/scripts/gen-deps.sh @@ -8,3 +8,6 @@ bazel run @unpinned_play_2_6_routes_compiler_cli//:pin bazel run @unpinned_play_2_7_routes_compiler_cli//:pin bazel run @unpinned_play_2_8__2_12_routes_compiler_cli//:pin bazel run @unpinned_play_2_8__2_13_routes_compiler_cli//:pin +bazel run @unpinned_play_2_9_routes_compiler_cli//:pin +bazel run @unpinned_play_3_0__2_13_routes_compiler_cli//:pin +#bazel run @unpinned_play_3_0__3_routes_compiler_cli//:pin diff --git a/test/BUILD.bazel b/test/BUILD.bazel index 58ad0bf..42e1d78 100644 --- a/test/BUILD.bazel +++ b/test/BUILD.bazel @@ -1,4 +1,4 @@ -load("@rules_scala_annex//rules:scala.bzl", "scala_test") +load("@rules_scala_annex//rules:scala.bzl", "scala_library", "scala_test") load("//play-routes:play-routes.bzl", "play_routes") play_routes( @@ -35,13 +35,12 @@ play_routes( ], ) -# TODO: StaticRoutesGenerator is removed in 2.7.X, figure out an alternative. -# play_routes( -# name = "play-routes-different-generator", -# srcs = ["conf/generator.routes"], -# include_play_imports = True, -# routes_generator = "play.routes.compiler.StaticRoutesGenerator", -# ) +play_routes( + name = "play-routes-specified-generator", + srcs = ["conf/generator.routes"], + include_play_imports = True, + routes_generator = "play.routes.compiler.InjectedRoutesGenerator", +) play_routes( name = "play-routes-reverse-router", @@ -68,18 +67,67 @@ scala_test( ":play-routes-basic1", ":play-routes-basic2", ":play-routes-additional-imports", - # ":play-routes-different-generator", + ":play-routes-specified-generator", ":play-routes-reverse-router", # ":play-routes-namespace-router", ], deps = [ - "@play_routes_test//:com_typesafe_akka_akka_actor_2_12", - "@play_routes_test//:com_typesafe_play_play_2_12", - "@play_routes_test//:com_typesafe_play_play_guice_2_12", - "@play_routes_test//:com_typesafe_play_play_specs2_2_12", - "@play_routes_test//:com_typesafe_play_play_test_2_12", - "@play_routes_test//:org_specs2_specs2_common_2_12", - "@play_routes_test//:org_specs2_specs2_core_2_12", - "@play_routes_test//:org_specs2_specs2_matcher_2_12", + "@play_routes_test//:javax_inject_javax_inject", + "@play_routes_test//:org_apache_pekko_pekko_actor_3", + "@play_routes_test//:org_playframework_play_3", + "@play_routes_test//:org_playframework_play_configuration_3", + "@play_routes_test//:org_playframework_play_guice_3", + "@play_routes_test//:org_playframework_play_specs2_3", + "@play_routes_test//:org_playframework_play_test_3", + "@play_routes_test//:org_specs2_specs2_common_3", + "@play_routes_test//:org_specs2_specs2_core_3", + "@play_routes_test//:org_specs2_specs2_matcher_3", + ], +) + +play_routes( + name = "play-routes-reverse-router-only", + srcs = ["conf2/routes"], + generate_forwards_router = False, + generate_reverse_router = True, +) + +play_routes( + name = "play-routes-forward-only", + srcs = ["conf2/routes"], + generate_forwards_router = True, + generate_reverse_router = False, +) + +scala_test( + name = "split-forward-reverse-routes-test", + srcs = glob(["app/**/*.scala"]) + [ + "PlayReverseRoutesOnlyTest.scala", + "PlayForwardRoutesOnlyTest.scala", + ":play-routes-forward-only", + ], + deps = [ + ":common", + "@play_routes_test//:javax_inject_javax_inject", + "@play_routes_test//:org_apache_pekko_pekko_actor_3", + "@play_routes_test//:org_playframework_play_3", + "@play_routes_test//:org_playframework_play_configuration_3", + "@play_routes_test//:org_playframework_play_guice_3", + "@play_routes_test//:org_playframework_play_specs2_3", + "@play_routes_test//:org_playframework_play_test_3", + "@play_routes_test//:org_specs2_specs2_common_3", + "@play_routes_test//:org_specs2_specs2_core_3", + "@play_routes_test//:org_specs2_specs2_matcher_3", + ], +) + +scala_library( + name = "common", + srcs = [ + "common/TestReverseRoutesOnly.scala", + ":play-routes-reverse-router-only", + ], + deps = [ + "@play_routes_test//:org_playframework_play_3", ], ) diff --git a/test/PlayForwardRoutesOnlyTest.scala b/test/PlayForwardRoutesOnlyTest.scala new file mode 100644 index 0000000..d3b63e7 --- /dev/null +++ b/test/PlayForwardRoutesOnlyTest.scala @@ -0,0 +1,21 @@ +package rulesplayroutes.test + +import org.specs2.mutable.Specification +import play.api.Configuration +import play.api.inject.guice.GuiceApplicationBuilder +import play.api.test.Helpers.{GET, route, status} +import play.api.test.{FakeRequest, WithApplication} +import rulesplayroutes.test.common.TestReverseRoutesOnly +import play.api.test.Helpers._ + +class PlayForwardRoutesOnlyTest extends Specification { + val app = new GuiceApplicationBuilder().configure(Configuration("play.allowGlobalApplication" -> true)).build() + + "Play Routes Compiler when run through Bazel" should { + "Compiles forward routes correctly" in new WithApplication(app) { withApp => + override def running() = { + status(route(withApp.app, FakeRequest(GET, TestReverseRoutesOnly.generate(10))).get) mustEqual OK + } + } + } +} \ No newline at end of file diff --git a/test/PlayReverseRoutesOnlyTest.scala b/test/PlayReverseRoutesOnlyTest.scala new file mode 100644 index 0000000..52b1836 --- /dev/null +++ b/test/PlayReverseRoutesOnlyTest.scala @@ -0,0 +1,25 @@ +package rulesplayroutes.test + +import org.specs2.mutable.Specification +import play.api.Configuration +import play.api.inject.guice.GuiceApplicationBuilder +import play.api.test.WithApplication +import rulesplayroutes.test.common.TestReverseRoutesOnly +import rulesplayroutes.test.routes.ReverseRoutesController + +class PlayReverseRoutesOnlyTest extends Specification { + val app = new GuiceApplicationBuilder().configure(Configuration("play.allowGlobalApplication" -> true)).build() + + "Play Routes Compiler when run through Bazel" should { + "Compiles reverse routes in shared project correctly" in new WithApplication(app) { withApp => + override def running() = { + // The common project generates the correct reverse route. + TestReverseRoutesOnly.generate(10) mustEqual("/okReverseAgain/10") + + // This verifies availability of the reverse route for the test target. + ReverseRoutesController.anotherOk(20).path mustEqual("/okReverseAgain/20") + } + } + + } +} diff --git a/test/PlayRoutesCompilerTest.scala b/test/PlayRoutesCompilerTest.scala index bf3b3e4..b8a2786 100644 --- a/test/PlayRoutesCompilerTest.scala +++ b/test/PlayRoutesCompilerTest.scala @@ -1,49 +1,62 @@ package rulesplayroutes.test import org.specs2.mutable.Specification -import play.api.test._ import play.api.inject.guice.GuiceApplicationBuilder +import play.api.test.FakeRequest import play.api.test.WithApplication import play.api.test.Helpers._ +import play.api.Configuration import rulesplayroutes.test.routes.ReverseRoutesController class PlayRoutesCompilerTest extends Specification { - val app = new GuiceApplicationBuilder() + def application = new GuiceApplicationBuilder().configure(Configuration("play.allowGlobalApplication" -> true)).build() "Play Routes Compiler when run through Bazel" should { - "Compile Play routes" in new WithApplication() { - status(route(app, FakeRequest(GET, "/ok")).get) mustEqual OK - status(route(app, FakeRequest(GET, "/badRequest")).get) mustEqual BAD_REQUEST - status(route(app, FakeRequest(GET, "/500")).get) mustEqual INTERNAL_SERVER_ERROR + "Compile Play routes" in new WithApplication(application) { withApp => + override def running() = { + status(route(withApp.app, FakeRequest(GET, "/ok")).get) mustEqual OK + status(route(withApp.app, FakeRequest(GET, "/badRequest")).get) mustEqual BAD_REQUEST + status(route(withApp.app, FakeRequest(GET, "/500")).get) mustEqual INTERNAL_SERVER_ERROR + } } - "Handle Large Routes files well" in new WithApplication() { - status(route(app, FakeRequest(GET, "/large/749")).get) mustEqual OK + "Handle Large Routes files well" in new WithApplication(application) { withApp => + override def running() = { + status(route(withApp.app, FakeRequest(GET, "/large/749")).get) mustEqual OK + } } - "Support multiple routes files" in new WithApplication() { - status(route(app, FakeRequest(GET, "/ok2")).get) mustEqual OK - status(route(app, FakeRequest(GET, "/ok3")).get) mustEqual OK + "Support multiple routes files" in new WithApplication(application) { withApp => + override def running() = { + status(route(withApp.app, FakeRequest(GET, "/ok2")).get) mustEqual OK + status(route(withApp.app, FakeRequest(GET, "/ok3")).get) mustEqual OK + } } - "Add additional imports when specified" in new WithApplication() { - status(route(app, FakeRequest(GET, "/okUser/1")).get) mustEqual OK + "Add additional imports when specified" in new WithApplication(application) { withApp => + override def running() = { + status(route(withApp.app, FakeRequest(GET, "/okUser/1")).get) mustEqual OK + } } - // TODO: StaticRoutesGenerator is removed, figure out an alternative. - // "Use the specified routes generator" in new WithApplication() { - // status(route(app, FakeRequest(GET, "/okGenerator")).get) mustEqual OK - // } + "Use the specified routes generator" in new WithApplication(application) { withApp => + override def running() = { + status(route(withApp.app, FakeRequest(GET, "/okGenerator")).get) mustEqual OK + } + } - "Generate reverse routes when specified" in new WithApplication() { - val myRoute = ReverseRoutesController.ok(3).toString - val result = route(app, FakeRequest(GET, myRoute)).get - status(result) mustEqual OK + "Generate reverse routes when specified" in new WithApplication(application) { withApp => + override def running() = { + val myRoute = ReverseRoutesController.ok(3).toString + val result = route(withApp.app, FakeRequest(GET, myRoute)).get + status(result) mustEqual OK + } } // TODO: Add this test once I figure out what this does - // "Namespace the reverse router when specified" in new WithApplication() { + // "Namespace the reverse router when specified" in new WithApplication(application) { with App => + // override def running() = {} // } } } \ No newline at end of file diff --git a/test/app/binders/package.scala b/test/app/binders/package.scala index cac0fc9..b5684c6 100644 --- a/test/app/binders/package.scala +++ b/test/app/binders/package.scala @@ -7,7 +7,7 @@ package object binders { new PathBindable[User] { override def bind(key: String, value: String): Either[String, User] = { for { - id <- intBinder.bind(key, value).right + id <- intBinder.bind(key, value) } yield User(id) } override def unbind(key: String, user: User): String = { diff --git a/test/app/controllers/Controller1.scala b/test/app/controllers/Controller1.scala index 240808a..12af209 100644 --- a/test/app/controllers/Controller1.scala +++ b/test/app/controllers/Controller1.scala @@ -1,18 +1,19 @@ package rulesplayroutes.test +import javax.inject.Inject import play.api.mvc._ -class Controller1() extends Controller { +class Controller1 @Inject() (cc: ControllerComponents) extends AbstractController(cc) { - def ok() = Action { request => + def ok(): Action[AnyContent] = Action { request => Ok } - def badRequest() = Action { request => + def badRequest(): Action[AnyContent] = Action { request => BadRequest } - def fiveHundred() = Action { request => + def fiveHundred(): Action[AnyContent] = Action { request => InternalServerError } } \ No newline at end of file diff --git a/test/app/controllers/Controller2.scala b/test/app/controllers/Controller2.scala index 05f3b2b..f6d8926 100644 --- a/test/app/controllers/Controller2.scala +++ b/test/app/controllers/Controller2.scala @@ -1,10 +1,11 @@ package rulesplayroutes.test +import javax.inject.Inject import play.api.mvc._ -class Controller2() extends Controller { +class Controller2 @Inject() (cc: ControllerComponents) extends AbstractController(cc) { - def ok() = Action { request => + def ok(): Action[AnyContent] = Action { request => Ok } diff --git a/test/app/controllers/Controller3.scala b/test/app/controllers/Controller3.scala index aca3f15..34dedbc 100644 --- a/test/app/controllers/Controller3.scala +++ b/test/app/controllers/Controller3.scala @@ -1,10 +1,11 @@ package rulesplayroutes.test +import javax.inject.Inject import play.api.mvc._ -class Controller3() extends Controller { +class Controller3 @Inject() (cc: ControllerComponents) extends AbstractController(cc) { - def ok() = Action { request => + def ok(): Action[AnyContent] = Action { request => Ok } diff --git a/test/app/controllers/GeneratorController.scala b/test/app/controllers/GeneratorController.scala index f2fcdd6..2e80d59 100644 --- a/test/app/controllers/GeneratorController.scala +++ b/test/app/controllers/GeneratorController.scala @@ -1,11 +1,11 @@ package rulesplayroutes.test +import javax.inject.Inject import play.api.mvc._ -object GeneratorController extends GeneratorController() -class GeneratorController() extends Controller { +class GeneratorController @Inject() (cc: ControllerComponents) extends AbstractController(cc) { - def ok() = Action { request => + def ok(): Action[AnyContent] = Action { request => Ok } diff --git a/test/app/controllers/NamespaceReverseRoutesController.scala b/test/app/controllers/NamespaceReverseRoutesController.scala index 7353afa..4ba8923 100644 --- a/test/app/controllers/NamespaceReverseRoutesController.scala +++ b/test/app/controllers/NamespaceReverseRoutesController.scala @@ -1,10 +1,11 @@ package rulesplayroutes.test +import javax.inject.Inject import play.api.mvc._ -class NamespaceReverseRoutesController() extends Controller { +class NamespaceReverseRoutesController @Inject() (cc: ControllerComponents) extends AbstractController(cc) { - def ok(id: Int) = Action { request => + def ok(id: Int): Action[AnyContent] = Action { request => Ok } diff --git a/test/app/controllers/ReverseRoutesController.scala b/test/app/controllers/ReverseRoutesController.scala index 5c63faf..362667c 100644 --- a/test/app/controllers/ReverseRoutesController.scala +++ b/test/app/controllers/ReverseRoutesController.scala @@ -1,10 +1,15 @@ package rulesplayroutes.test +import javax.inject.Inject import play.api.mvc._ -class ReverseRoutesController() extends Controller { +class ReverseRoutesController @Inject() (cc: ControllerComponents) extends AbstractController(cc) { - def ok(id: Int) = Action { request => + def ok(id: Int): Action[AnyContent] = Action { request => + Ok + } + + def anotherOk(id: Int): Action[AnyContent] = Action { request => Ok } diff --git a/test/app/controllers/UserController.scala b/test/app/controllers/UserController.scala index f86f631..770623a 100644 --- a/test/app/controllers/UserController.scala +++ b/test/app/controllers/UserController.scala @@ -1,10 +1,11 @@ package rulesplayroutes.test +import javax.inject.Inject import play.api.mvc._ -class UserController() extends Controller { +class UserController @Inject() (cc: ControllerComponents) extends AbstractController(cc) { - def ok(user: User) = Action { request => + def ok(user: User): Action[AnyContent] = Action { request => Ok } diff --git a/test/common/TestReverseRoutesOnly.scala b/test/common/TestReverseRoutesOnly.scala new file mode 100644 index 0000000..aa1ec0b --- /dev/null +++ b/test/common/TestReverseRoutesOnly.scala @@ -0,0 +1,7 @@ +package rulesplayroutes.test.common + +import rulesplayroutes.test.routes.ReverseRoutesController + +object TestReverseRoutesOnly { + def generate(id: Int): String = ReverseRoutesController.anotherOk(id).path +} \ No newline at end of file diff --git a/test/conf/routes b/test/conf/routes index 539c477..01a59a0 100644 --- a/test/conf/routes +++ b/test/conf/routes @@ -1,7 +1,8 @@ +# Borrowed from lucidsoftware/rules_play_routes -> / basic1.Routes -> / basic2.Routes -> / large.Routes -> / additional_imports.Routes -#-> / generator.Routes +-> / generator.Routes -> / reverse_router.Routes #-> / namespace_router.Routes \ No newline at end of file diff --git a/test/conf2/routes b/test/conf2/routes new file mode 100644 index 0000000..66e7379 --- /dev/null +++ b/test/conf2/routes @@ -0,0 +1 @@ +GET /okReverseAgain/:id rulesplayroutes.test.ReverseRoutesController.anotherOk(id: Int) \ No newline at end of file diff --git a/test/play_routes_compiler_bazel_e2e_test.sh b/test/play_routes_compiler_bazel_e2e_test.sh index 2471f1a..6236170 100755 --- a/test/play_routes_compiler_bazel_e2e_test.sh +++ b/test/play_routes_compiler_bazel_e2e_test.sh @@ -1,5 +1,6 @@ #!/usr/bin/env bash -set -e +set -euxo pipefail bazel test //test:play-routes-compiler-test +bazel test //test:split-forward-reverse-routes-test \ No newline at end of file diff --git a/test/run_all_tests.sh b/test/run_all_tests.sh index 90ba49e..7ebf624 100755 --- a/test/run_all_tests.sh +++ b/test/run_all_tests.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -e +set -euxo pipefail # TODO: Once the Bazel integration testing library is further along, we should # migrate to it diff --git a/test_workspace.bzl b/test_workspace.bzl index 98f1042..91560af 100644 --- a/test_workspace.bzl +++ b/test_workspace.bzl @@ -4,17 +4,19 @@ Load test 3rd party maven dependencies load("@rules_jvm_external//:defs.bzl", "maven_install") +play_version = "3.0.4" +specs2_version = "4.20.8" + def play_routes_test_repositories(): maven_install( name = "play_routes_test", artifacts = [ - "org.specs2:specs2-common_2.12:4.7.0", - "org.specs2:specs2-core_2.12:4.7.0", - "org.specs2:specs2-matcher_2.12:4.7.0", - "com.typesafe.akka:akka-actor_2.12:2.5.24", - "com.typesafe.play:play_2.12:2.7.4", - "com.typesafe.play:play-test_2.12:2.7.4", - "com.typesafe.play:play-specs2_2.12:2.7.4", + "org.specs2:specs2-common_3:{}".format(specs2_version), + "org.specs2:specs2-core_3:{}".format(specs2_version), + "org.specs2:specs2-matcher_3:{}".format(specs2_version), + "org.playframework:play_3:{}".format(play_version), + "org.playframework:play-test_3:{}".format(play_version), + "org.playframework:play-specs2_3:{}".format(play_version), ], repositories = [ "https://repo.maven.apache.org/maven2", @@ -22,5 +24,5 @@ def play_routes_test_repositories(): "https://mirror.bazel.build/repo1.maven.org/maven2", ], fetch_sources = True, - maven_install_json = "@io_bazel_rules_play_routes//:play_routes_test_install.json", + maven_install_json = "@rules_play_routes//:play_routes_test_install.json", ) diff --git a/workspace.bzl b/workspace.bzl index ae60d6b..1ccfbc7 100644 --- a/workspace.bzl +++ b/workspace.bzl @@ -9,8 +9,8 @@ def play_routes_repositories(play_version, scala_version = None): Loads 3rd party dependencies and the required play routes compiler CLIs for the specified version of Play Args: - play_version: (str) Must be either "2.5", "2.6", "2.7" or "2.8" - scala_version: (optional) For Play 2.8, default to Scala 2.13 + play_version: (str) Must be either "2.5", "2.6", "2.7", "2.8", "2.9", or "3.0" + scala_version: (optional) For Play 2.8, default to Scala 2.13. For Play 3.x, default to Scala 3 """ play_version = play_version.replace(".", "_") @@ -20,6 +20,11 @@ def play_routes_repositories(play_version, scala_version = None): scala_version = "2.13" play_version = play_version + "__" + scala_version.replace(".", "_") + if play_version[0] == "3": + if not scala_version: + scala_version = "2.13" + play_version = play_version + "__" + scala_version.replace(".", "_") + play_artifacts = { "2_5": [ "com.lucidchart:play-routes-compiler-cli_2.11:2.5.19", @@ -38,33 +43,38 @@ def play_routes_repositories(play_version, scala_version = None): "2_8__2_13": [ "com.lucidchart:play-routes-compiler-cli_2.13:2.8.7", ], + "2_9": [ + "com.lucidchart:play-routes-compiler-cli_2.13:2.9.1", + ], + "3_0__2_13": [ + "com.lucidchart:play-routes-compiler-cli_2.13:3.0.3", + ], + # "3_0__3": [ + # "com.lucidchart:play-routes-compiler-cli_3:3.0.4", + # ], } - common_artifacts = [ - "com.lucidchart:play-routes-compiler-cli:0.1", - ] - maven_install( name = "play_routes", - artifacts = play_artifacts[play_version] + common_artifacts, + artifacts = play_artifacts[play_version], repositories = [ "https://repo.maven.apache.org/maven2", "https://maven-central.storage-download.googleapis.com/maven2", "https://mirror.bazel.build/repo1.maven.org/maven2", ], fetch_sources = True, - maven_install_json = "@io_bazel_rules_play_routes//:play_{}_routes_compiler_cli_install.json".format(play_version), + maven_install_json = "@rules_play_routes//:play_{}_routes_compiler_cli_install.json".format(play_version), ) for version in play_artifacts.keys(): maven_install( name = "play_{}_routes_compiler_cli".format(version), - artifacts = play_artifacts[version] + common_artifacts, + artifacts = play_artifacts[version], repositories = [ "https://repo.maven.apache.org/maven2", "https://maven-central.storage-download.googleapis.com/maven2", "https://mirror.bazel.build/repo1.maven.org/maven2", ], fetch_sources = True, - maven_install_json = "@io_bazel_rules_play_routes//:play_{}_routes_compiler_cli_install.json".format(version), + maven_install_json = "@rules_play_routes//:play_{}_routes_compiler_cli_install.json".format(version), ) From f83f9dcc8c3e6ab0cb12688c6a445653311f8dc0 Mon Sep 17 00:00:00 2001 From: James Judd Date: Tue, 10 Sep 2024 19:01:38 -0600 Subject: [PATCH 2/5] Use toolchains instead of bind --- WORKSPACE | 30 +- default-compiler-clis/BUILD.bazel | 69 --- play-routes-compiler-cli/BUILD.bazel | 24 + play-routes/BUILD | 16 +- play-routes/play-routes-toolchain.bzl | 19 + play-routes/play-routes.bzl | 11 +- play_2_5_routes_compiler_cli_install.json | 374 ------------ play_2_6_routes_compiler_cli_install.json | 553 ------------------ play_2_7_routes_compiler_cli_install.json | 515 ---------------- ...2_8__2_12_routes_compiler_cli_install.json | 242 -------- ...2_8__2_13_routes_compiler_cli_install.json | 239 -------- play_2_9_routes_compiler_cli_install.json | 237 -------- ...i_install.json => play_routes_install.json | 0 play_routes_test_install.json | 0 scripts/gen-deps.sh | 10 +- workspace.bzl | 72 +-- 16 files changed, 89 insertions(+), 2322 deletions(-) delete mode 100644 default-compiler-clis/BUILD.bazel create mode 100644 play-routes-compiler-cli/BUILD.bazel create mode 100644 play-routes/play-routes-toolchain.bzl delete mode 100644 play_2_5_routes_compiler_cli_install.json delete mode 100644 play_2_6_routes_compiler_cli_install.json delete mode 100644 play_2_7_routes_compiler_cli_install.json delete mode 100644 play_2_8__2_12_routes_compiler_cli_install.json delete mode 100644 play_2_8__2_13_routes_compiler_cli_install.json delete mode 100755 play_2_9_routes_compiler_cli_install.json rename play_3_0__2_13_routes_compiler_cli_install.json => play_routes_install.json (100%) mode change 100755 => 100644 play_routes_test_install.json diff --git a/WORKSPACE b/WORKSPACE index 49e43b5..2296503 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -39,10 +39,7 @@ rules_jvm_external_setup() # Set up 3rd party jvm dependencies load("//:workspace.bzl", "play_routes_repositories") -play_routes_repositories( - play_version = "3.0", - scala_version = "2.13", -) +play_routes_repositories() load("@play_routes//:defs.bzl", play_routes_pinned_maven_install = "pinned_maven_install") @@ -56,6 +53,9 @@ load("@play_routes_test//:defs.bzl", play_routes_test_pinned_maven_install = "pi play_routes_test_pinned_maven_install() +# Play routes compiler +register_toolchains("//play-routes:cross_platform_play_routes_toolchain") + # Skylib skylib_version = "1.5.0" # update this as needed @@ -209,13 +209,6 @@ load_env_vars( env_vars = ["COMPILER_CLI_ARTIFACT_ID"], ) -# TODO: Once the tests are in their own workspaces, we might want to add a basic test for each of the defaults -# This would require a separate workspace for each compiler being tested -bind( - name = "default-play-routes-compiler-cli", - actual = "@play_routes_compiler_cli//play-routes-compiler", -) - # rules_pkg rules_pkg_version = "0.10.1" @@ -230,3 +223,18 @@ http_archive( load("@rules_pkg//:deps.bzl", "rules_pkg_dependencies") rules_pkg_dependencies() + +# delete below + +local_repository( + name = "play_routes_compiler_cli", + path = "/home/james/lucid/play_routes_compiler_cli", +) + +load("@play_routes_compiler_cli//:workspace.bzl", "play_routes_compiler_cli_repositories") + +play_routes_compiler_cli_repositories() + +load("@play_routes_compiler_cli_maven//:defs.bzl", play_routes_compiler_cli_pinned_maven_install = "pinned_maven_install") + +play_routes_compiler_cli_pinned_maven_install() diff --git a/default-compiler-clis/BUILD.bazel b/default-compiler-clis/BUILD.bazel deleted file mode 100644 index 5f5da60..0000000 --- a/default-compiler-clis/BUILD.bazel +++ /dev/null @@ -1,69 +0,0 @@ -java_binary( - name = "scala_2_11_play_2_5", - main_class = "rulesplayroutes.routes.CommandLinePlayRoutesCompiler", - visibility = ["//visibility:public"], - runtime_deps = ["@play_2_5_routes_compiler_cli//:com_lucidchart_play_routes_compiler_cli_2_11"], -) - -java_binary( - name = "scala_2_11_play_2_6", - main_class = "rulesplayroutes.routes.CommandLinePlayRoutesCompiler", - visibility = ["//visibility:public"], - runtime_deps = ["@play_2_6_routes_compiler_cli//:com_lucidchart_play_routes_compiler_cli_2_11"], -) - -java_binary( - name = "scala_2_11_play_2_7", - main_class = "rulesplayroutes.routes.CommandLinePlayRoutesCompiler", - visibility = ["//visibility:public"], - runtime_deps = ["@play_2_6_routes_compiler_cli//:com_lucidchart_play_routes_compiler_cli_2_11"], -) - -java_binary( - name = "scala_2_12_play_2_6", - main_class = "rulesplayroutes.routes.CommandLinePlayRoutesCompiler", - visibility = ["//visibility:public"], - runtime_deps = ["@play_2_6_routes_compiler_cli//:com_lucidchart_play_routes_compiler_cli_2_12"], -) - -java_binary( - name = "scala_2_12_play_2_7", - main_class = "rulesplayroutes.routes.CommandLinePlayRoutesCompiler", - visibility = ["//visibility:public"], - runtime_deps = ["@play_2_7_routes_compiler_cli//:com_lucidchart_play_routes_compiler_cli_2_12"], -) - -java_binary( - name = "scala_2_12_play_2_8", - main_class = "rulesplayroutes.routes.CommandLinePlayRoutesCompiler", - visibility = ["//visibility:public"], - runtime_deps = ["@play_2_8__2_12_routes_compiler_cli//:com_lucidchart_play_routes_compiler_cli_2_12"], -) - -java_binary( - name = "scala_2_13_play_2_8", - main_class = "rulesplayroutes.routes.CommandLinePlayRoutesCompiler", - visibility = ["//visibility:public"], - runtime_deps = ["@play_2_8__2_13_routes_compiler_cli//:com_lucidchart_play_routes_compiler_cli_2_13"], -) - -java_binary( - name = "scala_2_13_play_2_9", - main_class = "rulesplayroutes.routes.CommandLinePlayRoutesCompiler", - visibility = ["//visibility:public"], - runtime_deps = ["@play_2_9_routes_compiler_cli//:com_lucidchart_play_routes_compiler_cli_2_13"], -) - -java_binary( - name = "scala_2_13_play_3_0", - main_class = "rulesplayroutes.routes.CommandLinePlayRoutesCompiler", - visibility = ["//visibility:public"], - runtime_deps = ["@play_3_0__2_13_routes_compiler_cli//:com_lucidchart_play_routes_compiler_cli_2_13"], -) - -java_binary( - name = "scala_3_play_3_0", - main_class = "rulesplayroutes.routes.CommandLinePlayRoutesCompiler", - visibility = ["//visibility:public"], - runtime_deps = ["@play_3_0__3_routes_compiler_cli//:com_lucidchart_play_routes_compiler_cli_3"], -) diff --git a/play-routes-compiler-cli/BUILD.bazel b/play-routes-compiler-cli/BUILD.bazel new file mode 100644 index 0000000..0417824 --- /dev/null +++ b/play-routes-compiler-cli/BUILD.bazel @@ -0,0 +1,24 @@ +java_binary( + name = "play-routes-compiler-cli", + main_class = "rulesplayroutes.routes.CommandLinePlayRoutesCompiler", + visibility = ["//visibility:public"], + # runtime_deps = ["@play_routes_compiler_cli//:com_lucidchart_play_routes_compiler_cli_3"], + runtime_deps = [":play-routes-compiler-cli-jar"], +) + +# TODO: remove +# java_import( +# name = "play-routes-compiler-cli-jar", +# jars = [ +# "play-routes-compiler-lib.jar", +# ], +# visibility = ["//visibility:public"], +# deps = [ +# "@play_routes_compiler_cli//third_party/bazel/src/java_tools/buildjar/java/com/google/devtools/build/buildjar/jarhelper", +# "@play_routes_compiler_cli_maven//:com_github_scopt_scopt_3", +# "@play_routes_compiler_cli_maven//:org_playframework_play_routes_compiler_3", +# "@rules_scala_annex//src/main/scala/higherkindness/rules_scala/common/error", +# "@rules_scala_annex//src/main/scala/higherkindness/rules_scala/common/sandbox", +# "@rules_scala_annex//src/main/scala/higherkindness/rules_scala/common/worker", +# ], +# ) diff --git a/play-routes/BUILD b/play-routes/BUILD index a54882c..a77f84e 100644 --- a/play-routes/BUILD +++ b/play-routes/BUILD @@ -4,6 +4,20 @@ load("@bazel_skylib//:bzl_library.bzl", "bzl_library") load("@io_bazel_stardoc//stardoc:stardoc.bzl", "stardoc") load("@rules_pkg//:pkg.bzl", "pkg_tar") load("@bazel_skylib//lib:paths.bzl", "paths") +load(":play-routes-toolchain.bzl", "play_routes_toolchain") + +toolchain_type(name = "toolchain_type") + +play_routes_toolchain( + name = "default_play_routes_toolchain", + play_routes_compiler = "//play-routes-compiler-cli", +) + +toolchain( + name = "cross_platform_play_routes_toolchain", + toolchain = ":default_play_routes_toolchain", + toolchain_type = ":toolchain_type", +) [ stardoc( @@ -11,7 +25,7 @@ load("@bazel_skylib//lib:paths.bzl", "paths") out = paths.replace_extension(file, ".md").replace("/", "_"), input = file, deps = [ - "//play-routes:bzl_internal", + "//play_routes:bzl_internal", ], ) for file in glob(["**/*.bzl"]) diff --git a/play-routes/play-routes-toolchain.bzl b/play-routes/play-routes-toolchain.bzl new file mode 100644 index 0000000..9d3e5fe --- /dev/null +++ b/play-routes/play-routes-toolchain.bzl @@ -0,0 +1,19 @@ +def _play_routes_toolchain_impl(ctx): + toolchain_info = platform_common.ToolchainInfo( + play_routes_compiler = ctx.attr.play_routes_compiler, + ) + return [toolchain_info] + +play_routes_toolchain = rule( + implementation = _play_routes_toolchain_impl, + attrs = { + "play_routes_compiler": attr.label( + mandatory = True, + cfg = "exec", + executable = True, + doc = "Tool used to compile Play Routes", + ), + }, + doc = "Defines a toolchain for compiling Play Routes based on a Play Routes Compiler", + provides = [platform_common.ToolchainInfo], +) diff --git a/play-routes/play-routes.bzl b/play-routes/play-routes.bzl index 841d414..4503323 100644 --- a/play-routes/play-routes.bzl +++ b/play-routes/play-routes.bzl @@ -1,3 +1,5 @@ +load("@rules_java//java/common:java_info.bzl", "JavaInfo") + """Play Routes rules Bazel rules for running the @@ -64,7 +66,7 @@ def _impl(ctx): }, progress_message = "Compiling play routes %{label}", use_default_shell_env = True, - executable = ctx.executable.play_routes_compiler, + executable = ctx.toolchains["//play-routes:toolchain_type"].play_routes_compiler.files_to_run, ) return [ @@ -105,14 +107,9 @@ play_routes = rule( doc = "If true, include the imports the Play project includes by default.", default = False, ), - "play_routes_compiler": attr.label( - executable = True, - cfg = "host", - allow_files = True, - default = Label("//external:default-play-routes-compiler-cli"), - ), }, outputs = { "srcjar": "play_routes_%{name}.srcjar", }, + toolchains = ["//play-routes:toolchain_type"], ) diff --git a/play_2_5_routes_compiler_cli_install.json b/play_2_5_routes_compiler_cli_install.json deleted file mode 100644 index b27419a..0000000 --- a/play_2_5_routes_compiler_cli_install.json +++ /dev/null @@ -1,374 +0,0 @@ -{ - "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": -298461886, - "__RESOLVED_ARTIFACTS_HASH": -1216510088, - "artifacts": { - "com.github.scopt:scopt_2.11": { - "shasums": { - "jar": "cc05b6ac379f9b45b6d832b7be556312039f3d57928b62190d3dcd04f34470b5", - "sources": "1c9111bafb55ec192d04898123199e51440e1633118b112d0c14a611491805ef" - }, - "version": "3.7.0" - }, - "com.lucidchart:play-routes-compiler-cli_2.11": { - "shasums": { - "jar": "9b89f0f1a4a62b0a05c844b0c184b82dcd2cd45415eea842fd054d7cbb0719f7", - "sources": "99d68d941a8d9cfae517de49123b6668294e6e52ed2b5710621ae1bf39adb7b3" - }, - "version": "2.5.19" - }, - "com.typesafe.play:routes-compiler_2.11": { - "shasums": { - "jar": "bc74bf8f8a4053bfebf506ade75bd917c6a91e98dbe78f8b8bb3cefaa44bebef", - "sources": "6b3e5fc188156fd8cb8518cddbcb0f4cf43dec876d703ff59146d73ea2f2d4b4" - }, - "version": "2.5.19" - }, - "com.typesafe.play:twirl-api_2.11": { - "shasums": { - "jar": "8cbc373640e2dab269bc0d4eada8fd47e9a06bb573ea9b7748eada58188547fa", - "sources": "aa59cc9ff4a00e95330f8e8fcb4d4489d168bde4c2c433e5741428d62971d5e8" - }, - "version": "1.1.1" - }, - "commons-io:commons-io": { - "shasums": { - "jar": "cc6a41dc3eaacc9e440a6bd0d2890b20d36b4ee408fe2d67122f328bb6e01581", - "sources": "d4635b348bbbf3f166d972b052bc4cac5b326c133beed7b8a1cab7ea22b61e01" - }, - "version": "2.4" - }, - "org.apache.commons:commons-lang3": { - "shasums": { - "jar": "734c8356420cc8e30c795d64fd1fcd5d44ea9d90342a2cc3262c5158fbc6d98b", - "sources": "4709f16a9e0f8fd83ae155083d63044e23045aac8f6f0183a2db09f492491b12" - }, - "version": "3.4" - }, - "org.scala-lang.modules:scala-parser-combinators_2.11": { - "shasums": { - "jar": "0dfaafce29a9a245b0a9180ec2c1073d2bd8f0330f03a9f1f6a74d1bc83f62d6", - "sources": "8b8155720b40c0f7aee7dbc19d4b407307f6e57dd5394b58a3bc9849e28d25c1" - }, - "version": "1.0.4" - }, - "org.scala-lang.modules:scala-xml_2.11": { - "shasums": { - "jar": "eb84f08e8e1874d56f01ee259f99b8fd3c10676959e45728535411182451eff2", - "sources": "9f6233bc4240883dbf00bba36554a0864ee3fbab7cf949440d6523a2f882b611" - }, - "version": "1.0.1" - }, - "org.scala-lang:scala-library": { - "shasums": { - "jar": "0b3d6fd42958ee98715ba2ec5fe221f4ca1e694d7c981b0ae0cd68e97baf6dce", - "sources": "a32ccfac851adeb094a31134af1034d0ba026512931433cba86d5dd12d91f1ff" - }, - "version": "2.11.12" - }, - "org.scala-lang:scala-reflect": { - "shasums": { - "jar": "6ba385b450a6311a15c918cf8688b9af9327c6104f0ecbd35933cfcd3095fe04", - "sources": "4d4adbc4f5f6be87ec555635dd40926bf71c6d638a06d59d929de04386099063" - }, - "version": "2.11.12" - } - }, - "dependencies": { - "com.github.scopt:scopt_2.11": [ - "org.scala-lang:scala-library" - ], - "com.lucidchart:play-routes-compiler-cli_2.11": [ - "com.github.scopt:scopt_2.11", - "com.typesafe.play:routes-compiler_2.11", - "org.scala-lang:scala-reflect" - ], - "com.typesafe.play:routes-compiler_2.11": [ - "com.typesafe.play:twirl-api_2.11", - "commons-io:commons-io", - "org.scala-lang.modules:scala-parser-combinators_2.11", - "org.scala-lang:scala-library" - ], - "com.typesafe.play:twirl-api_2.11": [ - "org.apache.commons:commons-lang3", - "org.scala-lang.modules:scala-xml_2.11", - "org.scala-lang:scala-library" - ], - "org.scala-lang.modules:scala-parser-combinators_2.11": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang.modules:scala-xml_2.11": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang:scala-reflect": [ - "org.scala-lang:scala-library" - ] - }, - "packages": { - "com.github.scopt:scopt_2.11": [ - "scopt" - ], - "com.lucidchart:play-routes-compiler-cli_2.11": [ - "org.apache.commons.io", - "org.apache.commons.io.comparator", - "org.apache.commons.io.filefilter", - "org.apache.commons.io.input", - "org.apache.commons.io.monitor", - "org.apache.commons.io.output", - "org.apache.commons.lang3", - "org.apache.commons.lang3.builder", - "org.apache.commons.lang3.concurrent", - "org.apache.commons.lang3.event", - "org.apache.commons.lang3.exception", - "org.apache.commons.lang3.math", - "org.apache.commons.lang3.mutable", - "org.apache.commons.lang3.reflect", - "org.apache.commons.lang3.text", - "org.apache.commons.lang3.text.translate", - "org.apache.commons.lang3.time", - "org.apache.commons.lang3.tuple", - "play.routes.compiler", - "play.routes.compiler.inject.twirl", - "play.routes.compiler.static.twirl", - "play.routes.compiler.templates", - "play.twirl.api", - "rulesplayroutes.routes", - "scala", - "scala.annotation", - "scala.annotation.meta", - "scala.annotation.unchecked", - "scala.beans", - "scala.collection", - "scala.collection.concurrent", - "scala.collection.convert", - "scala.collection.generic", - "scala.collection.immutable", - "scala.collection.mutable", - "scala.collection.parallel", - "scala.collection.parallel.immutable", - "scala.collection.parallel.mutable", - "scala.collection.script", - "scala.compat", - "scala.concurrent", - "scala.concurrent.duration", - "scala.concurrent.forkjoin", - "scala.concurrent.impl", - "scala.concurrent.util", - "scala.io", - "scala.math", - "scala.ref", - "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.internal", - "scala.reflect.macros.whitebox", - "scala.reflect.runtime", - "scala.runtime", - "scala.sys", - "scala.sys.process", - "scala.text", - "scala.util", - "scala.util.control", - "scala.util.hashing", - "scala.util.matching", - "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", - "scala.xml", - "scala.xml.dtd", - "scala.xml.dtd.impl", - "scala.xml.factory", - "scala.xml.include", - "scala.xml.include.sax", - "scala.xml.parsing", - "scala.xml.persistent", - "scala.xml.pull", - "scala.xml.transform", - "scopt" - ], - "com.typesafe.play:routes-compiler_2.11": [ - "play.routes.compiler", - "play.routes.compiler.inject.twirl", - "play.routes.compiler.static.twirl", - "play.routes.compiler.templates" - ], - "com.typesafe.play:twirl-api_2.11": [ - "play.twirl.api" - ], - "commons-io:commons-io": [ - "org.apache.commons.io", - "org.apache.commons.io.comparator", - "org.apache.commons.io.filefilter", - "org.apache.commons.io.input", - "org.apache.commons.io.monitor", - "org.apache.commons.io.output" - ], - "org.apache.commons:commons-lang3": [ - "org.apache.commons.lang3", - "org.apache.commons.lang3.builder", - "org.apache.commons.lang3.concurrent", - "org.apache.commons.lang3.event", - "org.apache.commons.lang3.exception", - "org.apache.commons.lang3.math", - "org.apache.commons.lang3.mutable", - "org.apache.commons.lang3.reflect", - "org.apache.commons.lang3.text", - "org.apache.commons.lang3.text.translate", - "org.apache.commons.lang3.time", - "org.apache.commons.lang3.tuple" - ], - "org.scala-lang.modules:scala-parser-combinators_2.11": [ - "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.11": [ - "scala.xml", - "scala.xml.dtd", - "scala.xml.dtd.impl", - "scala.xml.factory", - "scala.xml.include", - "scala.xml.include.sax", - "scala.xml.parsing", - "scala.xml.persistent", - "scala.xml.pull", - "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.generic", - "scala.collection.immutable", - "scala.collection.mutable", - "scala.collection.parallel", - "scala.collection.parallel.immutable", - "scala.collection.parallel.mutable", - "scala.collection.script", - "scala.compat", - "scala.concurrent", - "scala.concurrent.duration", - "scala.concurrent.forkjoin", - "scala.concurrent.impl", - "scala.concurrent.util", - "scala.io", - "scala.math", - "scala.ref", - "scala.reflect", - "scala.reflect.macros.internal", - "scala.runtime", - "scala.sys", - "scala.sys.process", - "scala.text", - "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" - ] - }, - "repositories": { - "https://repo.maven.apache.org/maven2/": [ - "com.github.scopt:scopt_2.11", - "com.github.scopt:scopt_2.11:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.11", - "com.lucidchart:play-routes-compiler-cli_2.11:jar:sources", - "com.typesafe.play:routes-compiler_2.11", - "com.typesafe.play:routes-compiler_2.11:jar:sources", - "com.typesafe.play:twirl-api_2.11", - "com.typesafe.play:twirl-api_2.11:jar:sources", - "commons-io:commons-io", - "commons-io:commons-io:jar:sources", - "org.apache.commons:commons-lang3", - "org.apache.commons:commons-lang3:jar:sources", - "org.scala-lang.modules:scala-parser-combinators_2.11", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources", - "org.scala-lang.modules:scala-xml_2.11", - "org.scala-lang.modules:scala-xml_2.11: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" - ], - "https://maven-central.storage-download.googleapis.com/maven2/": [ - "com.github.scopt:scopt_2.11", - "com.github.scopt:scopt_2.11:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.11", - "com.lucidchart:play-routes-compiler-cli_2.11:jar:sources", - "com.typesafe.play:routes-compiler_2.11", - "com.typesafe.play:routes-compiler_2.11:jar:sources", - "com.typesafe.play:twirl-api_2.11", - "com.typesafe.play:twirl-api_2.11:jar:sources", - "commons-io:commons-io", - "commons-io:commons-io:jar:sources", - "org.apache.commons:commons-lang3", - "org.apache.commons:commons-lang3:jar:sources", - "org.scala-lang.modules:scala-parser-combinators_2.11", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources", - "org.scala-lang.modules:scala-xml_2.11", - "org.scala-lang.modules:scala-xml_2.11: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" - ], - "https://mirror.bazel.build/repo1.maven.org/maven2/": [ - "com.github.scopt:scopt_2.11", - "com.github.scopt:scopt_2.11:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.11", - "com.lucidchart:play-routes-compiler-cli_2.11:jar:sources", - "com.typesafe.play:routes-compiler_2.11", - "com.typesafe.play:routes-compiler_2.11:jar:sources", - "com.typesafe.play:twirl-api_2.11", - "com.typesafe.play:twirl-api_2.11:jar:sources", - "commons-io:commons-io", - "commons-io:commons-io:jar:sources", - "org.apache.commons:commons-lang3", - "org.apache.commons:commons-lang3:jar:sources", - "org.scala-lang.modules:scala-parser-combinators_2.11", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources", - "org.scala-lang.modules:scala-xml_2.11", - "org.scala-lang.modules:scala-xml_2.11: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" - ] - }, - "services": {}, - "version": "2" -} diff --git a/play_2_6_routes_compiler_cli_install.json b/play_2_6_routes_compiler_cli_install.json deleted file mode 100644 index 46b2e72..0000000 --- a/play_2_6_routes_compiler_cli_install.json +++ /dev/null @@ -1,553 +0,0 @@ -{ - "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": -570092027, - "__RESOLVED_ARTIFACTS_HASH": -1720847324, - "artifacts": { - "com.github.scopt:scopt_2.11": { - "shasums": { - "jar": "cc05b6ac379f9b45b6d832b7be556312039f3d57928b62190d3dcd04f34470b5", - "sources": "1c9111bafb55ec192d04898123199e51440e1633118b112d0c14a611491805ef" - }, - "version": "3.7.0" - }, - "com.github.scopt:scopt_2.12": { - "shasums": { - "jar": "1105ff2819f267e06b9a84843231a9fd7a69817c49e5d67167cb601e47ce2c56", - "sources": "5d642a8f96c9e0243d15badd519ffb2a7f2786ce70d5e5c21003bb9b70ff507d" - }, - "version": "3.7.0" - }, - "com.lucidchart:play-routes-compiler-cli_2.11": { - "shasums": { - "jar": "1e83f3f3a2365a7286909bcd706b016a65f3d96d17c869979f0a31aea04d1a54", - "sources": "3af8ade252de1c9a00a9d07e4379f89990c3acde7cddbf9f1ba65efe819fa9f8" - }, - "version": "2.6.23" - }, - "com.lucidchart:play-routes-compiler-cli_2.12": { - "shasums": { - "jar": "d38f56370a913c4316ac4113bbf705630fb456b0fd47768f2b617d7d842810cc", - "sources": "5599233cd5ee17d51aa43f1b969fd6105d8a839253487fc9517126244b3c3b20" - }, - "version": "2.6.23" - }, - "com.typesafe.play:routes-compiler_2.11": { - "shasums": { - "jar": "6ada0fc08724112ebc0ecd247d15a3d6f55f837706893a55068e238bef03fb5f", - "sources": "55c887551a399853e94342ebb31b0122ad9a85d45d581140aa7ef5d585a10a00" - }, - "version": "2.6.23" - }, - "com.typesafe.play:routes-compiler_2.12": { - "shasums": { - "jar": "11ae42e33faa093ab411d4e5d604c0252ff38bd19bb6e9dfecd8f6d4c5bcd08a", - "sources": "8b6f7dc5b424a2345aefe0f65c75afffad89a979148cdd741956dd924e13c284" - }, - "version": "2.6.23" - }, - "com.typesafe.play:twirl-api_2.11": { - "shasums": { - "jar": "a5148092bdbd1763506919e64ed9a683a354857077b3da3497052ae9c8a92e59", - "sources": "fcb6759332475e5f8febf7cf29da9c42ec089a305709cc8c972305d045739727" - }, - "version": "1.3.15" - }, - "com.typesafe.play:twirl-api_2.12": { - "shasums": { - "jar": "57cf1ac0b2d7b34d3995398eef72771aa5c9d3ed6b9c5d119a2fad3bee1a0f76", - "sources": "0fda7b440bb4b03e0bd10ee05edf7939ff7b155483afdd7e94151af827333b6b" - }, - "version": "1.3.15" - }, - "commons-io:commons-io": { - "shasums": { - "jar": "a10418348d234968600ccb1d988efcbbd08716e1d96936ccc1880e7d22513474", - "sources": "3b69b518d9a844732e35509b79e499fca63a960ee4301b1c96dc32e87f3f60a1" - }, - "version": "2.5" - }, - "org.scala-lang.modules:scala-parser-combinators_2.11": { - "shasums": { - "jar": "a653cbe30fae8de295c520b7413a586ed4b1cb02ac8b3ee69a63e71b2cc01e70", - "sources": "d13e495cd73a4b7cf01d611af02aaa589297addf90796d0c8bf112631642f0c7" - }, - "version": "1.0.7" - }, - "org.scala-lang.modules:scala-parser-combinators_2.12": { - "shasums": { - "jar": "a7f8c9998b61ff6333a72b5c1d28b027de4b5140c1eaad4de008893c160de800", - "sources": "7cce0fcf4695a9d17dd27ab3f63ffcad4c6fc7956a74f09e351242fdfba2ca21" - }, - "version": "1.0.7" - }, - "org.scala-lang.modules:scala-xml_2.11": { - "shasums": { - "jar": "a3ec190294a15a26706123f140a087a8c0a5db8980e86755e5b8e8fc33ac8d3d", - "sources": "02a63308c374fd82db89fba59739bd1f30ec160cf8e422f9d26fde07274da8b0" - }, - "version": "1.0.6" - }, - "org.scala-lang.modules:scala-xml_2.12": { - "shasums": { - "jar": "7cc3b6ceb56e879cb977e8e043f4bfe2e062f78795efd7efa09f85003cb3230a", - "sources": "a7e8aac79394df396afda98b35537791809d815ce15ab2224f7d31e50c753922" - }, - "version": "1.0.6" - }, - "org.scala-lang:scala-library": { - "shasums": { - "jar": "321fb55685635c931eba4bc0d7668349da3f2c09aee2de93a70566066ff25c28", - "sources": "11482bcb49b2e47baee89c3b1ae10c6a40b89e2fbb0da2a423e062f444e13492" - }, - "version": "2.12.8" - }, - "org.scala-lang:scala-reflect": { - "shasums": { - "jar": "4d6405395c4599ce04cea08ba082339e3e42135de9aae2923c9f5367e957315a", - "sources": "5c676791217d9b48560496556b8965cceabcbfdbb65bbebdc52e99c0a3847735" - }, - "version": "2.12.8" - } - }, - "dependencies": { - "com.github.scopt:scopt_2.11": [ - "org.scala-lang:scala-library" - ], - "com.github.scopt:scopt_2.12": [ - "org.scala-lang:scala-library" - ], - "com.lucidchart:play-routes-compiler-cli_2.11": [ - "com.github.scopt:scopt_2.11", - "com.typesafe.play:routes-compiler_2.11", - "org.scala-lang:scala-reflect" - ], - "com.lucidchart:play-routes-compiler-cli_2.12": [ - "com.github.scopt:scopt_2.12", - "com.typesafe.play:routes-compiler_2.12", - "org.scala-lang:scala-reflect" - ], - "com.typesafe.play:routes-compiler_2.11": [ - "com.typesafe.play:twirl-api_2.11", - "commons-io:commons-io", - "org.scala-lang.modules:scala-parser-combinators_2.11", - "org.scala-lang:scala-library" - ], - "com.typesafe.play:routes-compiler_2.12": [ - "com.typesafe.play:twirl-api_2.12", - "commons-io:commons-io", - "org.scala-lang.modules:scala-parser-combinators_2.12", - "org.scala-lang:scala-library" - ], - "com.typesafe.play:twirl-api_2.11": [ - "org.scala-lang.modules:scala-xml_2.11", - "org.scala-lang:scala-library" - ], - "com.typesafe.play:twirl-api_2.12": [ - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang:scala-library" - ], - "org.scala-lang.modules:scala-parser-combinators_2.11": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang.modules:scala-parser-combinators_2.12": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang.modules:scala-xml_2.11": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang.modules:scala-xml_2.12": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang:scala-reflect": [ - "org.scala-lang:scala-library" - ] - }, - "packages": { - "com.github.scopt:scopt_2.11": [ - "scopt" - ], - "com.github.scopt:scopt_2.12": [ - "scopt" - ], - "com.lucidchart:play-routes-compiler-cli_2.11": [ - "org.apache.commons.io", - "org.apache.commons.io.comparator", - "org.apache.commons.io.filefilter", - "org.apache.commons.io.input", - "org.apache.commons.io.monitor", - "org.apache.commons.io.output", - "org.apache.commons.io.serialization", - "play.routes.compiler", - "play.routes.compiler.inject.twirl", - "play.routes.compiler.static.twirl", - "play.routes.compiler.templates", - "play.twirl.api", - "play.twirl.api.utils", - "rulesplayroutes.routes", - "scala", - "scala.annotation", - "scala.annotation.meta", - "scala.annotation.unchecked", - "scala.beans", - "scala.collection", - "scala.collection.concurrent", - "scala.collection.convert", - "scala.collection.generic", - "scala.collection.immutable", - "scala.collection.mutable", - "scala.collection.parallel", - "scala.collection.parallel.immutable", - "scala.collection.parallel.mutable", - "scala.collection.script", - "scala.compat", - "scala.concurrent", - "scala.concurrent.duration", - "scala.concurrent.forkjoin", - "scala.concurrent.impl", - "scala.concurrent.util", - "scala.io", - "scala.math", - "scala.ref", - "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.internal", - "scala.reflect.macros.whitebox", - "scala.reflect.runtime", - "scala.runtime", - "scala.sys", - "scala.sys.process", - "scala.text", - "scala.util", - "scala.util.control", - "scala.util.hashing", - "scala.util.matching", - "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", - "scala.xml", - "scala.xml.dtd", - "scala.xml.dtd.impl", - "scala.xml.factory", - "scala.xml.include", - "scala.xml.include.sax", - "scala.xml.parsing", - "scala.xml.persistent", - "scala.xml.pull", - "scala.xml.transform", - "scopt" - ], - "com.lucidchart:play-routes-compiler-cli_2.12": [ - "org.apache.commons.io", - "org.apache.commons.io.comparator", - "org.apache.commons.io.filefilter", - "org.apache.commons.io.input", - "org.apache.commons.io.monitor", - "org.apache.commons.io.output", - "org.apache.commons.io.serialization", - "play.routes.compiler", - "play.routes.compiler.inject.twirl", - "play.routes.compiler.static.twirl", - "play.routes.compiler.templates", - "play.twirl.api", - "play.twirl.api.utils", - "rulesplayroutes.routes", - "scala", - "scala.annotation", - "scala.annotation.meta", - "scala.annotation.unchecked", - "scala.beans", - "scala.collection", - "scala.collection.concurrent", - "scala.collection.convert", - "scala.collection.generic", - "scala.collection.immutable", - "scala.collection.mutable", - "scala.collection.parallel", - "scala.collection.parallel.immutable", - "scala.collection.parallel.mutable", - "scala.collection.script", - "scala.compat", - "scala.concurrent", - "scala.concurrent.duration", - "scala.concurrent.forkjoin", - "scala.concurrent.impl", - "scala.io", - "scala.math", - "scala.ref", - "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.internal", - "scala.reflect.macros.whitebox", - "scala.reflect.runtime", - "scala.runtime", - "scala.runtime.java8", - "scala.sys", - "scala.sys.process", - "scala.text", - "scala.util", - "scala.util.control", - "scala.util.hashing", - "scala.util.matching", - "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", - "scala.xml", - "scala.xml.dtd", - "scala.xml.dtd.impl", - "scala.xml.factory", - "scala.xml.include", - "scala.xml.include.sax", - "scala.xml.parsing", - "scala.xml.persistent", - "scala.xml.pull", - "scala.xml.transform", - "scopt" - ], - "com.typesafe.play:routes-compiler_2.11": [ - "play.routes.compiler", - "play.routes.compiler.inject.twirl", - "play.routes.compiler.static.twirl", - "play.routes.compiler.templates" - ], - "com.typesafe.play:routes-compiler_2.12": [ - "play.routes.compiler", - "play.routes.compiler.inject.twirl", - "play.routes.compiler.static.twirl", - "play.routes.compiler.templates" - ], - "com.typesafe.play:twirl-api_2.11": [ - "play.twirl.api", - "play.twirl.api.utils" - ], - "com.typesafe.play:twirl-api_2.12": [ - "play.twirl.api", - "play.twirl.api.utils" - ], - "commons-io:commons-io": [ - "org.apache.commons.io", - "org.apache.commons.io.comparator", - "org.apache.commons.io.filefilter", - "org.apache.commons.io.input", - "org.apache.commons.io.monitor", - "org.apache.commons.io.output", - "org.apache.commons.io.serialization" - ], - "org.scala-lang.modules:scala-parser-combinators_2.11": [ - "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-parser-combinators_2.12": [ - "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.11": [ - "scala.xml", - "scala.xml.dtd", - "scala.xml.dtd.impl", - "scala.xml.factory", - "scala.xml.include", - "scala.xml.include.sax", - "scala.xml.parsing", - "scala.xml.persistent", - "scala.xml.pull", - "scala.xml.transform" - ], - "org.scala-lang.modules:scala-xml_2.12": [ - "scala.xml", - "scala.xml.dtd", - "scala.xml.dtd.impl", - "scala.xml.factory", - "scala.xml.include", - "scala.xml.include.sax", - "scala.xml.parsing", - "scala.xml.persistent", - "scala.xml.pull", - "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.generic", - "scala.collection.immutable", - "scala.collection.mutable", - "scala.collection.parallel", - "scala.collection.parallel.immutable", - "scala.collection.parallel.mutable", - "scala.collection.script", - "scala.compat", - "scala.concurrent", - "scala.concurrent.duration", - "scala.concurrent.forkjoin", - "scala.concurrent.impl", - "scala.io", - "scala.math", - "scala.ref", - "scala.reflect", - "scala.reflect.macros.internal", - "scala.runtime", - "scala.runtime.java8", - "scala.sys", - "scala.sys.process", - "scala.text", - "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" - ] - }, - "repositories": { - "https://repo.maven.apache.org/maven2/": [ - "com.github.scopt:scopt_2.11", - "com.github.scopt:scopt_2.11:jar:sources", - "com.github.scopt:scopt_2.12", - "com.github.scopt:scopt_2.12:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.11", - "com.lucidchart:play-routes-compiler-cli_2.11:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.12", - "com.lucidchart:play-routes-compiler-cli_2.12:jar:sources", - "com.typesafe.play:routes-compiler_2.11", - "com.typesafe.play:routes-compiler_2.11:jar:sources", - "com.typesafe.play:routes-compiler_2.12", - "com.typesafe.play:routes-compiler_2.12:jar:sources", - "com.typesafe.play:twirl-api_2.11", - "com.typesafe.play:twirl-api_2.11:jar:sources", - "com.typesafe.play:twirl-api_2.12", - "com.typesafe.play:twirl-api_2.12:jar:sources", - "commons-io:commons-io", - "commons-io:commons-io:jar:sources", - "org.scala-lang.modules:scala-parser-combinators_2.11", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources", - "org.scala-lang.modules:scala-parser-combinators_2.12", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources", - "org.scala-lang.modules:scala-xml_2.11", - "org.scala-lang.modules:scala-xml_2.11:jar:sources", - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang.modules:scala-xml_2.12: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" - ], - "https://maven-central.storage-download.googleapis.com/maven2/": [ - "com.github.scopt:scopt_2.11", - "com.github.scopt:scopt_2.11:jar:sources", - "com.github.scopt:scopt_2.12", - "com.github.scopt:scopt_2.12:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.11", - "com.lucidchart:play-routes-compiler-cli_2.11:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.12", - "com.lucidchart:play-routes-compiler-cli_2.12:jar:sources", - "com.typesafe.play:routes-compiler_2.11", - "com.typesafe.play:routes-compiler_2.11:jar:sources", - "com.typesafe.play:routes-compiler_2.12", - "com.typesafe.play:routes-compiler_2.12:jar:sources", - "com.typesafe.play:twirl-api_2.11", - "com.typesafe.play:twirl-api_2.11:jar:sources", - "com.typesafe.play:twirl-api_2.12", - "com.typesafe.play:twirl-api_2.12:jar:sources", - "commons-io:commons-io", - "commons-io:commons-io:jar:sources", - "org.scala-lang.modules:scala-parser-combinators_2.11", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources", - "org.scala-lang.modules:scala-parser-combinators_2.12", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources", - "org.scala-lang.modules:scala-xml_2.11", - "org.scala-lang.modules:scala-xml_2.11:jar:sources", - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang.modules:scala-xml_2.12: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" - ], - "https://mirror.bazel.build/repo1.maven.org/maven2/": [ - "com.github.scopt:scopt_2.11", - "com.github.scopt:scopt_2.11:jar:sources", - "com.github.scopt:scopt_2.12", - "com.github.scopt:scopt_2.12:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.11", - "com.lucidchart:play-routes-compiler-cli_2.11:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.12", - "com.lucidchart:play-routes-compiler-cli_2.12:jar:sources", - "com.typesafe.play:routes-compiler_2.11", - "com.typesafe.play:routes-compiler_2.11:jar:sources", - "com.typesafe.play:routes-compiler_2.12", - "com.typesafe.play:routes-compiler_2.12:jar:sources", - "com.typesafe.play:twirl-api_2.11", - "com.typesafe.play:twirl-api_2.11:jar:sources", - "com.typesafe.play:twirl-api_2.12", - "com.typesafe.play:twirl-api_2.12:jar:sources", - "commons-io:commons-io", - "commons-io:commons-io:jar:sources", - "org.scala-lang.modules:scala-parser-combinators_2.11", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources", - "org.scala-lang.modules:scala-parser-combinators_2.12", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources", - "org.scala-lang.modules:scala-xml_2.11", - "org.scala-lang.modules:scala-xml_2.11:jar:sources", - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang.modules:scala-xml_2.12: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" - ] - }, - "services": {}, - "version": "2" -} diff --git a/play_2_7_routes_compiler_cli_install.json b/play_2_7_routes_compiler_cli_install.json deleted file mode 100644 index 4e70e9f..0000000 --- a/play_2_7_routes_compiler_cli_install.json +++ /dev/null @@ -1,515 +0,0 @@ -{ - "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": -1062342512, - "__RESOLVED_ARTIFACTS_HASH": 421241932, - "artifacts": { - "com.github.scopt:scopt_2.11": { - "shasums": { - "jar": "cc05b6ac379f9b45b6d832b7be556312039f3d57928b62190d3dcd04f34470b5", - "sources": "1c9111bafb55ec192d04898123199e51440e1633118b112d0c14a611491805ef" - }, - "version": "3.7.0" - }, - "com.github.scopt:scopt_2.12": { - "shasums": { - "jar": "1105ff2819f267e06b9a84843231a9fd7a69817c49e5d67167cb601e47ce2c56", - "sources": "5d642a8f96c9e0243d15badd519ffb2a7f2786ce70d5e5c21003bb9b70ff507d" - }, - "version": "3.7.0" - }, - "com.lucidchart:play-routes-compiler-cli_2.11": { - "shasums": { - "jar": "927d32d1eb65c5c4450fff8a4bff0fd1deb8eea0db4a04a37080f4a3151a500a", - "sources": "187b0f4e6674aa98c7a486482c130ccbc65b31e707eca2ac3c7577298e7849ee" - }, - "version": "2.7.2" - }, - "com.lucidchart:play-routes-compiler-cli_2.12": { - "shasums": { - "jar": "b1be4f330a35ce79489c3eb1483d734abfd08feb903118946e132565fa419f52", - "sources": "200474ab0ee50b9022a4aa9ea04cb90e7ed4af65f1591be8614779ed91e9271c" - }, - "version": "2.7.3" - }, - "com.typesafe.play:routes-compiler_2.11": { - "shasums": { - "jar": "d332c0b2873514cfd1d65abcbd7e0dc832b2b94d0ff70c501460f487c8d37ec2", - "sources": "e919c1008c17e34c92a179907922cc47bc0e1af564318d7131f3c54813b4a576" - }, - "version": "2.7.2" - }, - "com.typesafe.play:routes-compiler_2.12": { - "shasums": { - "jar": "358ddda4d89186f6dabec08f488b9a0c026409db1b55821a3a7179a6008d5341", - "sources": "e654102e57de4858d72423e3df372cd3de2bf53448084f92d86d172de839defe" - }, - "version": "2.7.3" - }, - "com.typesafe.play:twirl-api_2.11": { - "shasums": { - "jar": "15d9eef2167234d9ac73f621456593dbeeb0ee82ee6b33dec3d095b4b015f223", - "sources": "a68e6438261d242d4b0730617a2d8545a27fad4bd6e7516eb86ee3110210eb37" - }, - "version": "1.4.0" - }, - "com.typesafe.play:twirl-api_2.12": { - "shasums": { - "jar": "a7887a19bcd7ec2e76bc43ea10f2ac73a8d2cd1fe154819905652aa422675fa2", - "sources": "66f51aa6198090b88dc7d44ddc748df210a72a651a4ae28a0075ac9b6a925250" - }, - "version": "1.4.2" - }, - "org.scala-lang.modules:scala-parser-combinators_2.11": { - "shasums": { - "jar": "32ad5c2801fac8cc3a004ef819aedd1a74d4e8eef12f6f2b4e74e1964872284e", - "sources": "8e9df68fae743e654df806b9c230e1d42222eb3777c706e990781c541d297c62" - }, - "version": "1.1.1" - }, - "org.scala-lang.modules:scala-parser-combinators_2.12": { - "shasums": { - "jar": "24985eb43e295a9dd77905ada307a850ca25acf819cdb579c093fc6987b0dbc2", - "sources": "8fbe3fa9e748f24aa6d6868c0c2be30d41a02d20428ed5429bb57a897cb756e3" - }, - "version": "1.1.2" - }, - "org.scala-lang.modules:scala-xml_2.11": { - "shasums": { - "jar": "8aa1ac3077bd2bce0540ce589240fae70ad3384905a2318a28f962edb3a2491c", - "sources": "23ec508f75f1b5a614a506a97ffbf7d006fa3e5d85f1ac2652124e600d96e617" - }, - "version": "1.1.0" - }, - "org.scala-lang.modules:scala-xml_2.12": { - "shasums": { - "jar": "1b48dc206f527b7604ef32492ada8e71706c63a65d999e0cabdafdc5793b4d63", - "sources": "288fdce0b296df28725707cc87cff0f65ef435c54e93e0c1fbc5a7fcc8e19ade" - }, - "version": "1.2.0" - }, - "org.scala-lang:scala-library": { - "shasums": { - "jar": "321fb55685635c931eba4bc0d7668349da3f2c09aee2de93a70566066ff25c28", - "sources": "11482bcb49b2e47baee89c3b1ae10c6a40b89e2fbb0da2a423e062f444e13492" - }, - "version": "2.12.8" - }, - "org.scala-lang:scala-reflect": { - "shasums": { - "jar": "4d6405395c4599ce04cea08ba082339e3e42135de9aae2923c9f5367e957315a", - "sources": "5c676791217d9b48560496556b8965cceabcbfdbb65bbebdc52e99c0a3847735" - }, - "version": "2.12.8" - } - }, - "dependencies": { - "com.github.scopt:scopt_2.11": [ - "org.scala-lang:scala-library" - ], - "com.github.scopt:scopt_2.12": [ - "org.scala-lang:scala-library" - ], - "com.lucidchart:play-routes-compiler-cli_2.11": [ - "com.github.scopt:scopt_2.11", - "com.typesafe.play:routes-compiler_2.11", - "org.scala-lang:scala-reflect" - ], - "com.lucidchart:play-routes-compiler-cli_2.12": [ - "com.github.scopt:scopt_2.12", - "com.typesafe.play:routes-compiler_2.12", - "org.scala-lang:scala-reflect" - ], - "com.typesafe.play:routes-compiler_2.11": [ - "com.typesafe.play:twirl-api_2.11", - "org.scala-lang.modules:scala-parser-combinators_2.11", - "org.scala-lang:scala-library" - ], - "com.typesafe.play:routes-compiler_2.12": [ - "com.typesafe.play:twirl-api_2.12", - "org.scala-lang.modules:scala-parser-combinators_2.12", - "org.scala-lang:scala-library" - ], - "com.typesafe.play:twirl-api_2.11": [ - "org.scala-lang.modules:scala-xml_2.11", - "org.scala-lang:scala-library" - ], - "com.typesafe.play:twirl-api_2.12": [ - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang:scala-library" - ], - "org.scala-lang.modules:scala-parser-combinators_2.11": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang.modules:scala-parser-combinators_2.12": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang.modules:scala-xml_2.11": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang.modules:scala-xml_2.12": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang:scala-reflect": [ - "org.scala-lang:scala-library" - ] - }, - "packages": { - "com.github.scopt:scopt_2.11": [ - "scopt" - ], - "com.github.scopt:scopt_2.12": [ - "scopt" - ], - "com.lucidchart:play-routes-compiler-cli_2.11": [ - "play.routes.compiler", - "play.routes.compiler.inject.twirl", - "play.routes.compiler.static.twirl", - "play.routes.compiler.templates", - "play.twirl.api", - "play.twirl.api.utils", - "rulesplayroutes.routes", - "scala", - "scala.annotation", - "scala.annotation.meta", - "scala.annotation.unchecked", - "scala.beans", - "scala.collection", - "scala.collection.concurrent", - "scala.collection.convert", - "scala.collection.generic", - "scala.collection.immutable", - "scala.collection.mutable", - "scala.collection.parallel", - "scala.collection.parallel.immutable", - "scala.collection.parallel.mutable", - "scala.collection.script", - "scala.compat", - "scala.concurrent", - "scala.concurrent.duration", - "scala.concurrent.forkjoin", - "scala.concurrent.impl", - "scala.concurrent.util", - "scala.io", - "scala.math", - "scala.ref", - "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.internal", - "scala.reflect.macros.whitebox", - "scala.reflect.runtime", - "scala.runtime", - "scala.sys", - "scala.sys.process", - "scala.text", - "scala.util", - "scala.util.control", - "scala.util.hashing", - "scala.util.matching", - "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", - "scala.xml", - "scala.xml.dtd", - "scala.xml.dtd.impl", - "scala.xml.factory", - "scala.xml.include", - "scala.xml.include.sax", - "scala.xml.parsing", - "scala.xml.persistent", - "scala.xml.pull", - "scala.xml.transform", - "scopt" - ], - "com.lucidchart:play-routes-compiler-cli_2.12": [ - "play.routes.compiler", - "play.routes.compiler.inject.twirl", - "play.routes.compiler.static.twirl", - "play.routes.compiler.templates", - "play.twirl.api", - "play.twirl.api.utils", - "rulesplayroutes.routes", - "scala", - "scala.annotation", - "scala.annotation.meta", - "scala.annotation.unchecked", - "scala.beans", - "scala.collection", - "scala.collection.concurrent", - "scala.collection.convert", - "scala.collection.generic", - "scala.collection.immutable", - "scala.collection.mutable", - "scala.collection.parallel", - "scala.collection.parallel.immutable", - "scala.collection.parallel.mutable", - "scala.collection.script", - "scala.compat", - "scala.concurrent", - "scala.concurrent.duration", - "scala.concurrent.forkjoin", - "scala.concurrent.impl", - "scala.io", - "scala.math", - "scala.ref", - "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.internal", - "scala.reflect.macros.whitebox", - "scala.reflect.runtime", - "scala.runtime", - "scala.runtime.java8", - "scala.sys", - "scala.sys.process", - "scala.text", - "scala.util", - "scala.util.control", - "scala.util.hashing", - "scala.util.matching", - "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", - "scala.xml", - "scala.xml.dtd", - "scala.xml.dtd.impl", - "scala.xml.factory", - "scala.xml.include", - "scala.xml.include.sax", - "scala.xml.parsing", - "scala.xml.persistent", - "scala.xml.pull", - "scala.xml.transform", - "scopt" - ], - "com.typesafe.play:routes-compiler_2.11": [ - "play.routes.compiler", - "play.routes.compiler.inject.twirl", - "play.routes.compiler.static.twirl", - "play.routes.compiler.templates" - ], - "com.typesafe.play:routes-compiler_2.12": [ - "play.routes.compiler", - "play.routes.compiler.inject.twirl", - "play.routes.compiler.static.twirl", - "play.routes.compiler.templates" - ], - "com.typesafe.play:twirl-api_2.11": [ - "play.twirl.api", - "play.twirl.api.utils" - ], - "com.typesafe.play:twirl-api_2.12": [ - "play.twirl.api", - "play.twirl.api.utils" - ], - "org.scala-lang.modules:scala-parser-combinators_2.11": [ - "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-parser-combinators_2.12": [ - "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.11": [ - "scala.xml", - "scala.xml.dtd", - "scala.xml.dtd.impl", - "scala.xml.factory", - "scala.xml.include", - "scala.xml.include.sax", - "scala.xml.parsing", - "scala.xml.persistent", - "scala.xml.pull", - "scala.xml.transform" - ], - "org.scala-lang.modules:scala-xml_2.12": [ - "scala.xml", - "scala.xml.dtd", - "scala.xml.dtd.impl", - "scala.xml.factory", - "scala.xml.include", - "scala.xml.include.sax", - "scala.xml.parsing", - "scala.xml.persistent", - "scala.xml.pull", - "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.generic", - "scala.collection.immutable", - "scala.collection.mutable", - "scala.collection.parallel", - "scala.collection.parallel.immutable", - "scala.collection.parallel.mutable", - "scala.collection.script", - "scala.compat", - "scala.concurrent", - "scala.concurrent.duration", - "scala.concurrent.forkjoin", - "scala.concurrent.impl", - "scala.io", - "scala.math", - "scala.ref", - "scala.reflect", - "scala.reflect.macros.internal", - "scala.runtime", - "scala.runtime.java8", - "scala.sys", - "scala.sys.process", - "scala.text", - "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" - ] - }, - "repositories": { - "https://repo.maven.apache.org/maven2/": [ - "com.github.scopt:scopt_2.11", - "com.github.scopt:scopt_2.11:jar:sources", - "com.github.scopt:scopt_2.12", - "com.github.scopt:scopt_2.12:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.11", - "com.lucidchart:play-routes-compiler-cli_2.11:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.12", - "com.lucidchart:play-routes-compiler-cli_2.12:jar:sources", - "com.typesafe.play:routes-compiler_2.11", - "com.typesafe.play:routes-compiler_2.11:jar:sources", - "com.typesafe.play:routes-compiler_2.12", - "com.typesafe.play:routes-compiler_2.12:jar:sources", - "com.typesafe.play:twirl-api_2.11", - "com.typesafe.play:twirl-api_2.11:jar:sources", - "com.typesafe.play:twirl-api_2.12", - "com.typesafe.play:twirl-api_2.12:jar:sources", - "org.scala-lang.modules:scala-parser-combinators_2.11", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources", - "org.scala-lang.modules:scala-parser-combinators_2.12", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources", - "org.scala-lang.modules:scala-xml_2.11", - "org.scala-lang.modules:scala-xml_2.11:jar:sources", - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang.modules:scala-xml_2.12: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" - ], - "https://maven-central.storage-download.googleapis.com/maven2/": [ - "com.github.scopt:scopt_2.11", - "com.github.scopt:scopt_2.11:jar:sources", - "com.github.scopt:scopt_2.12", - "com.github.scopt:scopt_2.12:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.11", - "com.lucidchart:play-routes-compiler-cli_2.11:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.12", - "com.lucidchart:play-routes-compiler-cli_2.12:jar:sources", - "com.typesafe.play:routes-compiler_2.11", - "com.typesafe.play:routes-compiler_2.11:jar:sources", - "com.typesafe.play:routes-compiler_2.12", - "com.typesafe.play:routes-compiler_2.12:jar:sources", - "com.typesafe.play:twirl-api_2.11", - "com.typesafe.play:twirl-api_2.11:jar:sources", - "com.typesafe.play:twirl-api_2.12", - "com.typesafe.play:twirl-api_2.12:jar:sources", - "org.scala-lang.modules:scala-parser-combinators_2.11", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources", - "org.scala-lang.modules:scala-parser-combinators_2.12", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources", - "org.scala-lang.modules:scala-xml_2.11", - "org.scala-lang.modules:scala-xml_2.11:jar:sources", - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang.modules:scala-xml_2.12: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" - ], - "https://mirror.bazel.build/repo1.maven.org/maven2/": [ - "com.github.scopt:scopt_2.11", - "com.github.scopt:scopt_2.11:jar:sources", - "com.github.scopt:scopt_2.12", - "com.github.scopt:scopt_2.12:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.11", - "com.lucidchart:play-routes-compiler-cli_2.11:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.12", - "com.lucidchart:play-routes-compiler-cli_2.12:jar:sources", - "com.typesafe.play:routes-compiler_2.11", - "com.typesafe.play:routes-compiler_2.11:jar:sources", - "com.typesafe.play:routes-compiler_2.12", - "com.typesafe.play:routes-compiler_2.12:jar:sources", - "com.typesafe.play:twirl-api_2.11", - "com.typesafe.play:twirl-api_2.11:jar:sources", - "com.typesafe.play:twirl-api_2.12", - "com.typesafe.play:twirl-api_2.12:jar:sources", - "org.scala-lang.modules:scala-parser-combinators_2.11", - "org.scala-lang.modules:scala-parser-combinators_2.11:jar:sources", - "org.scala-lang.modules:scala-parser-combinators_2.12", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources", - "org.scala-lang.modules:scala-xml_2.11", - "org.scala-lang.modules:scala-xml_2.11:jar:sources", - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang.modules:scala-xml_2.12: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" - ] - }, - "services": {}, - "version": "2" -} diff --git a/play_2_8__2_12_routes_compiler_cli_install.json b/play_2_8__2_12_routes_compiler_cli_install.json deleted file mode 100644 index 687b1f8..0000000 --- a/play_2_8__2_12_routes_compiler_cli_install.json +++ /dev/null @@ -1,242 +0,0 @@ -{ - "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": -1019885803, - "__RESOLVED_ARTIFACTS_HASH": -1532712311, - "artifacts": { - "com.github.scopt:scopt_2.12": { - "shasums": { - "jar": "1105ff2819f267e06b9a84843231a9fd7a69817c49e5d67167cb601e47ce2c56", - "sources": "5d642a8f96c9e0243d15badd519ffb2a7f2786ce70d5e5c21003bb9b70ff507d" - }, - "version": "3.7.0" - }, - "com.lucidchart:play-routes-compiler-cli_2.12": { - "shasums": { - "jar": "30fad84f1e175175a68b28066a946b71d5b2d3316a5a705cc602f323a69e86b7", - "sources": "62b92601ed5e0a608db3d6ac6d30396dd4a2e5e7446a03dceb81091fbab41325" - }, - "version": "2.8.7" - }, - "com.typesafe.play:routes-compiler_2.12": { - "shasums": { - "jar": "3f4118d029adbf9cde1da0bf163768930a61fa5e6a2912226c8f5043400d7bf2", - "sources": "2277dad903e34f7058046d3d0d551b3ac8fde8daf9bb5f4a13576f88e682b48c" - }, - "version": "2.8.7" - }, - "com.typesafe.play:twirl-api_2.12": { - "shasums": { - "jar": "cb2cb22597d34d07832c0412523be92ab6b16f6f35f12d69c449a0b3bb8d523c", - "sources": "dd5291bf8916f81b4d7f3f61b03e2298b8c74fa0a4622298200f025f3e9f6e6b" - }, - "version": "1.5.0" - }, - "org.scala-lang.modules:scala-parser-combinators_2.12": { - "shasums": { - "jar": "24985eb43e295a9dd77905ada307a850ca25acf819cdb579c093fc6987b0dbc2", - "sources": "8fbe3fa9e748f24aa6d6868c0c2be30d41a02d20428ed5429bb57a897cb756e3" - }, - "version": "1.1.2" - }, - "org.scala-lang.modules:scala-xml_2.12": { - "shasums": { - "jar": "1b48dc206f527b7604ef32492ada8e71706c63a65d999e0cabdafdc5793b4d63", - "sources": "288fdce0b296df28725707cc87cff0f65ef435c54e93e0c1fbc5a7fcc8e19ade" - }, - "version": "1.2.0" - }, - "org.scala-lang:scala-library": { - "shasums": { - "jar": "dbfe77a3fc7a16c0c7cb6cb2b91fecec5438f2803112a744cb1b187926a138be", - "sources": "9bdbd6a182ed1e4b42acb9f5ba87867c9e0a37ef8af7fb781502765c00027010" - }, - "version": "2.12.11" - }, - "org.scala-lang:scala-reflect": { - "shasums": { - "jar": "56b609e1bab9144fb51525bfa01ccd72028154fc40a58685a1e9adcbe7835730", - "sources": "c3a883670038f8030c41e5e3840d592e2c8bd89bf33d7d42a15c60f1207b9a32" - }, - "version": "2.12.10" - } - }, - "dependencies": { - "com.github.scopt:scopt_2.12": [ - "org.scala-lang:scala-library" - ], - "com.lucidchart:play-routes-compiler-cli_2.12": [ - "com.github.scopt:scopt_2.12", - "com.typesafe.play:routes-compiler_2.12", - "com.typesafe.play:twirl-api_2.12", - "org.scala-lang.modules:scala-parser-combinators_2.12", - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect" - ], - "com.typesafe.play:routes-compiler_2.12": [ - "com.typesafe.play:twirl-api_2.12", - "org.scala-lang.modules:scala-parser-combinators_2.12", - "org.scala-lang:scala-library" - ], - "com.typesafe.play:twirl-api_2.12": [ - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang:scala-library" - ], - "org.scala-lang.modules:scala-parser-combinators_2.12": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang.modules:scala-xml_2.12": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang:scala-reflect": [ - "org.scala-lang:scala-library" - ] - }, - "packages": { - "com.github.scopt:scopt_2.12": [ - "scopt" - ], - "com.lucidchart:play-routes-compiler-cli_2.12": [ - "rulesplayroutes.routes" - ], - "com.typesafe.play:routes-compiler_2.12": [ - "play.routes.compiler", - "play.routes.compiler.inject.twirl", - "play.routes.compiler.static.twirl", - "play.routes.compiler.templates" - ], - "com.typesafe.play:twirl-api_2.12": [ - "play.twirl.api", - "play.twirl.api.utils" - ], - "org.scala-lang.modules:scala-parser-combinators_2.12": [ - "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.12": [ - "scala.xml", - "scala.xml.dtd", - "scala.xml.dtd.impl", - "scala.xml.factory", - "scala.xml.include", - "scala.xml.include.sax", - "scala.xml.parsing", - "scala.xml.persistent", - "scala.xml.pull", - "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.generic", - "scala.collection.immutable", - "scala.collection.mutable", - "scala.collection.parallel", - "scala.collection.parallel.immutable", - "scala.collection.parallel.mutable", - "scala.collection.script", - "scala.compat", - "scala.concurrent", - "scala.concurrent.duration", - "scala.concurrent.forkjoin", - "scala.concurrent.impl", - "scala.io", - "scala.math", - "scala.ref", - "scala.reflect", - "scala.reflect.macros.internal", - "scala.runtime", - "scala.runtime.java8", - "scala.sys", - "scala.sys.process", - "scala.text", - "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" - ] - }, - "repositories": { - "https://repo.maven.apache.org/maven2/": [ - "com.github.scopt:scopt_2.12", - "com.github.scopt:scopt_2.12:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.12", - "com.lucidchart:play-routes-compiler-cli_2.12:jar:sources", - "com.typesafe.play:routes-compiler_2.12", - "com.typesafe.play:routes-compiler_2.12:jar:sources", - "com.typesafe.play:twirl-api_2.12", - "com.typesafe.play:twirl-api_2.12:jar:sources", - "org.scala-lang.modules:scala-parser-combinators_2.12", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources", - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang.modules:scala-xml_2.12: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" - ], - "https://maven-central.storage-download.googleapis.com/maven2/": [ - "com.github.scopt:scopt_2.12", - "com.github.scopt:scopt_2.12:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.12", - "com.lucidchart:play-routes-compiler-cli_2.12:jar:sources", - "com.typesafe.play:routes-compiler_2.12", - "com.typesafe.play:routes-compiler_2.12:jar:sources", - "com.typesafe.play:twirl-api_2.12", - "com.typesafe.play:twirl-api_2.12:jar:sources", - "org.scala-lang.modules:scala-parser-combinators_2.12", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources", - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang.modules:scala-xml_2.12: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" - ], - "https://mirror.bazel.build/repo1.maven.org/maven2/": [ - "com.github.scopt:scopt_2.12", - "com.github.scopt:scopt_2.12:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.12", - "com.lucidchart:play-routes-compiler-cli_2.12:jar:sources", - "com.typesafe.play:routes-compiler_2.12", - "com.typesafe.play:routes-compiler_2.12:jar:sources", - "com.typesafe.play:twirl-api_2.12", - "com.typesafe.play:twirl-api_2.12:jar:sources", - "org.scala-lang.modules:scala-parser-combinators_2.12", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources", - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang.modules:scala-xml_2.12: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" - ] - }, - "services": {}, - "version": "2" -} diff --git a/play_2_8__2_13_routes_compiler_cli_install.json b/play_2_8__2_13_routes_compiler_cli_install.json deleted file mode 100644 index 9b0a93d..0000000 --- a/play_2_8__2_13_routes_compiler_cli_install.json +++ /dev/null @@ -1,239 +0,0 @@ -{ - "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": 568879732, - "__RESOLVED_ARTIFACTS_HASH": 1431939985, - "artifacts": { - "com.github.scopt:scopt_2.13": { - "shasums": { - "jar": "6592cd15368f6e26d1d73f81ed5bc93cf0dea713b8b2936a8f2f0edd3b392820", - "sources": "707366c0e18f8d4188daa9e0bf788fae616f0c77500c6aafda776a538d142135" - }, - "version": "3.7.1" - }, - "com.lucidchart:play-routes-compiler-cli_2.13": { - "shasums": { - "jar": "24eb16aa22231d41386edf3bb30c8136e1686dc466c4a8b4e6cb282598a274ec", - "sources": "c6f49a5084e4b4bb2c51445d3b8300c484b6cc167e9214f804c914d872ac2084" - }, - "version": "2.8.7" - }, - "com.typesafe.play:routes-compiler_2.13": { - "shasums": { - "jar": "0aa6842be84c902af07e15c1d2378ab1924202bca7de98e7e53a2d76238166b1", - "sources": "e5b98575fa36ea5e2cbc757e30814e945650679c3fc175e04affc91a50c0f5ba" - }, - "version": "2.8.7" - }, - "com.typesafe.play:twirl-api_2.13": { - "shasums": { - "jar": "fd8d62f9abf36eda8b578b4e96b087830f05f22e27905973c40a7941ea87493a", - "sources": "96ac5f61a0adb518f165053956271a92f70c9962760d0443443f745cc1b3e695" - }, - "version": "1.5.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": "213d2b7840bed5d1a1d5abfa1d72d7c7454473a6f77ea329fff0574910056fd3", - "sources": "e513d27835bcd489f70c24d5719a585f3323feae6610c06daa1533a462cf34bf" - }, - "version": "1.2.0" - }, - "org.scala-lang:scala-library": { - "shasums": { - "jar": "6a1c9846feb8f5d7d33b91e61e056d272215a79747a2b7b5e5ece690bf151d5d", - "sources": "dc7a4b19e478f3ad904ff398fd86f814ca172617edeb1e320323e3b4ca9b738c" - }, - "version": "2.13.2" - }, - "org.scala-lang:scala-reflect": { - "shasums": { - "jar": "21a7288874f186d6049e8b14a986011ffd96cb587f206eccf946624f2d476815", - "sources": "6652f8cb121d5adf50e0f909e4ce617a0e6bfca5013fc2272b1f4e2e3b1f176d" - }, - "version": "2.13.2" - } - }, - "dependencies": { - "com.github.scopt:scopt_2.13": [ - "org.scala-lang:scala-library" - ], - "com.lucidchart:play-routes-compiler-cli_2.13": [ - "com.github.scopt:scopt_2.13", - "com.typesafe.play:routes-compiler_2.13", - "com.typesafe.play:twirl-api_2.13", - "org.scala-lang.modules:scala-parser-combinators_2.13", - "org.scala-lang.modules:scala-xml_2.13", - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect" - ], - "com.typesafe.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-reflect": [ - "org.scala-lang:scala-library" - ] - }, - "packages": { - "com.github.scopt:scopt_2.13": [ - "scopt" - ], - "com.lucidchart:play-routes-compiler-cli_2.13": [ - "rulesplayroutes.routes" - ], - "com.typesafe.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" - ], - "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.persistent", - "scala.xml.pull", - "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" - ] - }, - "repositories": { - "https://repo.maven.apache.org/maven2/": [ - "com.github.scopt:scopt_2.13", - "com.github.scopt:scopt_2.13:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.13", - "com.lucidchart:play-routes-compiler-cli_2.13:jar:sources", - "com.typesafe.play:routes-compiler_2.13", - "com.typesafe.play:routes-compiler_2.13:jar:sources", - "com.typesafe.play:twirl-api_2.13", - "com.typesafe.play:twirl-api_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" - ], - "https://maven-central.storage-download.googleapis.com/maven2/": [ - "com.github.scopt:scopt_2.13", - "com.github.scopt:scopt_2.13:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.13", - "com.lucidchart:play-routes-compiler-cli_2.13:jar:sources", - "com.typesafe.play:routes-compiler_2.13", - "com.typesafe.play:routes-compiler_2.13:jar:sources", - "com.typesafe.play:twirl-api_2.13", - "com.typesafe.play:twirl-api_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" - ], - "https://mirror.bazel.build/repo1.maven.org/maven2/": [ - "com.github.scopt:scopt_2.13", - "com.github.scopt:scopt_2.13:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.13", - "com.lucidchart:play-routes-compiler-cli_2.13:jar:sources", - "com.typesafe.play:routes-compiler_2.13", - "com.typesafe.play:routes-compiler_2.13:jar:sources", - "com.typesafe.play:twirl-api_2.13", - "com.typesafe.play:twirl-api_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" - ] - }, - "services": {}, - "version": "2" -} diff --git a/play_2_9_routes_compiler_cli_install.json b/play_2_9_routes_compiler_cli_install.json deleted file mode 100755 index 7acac3d..0000000 --- a/play_2_9_routes_compiler_cli_install.json +++ /dev/null @@ -1,237 +0,0 @@ -{ - "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": 563767659, - "__RESOLVED_ARTIFACTS_HASH": 2107770471, - "artifacts": { - "com.github.scopt:scopt_2.13": { - "shasums": { - "jar": "6592cd15368f6e26d1d73f81ed5bc93cf0dea713b8b2936a8f2f0edd3b392820", - "sources": "707366c0e18f8d4188daa9e0bf788fae616f0c77500c6aafda776a538d142135" - }, - "version": "3.7.1" - }, - "com.lucidchart:play-routes-compiler-cli_2.13": { - "shasums": { - "jar": "50b715635c0110ca60d04fb1c416bf940f1e65ecc2e657c7f6532515d78c6d84", - "sources": "577281b5498714e4f51cde695643324b7a259350a99ab7d67889ae7fbc3cdab9" - }, - "version": "2.9.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" - }, - "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" - } - }, - "dependencies": { - "com.github.scopt:scopt_2.13": [ - "org.scala-lang:scala-library" - ], - "com.lucidchart:play-routes-compiler-cli_2.13": [ - "com.github.scopt:scopt_2.13", - "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.modules:scala-xml_2.13", - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect" - ], - "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-reflect": [ - "org.scala-lang:scala-library" - ] - }, - "packages": { - "com.github.scopt:scopt_2.13": [ - "scopt" - ], - "com.lucidchart:play-routes-compiler-cli_2.13": [ - "rulesplayroutes.routes" - ], - "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" - ], - "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" - ] - }, - "repositories": { - "https://repo.maven.apache.org/maven2/": [ - "com.github.scopt:scopt_2.13", - "com.github.scopt:scopt_2.13:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.13", - "com.lucidchart:play-routes-compiler-cli_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", - "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" - ], - "https://maven-central.storage-download.googleapis.com/maven2/": [ - "com.github.scopt:scopt_2.13", - "com.github.scopt:scopt_2.13:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.13", - "com.lucidchart:play-routes-compiler-cli_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", - "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" - ], - "https://mirror.bazel.build/repo1.maven.org/maven2/": [ - "com.github.scopt:scopt_2.13", - "com.github.scopt:scopt_2.13:jar:sources", - "com.lucidchart:play-routes-compiler-cli_2.13", - "com.lucidchart:play-routes-compiler-cli_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", - "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" - ] - }, - "services": {}, - "version": "2" -} diff --git a/play_3_0__2_13_routes_compiler_cli_install.json b/play_routes_install.json similarity index 100% rename from play_3_0__2_13_routes_compiler_cli_install.json rename to play_routes_install.json diff --git a/play_routes_test_install.json b/play_routes_test_install.json old mode 100755 new mode 100644 diff --git a/scripts/gen-deps.sh b/scripts/gen-deps.sh index fb11795..ae95636 100755 --- a/scripts/gen-deps.sh +++ b/scripts/gen-deps.sh @@ -2,12 +2,4 @@ cd "$(dirname "$0")" bazel run @unpinned_play_routes_test//:pin - -bazel run @unpinned_play_2_5_routes_compiler_cli//:pin -bazel run @unpinned_play_2_6_routes_compiler_cli//:pin -bazel run @unpinned_play_2_7_routes_compiler_cli//:pin -bazel run @unpinned_play_2_8__2_12_routes_compiler_cli//:pin -bazel run @unpinned_play_2_8__2_13_routes_compiler_cli//:pin -bazel run @unpinned_play_2_9_routes_compiler_cli//:pin -bazel run @unpinned_play_3_0__2_13_routes_compiler_cli//:pin -#bazel run @unpinned_play_3_0__3_routes_compiler_cli//:pin +bazel run @unpinned_play_routes//:pin diff --git a/workspace.bzl b/workspace.bzl index 1ccfbc7..0045a2c 100644 --- a/workspace.bzl +++ b/workspace.bzl @@ -4,77 +4,19 @@ Load 3rd party maven dependencies load("@rules_jvm_external//:defs.bzl", "maven_install") -def play_routes_repositories(play_version, scala_version = None): - """ - Loads 3rd party dependencies and the required play routes compiler CLIs for the specified version of Play - - Args: - play_version: (str) Must be either "2.5", "2.6", "2.7", "2.8", "2.9", or "3.0" - scala_version: (optional) For Play 2.8, default to Scala 2.13. For Play 3.x, default to Scala 3 - """ - - play_version = play_version.replace(".", "_") - - if play_version == "2_8": - if not scala_version: - scala_version = "2.13" - play_version = play_version + "__" + scala_version.replace(".", "_") - - if play_version[0] == "3": - if not scala_version: - scala_version = "2.13" - play_version = play_version + "__" + scala_version.replace(".", "_") - - play_artifacts = { - "2_5": [ - "com.lucidchart:play-routes-compiler-cli_2.11:2.5.19", - ], - "2_6": [ - "com.lucidchart:play-routes-compiler-cli_2.11:2.6.23", - "com.lucidchart:play-routes-compiler-cli_2.12:2.6.23", - ], - "2_7": [ - "com.lucidchart:play-routes-compiler-cli_2.11:2.7.2", - "com.lucidchart:play-routes-compiler-cli_2.12:2.7.3", - ], - "2_8__2_12": [ - "com.lucidchart:play-routes-compiler-cli_2.12:2.8.7", - ], - "2_8__2_13": [ - "com.lucidchart:play-routes-compiler-cli_2.13:2.8.7", - ], - "2_9": [ - "com.lucidchart:play-routes-compiler-cli_2.13:2.9.1", - ], - "3_0__2_13": [ - "com.lucidchart:play-routes-compiler-cli_2.13:3.0.3", - ], - # "3_0__3": [ - # "com.lucidchart:play-routes-compiler-cli_3:3.0.4", - # ], - } - +def play_routes_repositories(): maven_install( name = "play_routes", - artifacts = play_artifacts[play_version], + artifacts = [ + # TODO: update to latest + "com.lucidchart:play-routes-compiler-cli_2.13:3.0.3", + ], repositories = [ "https://repo.maven.apache.org/maven2", "https://maven-central.storage-download.googleapis.com/maven2", "https://mirror.bazel.build/repo1.maven.org/maven2", ], fetch_sources = True, - maven_install_json = "@rules_play_routes//:play_{}_routes_compiler_cli_install.json".format(play_version), + fail_if_repin_required = True, + maven_install_json = "@rules_play_routes//:play_routes_install.json", ) - - for version in play_artifacts.keys(): - maven_install( - name = "play_{}_routes_compiler_cli".format(version), - artifacts = play_artifacts[version], - repositories = [ - "https://repo.maven.apache.org/maven2", - "https://maven-central.storage-download.googleapis.com/maven2", - "https://mirror.bazel.build/repo1.maven.org/maven2", - ], - fetch_sources = True, - maven_install_json = "@rules_play_routes//:play_{}_routes_compiler_cli_install.json".format(version), - ) From 658961ae6ebb1b48cb352cc10eb4a9e0d9176403 Mon Sep 17 00:00:00 2001 From: James Judd Date: Tue, 24 Sep 2024 10:35:17 -0600 Subject: [PATCH 3/5] Move the Play Routes Compiler CLI back into this repo and improve toolchains --- .bazelrc | 8 +- .github/workflows/ci.yml | 21 + BUILD => BUILD.bazel | 0 MODULE.bazel.lock | 1520 +++++++ README.md | 167 +- WORKSPACE | 132 +- docs/stardoc/play-routes.md | 28 +- play-routes-compiler-cli/BUILD.bazel | 28 +- .../CommandLinePlayRoutesCompiler.scala | 168 + play-routes-compiler-cli/Foo.java | 4 + .../play-routes-compiler-cli.bzl | 62 + play-routes-compiler-cli/pom.xml.tmpl | 33 + play-routes-toolchain/BUILD.bazel | 20 + play-routes-toolchain/create-toolchain.bzl | 24 + .../play-routes-toolchain.bzl | 6 +- play-routes-toolchain/register-toolchains.bzl | 40 + play-routes-toolchain/transitions.bzl | 60 + play-routes/{BUILD => BUILD.bazel} | 23 +- play-routes/play-routes.bzl | 14 +- play_routes_compiler_cli_2_13_install.json | 1264 ++++++ play_routes_compiler_cli_3_install.json | 1501 +++++++ play_routes_install.json | 237 - play_routes_test_2_13_install.json | 3996 +++++++++++++++++ ...ll.json => play_routes_test_3_install.json | 0 scala/BUILD.bazel | 60 + scala/version.bzl | 2 + scripts/format.sh | 4 +- scripts/gen-deps.sh | 10 +- scripts/gen-docs.sh | 2 +- scripts/publish.sh | 19 + test/BUILD.bazel | 135 +- test/conf/routes | 1 - test/play-routes-compiler-test.bzl | 159 + test/play_routes_compiler_bazel_e2e_test.sh | 6 +- test/reproducibility_test.sh | 6 +- test_workspace.bzl | 26 +- .../build/buildjar/jarhelper/BUILD.bazel | 13 + .../build/buildjar/jarhelper/JarCreator.java | 253 ++ .../build/buildjar/jarhelper/JarHelper.java | 244 + workspace.bzl | 51 +- 40 files changed, 9721 insertions(+), 626 deletions(-) rename BUILD => BUILD.bazel (100%) create mode 100644 play-routes-compiler-cli/CommandLinePlayRoutesCompiler.scala create mode 100644 play-routes-compiler-cli/Foo.java create mode 100644 play-routes-compiler-cli/play-routes-compiler-cli.bzl create mode 100644 play-routes-compiler-cli/pom.xml.tmpl create mode 100644 play-routes-toolchain/BUILD.bazel create mode 100644 play-routes-toolchain/create-toolchain.bzl rename {play-routes => play-routes-toolchain}/play-routes-toolchain.bzl (69%) create mode 100644 play-routes-toolchain/register-toolchains.bzl create mode 100644 play-routes-toolchain/transitions.bzl rename play-routes/{BUILD => BUILD.bazel} (66%) create mode 100644 play_routes_compiler_cli_2_13_install.json create mode 100644 play_routes_compiler_cli_3_install.json delete mode 100644 play_routes_install.json create mode 100644 play_routes_test_2_13_install.json rename play_routes_test_install.json => play_routes_test_3_install.json (100%) create mode 100644 scala/BUILD.bazel create mode 100644 scala/version.bzl create mode 100644 scripts/publish.sh create mode 100644 test/play-routes-compiler-test.bzl create mode 100644 third_party/bazel/src/java_tools/buildjar/java/com/google/devtools/build/buildjar/jarhelper/BUILD.bazel create mode 100644 third_party/bazel/src/java_tools/buildjar/java/com/google/devtools/build/buildjar/jarhelper/JarCreator.java create mode 100644 third_party/bazel/src/java_tools/buildjar/java/com/google/devtools/build/buildjar/jarhelper/JarHelper.java diff --git a/.bazelrc b/.bazelrc index c186464..17b9d55 100644 --- a/.bazelrc +++ b/.bazelrc @@ -2,15 +2,21 @@ startup --expand_configs_in_place common:ci --color=yes +common --experimental_output_paths=off + +build --strategy=worker,sandboxed,local +build --verbose_failures + +build --incompatible_strict_action_env build --experimental_worker_multiplex_sandboxing build --experimental_worker_cancellation +build --worker_sandboxing build --java_language_version="21" build --java_runtime_version="remotejdk_21" build --tool_java_language_version="21" build --tool_java_runtime_version="remotejdk_21" -build:ci --verbose_failures build:ci --sandbox_debug build:ci --spawn_strategy=standalone build:ci --genrule_strategy=standalone diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f3b326..5e8726b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,3 +24,24 @@ jobs: - run: ./test/run_all_tests.sh ci - run: ./scripts/gen-docs.sh && git diff --exit-code docs/ - run: bazel shutdown + + publish: + if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') + needs: build-and-test + runs-on: ubuntu-24.04 + steps: + - uses: actions/checkout@v4.1.1 + - uses: actions/setup-node@v4.0.2 + - uses: bazel-contrib/setup-bazel@0.8.5 + with: + bazelisk-version: 1.20.0 + - run: cat .bazelrc.ci >> .bazelrc + - name: Import gpg keys + run: echo "$PGP_SECRET" | base64 --decode | gpg --import + env: + PGP_SECRET: ${{ secrets.PGP_SECRET }} + - name: Publish to Maven + run: ./scripts/publish.sh + env: + MAVEN_USER: ${{ secrets.SONATYPE_USERNAME }} + MAVEN_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} diff --git a/BUILD b/BUILD.bazel similarity index 100% rename from BUILD rename to BUILD.bazel diff --git a/MODULE.bazel.lock b/MODULE.bazel.lock index f5cd531..552c9be 100644 --- a/MODULE.bazel.lock +++ b/MODULE.bazel.lock @@ -105,6 +105,1526 @@ }, "recordedRepoMappingEntries": [] } + }, + "@@rules_jvm_external~//:extensions.bzl%maven": { + "general": { + "bzlTransitiveDigest": "06WDcwoMOciaDDX09JBCxhi9KiKFGUIcXpQjCSle5AE=", + "usagesDigest": "UPebZtX4g40+QepdK3oMHged0o0tq6ojKbW84wE6XRA=", + "recordedFileInputs": { + "@@rules_jvm_external~//rules_jvm_external_deps_install.json": "10442a5ae27d9ff4c2003e5ab71643bf0d8b48dcf968b4173fa274c3232a8c06" + }, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "org_slf4j_slf4j_api_1_7_30": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "cdba07964d1bb40a0761485c6b1e8c2f8fd9eb1d19c53928ac0d7f9510105c57", + "urls": [ + "https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar", + "https://maven.google.com/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar" + } + }, + "com_google_api_grpc_proto_google_common_protos_2_0_1": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "5ce71656118618731e34a5d4c61aa3a031be23446dc7de8b5a5e77b66ebcd6ef", + "urls": [ + "https://repo1.maven.org/maven2/com/google/api/grpc/proto-google-common-protos/2.0.1/proto-google-common-protos-2.0.1.jar", + "https://maven.google.com/com/google/api/grpc/proto-google-common-protos/2.0.1/proto-google-common-protos-2.0.1.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/api/grpc/proto-google-common-protos/2.0.1/proto-google-common-protos-2.0.1.jar" + } + }, + "com_google_api_gax_1_60_0": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "02f37d4ff1a7b8d71dff8064cf9568aa4f4b61bcc4485085d16130f32afa5a79", + "urls": [ + "https://repo1.maven.org/maven2/com/google/api/gax/1.60.0/gax-1.60.0.jar", + "https://maven.google.com/com/google/api/gax/1.60.0/gax-1.60.0.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/api/gax/1.60.0/gax-1.60.0.jar" + } + }, + "com_google_guava_failureaccess_1_0_1": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "a171ee4c734dd2da837e4b16be9df4661afab72a41adaf31eb84dfdaf936ca26", + "urls": [ + "https://repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar", + "https://maven.google.com/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar" + } + }, + "commons_logging_commons_logging_1_2": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "daddea1ea0be0f56978ab3006b8ac92834afeefbd9b7e4e6316fca57df0fa636", + "urls": [ + "https://repo1.maven.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar", + "https://maven.google.com/commons-logging/commons-logging/1.2/commons-logging-1.2.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar" + } + }, + "com_google_http_client_google_http_client_appengine_1_38_0": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "f97b495fd97ac3a3d59099eb2b55025f4948230da15a076f189b9cff37c6b4d2", + "urls": [ + "https://repo1.maven.org/maven2/com/google/http-client/google-http-client-appengine/1.38.0/google-http-client-appengine-1.38.0.jar", + "https://maven.google.com/com/google/http-client/google-http-client-appengine/1.38.0/google-http-client-appengine-1.38.0.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/http-client/google-http-client-appengine/1.38.0/google-http-client-appengine-1.38.0.jar" + } + }, + "com_google_cloud_google_cloud_storage_1_113_4": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "796833e9bdab80c40bbc820e65087eb8f28c6bfbca194d2e3e00d98cb5bc55d6", + "urls": [ + "https://repo1.maven.org/maven2/com/google/cloud/google-cloud-storage/1.113.4/google-cloud-storage-1.113.4.jar", + "https://maven.google.com/com/google/cloud/google-cloud-storage/1.113.4/google-cloud-storage-1.113.4.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/cloud/google-cloud-storage/1.113.4/google-cloud-storage-1.113.4.jar" + } + }, + "io_grpc_grpc_context_1_33_1": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "99b8aea2b614fe0e61c3676e681259dc43c2de7f64620998e1a8435eb2976496", + "urls": [ + "https://repo1.maven.org/maven2/io/grpc/grpc-context/1.33.1/grpc-context-1.33.1.jar", + "https://maven.google.com/io/grpc/grpc-context/1.33.1/grpc-context-1.33.1.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-context/1.33.1/grpc-context-1.33.1.jar" + } + }, + "com_google_api_grpc_proto_google_iam_v1_1_0_3": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "64cee7383a97e846da8d8e160e6c8fe30561e507260552c59e6ccfc81301fdc8", + "urls": [ + "https://repo1.maven.org/maven2/com/google/api/grpc/proto-google-iam-v1/1.0.3/proto-google-iam-v1-1.0.3.jar", + "https://maven.google.com/com/google/api/grpc/proto-google-iam-v1/1.0.3/proto-google-iam-v1-1.0.3.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/api/grpc/proto-google-iam-v1/1.0.3/proto-google-iam-v1-1.0.3.jar" + } + }, + "com_google_api_api_common_1_10_1": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "2a033f24bb620383eda440ad307cb8077cfec1c7eadc684d65216123a1b9613a", + "urls": [ + "https://repo1.maven.org/maven2/com/google/api/api-common/1.10.1/api-common-1.10.1.jar", + "https://maven.google.com/com/google/api/api-common/1.10.1/api-common-1.10.1.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/api/api-common/1.10.1/api-common-1.10.1.jar" + } + }, + "com_google_auth_google_auth_library_oauth2_http_0_22_0": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "1722d895c42dc42ea1d1f392ddbec1fbb28f7a979022c3a6c29acc39cc777ad1", + "urls": [ + "https://repo1.maven.org/maven2/com/google/auth/google-auth-library-oauth2-http/0.22.0/google-auth-library-oauth2-http-0.22.0.jar", + "https://maven.google.com/com/google/auth/google-auth-library-oauth2-http/0.22.0/google-auth-library-oauth2-http-0.22.0.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/auth/google-auth-library-oauth2-http/0.22.0/google-auth-library-oauth2-http-0.22.0.jar" + } + }, + "com_typesafe_netty_netty_reactive_streams_2_0_5": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "f949849fc8ee75fde468ba3a35df2e04577fa31a2940b83b2a7dc9d14dac13d6", + "urls": [ + "https://repo1.maven.org/maven2/com/typesafe/netty/netty-reactive-streams/2.0.5/netty-reactive-streams-2.0.5.jar", + "https://maven.google.com/com/typesafe/netty/netty-reactive-streams/2.0.5/netty-reactive-streams-2.0.5.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/typesafe/netty/netty-reactive-streams/2.0.5/netty-reactive-streams-2.0.5.jar" + } + }, + "com_typesafe_netty_netty_reactive_streams_http_2_0_5": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "b39224751ad936758176e9d994230380ade5e9079e7c8ad778e3995779bcf303", + "urls": [ + "https://repo1.maven.org/maven2/com/typesafe/netty/netty-reactive-streams-http/2.0.5/netty-reactive-streams-http-2.0.5.jar", + "https://maven.google.com/com/typesafe/netty/netty-reactive-streams-http/2.0.5/netty-reactive-streams-http-2.0.5.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/typesafe/netty/netty-reactive-streams-http/2.0.5/netty-reactive-streams-http-2.0.5.jar" + } + }, + "javax_annotation_javax_annotation_api_1_3_2": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "e04ba5195bcd555dc95650f7cc614d151e4bcd52d29a10b8aa2197f3ab89ab9b", + "urls": [ + "https://repo1.maven.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar", + "https://maven.google.com/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar" + } + }, + "com_google_j2objc_j2objc_annotations_1_3": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "21af30c92267bd6122c0e0b4d20cccb6641a37eaf956c6540ec471d584e64a7b", + "urls": [ + "https://repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar", + "https://maven.google.com/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar" + } + }, + "software_amazon_awssdk_metrics_spi_2_17_183": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "08a11dc8c4ba464beafbcc7ac05b8c724c1ccb93da99482e82a68540ac704e4a", + "urls": [ + "https://repo1.maven.org/maven2/software/amazon/awssdk/metrics-spi/2.17.183/metrics-spi-2.17.183.jar", + "https://maven.google.com/software/amazon/awssdk/metrics-spi/2.17.183/metrics-spi-2.17.183.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/metrics-spi/2.17.183/metrics-spi-2.17.183.jar" + } + }, + "org_reactivestreams_reactive_streams_1_0_3": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "1dee0481072d19c929b623e155e14d2f6085dc011529a0a0dbefc84cf571d865", + "urls": [ + "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar", + "https://maven.google.com/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar" + } + }, + "com_google_http_client_google_http_client_jackson2_1_38_0": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "e6504a82425fcc2168a4ca4175138ddcc085168daed8cdedb86d8f6fdc296e1e", + "urls": [ + "https://repo1.maven.org/maven2/com/google/http-client/google-http-client-jackson2/1.38.0/google-http-client-jackson2-1.38.0.jar", + "https://maven.google.com/com/google/http-client/google-http-client-jackson2/1.38.0/google-http-client-jackson2-1.38.0.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/http-client/google-http-client-jackson2/1.38.0/google-http-client-jackson2-1.38.0.jar" + } + }, + "io_netty_netty_transport_4_1_72_Final": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "c5fb68e9a65b6e8a516adfcb9fa323479ee7b4d9449d8a529d2ecab3d3711d5a", + "urls": [ + "https://repo1.maven.org/maven2/io/netty/netty-transport/4.1.72.Final/netty-transport-4.1.72.Final.jar", + "https://maven.google.com/io/netty/netty-transport/4.1.72.Final/netty-transport-4.1.72.Final.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport/4.1.72.Final/netty-transport-4.1.72.Final.jar" + } + }, + "io_netty_netty_codec_http2_4_1_72_Final": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "c89a70500f59e8563e720aaa808263a514bd9e2bd91ba84eab8c2ccb45f234b2", + "urls": [ + "https://repo1.maven.org/maven2/io/netty/netty-codec-http2/4.1.72.Final/netty-codec-http2-4.1.72.Final.jar", + "https://maven.google.com/io/netty/netty-codec-http2/4.1.72.Final/netty-codec-http2-4.1.72.Final.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec-http2/4.1.72.Final/netty-codec-http2-4.1.72.Final.jar" + } + }, + "io_opencensus_opencensus_api_0_24_0": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "f561b1cc2673844288e596ddf5bb6596868a8472fd2cb8993953fc5c034b2352", + "urls": [ + "https://repo1.maven.org/maven2/io/opencensus/opencensus-api/0.24.0/opencensus-api-0.24.0.jar", + "https://maven.google.com/io/opencensus/opencensus-api/0.24.0/opencensus-api-0.24.0.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/opencensus/opencensus-api/0.24.0/opencensus-api-0.24.0.jar" + } + }, + "rules_jvm_external_deps": { + "bzlFile": "@@rules_jvm_external~//:coursier.bzl", + "ruleClassName": "pinned_coursier_fetch", + "attributes": { + "repositories": [ + "{ \"repo_url\": \"https://repo1.maven.org/maven2\" }" + ], + "artifacts": [ + "{\"artifact\":\"google-cloud-core\",\"group\":\"com.google.cloud\",\"version\":\"1.93.10\"}", + "{\"artifact\":\"google-cloud-storage\",\"group\":\"com.google.cloud\",\"version\":\"1.113.4\"}", + "{\"artifact\":\"gson\",\"group\":\"com.google.code.gson\",\"version\":\"2.9.0\"}", + "{\"artifact\":\"maven-artifact\",\"group\":\"org.apache.maven\",\"version\":\"3.8.6\"}", + "{\"artifact\":\"s3\",\"group\":\"software.amazon.awssdk\",\"version\":\"2.17.183\"}" + ], + "fetch_sources": true, + "fetch_javadoc": false, + "generate_compat_repositories": false, + "maven_install_json": "@@rules_jvm_external~//:rules_jvm_external_deps_install.json", + "override_targets": {}, + "strict_visibility": false, + "strict_visibility_value": [ + "@@//visibility:private" + ], + "jetify": false, + "jetify_include_list": [ + "*" + ], + "additional_netrc_lines": [], + "fail_if_repin_required": false, + "use_starlark_android_rules": false, + "aar_import_bzl_label": "@build_bazel_rules_android//android:rules.bzl", + "duplicate_version_warning": "warn" + } + }, + "org_threeten_threetenbp_1_5_0": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "dcf9c0f940739f2a825cd8626ff27113459a2f6eb18797c7152f93fff69c264f", + "urls": [ + "https://repo1.maven.org/maven2/org/threeten/threetenbp/1.5.0/threetenbp-1.5.0.jar", + "https://maven.google.com/org/threeten/threetenbp/1.5.0/threetenbp-1.5.0.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/threeten/threetenbp/1.5.0/threetenbp-1.5.0.jar" + } + }, + "software_amazon_awssdk_http_client_spi_2_17_183": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "fe7120f175df9e47ebcc5d946d7f40110faf2ba0a30364f3b935d5b8a5a6c3c6", + "urls": [ + "https://repo1.maven.org/maven2/software/amazon/awssdk/http-client-spi/2.17.183/http-client-spi-2.17.183.jar", + "https://maven.google.com/software/amazon/awssdk/http-client-spi/2.17.183/http-client-spi-2.17.183.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/http-client-spi/2.17.183/http-client-spi-2.17.183.jar" + } + }, + "software_amazon_awssdk_third_party_jackson_core_2_17_183": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "1bc27c9960993c20e1ab058012dd1ae04c875eec9f0f08f2b2ca41e578dee9a4", + "urls": [ + "https://repo1.maven.org/maven2/software/amazon/awssdk/third-party-jackson-core/2.17.183/third-party-jackson-core-2.17.183.jar", + "https://maven.google.com/software/amazon/awssdk/third-party-jackson-core/2.17.183/third-party-jackson-core-2.17.183.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/third-party-jackson-core/2.17.183/third-party-jackson-core-2.17.183.jar" + } + }, + "software_amazon_eventstream_eventstream_1_0_1": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "0c37d8e696117f02c302191b8110b0d0eb20fa412fce34c3a269ec73c16ce822", + "urls": [ + "https://repo1.maven.org/maven2/software/amazon/eventstream/eventstream/1.0.1/eventstream-1.0.1.jar", + "https://maven.google.com/software/amazon/eventstream/eventstream/1.0.1/eventstream-1.0.1.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/eventstream/eventstream/1.0.1/eventstream-1.0.1.jar" + } + }, + "com_google_oauth_client_google_oauth_client_1_31_1": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "4ed4e2948251dbda66ce251bd7f3b32cd8570055e5cdb165a3c7aea8f43da0ff", + "urls": [ + "https://repo1.maven.org/maven2/com/google/oauth-client/google-oauth-client/1.31.1/google-oauth-client-1.31.1.jar", + "https://maven.google.com/com/google/oauth-client/google-oauth-client/1.31.1/google-oauth-client-1.31.1.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/oauth-client/google-oauth-client/1.31.1/google-oauth-client-1.31.1.jar" + } + }, + "maven": { + "bzlFile": "@@rules_jvm_external~//:coursier.bzl", + "ruleClassName": "coursier_fetch", + "attributes": { + "repositories": [ + "{ \"repo_url\": \"https://repo1.maven.org/maven2\" }" + ], + "artifacts": [ + "{\"artifact\":\"jsr305\",\"group\":\"com.google.code.findbugs\",\"version\":\"3.0.2\"}", + "{\"artifact\":\"gson\",\"group\":\"com.google.code.gson\",\"version\":\"2.8.9\"}", + "{\"artifact\":\"error_prone_annotations\",\"group\":\"com.google.errorprone\",\"version\":\"2.3.2\"}", + "{\"artifact\":\"j2objc-annotations\",\"group\":\"com.google.j2objc\",\"version\":\"1.3\"}", + "{\"artifact\":\"guava\",\"group\":\"com.google.guava\",\"version\":\"31.1-jre\"}", + "{\"artifact\":\"guava-testlib\",\"group\":\"com.google.guava\",\"version\":\"31.1-jre\"}", + "{\"artifact\":\"truth\",\"group\":\"com.google.truth\",\"version\":\"1.1.2\"}", + "{\"artifact\":\"junit\",\"group\":\"junit\",\"version\":\"4.13.2\"}", + "{\"artifact\":\"mockito-core\",\"group\":\"org.mockito\",\"version\":\"4.3.1\"}" + ], + "fail_on_missing_checksum": true, + "fetch_sources": true, + "fetch_javadoc": false, + "use_unsafe_shared_cache": false, + "excluded_artifacts": [], + "generate_compat_repositories": false, + "version_conflict_policy": "default", + "override_targets": {}, + "strict_visibility": false, + "strict_visibility_value": [ + "@@//visibility:private" + ], + "resolve_timeout": 600, + "jetify": false, + "jetify_include_list": [ + "*" + ], + "use_starlark_android_rules": false, + "aar_import_bzl_label": "@build_bazel_rules_android//android:rules.bzl", + "duplicate_version_warning": "warn" + } + }, + "software_amazon_awssdk_aws_xml_protocol_2_17_183": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "566bba05d49256fa6994efd68fa625ae05a62ea45ee74bb9130d20ea20988363", + "urls": [ + "https://repo1.maven.org/maven2/software/amazon/awssdk/aws-xml-protocol/2.17.183/aws-xml-protocol-2.17.183.jar", + "https://maven.google.com/software/amazon/awssdk/aws-xml-protocol/2.17.183/aws-xml-protocol-2.17.183.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/aws-xml-protocol/2.17.183/aws-xml-protocol-2.17.183.jar" + } + }, + "software_amazon_awssdk_annotations_2_17_183": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "8e4d72361ca805a0bd8bbd9017cd7ff77c8d170f2dd469c7d52d5653330bb3fd", + "urls": [ + "https://repo1.maven.org/maven2/software/amazon/awssdk/annotations/2.17.183/annotations-2.17.183.jar", + "https://maven.google.com/software/amazon/awssdk/annotations/2.17.183/annotations-2.17.183.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/annotations/2.17.183/annotations-2.17.183.jar" + } + }, + "software_amazon_awssdk_netty_nio_client_2_17_183": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "a6d356f364c56d7b90006b0b7e503b8630010993a5587ce42e74b10b8dca2238", + "urls": [ + "https://repo1.maven.org/maven2/software/amazon/awssdk/netty-nio-client/2.17.183/netty-nio-client-2.17.183.jar", + "https://maven.google.com/software/amazon/awssdk/netty-nio-client/2.17.183/netty-nio-client-2.17.183.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/netty-nio-client/2.17.183/netty-nio-client-2.17.183.jar" + } + }, + "com_google_auto_value_auto_value_annotations_1_7_4": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "fedd59b0b4986c342f6ab2d182f2a4ee9fceb2c7e2d5bdc4dc764c92394a23d3", + "urls": [ + "https://repo1.maven.org/maven2/com/google/auto/value/auto-value-annotations/1.7.4/auto-value-annotations-1.7.4.jar", + "https://maven.google.com/com/google/auto/value/auto-value-annotations/1.7.4/auto-value-annotations-1.7.4.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/auto/value/auto-value-annotations/1.7.4/auto-value-annotations-1.7.4.jar" + } + }, + "io_netty_netty_transport_native_unix_common_4_1_72_Final": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "6f8f1cc29b5a234eeee9439a63eb3f03a5994aa540ff555cb0b2c88cefaf6877", + "urls": [ + "https://repo1.maven.org/maven2/io/netty/netty-transport-native-unix-common/4.1.72.Final/netty-transport-native-unix-common-4.1.72.Final.jar", + "https://maven.google.com/io/netty/netty-transport-native-unix-common/4.1.72.Final/netty-transport-native-unix-common-4.1.72.Final.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-unix-common/4.1.72.Final/netty-transport-native-unix-common-4.1.72.Final.jar" + } + }, + "io_opencensus_opencensus_contrib_http_util_0_24_0": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "7155273bbb1ed3d477ea33cf19d7bbc0b285ff395f43b29ae576722cf247000f", + "urls": [ + "https://repo1.maven.org/maven2/io/opencensus/opencensus-contrib-http-util/0.24.0/opencensus-contrib-http-util-0.24.0.jar", + "https://maven.google.com/io/opencensus/opencensus-contrib-http-util/0.24.0/opencensus-contrib-http-util-0.24.0.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/opencensus/opencensus-contrib-http-util/0.24.0/opencensus-contrib-http-util-0.24.0.jar" + } + }, + "com_fasterxml_jackson_core_jackson_core_2_11_3": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "78cd0a6b936232e06dd3e38da8a0345348a09cd1ff9c4d844c6ee72c75cfc402", + "urls": [ + "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.11.3/jackson-core-2.11.3.jar", + "https://maven.google.com/com/fasterxml/jackson/core/jackson-core/2.11.3/jackson-core-2.11.3.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.11.3/jackson-core-2.11.3.jar" + } + }, + "com_google_cloud_google_cloud_core_1_93_10": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "832d74eca66f4601e162a8460d6f59f50d1d23f93c18b02654423b6b0d67c6ea", + "urls": [ + "https://repo1.maven.org/maven2/com/google/cloud/google-cloud-core/1.93.10/google-cloud-core-1.93.10.jar", + "https://maven.google.com/com/google/cloud/google-cloud-core/1.93.10/google-cloud-core-1.93.10.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/cloud/google-cloud-core/1.93.10/google-cloud-core-1.93.10.jar" + } + }, + "com_google_auth_google_auth_library_credentials_0_22_0": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "42c76031276de5b520909e9faf88c5b3c9a722d69ee9cfdafedb1c52c355dfc5", + "urls": [ + "https://repo1.maven.org/maven2/com/google/auth/google-auth-library-credentials/0.22.0/google-auth-library-credentials-0.22.0.jar", + "https://maven.google.com/com/google/auth/google-auth-library-credentials/0.22.0/google-auth-library-credentials-0.22.0.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/auth/google-auth-library-credentials/0.22.0/google-auth-library-credentials-0.22.0.jar" + } + }, + "com_google_guava_guava_30_0_android": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "3345c82c2cc70a0053e8db9031edc6d71625ef0dea6a2c8f5ebd6cb76d2bf843", + "urls": [ + "https://repo1.maven.org/maven2/com/google/guava/guava/30.0-android/guava-30.0-android.jar", + "https://maven.google.com/com/google/guava/guava/30.0-android/guava-30.0-android.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/guava/guava/30.0-android/guava-30.0-android.jar" + } + }, + "software_amazon_awssdk_profiles_2_17_183": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "78833b32fde3f1c5320373b9ea955c1bbc28f2c904010791c4784e610193ee56", + "urls": [ + "https://repo1.maven.org/maven2/software/amazon/awssdk/profiles/2.17.183/profiles-2.17.183.jar", + "https://maven.google.com/software/amazon/awssdk/profiles/2.17.183/profiles-2.17.183.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/profiles/2.17.183/profiles-2.17.183.jar" + } + }, + "org_apache_httpcomponents_httpcore_4_4_13": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "e06e89d40943245fcfa39ec537cdbfce3762aecde8f9c597780d2b00c2b43424", + "urls": [ + "https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar", + "https://maven.google.com/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar" + } + }, + "io_netty_netty_common_4_1_72_Final": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "8adb4c291260ceb2859a68c49f0adeed36bf49587608e2b81ecff6aaf06025e9", + "urls": [ + "https://repo1.maven.org/maven2/io/netty/netty-common/4.1.72.Final/netty-common-4.1.72.Final.jar", + "https://maven.google.com/io/netty/netty-common/4.1.72.Final/netty-common-4.1.72.Final.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-common/4.1.72.Final/netty-common-4.1.72.Final.jar" + } + }, + "io_netty_netty_transport_classes_epoll_4_1_72_Final": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "e1528a9751c1285aa7beaf3a1eb0597151716426ce38598ac9bc0891209b9e68", + "urls": [ + "https://repo1.maven.org/maven2/io/netty/netty-transport-classes-epoll/4.1.72.Final/netty-transport-classes-epoll-4.1.72.Final.jar", + "https://maven.google.com/io/netty/netty-transport-classes-epoll/4.1.72.Final/netty-transport-classes-epoll-4.1.72.Final.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport-classes-epoll/4.1.72.Final/netty-transport-classes-epoll-4.1.72.Final.jar" + } + }, + "com_google_cloud_google_cloud_core_http_1_93_10": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "81ac67c14c7c4244d2b7db2607ad352416aca8d3bb2adf338964e8fea25b1b3c", + "urls": [ + "https://repo1.maven.org/maven2/com/google/cloud/google-cloud-core-http/1.93.10/google-cloud-core-http-1.93.10.jar", + "https://maven.google.com/com/google/cloud/google-cloud-core-http/1.93.10/google-cloud-core-http-1.93.10.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/cloud/google-cloud-core-http/1.93.10/google-cloud-core-http-1.93.10.jar" + } + }, + "software_amazon_awssdk_utils_2_17_183": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "7bd849bb5aa71bfdf6b849643736ecab3a7b3f204795804eefe5754104231ec6", + "urls": [ + "https://repo1.maven.org/maven2/software/amazon/awssdk/utils/2.17.183/utils-2.17.183.jar", + "https://maven.google.com/software/amazon/awssdk/utils/2.17.183/utils-2.17.183.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/utils/2.17.183/utils-2.17.183.jar" + } + }, + "org_apache_commons_commons_lang3_3_8_1": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "dac807f65b07698ff39b1b07bfef3d87ae3fd46d91bbf8a2bc02b2a831616f68", + "urls": [ + "https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar", + "https://maven.google.com/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar" + } + }, + "software_amazon_awssdk_aws_core_2_17_183": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "bccbdbea689a665a702ff19828662d87fb7fe81529df13f02ef1e4c474ea9f93", + "urls": [ + "https://repo1.maven.org/maven2/software/amazon/awssdk/aws-core/2.17.183/aws-core-2.17.183.jar", + "https://maven.google.com/software/amazon/awssdk/aws-core/2.17.183/aws-core-2.17.183.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/aws-core/2.17.183/aws-core-2.17.183.jar" + } + }, + "com_google_api_gax_httpjson_0_77_0": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "fd4dae47fa016d3b26e8d90b67ddc6c23c4c06e8bcdf085c70310ab7ef324bd6", + "urls": [ + "https://repo1.maven.org/maven2/com/google/api/gax-httpjson/0.77.0/gax-httpjson-0.77.0.jar", + "https://maven.google.com/com/google/api/gax-httpjson/0.77.0/gax-httpjson-0.77.0.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/api/gax-httpjson/0.77.0/gax-httpjson-0.77.0.jar" + } + }, + "unpinned_rules_jvm_external_deps": { + "bzlFile": "@@rules_jvm_external~//:coursier.bzl", + "ruleClassName": "coursier_fetch", + "attributes": { + "repositories": [ + "{ \"repo_url\": \"https://repo1.maven.org/maven2\" }" + ], + "artifacts": [ + "{\"artifact\":\"google-cloud-core\",\"group\":\"com.google.cloud\",\"version\":\"1.93.10\"}", + "{\"artifact\":\"google-cloud-storage\",\"group\":\"com.google.cloud\",\"version\":\"1.113.4\"}", + "{\"artifact\":\"gson\",\"group\":\"com.google.code.gson\",\"version\":\"2.9.0\"}", + "{\"artifact\":\"maven-artifact\",\"group\":\"org.apache.maven\",\"version\":\"3.8.6\"}", + "{\"artifact\":\"s3\",\"group\":\"software.amazon.awssdk\",\"version\":\"2.17.183\"}" + ], + "fail_on_missing_checksum": true, + "fetch_sources": true, + "fetch_javadoc": false, + "use_unsafe_shared_cache": false, + "excluded_artifacts": [], + "generate_compat_repositories": false, + "version_conflict_policy": "default", + "override_targets": {}, + "strict_visibility": false, + "strict_visibility_value": [ + "@@//visibility:private" + ], + "maven_install_json": "@@rules_jvm_external~//:rules_jvm_external_deps_install.json", + "resolve_timeout": 600, + "jetify": false, + "jetify_include_list": [ + "*" + ], + "use_starlark_android_rules": false, + "aar_import_bzl_label": "@build_bazel_rules_android//android:rules.bzl", + "duplicate_version_warning": "warn" + } + }, + "software_amazon_awssdk_regions_2_17_183": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "d3079395f3ffc07d04ffcce16fca29fb5968197f6e9ea3dbff6be297102b40a5", + "urls": [ + "https://repo1.maven.org/maven2/software/amazon/awssdk/regions/2.17.183/regions-2.17.183.jar", + "https://maven.google.com/software/amazon/awssdk/regions/2.17.183/regions-2.17.183.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/regions/2.17.183/regions-2.17.183.jar" + } + }, + "com_google_errorprone_error_prone_annotations_2_4_0": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "5f2a0648230a662e8be049df308d583d7369f13af683e44ddf5829b6d741a228", + "urls": [ + "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/error_prone_annotations-2.4.0.jar", + "https://maven.google.com/com/google/errorprone/error_prone_annotations/2.4.0/error_prone_annotations-2.4.0.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/error_prone_annotations-2.4.0.jar" + } + }, + "io_netty_netty_handler_4_1_72_Final": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "9cb6012af7e06361d738ac4e3bdc49a158f8cf87d9dee0f2744056b7d99c28d5", + "urls": [ + "https://repo1.maven.org/maven2/io/netty/netty-handler/4.1.72.Final/netty-handler-4.1.72.Final.jar", + "https://maven.google.com/io/netty/netty-handler/4.1.72.Final/netty-handler-4.1.72.Final.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-handler/4.1.72.Final/netty-handler-4.1.72.Final.jar" + } + }, + "software_amazon_awssdk_aws_query_protocol_2_17_183": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "4dace03c76f80f3dec920cb3dedb2a95984c4366ef4fda728660cb90bed74848", + "urls": [ + "https://repo1.maven.org/maven2/software/amazon/awssdk/aws-query-protocol/2.17.183/aws-query-protocol-2.17.183.jar", + "https://maven.google.com/software/amazon/awssdk/aws-query-protocol/2.17.183/aws-query-protocol-2.17.183.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/aws-query-protocol/2.17.183/aws-query-protocol-2.17.183.jar" + } + }, + "io_netty_netty_codec_http_4_1_72_Final": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "fa6fec88010bfaf6a7415b5364671b6b18ffb6b35a986ab97b423fd8c3a0174b", + "urls": [ + "https://repo1.maven.org/maven2/io/netty/netty-codec-http/4.1.72.Final/netty-codec-http-4.1.72.Final.jar", + "https://maven.google.com/io/netty/netty-codec-http/4.1.72.Final/netty-codec-http-4.1.72.Final.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec-http/4.1.72.Final/netty-codec-http-4.1.72.Final.jar" + } + }, + "io_netty_netty_resolver_4_1_72_Final": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "6474598aab7cc9d8d6cfa06c05bd1b19adbf7f8451dbdd73070b33a6c60b1b90", + "urls": [ + "https://repo1.maven.org/maven2/io/netty/netty-resolver/4.1.72.Final/netty-resolver-4.1.72.Final.jar", + "https://maven.google.com/io/netty/netty-resolver/4.1.72.Final/netty-resolver-4.1.72.Final.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-resolver/4.1.72.Final/netty-resolver-4.1.72.Final.jar" + } + }, + "software_amazon_awssdk_protocol_core_2_17_183": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "10e7c4faa1f05e2d73055d0390dbd0bb6450e2e6cb85beda051b1e4693c826ce", + "urls": [ + "https://repo1.maven.org/maven2/software/amazon/awssdk/protocol-core/2.17.183/protocol-core-2.17.183.jar", + "https://maven.google.com/software/amazon/awssdk/protocol-core/2.17.183/protocol-core-2.17.183.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/protocol-core/2.17.183/protocol-core-2.17.183.jar" + } + }, + "org_checkerframework_checker_compat_qual_2_5_5": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "11d134b245e9cacc474514d2d66b5b8618f8039a1465cdc55bbc0b34e0008b7a", + "urls": [ + "https://repo1.maven.org/maven2/org/checkerframework/checker-compat-qual/2.5.5/checker-compat-qual-2.5.5.jar", + "https://maven.google.com/org/checkerframework/checker-compat-qual/2.5.5/checker-compat-qual-2.5.5.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/checkerframework/checker-compat-qual/2.5.5/checker-compat-qual-2.5.5.jar" + } + }, + "com_google_apis_google_api_services_storage_v1_rev20200927_1_30_10": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "52d26a9d105f8d8a0850807285f307a76cea8f3e0cdb2be4d3b15b1adfa77351", + "urls": [ + "https://repo1.maven.org/maven2/com/google/apis/google-api-services-storage/v1-rev20200927-1.30.10/google-api-services-storage-v1-rev20200927-1.30.10.jar", + "https://maven.google.com/com/google/apis/google-api-services-storage/v1-rev20200927-1.30.10/google-api-services-storage-v1-rev20200927-1.30.10.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/apis/google-api-services-storage/v1-rev20200927-1.30.10/google-api-services-storage-v1-rev20200927-1.30.10.jar" + } + }, + "com_google_api_client_google_api_client_1_30_11": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "ee6f97865cc7de6c7c80955c3f37372cf3887bd75e4fc06f1058a6b4cd9bf4da", + "urls": [ + "https://repo1.maven.org/maven2/com/google/api-client/google-api-client/1.30.11/google-api-client-1.30.11.jar", + "https://maven.google.com/com/google/api-client/google-api-client/1.30.11/google-api-client-1.30.11.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/api-client/google-api-client/1.30.11/google-api-client-1.30.11.jar" + } + }, + "software_amazon_awssdk_s3_2_17_183": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "ab073b91107a9e4ed9f030314077d137fe627e055ad895fabb036980a050e360", + "urls": [ + "https://repo1.maven.org/maven2/software/amazon/awssdk/s3/2.17.183/s3-2.17.183.jar", + "https://maven.google.com/software/amazon/awssdk/s3/2.17.183/s3-2.17.183.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/s3/2.17.183/s3-2.17.183.jar" + } + }, + "org_apache_maven_maven_artifact_3_8_6": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "de22a4c6f54fe31276a823b1bbd3adfd6823529e732f431b5eff0852c2b9252b", + "urls": [ + "https://repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.8.6/maven-artifact-3.8.6.jar", + "https://maven.google.com/org/apache/maven/maven-artifact/3.8.6/maven-artifact-3.8.6.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.8.6/maven-artifact-3.8.6.jar" + } + }, + "org_apache_httpcomponents_httpclient_4_5_13": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "6fe9026a566c6a5001608cf3fc32196641f6c1e5e1986d1037ccdbd5f31ef743", + "urls": [ + "https://repo1.maven.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar", + "https://maven.google.com/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar" + } + }, + "com_google_guava_listenablefuture_9999_0_empty_to_avoid_conflict_with_guava": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "b372a037d4230aa57fbeffdef30fd6123f9c0c2db85d0aced00c91b974f33f99", + "urls": [ + "https://repo1.maven.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar", + "https://maven.google.com/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar" + } + }, + "com_google_http_client_google_http_client_1_38_0": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "411f4a42519b6b78bdc0fcfdf74c9edcef0ee97afa4a667abe04045a508d6302", + "urls": [ + "https://repo1.maven.org/maven2/com/google/http-client/google-http-client/1.38.0/google-http-client-1.38.0.jar", + "https://maven.google.com/com/google/http-client/google-http-client/1.38.0/google-http-client-1.38.0.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/http-client/google-http-client/1.38.0/google-http-client-1.38.0.jar" + } + }, + "software_amazon_awssdk_apache_client_2_17_183": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "78ceae502fce6a97bbe5ff8f6a010a52ab7ea3ae66cb1a4122e18185fce45022", + "urls": [ + "https://repo1.maven.org/maven2/software/amazon/awssdk/apache-client/2.17.183/apache-client-2.17.183.jar", + "https://maven.google.com/software/amazon/awssdk/apache-client/2.17.183/apache-client-2.17.183.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/apache-client/2.17.183/apache-client-2.17.183.jar" + } + }, + "software_amazon_awssdk_arns_2_17_183": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "659a185e191d66c71de81209490e66abeaccae208ea7b2831a738670823447aa", + "urls": [ + "https://repo1.maven.org/maven2/software/amazon/awssdk/arns/2.17.183/arns-2.17.183.jar", + "https://maven.google.com/software/amazon/awssdk/arns/2.17.183/arns-2.17.183.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/arns/2.17.183/arns-2.17.183.jar" + } + }, + "com_google_code_gson_gson_2_9_0": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "c96d60551331a196dac54b745aa642cd078ef89b6f267146b705f2c2cbef052d", + "urls": [ + "https://repo1.maven.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar", + "https://maven.google.com/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar" + } + }, + "io_netty_netty_buffer_4_1_72_Final": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "568ff7cd9d8e2284ec980730c88924f686642929f8f219a74518b4e64755f3a1", + "urls": [ + "https://repo1.maven.org/maven2/io/netty/netty-buffer/4.1.72.Final/netty-buffer-4.1.72.Final.jar", + "https://maven.google.com/io/netty/netty-buffer/4.1.72.Final/netty-buffer-4.1.72.Final.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-buffer/4.1.72.Final/netty-buffer-4.1.72.Final.jar" + } + }, + "com_google_code_findbugs_jsr305_3_0_2": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "766ad2a0783f2687962c8ad74ceecc38a28b9f72a2d085ee438b7813e928d0c7", + "urls": [ + "https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar", + "https://maven.google.com/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar" + } + }, + "commons_codec_commons_codec_1_11": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "e599d5318e97aa48f42136a2927e6dfa4e8881dff0e6c8e3109ddbbff51d7b7d", + "urls": [ + "https://repo1.maven.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar", + "https://maven.google.com/commons-codec/commons-codec/1.11/commons-codec-1.11.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar" + } + }, + "software_amazon_awssdk_auth_2_17_183": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "8820c6636e5c14efc29399fb5565ce50212b0c1f4ed720a025a2c402d54e0978", + "urls": [ + "https://repo1.maven.org/maven2/software/amazon/awssdk/auth/2.17.183/auth-2.17.183.jar", + "https://maven.google.com/software/amazon/awssdk/auth/2.17.183/auth-2.17.183.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/auth/2.17.183/auth-2.17.183.jar" + } + }, + "software_amazon_awssdk_json_utils_2_17_183": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "51ab7f550adc06afcb49f5270cdf690f1bfaaee243abaa5d978095e2a1e4e1a5", + "urls": [ + "https://repo1.maven.org/maven2/software/amazon/awssdk/json-utils/2.17.183/json-utils-2.17.183.jar", + "https://maven.google.com/software/amazon/awssdk/json-utils/2.17.183/json-utils-2.17.183.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/json-utils/2.17.183/json-utils-2.17.183.jar" + } + }, + "org_codehaus_plexus_plexus_utils_3_3_1": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "4b570fcdbe5a894f249d2eb9b929358a9c88c3e548d227a80010461930222f2a", + "urls": [ + "https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.3.1/plexus-utils-3.3.1.jar", + "https://maven.google.com/org/codehaus/plexus/plexus-utils/3.3.1/plexus-utils-3.3.1.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.3.1/plexus-utils-3.3.1.jar" + } + }, + "com_google_protobuf_protobuf_java_util_3_13_0": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "d9de66b8c9445905dfa7064f6d5213d47ce88a20d34e21d83c4a94a229e14e62", + "urls": [ + "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.13.0/protobuf-java-util-3.13.0.jar", + "https://maven.google.com/com/google/protobuf/protobuf-java-util/3.13.0/protobuf-java-util-3.13.0.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.13.0/protobuf-java-util-3.13.0.jar" + } + }, + "io_netty_netty_codec_4_1_72_Final": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "5d8591ca271a1e9c224e8de3873aa9936acb581ee0db514e7dc18523df36d16c", + "urls": [ + "https://repo1.maven.org/maven2/io/netty/netty-codec/4.1.72.Final/netty-codec-4.1.72.Final.jar", + "https://maven.google.com/io/netty/netty-codec/4.1.72.Final/netty-codec-4.1.72.Final.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec/4.1.72.Final/netty-codec-4.1.72.Final.jar" + } + }, + "com_google_protobuf_protobuf_java_3_13_0": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "97d5b2758408690c0dc276238707492a0b6a4d71206311b6c442cdc26c5973ff", + "urls": [ + "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.13.0/protobuf-java-3.13.0.jar", + "https://maven.google.com/com/google/protobuf/protobuf-java/3.13.0/protobuf-java-3.13.0.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.13.0/protobuf-java-3.13.0.jar" + } + }, + "io_netty_netty_tcnative_classes_2_0_46_Final": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "d3ec888dcc4ac7915bf88b417c5e04fd354f4311032a748a6882df09347eed9a", + "urls": [ + "https://repo1.maven.org/maven2/io/netty/netty-tcnative-classes/2.0.46.Final/netty-tcnative-classes-2.0.46.Final.jar", + "https://maven.google.com/io/netty/netty-tcnative-classes/2.0.46.Final/netty-tcnative-classes-2.0.46.Final.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-tcnative-classes/2.0.46.Final/netty-tcnative-classes-2.0.46.Final.jar" + } + }, + "software_amazon_awssdk_sdk_core_2_17_183": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", + "attributes": { + "sha256": "677e9cc90fdd82c1f40f97b99cb115b13ad6c3f58beeeab1c061af6954d64c77", + "urls": [ + "https://repo1.maven.org/maven2/software/amazon/awssdk/sdk-core/2.17.183/sdk-core-2.17.183.jar", + "https://maven.google.com/software/amazon/awssdk/sdk-core/2.17.183/sdk-core-2.17.183.jar" + ], + "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/sdk-core/2.17.183/sdk-core-2.17.183.jar" + } + } + }, + "recordedRepoMappingEntries": [ + [ + "rules_jvm_external~", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_jvm_external~", + "rules_jvm_external", + "rules_jvm_external~" + ] + ] + } + }, + "@@rules_jvm_external~//:non-module-deps.bzl%non_module_deps": { + "general": { + "bzlTransitiveDigest": "l6SlNloqPvd60dcuPdWiJNi3g3jfK76fcZc0i/Yr0dQ=", + "usagesDigest": "bTG4ItERqhG1LeSs62hQ01DiMarFsflWgpZaghM5qik=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "io_bazel_rules_kotlin": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "sha256": "946747acdbeae799b085d12b240ec346f775ac65236dfcf18aa0cd7300f6de78", + "urls": [ + "https://github.com/bazelbuild/rules_kotlin/releases/download/v1.7.0-RC-2/rules_kotlin_release.tgz" + ] + } + } + }, + "recordedRepoMappingEntries": [ + [ + "rules_jvm_external~", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@rules_python~//python/extensions:python.bzl%python": { + "general": { + "bzlTransitiveDigest": "GnREFVYskmF5MZu1H3nyqMWFZ2U/bty7gcbHX+l45kY=", + "usagesDigest": "7vjNHuEgQORYN9+9/77Q4zw1kawobM2oCQb9p0uhL68=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "pythons_hub": { + "bzlFile": "@@rules_python~//python/extensions/private:interpreter_hub.bzl", + "ruleClassName": "hub_repo", + "attributes": { + "toolchains": [] + } + } + }, + "recordedRepoMappingEntries": [ + [ + "rules_python~", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_python~", + "rules_python", + "rules_python~" + ] + ] + } + }, + "@@rules_python~//python/extensions/private:internal_deps.bzl%internal_deps": { + "general": { + "bzlTransitiveDigest": "PiT9IOA5dSBSmnfZRUrvgo71zttPpvs3cNPbxftlChs=", + "usagesDigest": "b+nMDqtqPCBxiMBewNNde3aNjzKqZyvJuN5/49xB62s=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "pypi__coverage_cp39_aarch64-apple-darwin": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "\nfilegroup(\n name = \"coverage\",\n srcs = [\"coverage/__main__.py\"],\n data = glob([\"coverage/*.py\", \"coverage/**/*.py\", \"coverage/*.so\"]),\n visibility = [\"//visibility:public\"],\n)\n ", + "patch_args": [ + "-p1" + ], + "patches": [ + "@@rules_python~//python/private:coverage.patch" + ], + "sha256": "95203854f974e07af96358c0b261f1048d8e1083f2de9b1c565e1be4a3a48cfc", + "type": "zip", + "urls": [ + "https://files.pythonhosted.org/packages/63/e9/f23e8664ec4032d7802a1cf920853196bcbdce7b56408e3efe1b2da08f3c/coverage-6.5.0-cp39-cp39-macosx_11_0_arm64.whl" + ] + } + }, + "pypi__coverage_cp38_aarch64-unknown-linux-gnu": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "\nfilegroup(\n name = \"coverage\",\n srcs = [\"coverage/__main__.py\"],\n data = glob([\"coverage/*.py\", \"coverage/**/*.py\", \"coverage/*.so\"]),\n visibility = [\"//visibility:public\"],\n)\n ", + "patch_args": [ + "-p1" + ], + "patches": [ + "@@rules_python~//python/private:coverage.patch" + ], + "sha256": "6c4459b3de97b75e3bd6b7d4b7f0db13f17f504f3d13e2a7c623786289dd670e", + "type": "zip", + "urls": [ + "https://files.pythonhosted.org/packages/40/3b/cd68cb278c4966df00158811ec1e357b9a7d132790c240fc65da57e10013/coverage-6.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + ] + } + }, + "pypi__pip_tools": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/5e/e8/f6d7d1847c7351048da870417724ace5c4506e816b38db02f4d7c675c189/pip_tools-6.12.1-py3-none-any.whl", + "sha256": "f0c0c0ec57b58250afce458e2e6058b1f30a4263db895b7d72fd6311bf1dc6f7", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__coverage_cp310_x86_64-unknown-linux-gnu": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "\nfilegroup(\n name = \"coverage\",\n srcs = [\"coverage/__main__.py\"],\n data = glob([\"coverage/*.py\", \"coverage/**/*.py\", \"coverage/*.so\"]),\n visibility = [\"//visibility:public\"],\n)\n ", + "patch_args": [ + "-p1" + ], + "patches": [ + "@@rules_python~//python/private:coverage.patch" + ], + "sha256": "af4fffaffc4067232253715065e30c5a7ec6faac36f8fc8d6f64263b15f74db0", + "type": "zip", + "urls": [ + "https://files.pythonhosted.org/packages/3c/7d/d5211ea782b193ab8064b06dc0cc042cf1a4ca9c93a530071459172c550f/coverage-6.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + ] + } + }, + "pypi__coverage_cp311_x86_64-apple-darwin": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "\nfilegroup(\n name = \"coverage\",\n srcs = [\"coverage/__main__.py\"],\n data = glob([\"coverage/*.py\", \"coverage/**/*.py\", \"coverage/*.so\"]),\n visibility = [\"//visibility:public\"],\n)\n ", + "patch_args": [ + "-p1" + ], + "patches": [ + "@@rules_python~//python/private:coverage.patch" + ], + "sha256": "4a5375e28c5191ac38cca59b38edd33ef4cc914732c916f2929029b4bfb50795", + "type": "zip", + "urls": [ + "https://files.pythonhosted.org/packages/50/cf/455930004231fa87efe8be06d13512f34e070ddfee8b8bf5a050cdc47ab3/coverage-6.5.0-cp311-cp311-macosx_10_9_x86_64.whl" + ] + } + }, + "pypi__coverage_cp310_aarch64-unknown-linux-gnu": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "\nfilegroup(\n name = \"coverage\",\n srcs = [\"coverage/__main__.py\"],\n data = glob([\"coverage/*.py\", \"coverage/**/*.py\", \"coverage/*.so\"]),\n visibility = [\"//visibility:public\"],\n)\n ", + "patch_args": [ + "-p1" + ], + "patches": [ + "@@rules_python~//python/private:coverage.patch" + ], + "sha256": "b4a5be1748d538a710f87542f22c2cad22f80545a847ad91ce45e77417293eb4", + "type": "zip", + "urls": [ + "https://files.pythonhosted.org/packages/15/b0/3639d84ee8a900da0cf6450ab46e22517e4688b6cec0ba8ab6f8166103a2/coverage-6.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + ] + } + }, + "pypi__coverage_cp39_aarch64-unknown-linux-gnu": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "\nfilegroup(\n name = \"coverage\",\n srcs = [\"coverage/__main__.py\"],\n data = glob([\"coverage/*.py\", \"coverage/**/*.py\", \"coverage/*.so\"]),\n visibility = [\"//visibility:public\"],\n)\n ", + "patch_args": [ + "-p1" + ], + "patches": [ + "@@rules_python~//python/private:coverage.patch" + ], + "sha256": "b9023e237f4c02ff739581ef35969c3739445fb059b060ca51771e69101efffe", + "type": "zip", + "urls": [ + "https://files.pythonhosted.org/packages/18/95/27f80dcd8273171b781a19d109aeaed7f13d78ef6d1e2f7134a5826fd1b4/coverage-6.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + ] + } + }, + "pypi__coverage_cp310_aarch64-apple-darwin": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "\nfilegroup(\n name = \"coverage\",\n srcs = [\"coverage/__main__.py\"],\n data = glob([\"coverage/*.py\", \"coverage/**/*.py\", \"coverage/*.so\"]),\n visibility = [\"//visibility:public\"],\n)\n ", + "patch_args": [ + "-p1" + ], + "patches": [ + "@@rules_python~//python/private:coverage.patch" + ], + "sha256": "784f53ebc9f3fd0e2a3f6a78b2be1bd1f5575d7863e10c6e12504f240fd06660", + "type": "zip", + "urls": [ + "https://files.pythonhosted.org/packages/89/a2/cbf599e50bb4be416e0408c4cf523c354c51d7da39935461a9687e039481/coverage-6.5.0-cp310-cp310-macosx_11_0_arm64.whl" + ] + } + }, + "pypi__pip": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/09/bd/2410905c76ee14c62baf69e3f4aa780226c1bbfc9485731ad018e35b0cb5/pip-22.3.1-py3-none-any.whl", + "sha256": "908c78e6bc29b676ede1c4d57981d490cb892eb45cd8c214ab6298125119e077", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__coverage_cp38_x86_64-apple-darwin": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "\nfilegroup(\n name = \"coverage\",\n srcs = [\"coverage/__main__.py\"],\n data = glob([\"coverage/*.py\", \"coverage/**/*.py\", \"coverage/*.so\"]),\n visibility = [\"//visibility:public\"],\n)\n ", + "patch_args": [ + "-p1" + ], + "patches": [ + "@@rules_python~//python/private:coverage.patch" + ], + "sha256": "d900bb429fdfd7f511f868cedd03a6bbb142f3f9118c09b99ef8dc9bf9643c3c", + "type": "zip", + "urls": [ + "https://files.pythonhosted.org/packages/05/63/a789b462075395d34f8152229dccf92b25ca73eac05b3f6cd75fa5017095/coverage-6.5.0-cp38-cp38-macosx_10_9_x86_64.whl" + ] + } + }, + "pypi__coverage_cp311_x86_64-unknown-linux-gnu": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "\nfilegroup(\n name = \"coverage\",\n srcs = [\"coverage/__main__.py\"],\n data = glob([\"coverage/*.py\", \"coverage/**/*.py\", \"coverage/*.so\"]),\n visibility = [\"//visibility:public\"],\n)\n ", + "patch_args": [ + "-p1" + ], + "patches": [ + "@@rules_python~//python/private:coverage.patch" + ], + "sha256": "a8fb6cf131ac4070c9c5a3e21de0f7dc5a0fbe8bc77c9456ced896c12fcdad91", + "type": "zip", + "urls": [ + "https://files.pythonhosted.org/packages/6a/63/8e82513b7e4a1b8d887b4e85c1c2b6c9b754a581b187c0b084f3330ac479/coverage-6.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + ] + } + }, + "pypi__tomli": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl", + "sha256": "939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__coverage_cp39_x86_64-apple-darwin": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "\nfilegroup(\n name = \"coverage\",\n srcs = [\"coverage/__main__.py\"],\n data = glob([\"coverage/*.py\", \"coverage/**/*.py\", \"coverage/*.so\"]),\n visibility = [\"//visibility:public\"],\n)\n ", + "patch_args": [ + "-p1" + ], + "patches": [ + "@@rules_python~//python/private:coverage.patch" + ], + "sha256": "633713d70ad6bfc49b34ead4060531658dc6dfc9b3eb7d8a716d5873377ab745", + "type": "zip", + "urls": [ + "https://files.pythonhosted.org/packages/ea/52/c08080405329326a7ff16c0dfdb4feefaa8edd7446413df67386fe1bbfe0/coverage-6.5.0-cp39-cp39-macosx_10_9_x86_64.whl" + ] + } + }, + "pypi__wheel": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/bd/7c/d38a0b30ce22fc26ed7dbc087c6d00851fb3395e9d0dac40bec1f905030c/wheel-0.38.4-py3-none-any.whl", + "sha256": "b60533f3f5d530e971d6737ca6d58681ee434818fab630c83a734bb10c083ce8", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__coverage_cp311_aarch64-unknown-linux-gnu": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "\nfilegroup(\n name = \"coverage\",\n srcs = [\"coverage/__main__.py\"],\n data = glob([\"coverage/*.py\", \"coverage/**/*.py\", \"coverage/*.so\"]),\n visibility = [\"//visibility:public\"],\n)\n ", + "patch_args": [ + "-p1" + ], + "patches": [ + "@@rules_python~//python/private:coverage.patch" + ], + "sha256": "c4ed2820d919351f4167e52425e096af41bfabacb1857186c1ea32ff9983ed75", + "type": "zip", + "urls": [ + "https://files.pythonhosted.org/packages/36/f3/5cbd79cf4cd059c80b59104aca33b8d05af4ad5bf5b1547645ecee716378/coverage-6.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + ] + } + }, + "pypi__click": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/76/0a/b6c5f311e32aeb3b406e03c079ade51e905ea630fc19d1262a46249c1c86/click-8.0.1-py3-none-any.whl", + "sha256": "fba402a4a47334742d782209a7c79bc448911afe1149d07bdabdf480b3e2f4b6", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__coverage_cp39_x86_64-unknown-linux-gnu": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "\nfilegroup(\n name = \"coverage\",\n srcs = [\"coverage/__main__.py\"],\n data = glob([\"coverage/*.py\", \"coverage/**/*.py\", \"coverage/*.so\"]),\n visibility = [\"//visibility:public\"],\n)\n ", + "patch_args": [ + "-p1" + ], + "patches": [ + "@@rules_python~//python/private:coverage.patch" + ], + "sha256": "8f830ed581b45b82451a40faabb89c84e1a998124ee4212d440e9c6cf70083e5", + "type": "zip", + "urls": [ + "https://files.pythonhosted.org/packages/6b/f2/919f0fdc93d3991ca074894402074d847be8ac1e1d78e7e9e1c371b69a6f/coverage-6.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + ] + } + }, + "pypi__importlib_metadata": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/d7/31/74dcb59a601b95fce3b0334e8fc9db758f78e43075f22aeb3677dfb19f4c/importlib_metadata-1.4.0-py2.py3-none-any.whl", + "sha256": "bdd9b7c397c273bcc9a11d6629a38487cd07154fa255a467bf704cd2c258e359", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__pep517": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/ee/2f/ef63e64e9429111e73d3d6cbee80591672d16f2725e648ebc52096f3d323/pep517-0.13.0-py3-none-any.whl", + "sha256": "4ba4446d80aed5b5eac6509ade100bff3e7943a8489de249654a5ae9b33ee35b", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__coverage_cp38_x86_64-unknown-linux-gnu": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "\nfilegroup(\n name = \"coverage\",\n srcs = [\"coverage/__main__.py\"],\n data = glob([\"coverage/*.py\", \"coverage/**/*.py\", \"coverage/*.so\"]),\n visibility = [\"//visibility:public\"],\n)\n ", + "patch_args": [ + "-p1" + ], + "patches": [ + "@@rules_python~//python/private:coverage.patch" + ], + "sha256": "6b07130585d54fe8dff3d97b93b0e20290de974dc8177c320aeaf23459219c0b", + "type": "zip", + "urls": [ + "https://files.pythonhosted.org/packages/bd/a0/e263b115808226fdb2658f1887808c06ac3f1b579ef5dda02309e0d54459/coverage-6.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + ] + } + }, + "pypi__coverage_cp38_aarch64-apple-darwin": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "\nfilegroup(\n name = \"coverage\",\n srcs = [\"coverage/__main__.py\"],\n data = glob([\"coverage/*.py\", \"coverage/**/*.py\", \"coverage/*.so\"]),\n visibility = [\"//visibility:public\"],\n)\n ", + "patch_args": [ + "-p1" + ], + "patches": [ + "@@rules_python~//python/private:coverage.patch" + ], + "sha256": "2198ea6fc548de52adc826f62cb18554caedfb1d26548c1b7c88d8f7faa8f6ba", + "type": "zip", + "urls": [ + "https://files.pythonhosted.org/packages/07/82/79fa21ceca9a9b091eb3c67e27eb648dade27b2c9e1eb23af47232a2a365/coverage-6.5.0-cp38-cp38-macosx_11_0_arm64.whl" + ] + } + }, + "pypi__packaging": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/8f/7b/42582927d281d7cb035609cd3a543ffac89b74f3f4ee8e1c50914bcb57eb/packaging-22.0-py3-none-any.whl", + "sha256": "957e2148ba0e1a3b282772e791ef1d8083648bc131c8ab0c1feba110ce1146c3", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__setuptools": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/7c/5b/3d92b9f0f7ca1645cba48c080b54fe7d8b1033a4e5720091d1631c4266db/setuptools-60.10.0-py3-none-any.whl", + "sha256": "782ef48d58982ddb49920c11a0c5c9c0b02e7d7d1c2ad0aa44e1a1e133051c96", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__zipp": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/f4/50/cc72c5bcd48f6e98219fc4a88a5227e9e28b81637a99c49feba1d51f4d50/zipp-1.0.0-py2.py3-none-any.whl", + "sha256": "8dda78f06bd1674bd8720df8a50bb47b6e1233c503a4eed8e7810686bde37656", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__colorama": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", + "sha256": "4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__build": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/03/97/f58c723ff036a8d8b4d3115377c0a37ed05c1f68dd9a0d66dab5e82c5c1c/build-0.9.0-py3-none-any.whl", + "sha256": "38a7a2b7a0bdc61a42a0a67509d88c71ecfc37b393baba770fae34e20929ff69", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__coverage_cp310_x86_64-apple-darwin": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "\nfilegroup(\n name = \"coverage\",\n srcs = [\"coverage/__main__.py\"],\n data = glob([\"coverage/*.py\", \"coverage/**/*.py\", \"coverage/*.so\"]),\n visibility = [\"//visibility:public\"],\n)\n ", + "patch_args": [ + "-p1" + ], + "patches": [ + "@@rules_python~//python/private:coverage.patch" + ], + "sha256": "ef8674b0ee8cc11e2d574e3e2998aea5df5ab242e012286824ea3c6970580e53", + "type": "zip", + "urls": [ + "https://files.pythonhosted.org/packages/c4/8d/5ec7d08f4601d2d792563fe31db5e9322c306848fec1e65ec8885927f739/coverage-6.5.0-cp310-cp310-macosx_10_9_x86_64.whl" + ] + } + }, + "pypi__installer": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/e5/ca/1172b6638d52f2d6caa2dd262ec4c811ba59eee96d54a7701930726bce18/installer-0.7.0-py3-none-any.whl", + "sha256": "05d1933f0a5ba7d8d6296bb6d5018e7c94fa473ceb10cf198a92ccea19c27b53", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__more_itertools": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/bd/3f/c4b3dbd315e248f84c388bd4a72b131a29f123ecacc37ffb2b3834546e42/more_itertools-8.13.0-py3-none-any.whl", + "sha256": "c5122bffc5f104d37c1626b8615b511f3427aa5389b94d61e5ef8236bfbc3ddb", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + } + }, + "recordedRepoMappingEntries": [ + [ + "rules_python~", + "bazel_skylib", + "bazel_skylib~" + ], + [ + "rules_python~", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_python~", + "rules_python", + "rules_python~" + ] + ] + } } } } diff --git a/README.md b/README.md index ebdac24..c9e11ce 100644 --- a/README.md +++ b/README.md @@ -12,17 +12,17 @@ Simple Core API: [play_routes](docs/stardoc/play-routes.md) For more information about the Play Framework, see [the Play documentation](https://www.playframework.com/documentation/latest). ## Installation -Create a file at the top of your repository named `WORKSPACE` and add the following snippet to it. +Add the following to your `WORKSPACE` file: ```python # update version as needed rules_play_routes_version = "TODO" http_archive( - name = "rules_play_routes", - sha256 = "TODO", - strip_prefix = "rules_play_routes-{}".format(rules_play_routes_version), - type = "zip", - url = "https://github.com/lucidsoftware/rules_play_routes/archive/{}.zip".format(rules_play_routes_version), + name = "rules_play_routes", + sha256 = "TODO", + strip_prefix = "rules_play_routes-{}".format(rules_play_routes_version), + type = "zip", + url = "https://github.com/lucidsoftware/rules_play_routes/archive/{}.zip".format(rules_play_routes_version), ) # rules_jvm_external @@ -42,50 +42,45 @@ rules_jvm_external_deps() load("@rules_jvm_external//:setup.bzl", "rules_jvm_external_setup") rules_jvm_external_setup() -load("@rules_play_routes//:workspace.bzl", "play_routes_repositories") -play_routes_repositories("3.0") -load("@play_routes//:defs.bzl", play_routes_pinned_maven_install = "pinned_maven_install") -play_routes_pinned_maven_install() - -bind( - name = "default-play-routes-compiler-cli", - actual = "@rules_play_routes//default-compiler-clis:scala_2_13_play_3_0" +load( + "@rules_play_routes//:workspace.bzl", + "play_routes_compiler_cli_2_13_repositories", + "play_routes_compiler_cli_3_repositories", ) +play_routes_compiler_cli_3_repositories() +load("@play_routes_compiler_cli_3//:defs.bzl", play_routes_compiler_cli_3_pinned_maven_install = "pinned_maven_install") +play_routes_compiler_cli_3_pinned_maven_install() -``` - -This installs `rules_play_routes` to your `WORKSPACE` and binds the default play routes compiler cli the rules will use. Update the commit as needed. - -In the above example, the play routes compiler cli for Scala 2.12 and Play 2.7 is used. However, you can specify a different compiler. +play_routes_compiler_cli_2_13_repositories() +load("@play_routes_compiler_cli_2_13//:defs.bzl", play_routes_compiler_cli_2_13_pinned_maven_install = "pinned_maven_install") +play_routes_compiler_cli_2_13_pinned_maven_install() -We provide several default compilers: +# Play routes compiler +load("@rules_play_routes//play-routes-toolchain:register-toolchains.bzl", "play_routes_register_toolchains") +play_routes_register_toolchains(default_toolchain_name = "play-routes-3") +``` -- For Scala 2.11 + Play 2.5: `@rules_play_routes//default-compiler-clis:scala_2_11_play_2_5` -- For Scala 2.11 + Play 2.6: `@rules_play_routes//default-compiler-clis:scala_2_11_play_2_6` -- For Scala 2.11 + Play 2.7: `@rules_play_routes//default-compiler-clis:scala_2_11_play_2_7` -- For Scala 2.12 + Play 2.6: `@rules_play_routes//default-compiler-clis:scala_2_12_play_2_6` -- For Scala 2.12 + Play 2.7: `@rules_play_routes//default-compiler-clis:scala_2_12_play_2_7` -- For Scala 2.12 + Play 2.8: `@rules_play_routes//default-compiler-clis:scala_2_12_play_2_8` -- For Scala 2.13 + Play 2.8: `@rules_play_routes//default-compiler-clis:scala_2_13_play_2_8` -- For Scala 2.13 + Play 2.9: `@rules_play_routes//default-compiler-clis:scala_2_13_play_2_9` -- For Scala 2.13 + Play 3.0: `@rules_play_routes//default-compiler-clis:scala_2_13_play_3_0` +This installs `rules_play_routes` to your `WORKSPACE` and sets up toolchains for a Scala 2.13 and Scala 3 version of the Play routes compiler with Scala 3 being the default. To change the default to Scala 2.13, set `default_toolchain_name = "play-routes-2-13"` -To bind one of the default compilers, simply specify the correct Play version in the call to `play_routes_repositories` and update the bind statement: +If you want to use a custom Play routes compiler, you can set up a custom toolchain in a BUILD.bazel file as follows: ```python -play_routes_repositories(, ) -load("@play_routes//:defs.bzl", play_routes_pinned_maven_install = "pinned_maven_install") -play_routes_pinned_maven_install() +load("@rules_play_routes//play-routes-toolchain:create-toolchain.bzl", "create_play_routes_toolchain") -bind( - name = "default-play-routes-compiler-cli", - actual = +create_play_routes_toolchain( + name = "play-routes-custom", + play_routes_compiler = "