diff --git a/.bazelversion b/.bazelversion
index 750aaed..e3d191c 100644
--- a/.bazelversion
+++ b/.bazelversion
@@ -1 +1 @@
-bazelbuild/4.2.4
+bazelbuild/6.3.2
diff --git a/WORKSPACE b/WORKSPACE
index e349a0a..dd56a0c 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -3,11 +3,11 @@ workspace(name = "io_bazel_rules_play_routes")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# rules_jvm_external
-RULES_JVM_EXTERNAL_TAG = "4.2"
+RULES_JVM_EXTERNAL_TAG = "5.3"
http_archive(
name = "rules_jvm_external",
- sha256 = "cd1a77b7b02e8e008439ca76fd34f5b07aecb8c752961f9640dea15e9e5ba1ca",
+ sha256 = "6cc8444b20307113a62b676846c29ff018402fd4c7097fcd6d0a0fd5f2e86429",
strip_prefix = "rules_jvm_external-{}".format(RULES_JVM_EXTERNAL_TAG),
type = "zip",
url = "https://github.com/bazelbuild/rules_jvm_external/archive/{}.zip".format(RULES_JVM_EXTERNAL_TAG),
@@ -31,64 +31,16 @@ 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.4.2" # update this as needed
http_archive(
name = "bazel_skylib",
- sha256 = "64ad2728ccdd2044216e4cec7815918b7bb3bb28c95b7e9d951f9d4eccb07625",
+ # sha256 = "64ad2728ccdd2044216e4cec7815918b7bb3bb28c95b7e9d951f9d4eccb07625",
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 = [])
-
-# rules_sass
-rules_sass_version = "1.26.2" # update this as needed
-
-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),
-)
-
-load("@io_bazel_rules_sass//:package.bzl", "rules_sass_dependencies")
-
-rules_sass_dependencies()
-
-load("@io_bazel_rules_sass//sass:sass_repositories.bzl", "sass_repositories")
-
-sass_repositories()
-
-# 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),
-)
-
-load("@io_bazel_skydoc//skylark:skylark.bzl", "skydoc_repositories")
-
-skydoc_repositories()
-
# com_github_bazelbuild_buildtools
buildtools_tag = "0.29.0"
diff --git a/docs/stardoc/play-routes.md b/docs/stardoc/play-routes.md
deleted file mode 100644
index 5ae66e6..0000000
--- a/docs/stardoc/play-routes.md
+++ /dev/null
@@ -1,130 +0,0 @@
-
-
-
-
-## 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)
-
-
-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
-
- |
-
-
-
-
-
-
-
-## PlayRoutesInfo
-
-
-PlayRoutesInfo(srcjar)
-
-
-
-
-### Fields
-
-
-
-
-
-
-
-
- srcjar |
-
- The source jar created by this target.
- |
-
-
-
-
-
diff --git a/play-routes/BUILD b/play-routes/BUILD
index c262685..88cd75b 100644
--- a/play-routes/BUILD
+++ b/play-routes/BUILD
@@ -1,27 +1,8 @@
# Borrowed from higherkindness/rules_scala
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
-load("@io_bazel_skydoc//stardoc:stardoc.bzl", "stardoc")
-load("@rules_pkg//:pkg.bzl", "pkg_tar")
load("@bazel_skylib//lib:paths.bzl", "paths")
-[
- stardoc(
- name = paths.replace_extension(file, "_doc").replace("/", "_"),
- out = paths.replace_extension(file, ".md").replace("/", "_"),
- input = file,
- deps = [
- "//play-routes:bzl_internal",
- ],
- )
- for file in glob(["**/*.bzl"])
-]
-
-pkg_tar(
- name = "docs",
- srcs = [paths.replace_extension(file, ".md").replace("/", "_") for file in glob(["**/*.bzl"])],
- mode = "0644",
-)
bzl_library(
name = "bzl_internal",
diff --git a/play_2_5_routes_compiler_cli_install.json b/play_2_5_routes_compiler_cli_install.json
index a3b1fe9..3901607 100644
--- a/play_2_5_routes_compiler_cli_install.json
+++ b/play_2_5_routes_compiler_cli_install.json
@@ -1,425 +1,481 @@
{
- "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": -1558150993,
+ "__RESOLVED_ARTIFACTS_HASH": -1846108397,
+ "artifacts": {
+ "com.github.scopt:scopt_2.11": {
+ "shasums": {
+ "jar": "cc05b6ac379f9b45b6d832b7be556312039f3d57928b62190d3dcd04f34470b5",
+ "sources": "1c9111bafb55ec192d04898123199e51440e1633118b112d0c14a611491805ef"
+ },
+ "version": "3.7.0"
+ },
+ "com.lucidchart:play-routes-compiler-cli": {
+ "shasums": {
+ "jar": "9b89f0f1a4a62b0a05c844b0c184b82dcd2cd45415eea842fd054d7cbb0719f7",
+ "sources": "adb5006d0e85c9d3ea034e7d947dffcd7df6239843ee732f16f9895b10a7e8d3"
+ },
+ "version": "0.1"
+ },
+ "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": [
+ "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.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": [
+ "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.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",
+ "com.lucidchart:play-routes-compiler-cli: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",
+ "com.lucidchart:play-routes-compiler-cli: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",
+ "com.lucidchart:play-routes-compiler-cli: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"
+ ]
+ },
+ "version": "2"
}
diff --git a/play_2_6_routes_compiler_cli_install.json b/play_2_6_routes_compiler_cli_install.json
index 5ac8c05..657a915 100644
--- a/play_2_6_routes_compiler_cli_install.json
+++ b/play_2_6_routes_compiler_cli_install.json
@@ -1,621 +1,660 @@
{
- "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": -1635641426,
+ "__RESOLVED_ARTIFACTS_HASH": -225174721,
+ "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": {
+ "shasums": {
+ "jar": "9b89f0f1a4a62b0a05c844b0c184b82dcd2cd45415eea842fd054d7cbb0719f7",
+ "sources": "adb5006d0e85c9d3ea034e7d947dffcd7df6239843ee732f16f9895b10a7e8d3"
+ },
+ "version": "0.1"
+ },
+ "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": [
+ "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.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": [
+ "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.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",
+ "com.lucidchart:play-routes-compiler-cli: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",
+ "com.lucidchart:play-routes-compiler-cli: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",
+ "com.lucidchart:play-routes-compiler-cli: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"
+ ]
+ },
+ "version": "2"
}
diff --git a/play_2_7_routes_compiler_cli_install.json b/play_2_7_routes_compiler_cli_install.json
index e3cc7e2..ec6a7d6 100644
--- a/play_2_7_routes_compiler_cli_install.json
+++ b/play_2_7_routes_compiler_cli_install.json
@@ -1,583 +1,622 @@
{
- "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": -127738887,
+ "__RESOLVED_ARTIFACTS_HASH": -2038928921,
+ "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": {
+ "shasums": {
+ "jar": "9b89f0f1a4a62b0a05c844b0c184b82dcd2cd45415eea842fd054d7cbb0719f7",
+ "sources": "adb5006d0e85c9d3ea034e7d947dffcd7df6239843ee732f16f9895b10a7e8d3"
+ },
+ "version": "0.1"
+ },
+ "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": [
+ "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.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": [
+ "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.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",
+ "com.lucidchart:play-routes-compiler-cli: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",
+ "com.lucidchart:play-routes-compiler-cli: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",
+ "com.lucidchart:play-routes-compiler-cli: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"
+ ]
+ },
+ "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..e74b656 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,514 @@
{
- "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": 1741370632,
+ "__RESOLVED_ARTIFACTS_HASH": -68331234,
+ "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": {
+ "shasums": {
+ "jar": "9b89f0f1a4a62b0a05c844b0c184b82dcd2cd45415eea842fd054d7cbb0719f7",
+ "sources": "adb5006d0e85c9d3ea034e7d947dffcd7df6239843ee732f16f9895b10a7e8d3"
+ },
+ "version": "0.1"
+ },
+ "com.lucidchart:play-routes-compiler-cli_2.12": {
+ "shasums": {
+ "jar": "30fad84f1e175175a68b28066a946b71d5b2d3316a5a705cc602f323a69e86b7",
+ "sources": "62b92601ed5e0a608db3d6ac6d30396dd4a2e5e7446a03dceb81091fbab41325"
+ },
+ "version": "2.8.7"
+ },
+ "com.typesafe.play:routes-compiler_2.11": {
+ "shasums": {
+ "jar": "bc74bf8f8a4053bfebf506ade75bd917c6a91e98dbe78f8b8bb3cefaa44bebef",
+ "sources": "6b3e5fc188156fd8cb8518cddbcb0f4cf43dec876d703ff59146d73ea2f2d4b4"
+ },
+ "version": "2.5.19"
+ },
+ "com.typesafe.play:routes-compiler_2.12": {
+ "shasums": {
+ "jar": "3f4118d029adbf9cde1da0bf163768930a61fa5e6a2912226c8f5043400d7bf2",
+ "sources": "2277dad903e34f7058046d3d0d551b3ac8fde8daf9bb5f4a13576f88e682b48c"
+ },
+ "version": "2.8.7"
+ },
+ "com.typesafe.play:twirl-api_2.11": {
+ "shasums": {
+ "jar": "8cbc373640e2dab269bc0d4eada8fd47e9a06bb573ea9b7748eada58188547fa",
+ "sources": "aa59cc9ff4a00e95330f8e8fcb4d4489d168bde4c2c433e5741428d62971d5e8"
+ },
+ "version": "1.1.1"
+ },
+ "com.typesafe.play:twirl-api_2.12": {
+ "shasums": {
+ "jar": "cb2cb22597d34d07832c0412523be92ab6b16f6f35f12d69c449a0b3bb8d523c",
+ "sources": "dd5291bf8916f81b4d7f3f61b03e2298b8c74fa0a4622298200f025f3e9f6e6b"
+ },
+ "version": "1.5.0"
+ },
+ "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-parser-combinators_2.12": {
+ "shasums": {
+ "jar": "24985eb43e295a9dd77905ada307a850ca25acf819cdb579c093fc6987b0dbc2",
+ "sources": "8fbe3fa9e748f24aa6d6868c0c2be30d41a02d20428ed5429bb57a897cb756e3"
+ },
+ "version": "1.1.2"
+ },
+ "org.scala-lang.modules:scala-xml_2.11": {
+ "shasums": {
+ "jar": "eb84f08e8e1874d56f01ee259f99b8fd3c10676959e45728535411182451eff2",
+ "sources": "9f6233bc4240883dbf00bba36554a0864ee3fbab7cf949440d6523a2f882b611"
+ },
+ "version": "1.0.1"
+ },
+ "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.11": [
+ "org.scala-lang:scala-library"
+ ],
+ "com.github.scopt:scopt_2.12": [
+ "org.scala-lang:scala-library"
+ ],
+ "com.lucidchart:play-routes-compiler-cli": [
+ "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",
+ "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.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",
+ "org.scala-lang.modules:scala-parser-combinators_2.12",
+ "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"
+ ],
+ "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": [
+ "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.lucidchart:play-routes-compiler-cli_2.12": [
+ "rulesplayroutes.routes"
+ ],
+ "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"
+ ],
+ "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: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-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",
+ "com.lucidchart:play-routes-compiler-cli: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.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-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",
+ "com.lucidchart:play-routes-compiler-cli: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.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-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",
+ "com.lucidchart:play-routes-compiler-cli: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.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-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"
+ ]
+ },
+ "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..ff0b6e0 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,511 @@
{
- "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": -960607825,
+ "__RESOLVED_ARTIFACTS_HASH": 1580352214,
+ "artifacts": {
+ "com.github.scopt:scopt_2.11": {
+ "shasums": {
+ "jar": "cc05b6ac379f9b45b6d832b7be556312039f3d57928b62190d3dcd04f34470b5",
+ "sources": "1c9111bafb55ec192d04898123199e51440e1633118b112d0c14a611491805ef"
+ },
+ "version": "3.7.0"
+ },
+ "com.github.scopt:scopt_2.13": {
+ "shasums": {
+ "jar": "6592cd15368f6e26d1d73f81ed5bc93cf0dea713b8b2936a8f2f0edd3b392820",
+ "sources": "707366c0e18f8d4188daa9e0bf788fae616f0c77500c6aafda776a538d142135"
+ },
+ "version": "3.7.1"
+ },
+ "com.lucidchart:play-routes-compiler-cli": {
+ "shasums": {
+ "jar": "9b89f0f1a4a62b0a05c844b0c184b82dcd2cd45415eea842fd054d7cbb0719f7",
+ "sources": "adb5006d0e85c9d3ea034e7d947dffcd7df6239843ee732f16f9895b10a7e8d3"
+ },
+ "version": "0.1"
+ },
+ "com.lucidchart:play-routes-compiler-cli_2.13": {
+ "shasums": {
+ "jar": "24eb16aa22231d41386edf3bb30c8136e1686dc466c4a8b4e6cb282598a274ec",
+ "sources": "c6f49a5084e4b4bb2c51445d3b8300c484b6cc167e9214f804c914d872ac2084"
+ },
+ "version": "2.8.7"
+ },
+ "com.typesafe.play:routes-compiler_2.11": {
+ "shasums": {
+ "jar": "bc74bf8f8a4053bfebf506ade75bd917c6a91e98dbe78f8b8bb3cefaa44bebef",
+ "sources": "6b3e5fc188156fd8cb8518cddbcb0f4cf43dec876d703ff59146d73ea2f2d4b4"
+ },
+ "version": "2.5.19"
+ },
+ "com.typesafe.play:routes-compiler_2.13": {
+ "shasums": {
+ "jar": "0aa6842be84c902af07e15c1d2378ab1924202bca7de98e7e53a2d76238166b1",
+ "sources": "e5b98575fa36ea5e2cbc757e30814e945650679c3fc175e04affc91a50c0f5ba"
+ },
+ "version": "2.8.7"
+ },
+ "com.typesafe.play:twirl-api_2.11": {
+ "shasums": {
+ "jar": "8cbc373640e2dab269bc0d4eada8fd47e9a06bb573ea9b7748eada58188547fa",
+ "sources": "aa59cc9ff4a00e95330f8e8fcb4d4489d168bde4c2c433e5741428d62971d5e8"
+ },
+ "version": "1.1.1"
+ },
+ "com.typesafe.play:twirl-api_2.13": {
+ "shasums": {
+ "jar": "fd8d62f9abf36eda8b578b4e96b087830f05f22e27905973c40a7941ea87493a",
+ "sources": "96ac5f61a0adb518f165053956271a92f70c9962760d0443443f745cc1b3e695"
+ },
+ "version": "1.5.0"
+ },
+ "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-parser-combinators_2.13": {
+ "shasums": {
+ "jar": "5c285b72e6dc0a98e99ae0a1ceeb4027dab9adfa441844046bd3f19e0efdcb54",
+ "sources": "a5cdd33bc2dcd8917e4fea30d31ea19d0d70cc5f6951c5a913428930ced8391a"
+ },
+ "version": "1.1.2"
+ },
+ "org.scala-lang.modules:scala-xml_2.11": {
+ "shasums": {
+ "jar": "eb84f08e8e1874d56f01ee259f99b8fd3c10676959e45728535411182451eff2",
+ "sources": "9f6233bc4240883dbf00bba36554a0864ee3fbab7cf949440d6523a2f882b611"
+ },
+ "version": "1.0.1"
+ },
+ "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.11": [
+ "org.scala-lang:scala-library"
+ ],
+ "com.github.scopt:scopt_2.13": [
+ "org.scala-lang:scala-library"
+ ],
+ "com.lucidchart:play-routes-compiler-cli": [
+ "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.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.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.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.11": [
+ "org.apache.commons:commons-lang3",
+ "org.scala-lang.modules:scala-xml_2.11",
+ "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.11": [
+ "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.11": [
+ "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.11": [
+ "scopt"
+ ],
+ "com.github.scopt:scopt_2.13": [
+ "scopt"
+ ],
+ "com.lucidchart:play-routes-compiler-cli": [
+ "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.lucidchart:play-routes-compiler-cli_2.13": [
+ "rulesplayroutes.routes"
+ ],
+ "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.13": [
+ "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"
+ ],
+ "com.typesafe.play:twirl-api_2.13": [
+ "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: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-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.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.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.11",
+ "com.github.scopt:scopt_2.11:jar:sources",
+ "com.github.scopt:scopt_2.13",
+ "com.github.scopt:scopt_2.13:jar:sources",
+ "com.lucidchart:play-routes-compiler-cli",
+ "com.lucidchart:play-routes-compiler-cli: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.11",
+ "com.typesafe.play:routes-compiler_2.11:jar:sources",
+ "com.typesafe.play:routes-compiler_2.13",
+ "com.typesafe.play:routes-compiler_2.13:jar:sources",
+ "com.typesafe.play:twirl-api_2.11",
+ "com.typesafe.play:twirl-api_2.11:jar:sources",
+ "com.typesafe.play:twirl-api_2.13",
+ "com.typesafe.play:twirl-api_2.13: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-parser-combinators_2.13",
+ "org.scala-lang.modules:scala-parser-combinators_2.13: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.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.11",
+ "com.github.scopt:scopt_2.11:jar:sources",
+ "com.github.scopt:scopt_2.13",
+ "com.github.scopt:scopt_2.13:jar:sources",
+ "com.lucidchart:play-routes-compiler-cli",
+ "com.lucidchart:play-routes-compiler-cli: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.11",
+ "com.typesafe.play:routes-compiler_2.11:jar:sources",
+ "com.typesafe.play:routes-compiler_2.13",
+ "com.typesafe.play:routes-compiler_2.13:jar:sources",
+ "com.typesafe.play:twirl-api_2.11",
+ "com.typesafe.play:twirl-api_2.11:jar:sources",
+ "com.typesafe.play:twirl-api_2.13",
+ "com.typesafe.play:twirl-api_2.13: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-parser-combinators_2.13",
+ "org.scala-lang.modules:scala-parser-combinators_2.13: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.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.11",
+ "com.github.scopt:scopt_2.11:jar:sources",
+ "com.github.scopt:scopt_2.13",
+ "com.github.scopt:scopt_2.13:jar:sources",
+ "com.lucidchart:play-routes-compiler-cli",
+ "com.lucidchart:play-routes-compiler-cli: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.11",
+ "com.typesafe.play:routes-compiler_2.11:jar:sources",
+ "com.typesafe.play:routes-compiler_2.13",
+ "com.typesafe.play:routes-compiler_2.13:jar:sources",
+ "com.typesafe.play:twirl-api_2.11",
+ "com.typesafe.play:twirl-api_2.11:jar:sources",
+ "com.typesafe.play:twirl-api_2.13",
+ "com.typesafe.play:twirl-api_2.13: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-parser-combinators_2.13",
+ "org.scala-lang.modules:scala-parser-combinators_2.13: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.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"
+ ]
+ },
+ "version": "2"
}
diff --git a/play_routes_test_install.json b/play_routes_test_install.json
index ed95c8b..b18719c 100644
--- a/play_routes_test_install.json
+++ b/play_routes_test_install.json
@@ -1,5366 +1,3241 @@
{
- "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": -888127874,
+ "__RESOLVED_ARTIFACTS_HASH": -683786769,
+ "conflict_resolution": {
+ "com.typesafe.akka:akka-actor_2.12:2.5.24": "com.typesafe.akka:akka-actor_2.12:2.5.26"
+ },
+ "artifacts": {
+ "aopalliance:aopalliance": {
+ "shasums": {
+ "jar": "0addec670fedcd3f113c5c8091d783280d23f75e3acb841b61a9cdb079376a08",
+ "sources": "e6ef91d439ada9045f419c77543ebe0416c3cdfc5b063448343417a3e4a72123"
+ },
+ "version": "1.0"
+ },
+ "ch.qos.logback:logback-classic": {
+ "shasums": {
+ "jar": "fb53f8539e7fcb8f093a56e138112056ec1dc809ebb020b59d8a36a5ebac37e0",
+ "sources": "480cb5e99519271c9256716d4be1a27054047435ff72078d9deae5c6a19f63eb"
+ },
+ "version": "1.2.3"
+ },
+ "ch.qos.logback:logback-core": {
+ "shasums": {
+ "jar": "5946d837fe6f960c02a53eda7a6926ecc3c758bbdd69aa453ee429f858217f22",
+ "sources": "1f69b6b638ec551d26b10feeade5a2b77abe347f9759da95022f0da9a63a9971"
+ },
+ "version": "1.2.3"
+ },
+ "com.fasterxml.jackson.core:jackson-annotations": {
+ "shasums": {
+ "jar": "c876f2e85d0f108a34cdd11ccc9d8d7875697367efc75bf10a89c2c26aee994c",
+ "sources": "32362fd5b64e79143215da37f883dc7b589aea188b7d88601c1102005acc7b9f"
+ },
+ "version": "2.9.10"
+ },
+ "com.fasterxml.jackson.core:jackson-core": {
+ "shasums": {
+ "jar": "65fe26d7554a4409652c86ee38f2e94bc42934326d88b3c78c61f66ff2222c53",
+ "sources": "68c6cea3770d2a7660e4ec0ceac41fd0e95b9e0595f50db8471b2030d76213c7"
+ },
+ "version": "2.9.10"
+ },
+ "com.fasterxml.jackson.core:jackson-databind": {
+ "shasums": {
+ "jar": "737c1165a617eac7275431f76615fd18447b001c0dc4f4f4db4e24b3b3cce0f9",
+ "sources": "722eeb286133e7e54e5612c7557571e68e9d53b4e706b0df3017b2ae3ca41a50"
+ },
+ "version": "2.9.10.1"
+ },
+ "com.fasterxml.jackson.datatype:jackson-datatype-jdk8": {
+ "shasums": {
+ "jar": "b305510c0fec81480cbc3516948f9ac5b326811e35c4b6563d2ccfe330079db6",
+ "sources": "c5d327dd853cf88b0e6f1ee5ba763e3c288edc730f4e954c1aea20fa2d9b90c2"
+ },
+ "version": "2.9.10"
+ },
+ "com.fasterxml.jackson.datatype:jackson-datatype-jsr310": {
+ "shasums": {
+ "jar": "a86f035a641f1a36aebacce8415e14568ce5b0088e3ad5b8cf3ea3c9c0c5b64e",
+ "sources": "8912d7a6039013f8afac0971c5e8557e07152503cbb525b6eb40af53890c86bf"
+ },
+ "version": "2.9.10"
+ },
+ "com.google.code.findbugs:jsr305": {
+ "shasums": {
+ "jar": "766ad2a0783f2687962c8ad74ceecc38a28b9f72a2d085ee438b7813e928d0c7",
+ "sources": "1c9e85e272d0708c6a591dc74828c71603053b48cc75ae83cce56912a2aa063b"
+ },
+ "version": "3.0.2"
+ },
+ "com.google.errorprone:error_prone_annotations": {
+ "shasums": {
+ "jar": "6ebd22ca1b9d8ec06d41de8d64e0596981d9607b42035f9ed374f9de271a481a",
+ "sources": "626adccd4894bee72c3f9a0384812240dcc1282fb37a87a3f6cb94924a089496"
+ },
+ "version": "2.2.0"
+ },
+ "com.google.guava:failureaccess": {
+ "shasums": {
+ "jar": "a171ee4c734dd2da837e4b16be9df4661afab72a41adaf31eb84dfdaf936ca26",
+ "sources": "092346eebbb1657b51aa7485a246bf602bb464cc0b0e2e1c7e7201fadce1e98f"
+ },
+ "version": "1.0.1"
+ },
+ "com.google.guava:guava": {
+ "shasums": {
+ "jar": "4a5aa70cc968a4d137e599ad37553e5cfeed2265e8c193476d7119036c536fe7",
+ "sources": "9de05c573971cedfcd53fb85fc7a58a5f453053026a9bf18594cffc79a1d6874"
+ },
+ "version": "27.1-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": "eec353f513d34b8b9e414b9d059687ef6c290aeb3c3df52e8943aeda0f013be8",
+ "sources": "bb19f4ac33880a444383104f05eb6a7f11df2b8afc3576c64af3f0b436a14569"
+ },
+ "version": "4.2.2"
+ },
+ "com.google.inject:guice": {
+ "shasums": {
+ "jar": "d258ff1bd9b8b527872f8402648226658ad3149f1f40e74b0566d69e7e042fbc",
+ "sources": "33ecda71a3876dcc2b9d16b4a5a67d08078db5fedd61ce51c74db734889cd049"
+ },
+ "version": "4.2.2"
+ },
+ "com.google.j2objc:j2objc-annotations": {
+ "shasums": {
+ "jar": "2994a7eb78f2710bd3d3bfb639b2c94e219cedac0d4d084d516e78c16dddecf6",
+ "sources": "2cd9022a77151d0b574887635cdfcdf3b78155b602abc89d7f8e62aba55cfb4f"
+ },
+ "version": "1.1"
+ },
+ "com.novocode:junit-interface": {
+ "shasums": {
+ "jar": "29e923226a0d10e9142bbd81073ef52f601277001fcf9014389bf0af3dc33dc3",
+ "sources": "246e6cf2552f906ef9f366d991700b4ea99963e93013470d8db6fdf19a5021de"
+ },
+ "version": "0.11"
+ },
+ "com.squareup.okhttp3:okhttp": {
+ "shasums": {
+ "jar": "e27c7742448f816da1cac72b4ca283b0d7920749e09f5dd0ac017e40714a2efe",
+ "sources": "2dade1d534496d68302adba898eafd7b019cd60c91afb763a50f5bde02ca3f68"
+ },
+ "version": "3.11.0"
+ },
+ "com.squareup.okio:okio": {
+ "shasums": {
+ "jar": "4633c331f50642ebe795dc089d6a5928aff43071c9d17e7840a009eea2fe95a3",
+ "sources": "ccc34a4ef40021db61ce5c3ee796cca1a3fcc869ea292bb1ce4b5e7708034158"
+ },
+ "version": "1.14.0"
+ },
+ "com.typesafe.akka:akka-actor_2.12": {
+ "shasums": {
+ "jar": "51ed6589759674381ebc2e50f2b3c78a6ac73b66d91823aff36e2c31b2ade30f",
+ "sources": "eb7e716a34f57ad9e5089bb5458a607592cc9ad8f2762ad6034484c18de02aef"
+ },
+ "version": "2.5.26"
+ },
+ "com.typesafe.akka:akka-http-core_2.12": {
+ "shasums": {
+ "jar": "2c4b31ac7c722a20feee465316b1b18460080d80d1bc6dea7b751a686711b8f5",
+ "sources": "86bfc56059da447612a9daf9d025806f82a95486bbd2e1d3fb2362dde7052e11"
+ },
+ "version": "10.1.11"
+ },
+ "com.typesafe.akka:akka-parsing_2.12": {
+ "shasums": {
+ "jar": "cee22a5dc468aef174c84d46dad58e65f70c47e3258244b9ea1c11c47f4597a1",
+ "sources": "7444e238f9e6a48b6c9e8e6ad320ff961f9c644b50a4a889eaac45d4cc25e50a"
+ },
+ "version": "10.1.11"
+ },
+ "com.typesafe.akka:akka-protobuf_2.12": {
+ "shasums": {
+ "jar": "09b7e6982bad6794bbac249b2ab3330e2b324611703496415ab5da06dd8e48e2",
+ "sources": "c715ff479492c2f3bf360f2817f954a8a51eab4b7a8f34d801fc2a6c68f636ee"
+ },
+ "version": "2.5.26"
+ },
+ "com.typesafe.akka:akka-slf4j_2.12": {
+ "shasums": {
+ "jar": "35a926d2ed023dfd15655cc670438081404e40e47b30522da5db596c8bf94684",
+ "sources": "64b647ffff17608ce44ce31f39e889b32156ab40a0e97871368617736d9cdd2b"
+ },
+ "version": "2.5.26"
+ },
+ "com.typesafe.akka:akka-stream_2.12": {
+ "shasums": {
+ "jar": "9d1d3852215d155ac14869cbee4779e9642784c7a9378d0534e6a1e1efd577bd",
+ "sources": "7f693c2030e49ef20ef9532e3a40b5c053fb73e5a49ec4d8a690a4806b4f4f62"
+ },
+ "version": "2.5.26"
+ },
+ "com.typesafe.netty:netty-reactive-streams": {
+ "shasums": {
+ "jar": "dd66261c22d2d19141e5be03909faa3d8fab5cd75b1a799ccc1344f11627f921",
+ "sources": "6d56be9fd1854a7fea7bb2d03a1a83f375271ea3f3a003b6bc4d67dcd52cf61f"
+ },
+ "version": "2.0.3"
+ },
+ "com.typesafe.netty:netty-reactive-streams-http": {
+ "shasums": {
+ "jar": "e6966e9b607ac42ac0a806c9fb28d277b72bda98fbf849c33be098d98c9f9453",
+ "sources": "11e2d27ceb7ffd3fba7bf840105823ba4833ac60527346c5058874bcab43ae4b"
+ },
+ "version": "2.0.3"
+ },
+ "com.typesafe.play:build-link": {
+ "shasums": {
+ "jar": "8cf6bd807ac797d264f903d0e5fb5f10b95ece467b5050893ec068d2fb17d8fd",
+ "sources": "28e05424f103718d9e27543b0013059f692b05f1d9533758b70cf8eb6978946f"
+ },
+ "version": "2.7.4"
+ },
+ "com.typesafe.play:play-akka-http-server_2.12": {
+ "shasums": {
+ "jar": "f84391c2b9338153f55129b44ecc8c3dd028238abd1725b31dccd42b194b3398",
+ "sources": "b8d263280d625afc111afac23ecf8371c4997794001ba2e12ab3791ee58dbfd3"
+ },
+ "version": "2.7.4"
+ },
+ "com.typesafe.play:play-exceptions": {
+ "shasums": {
+ "jar": "d3da61308e6a79d56910f665261ac4dca985ad5941606bb23c3a4822605b2158",
+ "sources": "5c78955a2d8c6821cd673e310c99d5decdc51f78b28692a46978659039406498"
+ },
+ "version": "2.7.4"
+ },
+ "com.typesafe.play:play-functional_2.12": {
+ "shasums": {
+ "jar": "c26915573315fcb1af7ff53a15ba6ac1e35eb15e82d09e74b53e66e0f305dc07",
+ "sources": "0a8399e5b0671d2d3fd6c54a16e6e371a866ac8810db79ef4b45491da3bacdb0"
+ },
+ "version": "2.7.4"
+ },
+ "com.typesafe.play:play-guice_2.12": {
+ "shasums": {
+ "jar": "77c0161bff8dd6cbaae95cfbaf90acf9b7609c5bb37bcf4205ffd1b0b9cfe131",
+ "sources": "4aeddec0e126b2a8c6f28aed7c06f79a30c30862e74950ddc9a02609877644cd"
+ },
+ "version": "2.7.4"
+ },
+ "com.typesafe.play:play-json_2.12": {
+ "shasums": {
+ "jar": "32bf61fd9d1b1a6fa8b9d39c4409a73844112f56e7db5c29c174ab79e7a3e880",
+ "sources": "b50b28d8687ad0690b1a72d59f846bdb16955d0a58d03a6bded43b25e3d9ed97"
+ },
+ "version": "2.7.4"
+ },
+ "com.typesafe.play:play-netty-server_2.12": {
+ "shasums": {
+ "jar": "7f5e850c5f60f3b6eb04b14f4d5fa8fd06ac96d81bd3f9160ba84b52895e3d9d",
+ "sources": "fa8e4ae3bbecd043b8efc5218ca05faa9f50b10104ba650ae41ef2a057bed9d2"
+ },
+ "version": "2.7.4"
+ },
+ "com.typesafe.play:play-server_2.12": {
+ "shasums": {
+ "jar": "57daa60a91aa8829e93fe3d3ba3886d55df69e96613e8addf14e69c2c62f96e2",
+ "sources": "74e0daf3396094880a3b5d69a8706b65183b0f4e229d2d9ec281d149b4128bd3"
+ },
+ "version": "2.7.4"
+ },
+ "com.typesafe.play:play-specs2_2.12": {
+ "shasums": {
+ "jar": "870314b098a6958398d784ff25dbd8bbc0c18d1555a2346a6bfd3b1770309800",
+ "sources": "33f76812e741dc0f3d7c81586470ac231e706b7c9e7555343b5246861589d515"
+ },
+ "version": "2.7.4"
+ },
+ "com.typesafe.play:play-streams_2.12": {
+ "shasums": {
+ "jar": "c7233f2e7e2d31212e990754caeb1ee853544f1c9448f6fd97c0fad187d6b857",
+ "sources": "05e20e6ab5c6fde3d1372d4fd00ec17f290caae216d71606be77d5887bac2a54"
+ },
+ "version": "2.7.4"
+ },
+ "com.typesafe.play:play-test_2.12": {
+ "shasums": {
+ "jar": "5b394e70b5e602ca0ad54f9f31533299f0b2717fe638b13f403b6e30a58b30f2",
+ "sources": "9fbb6d799f0cad0099c19abc2a18c9a45ae94b25ba33486e6f377296820d5361"
+ },
+ "version": "2.7.4"
+ },
+ "com.typesafe.play:play_2.12": {
+ "shasums": {
+ "jar": "a2ae298f1e8a2883645da5b80047e93dd9f02199a532ab5f8d622bc0ae267d7d",
+ "sources": "3474d4a919decb7661f026658603efd4f44f679ed753e692c161a5c961b178e5"
+ },
+ "version": "2.7.4"
+ },
+ "com.typesafe.play:twirl-api_2.12": {
+ "shasums": {
+ "jar": "a7887a19bcd7ec2e76bc43ea10f2ac73a8d2cd1fe154819905652aa422675fa2",
+ "sources": "66f51aa6198090b88dc7d44ddc748df210a72a651a4ae28a0075ac9b6a925250"
+ },
+ "version": "1.4.2"
+ },
+ "com.typesafe:config": {
+ "shasums": {
+ "jar": "b5f1d6071f1548d05be82f59f9039c7d37a1787bd8e3c677e31ee275af4a4621",
+ "sources": "fcd7c3070417c776b313cc559665c035d74e3a2b40a89bbb0e9bff6e567c9cc8"
+ },
+ "version": "1.3.3"
+ },
+ "com.typesafe:ssl-config-core_2.12": {
+ "shasums": {
+ "jar": "481ef324783374d8ab2e832f03754d80efa1a9a37d82ea4e0d2ed4cd61b0e221",
+ "sources": "a3ada946f01a3654829f6a925f61403f2ffd8baaec36f3c2f9acd798034f7369"
+ },
+ "version": "0.3.8"
+ },
+ "commons-codec:commons-codec": {
+ "shasums": {
+ "jar": "4241dfa94e711d435f29a4604a3e2de5c4aa3c165e23bd066be6fc1fc4309569",
+ "sources": "dfae68268ce86f1a18fc45b99317c13d6c9d252f001d37961e79a51076808986"
+ },
+ "version": "1.10"
+ },
+ "commons-io:commons-io": {
+ "shasums": {
+ "jar": "f877d304660ac2a142f3865badfc971dec7ed73c747c7f8d5d2f5139ca736513",
+ "sources": "71bc251eb4bd011b60b5ce6adc8f473de10e4851207a40c14434604b288b31bf"
+ },
+ "version": "2.6"
+ },
+ "commons-logging:commons-logging": {
+ "shasums": {
+ "jar": "daddea1ea0be0f56978ab3006b8ac92834afeefbd9b7e4e6316fca57df0fa636",
+ "sources": "44347acfe5860461728e9cb33251e97345be36f8a0dfd5c5130c172559455f41"
+ },
+ "version": "1.2"
+ },
+ "commons-net:commons-net": {
+ "shasums": {
+ "jar": "d3b3866c61a47ba3bf040ab98e60c3010d027da0e7a99e1755e407dd47bc2702",
+ "sources": "5024a2b980df7bec5f837177775ebf0e5bec25374deaca65f02571fe65ed52f5"
+ },
+ "version": "3.6"
+ },
+ "io.jsonwebtoken:jjwt": {
+ "shasums": {
+ "jar": "56e254d6a8d2306dc93e9ae2d81bf841481637f98b84847470c06cf71160d143",
+ "sources": "0b801d167d11b57ec00094570bfdfcd52107f863e6e47428ba9640c3225fcc67"
+ },
+ "version": "0.9.1"
+ },
+ "io.netty:netty-buffer": {
+ "shasums": {
+ "jar": "03f4cc9bf6ec527ed271e60948a51817c98e3cdd1dfc504beb6b9e1653767626",
+ "sources": "2c17514b4e4fe7264917881e34252143f60ae121d6590beb82a0ee55713bbd86"
+ },
+ "version": "4.1.43.Final"
+ },
+ "io.netty:netty-codec": {
+ "shasums": {
+ "jar": "52e9eeb3638a8ed0911c72a508c05fa4f9d3391125eae46f287d3a8a0776211d",
+ "sources": "e28e65623bdb8469007992adb40dce76931554c4786f9d9a22f6a10017362f68"
+ },
+ "version": "4.1.34.Final"
+ },
+ "io.netty:netty-codec-http": {
+ "shasums": {
+ "jar": "5df5556ef6b0e7ce7c72a359e4ca774fcdf8d8fe12f0b6332715eaa44cfe41f8",
+ "sources": "6a0f59f867fdbf4495d1659dde883504df0c5c84f625cb4030870ecb0e19a9b2"
+ },
+ "version": "4.1.34.Final"
+ },
+ "io.netty:netty-common": {
+ "shasums": {
+ "jar": "729737a2a57c460d3543aa309cbf971ad2f0ffec431751d48409f5e865bae88e",
+ "sources": "d240501384b5b5927832f7624ba484dc87454a5adf8754eda993c0c2f9a3f993"
+ },
+ "version": "4.1.43.Final"
+ },
+ "io.netty:netty-handler": {
+ "shasums": {
+ "jar": "035616801fe9894ca2490832cf9976536dac740f41e90de1cdd4ba46f04263d1",
+ "sources": "135fec6fa77276aa63e1b7dca0e57beec2460c83fa255cad4a54ac48f6ed3f52"
+ },
+ "version": "4.1.34.Final"
+ },
+ "io.netty:netty-resolver": {
+ "shasums": {
+ "jar": "f39b887d6fcc56de1b144ef2e58d9232d78e9c0e5994a90fa4e6645074bea17e",
+ "sources": "dc9c4210c7acba3953b4d31bc35913d1e3d206003e0ac3b8e9eeb6f32149cc84"
+ },
+ "version": "4.1.43.Final"
+ },
+ "io.netty:netty-transport": {
+ "shasums": {
+ "jar": "94f2b881f1c8d62afe9f349bf6c0ea0c8e58811715c74282872c735069b78503",
+ "sources": "e064da58f75210e21c0bf7066d8d9a6fcd377feb20cfd86bc5d14db09d7409ea"
+ },
+ "version": "4.1.43.Final"
+ },
+ "io.netty:netty-transport-native-epoll": {
+ "shasums": {
+ "linux-x86_64": "abdfa866770d16ff575b2ad499fbeba28153dcad50178b4e92d9e19dbff9ee4c",
+ "sources": "af840af921b8ca50f16cbf9a3cc102c13c60c9b7f56dc958a676e004a99bde37"
+ },
+ "version": "4.1.43.Final"
+ },
+ "io.netty:netty-transport-native-unix-common": {
+ "shasums": {
+ "jar": "52096f19e091d9e58a107fb111404b93208ab040b3ad37e255caed6481bdd988",
+ "sources": "02b8703e5844b90fb4667564940ff5d4a2623e2982be1c63e2e39544e2b83a73"
+ },
+ "version": "4.1.43.Final"
+ },
+ "javax.activation:javax.activation-api": {
+ "shasums": {
+ "jar": "43fdef0b5b6ceb31b0424b208b930c74ab58fac2ceeb7b3f6fd3aeb8b5ca4393",
+ "sources": "d7411fb29089cafa4b77493f10bfb52832cd1976948903d0b039e12b0bd70334"
+ },
+ "version": "1.2.0"
+ },
+ "javax.inject:javax.inject": {
+ "shasums": {
+ "jar": "91c77044a50c481636c32d916fd89c9118a72195390452c81065080f957de7ff",
+ "sources": "c4b87ee2911c139c3daf498a781967f1eb2e75bc1a8529a2e7b328a15d0e433e"
+ },
+ "version": "1"
+ },
+ "javax.transaction:jta": {
+ "shasums": {
+ "jar": "b8ec163b4a47bad16f9a0b7d03c3210c6b0a29216d768031073ac20817c0ba50",
+ "sources": "2284e633f47cb8dcee40f52fcb8814334b3a163495c1f141e3fba00ad242f3fa"
+ },
+ "version": "1.1"
+ },
+ "javax.xml.bind:jaxb-api": {
+ "shasums": {
+ "jar": "88b955a0df57880a26a74708bc34f74dcaf8ebf4e78843a28b50eae945732b06",
+ "sources": "d69dc2c28833df5fb6e916efae01477ae936326b342d479a43539b0131c96b9d"
+ },
+ "version": "2.3.1"
+ },
+ "joda-time:joda-time": {
+ "shasums": {
+ "jar": "d269671656767e05a58dd634cbafc36ed70d417220b058d11c0d88dfd281616d",
+ "sources": "4315745ec85d80032ae038ba74cc7d116e0d92b9d45e6ab13673c2f6474e7192"
+ },
+ "version": "2.10.1"
+ },
+ "junit:junit": {
+ "shasums": {
+ "jar": "59721f0805e223d84b90677887d9ff567dc534d7c502ca903c0c2b17f05c116a",
+ "sources": "9f43fea92033ad82bcad2ae44cec5c82abc9d6ee4b095cab921d11ead98bf2ff"
+ },
+ "version": "4.12"
+ },
+ "net.bytebuddy:byte-buddy": {
+ "shasums": {
+ "jar": "a27350be602caea67a33d31281496c84c69b5ab34ddc228e9ff2253fc8f9cd31",
+ "sources": "f72e7e29cc321424af33aef71c5776e76a83b2c6b80414ad3602083fa90b4ae6"
+ },
+ "version": "1.9.3"
+ },
+ "net.bytebuddy:byte-buddy-agent": {
+ "shasums": {
+ "jar": "547288e013a9d1f4a4ce2ab84c24e3edda6e433c7fa6b2c3c3613932671b05b1",
+ "sources": "e45132cfb9534d5de183517374b71ec83c770e0524a5b204b614c57b753f4813"
+ },
+ "version": "1.9.3"
+ },
+ "net.sourceforge.htmlunit:htmlunit": {
+ "shasums": {
+ "jar": "523c867d31c7c69b178a0ec7d591b98645514b5d536c179e6318c43f6f1e8b58",
+ "sources": "ce13797248590696eacdf14f4f80d817a6a27628b4bfc50fcd46215c02c0bf8c"
+ },
+ "version": "2.33"
+ },
+ "net.sourceforge.htmlunit:htmlunit-core-js": {
+ "shasums": {
+ "jar": "c001282eb76a3417490d517d45496e2ddc6f98aeb96c168c51f550ec6cc8c525",
+ "sources": "018b0687f3db611657161d29c9126f5201776e47d6b8ac233b4638d46805976e"
+ },
+ "version": "2.33"
+ },
+ "net.sourceforge.htmlunit:htmlunit-cssparser": {
+ "shasums": {
+ "jar": "0738f77fe9def88ed5f08596f1ccd8261b44b0b348e498dcd776fd46f190f030",
+ "sources": "09308708aecb9dc039689ff7dc661d199fbc02a68c244bdd67c20b65dcb5b04a"
+ },
+ "version": "1.2.0"
+ },
+ "net.sourceforge.htmlunit:neko-htmlunit": {
+ "shasums": {
+ "jar": "f7733c8c1c521a915827c9a4495e776ece7a47bd5e24056ef0aca61197045b2a",
+ "sources": "37a5a1ac4efde4c2bf6d3c4fabe046615f5a0b22672b6b40289d8509d96336e0"
+ },
+ "version": "2.33"
+ },
+ "org.apache.commons:commons-exec": {
+ "shasums": {
+ "jar": "cb49812dc1bfb0ea4f20f398bcae1a88c6406e213e67f7524fb10d4f8ad9347b",
+ "sources": "c121d8e70010092bafc56f358e7259ac484653db595aafea1e67a040f51aea66"
+ },
+ "version": "1.3"
+ },
+ "org.apache.commons:commons-lang3": {
+ "shasums": {
+ "jar": "9375aad1000cdd5bd3068e832de9802094fac1f145655251e141d5d0072fab9a",
+ "sources": "4be2bb042cee507fe8f3d93b15cf4f5d7bc6c69c41dc48df303c7ebe5fe8a8eb"
+ },
+ "version": "3.8"
+ },
+ "org.apache.commons:commons-text": {
+ "shasums": {
+ "jar": "d624e443240a5fccc93edbfe758df1b69c07d7eaab6fc5e8f98f77d86ced8259",
+ "sources": "00d006377bbe1667b8fdaa5bb3da35137c0d3bc28e7426276fcb1f5a50630eb2"
+ },
+ "version": "1.4"
+ },
+ "org.apache.httpcomponents:httpclient": {
+ "shasums": {
+ "jar": "c03f813195e7a80e3608d0ddd8da80b21696a4c92a6a2298865bf149071551c7",
+ "sources": "6a8076d9a98a5be9f1a055011166f9055b0aee2de133699db3ccf20377533e58"
+ },
+ "version": "4.5.6"
+ },
+ "org.apache.httpcomponents:httpcore": {
+ "shasums": {
+ "jar": "78ba1096561957db1b55200a159b648876430342d15d461277e62360da19f6fd",
+ "sources": "9c790a045566da7ce0a53276816d09e08543ccb46ba99db1cb8f5d3742dfaa1f"
+ },
+ "version": "4.4.10"
+ },
+ "org.apache.httpcomponents:httpmime": {
+ "shasums": {
+ "jar": "0b2b1102c18d3c7e05a77214b9b7501a6f6056174ae5604e0e256776eda7553e",
+ "sources": "3054d6f3160cdc1a4a60cf2a199f5acd2f3b209aa3e82e2f69e7028741847622"
+ },
+ "version": "4.5.6"
+ },
+ "org.atteo.classindex:classindex": {
+ "shasums": {
+ "jar": "253b9fe61754a40417003b0977a10b7f4002a84c2e6a5a4dcbbdecdbe3f2a30d",
+ "sources": "87249b152c70178a856023bf5d38b9ba09b2a2812d845e34ffeb633a9a041bda"
+ },
+ "version": "3.4"
+ },
+ "org.checkerframework:checker-qual": {
+ "shasums": {
+ "jar": "64b02691c8b9d4e7700f8ee2e742dce7ea2c6e81e662b7522c9ee3bf568c040a",
+ "sources": "821c5c63a6f156a3bb498c5bbb613580d9d8f4134131a5627d330fc4018669d2"
+ },
+ "version": "2.5.2"
+ },
+ "org.codehaus.mojo:animal-sniffer-annotations": {
+ "shasums": {
+ "jar": "92654f493ecfec52082e76354f0ebf87648dc3d5cec2e3c3cdb947c016747a53",
+ "sources": "2571474a676f775a8cdd15fb9b1da20c4c121ed7f42a5d93fca0e7b6e2015b40"
+ },
+ "version": "1.17"
+ },
+ "org.eclipse.jetty.websocket:websocket-api": {
+ "shasums": {
+ "jar": "6f7ecb42601058ffe4a6c19c5340cac3ebf0f83e2e252b457558f104238278e3",
+ "sources": "4464a26113465acd280af2f29ec85bce1ff8df2f840997b56c54db775a888e77"
+ },
+ "version": "9.4.12.v20180830"
+ },
+ "org.eclipse.jetty.websocket:websocket-client": {
+ "shasums": {
+ "jar": "97c6882c858a75776773eaccc01739757c4e9f60a51613878c1f2b2ba03d91af",
+ "sources": "9211b385157095958c239e8069157528bf63981255a3c8d08696ebf22b02fe9a"
+ },
+ "version": "9.4.12.v20180830"
+ },
+ "org.eclipse.jetty.websocket:websocket-common": {
+ "shasums": {
+ "jar": "3c35aefa720c51e09532c16fdbfaaebd1af3e07dee699dacaba8e0ab0adf88e5",
+ "sources": "049620d52dd1558c3863ff8304ccf848012e47879679c6f22bb7e6343703d41c"
+ },
+ "version": "9.4.12.v20180830"
+ },
+ "org.eclipse.jetty:jetty-client": {
+ "shasums": {
+ "jar": "62efbbfda88cd4f7644242c4b4df8f3b0a671bfeafea7682dabe00352ba07db7",
+ "sources": "3591c5e056070481475941382ccedb70ff18423f7d3cdfd554604a24fc940dc1"
+ },
+ "version": "9.4.12.v20180830"
+ },
+ "org.eclipse.jetty:jetty-http": {
+ "shasums": {
+ "jar": "20547da653be9942cc63f57e632a732608559aebde69753bc7312cfe16e8d9c0",
+ "sources": "c1be08f73222c163032d20ca7b76884be41a85035a69798f4b110d9e034d2647"
+ },
+ "version": "9.4.12.v20180830"
+ },
+ "org.eclipse.jetty:jetty-io": {
+ "shasums": {
+ "jar": "ab1784abbb9e0ed0869ab6568fe46f1faa79fb5e948cf96450daecd9d27ba1db",
+ "sources": "45cd082bde415a5efb49d2a6182b920317bb7a55f4ab2c2a9c9d5551fdce4977"
+ },
+ "version": "9.4.12.v20180830"
+ },
+ "org.eclipse.jetty:jetty-util": {
+ "shasums": {
+ "jar": "60ad53e118a3e7d10418b155b9944d90b2e4e4c732e53ef4f419473288d3f48c",
+ "sources": "2ed0368edc7635bfc87a93ea2bdca51b1716b698a81c01b59f6c8176e17f5576"
+ },
+ "version": "9.4.12.v20180830"
+ },
+ "org.eclipse.jetty:jetty-xml": {
+ "shasums": {
+ "jar": "5b8298ab3d43ddaf0941d41f51b82c8ae23a247da055fa161b752ab9495155ed",
+ "sources": "cff45fa98d17bc8ba4734e29638a0e71e38da4c7e33766b1f93cc8a617ddc503"
+ },
+ "version": "9.4.12.v20180830"
+ },
+ "org.fluentlenium:fluentlenium-core": {
+ "shasums": {
+ "jar": "53ad19567d87836e0600d5b01f096d6ad4ab64ba4f30be5f82ca02fb7f264d79",
+ "sources": "80693dc08ddeecc42a97c56192b93e91df614f86129b84494a76a60da04ecf0c"
+ },
+ "version": "3.7.1"
+ },
+ "org.hamcrest:hamcrest-core": {
+ "shasums": {
+ "jar": "66fdef91e9739348df7a096aa384a5685f4e875584cce89386a7a47251c4d8e9",
+ "sources": "e223d2d8fbafd66057a8848cc94222d63c3cedd652cc48eddc0ab5c39c0f84df"
+ },
+ "version": "1.3"
+ },
+ "org.mockito:mockito-core": {
+ "shasums": {
+ "jar": "d77e018b6bc211d78ddcec54bc508732c4677b9a9eb9103793be85441b20bc5d",
+ "sources": "2e624439ee1de251c0e963a7183f47383eb67b29260d175ab6688675e05c9342"
+ },
+ "version": "2.23.4"
+ },
+ "org.objenesis:objenesis": {
+ "shasums": {
+ "jar": "5e168368fbc250af3c79aa5fef0c3467a2d64e5a7bd74005f25d8399aeb0708d",
+ "sources": "52d9f4dba531677fc074eff00ea07f22a1d42e5a97cc9e8571c4cd3d459b6be0"
+ },
+ "version": "2.6"
+ },
+ "org.reactivestreams:reactive-streams": {
+ "shasums": {
+ "jar": "cc09ab0b140e0d0496c2165d4b32ce24f4d6446c0a26c5dc77b06bdf99ee8fae",
+ "sources": "963a6480f46a64013d0f144ba41c6c6e63c4d34b655761717a436492886f3667"
+ },
+ "version": "1.0.2"
+ },
+ "org.scala-lang.modules:scala-java8-compat_2.12": {
+ "shasums": {
+ "jar": "1875d3cf1399bb2d3675e5852cd18f282f069e7c38e35b2fff553eefd6428bd8",
+ "sources": "1383c220b0c25125841d7afcd9f0c580d5fa6ef8872d07477123a8e232d86b14"
+ },
+ "version": "0.9.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": "0a57044d10895f8d3dd66ad4286891f607169d948845ac51e17b4c1cf0ab569d",
+ "sources": "a6f873aeb9b861848e0d0b4ec368a3f1682e33bdf11a82ce26f0bfe5fb197647"
+ },
+ "version": "2.12.10"
+ },
+ "org.scala-lang:scala-reflect": {
+ "shasums": {
+ "jar": "56b609e1bab9144fb51525bfa01ccd72028154fc40a58685a1e9adcbe7835730",
+ "sources": "c3a883670038f8030c41e5e3840d592e2c8bd89bf33d7d42a15c60f1207b9a32"
+ },
+ "version": "2.12.10"
+ },
+ "org.scala-sbt:test-interface": {
+ "shasums": {
+ "jar": "15f70b38bb95f3002fec9aea54030f19bb4ecfbad64c67424b5e5fea09cd749e",
+ "sources": "c314491c9df4f0bd9dd125ef1d51228d70bd466ee57848df1cd1b96aea18a5ad"
+ },
+ "version": "1.0"
+ },
+ "org.seleniumhq.selenium:htmlunit-driver": {
+ "shasums": {
+ "jar": "8d27175c351ed57b3151212fac64905f41a5c2f9a96ecb91bc74efaf3ddf8375",
+ "sources": "fb0c6864850eaaf3076520ad81ada3c2f734f640350cd91e849f91a7e43ec232"
+ },
+ "version": "2.33.3"
+ },
+ "org.seleniumhq.selenium:selenium-api": {
+ "shasums": {
+ "jar": "8bfd5a736eccfc08866301ffc9b7f529e55976355c5799bed8392486df64dee5",
+ "sources": "91e6c542fbb9b78082a149c8fb012dd439a18b36e69ff25d12279a0392d4c541"
+ },
+ "version": "3.141.59"
+ },
+ "org.seleniumhq.selenium:selenium-firefox-driver": {
+ "shasums": {
+ "jar": "3e6edcb1e96a207bf98865cf4a56f0e1e2ffc478da2cf056644aec1c89c51fea",
+ "sources": "a98b6cd891ec6ab49c94af7736e493940457713c2c4985326afc16c9233be504"
+ },
+ "version": "3.141.59"
+ },
+ "org.seleniumhq.selenium:selenium-remote-driver": {
+ "shasums": {
+ "jar": "9829fe57adf36743d785d0c2e7db504ba3ba0a3aacac652b8867cc854d2dfc45",
+ "sources": "aad98064715728567784c00915692b3075c0c1aad80ca14518340868c8296597"
+ },
+ "version": "3.141.59"
+ },
+ "org.seleniumhq.selenium:selenium-support": {
+ "shasums": {
+ "jar": "2c74196d15277ce6003454d72fc3434091dbf3ba65060942719ba551509404d8",
+ "sources": "70112a60fd5750918a4ee45e7487f6bea9a6b500eeabf93e141b36541f51d096"
+ },
+ "version": "3.141.59"
+ },
+ "org.slf4j:jcl-over-slf4j": {
+ "shasums": {
+ "jar": "2800417ecc5c927cce2b8a2cd22f0933e4006023c4e4fb255985a27746f5573c",
+ "sources": "0dadaae77ca9b20ca1945c39e425648cb7d2ed29dde65aac100dae9b6f6e3e5f"
+ },
+ "version": "1.7.26"
+ },
+ "org.slf4j:jul-to-slf4j": {
+ "shasums": {
+ "jar": "0f3b6dfbfb261e3e2b71ea88574452f36c46fec016063439eb8f60083291918e",
+ "sources": "8eebb18952ffd7267feff33658bd17470129aa2e36958176cbff716b7c7fe675"
+ },
+ "version": "1.7.26"
+ },
+ "org.slf4j:slf4j-api": {
+ "shasums": {
+ "jar": "6d9e5b86cfd1dd44c676899285b5bb4fa0d371cf583e8164f9c8a0366553242b",
+ "sources": "9e25ad98a324e6685752fd01fbbd0588ceec5df564e53c49486946a2d19dc482"
+ },
+ "version": "1.7.26"
+ },
+ "org.specs2:specs2-common_2.12": {
+ "shasums": {
+ "jar": "3adf0501036081f8314853030775dda79d879dbd9b57f4ec6836f2b220f84dfa",
+ "sources": "49d15a046fab2a52cbbaf74e7d11500e0b0231f71f309a581c05089e62528658"
+ },
+ "version": "4.7.0"
+ },
+ "org.specs2:specs2-core_2.12": {
+ "shasums": {
+ "jar": "f34c0bddab74432cb0524f18ddae92369936cfd40f76f896857c2f193357018d",
+ "sources": "3ce357d6143a2c8457059a86206552001d3bbdadab5199e71389fd9270190079"
+ },
+ "version": "4.7.0"
+ },
+ "org.specs2:specs2-fp_2.12": {
+ "shasums": {
+ "jar": "279baac59790c83f7de0de03ad7fc468f4dd5594f94dc2bc12e35d8d7694c4a1",
+ "sources": "fb7c9e16589a19bed1002a5ab9d473151ec8b2bd6253e13877fe53749b349dd8"
+ },
+ "version": "4.7.0"
+ },
+ "org.specs2:specs2-junit_2.12": {
+ "shasums": {
+ "jar": "eeb7ca677273b256d1b0c4b610b3b1ea5eb436005b316641bde9582f25c5a3fb",
+ "sources": "af64659fde831171a7403c997efd895292554d2474e9ea7c263618586ea5600f"
+ },
+ "version": "4.5.1"
+ },
+ "org.specs2:specs2-matcher_2.12": {
+ "shasums": {
+ "jar": "e15a253fed025db193c63a188eb212c2bb7160ab6bb70a9a841bbc2686bca18b",
+ "sources": "d2ec230cea850db83045a549b9f5897020f953252d5cf70c04294d8828e27ba0"
+ },
+ "version": "4.7.0"
+ },
+ "org.specs2:specs2-mock_2.12": {
+ "shasums": {
+ "jar": "1ee77f935757654c00511d0b452b8472042a5b9bd235535e7f2968613822b7c5",
+ "sources": "dac556f40a776346d91700926bb931003ea5bbb4427f3f51ac1233eef5782ec6"
+ },
+ "version": "4.5.1"
+ },
+ "xalan:serializer": {
+ "shasums": {
+ "jar": "e8f5b4340d3b12a0cfa44ac2db4be4e0639e479ae847df04c4ed8b521734bb4a",
+ "sources": "15f88b71e32817c6b4d5977d54ad2fe1b18e82a8ab9a1d68ca568fb0aabb2ae6"
+ },
+ "version": "2.7.2"
+ },
+ "xalan:xalan": {
+ "shasums": {
+ "jar": "a44bd80e82cb0f4cfac0dac8575746223802514e3cec9dc75235bc0de646af14",
+ "sources": "15f88b71e32817c6b4d5977d54ad2fe1b18e82a8ab9a1d68ca568fb0aabb2ae6"
+ },
+ "version": "2.7.2"
+ },
+ "xerces:xercesImpl": {
+ "shasums": {
+ "jar": "b50d3a4ca502faa4d1c838acb8aa9480446953421f7327e338c5dda3da5e76d0",
+ "sources": "bbb819a8496f85526cec3c29b930df97ceb6c23060d057030f2c89efe17d7c74"
+ },
+ "version": "2.12.0"
+ },
+ "xml-apis:xml-apis": {
+ "shasums": {
+ "jar": "a840968176645684bb01aed376e067ab39614885f9eee44abe35a5f20ebe7fad",
+ "sources": "5db8b94589e334283e01075458cfae920995e37ab997cb3b475fd0667b3158b2"
+ },
+ "version": "1.4.01"
}
+ },
+ "dependencies": {
+ "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.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.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",
+ "org.codehaus.mojo:animal-sniffer-annotations"
+ ],
+ "com.google.inject.extensions:guice-assistedinject": [
+ "com.google.inject:guice"
+ ],
+ "com.google.inject:guice": [
+ "aopalliance:aopalliance",
+ "com.google.guava:guava",
+ "javax.inject:javax.inject"
+ ],
+ "com.novocode:junit-interface": [
+ "junit:junit",
+ "org.scala-sbt:test-interface"
+ ],
+ "com.squareup.okhttp3:okhttp": [
+ "com.squareup.okio:okio"
+ ],
+ "com.typesafe.akka:akka-actor_2.12": [
+ "com.typesafe:config",
+ "org.scala-lang.modules:scala-java8-compat_2.12",
+ "org.scala-lang:scala-library"
+ ],
+ "com.typesafe.akka:akka-http-core_2.12": [
+ "com.typesafe.akka:akka-parsing_2.12",
+ "org.scala-lang:scala-library"
+ ],
+ "com.typesafe.akka:akka-parsing_2.12": [
+ "org.scala-lang:scala-library"
+ ],
+ "com.typesafe.akka:akka-protobuf_2.12": [
+ "org.scala-lang:scala-library"
+ ],
+ "com.typesafe.akka:akka-slf4j_2.12": [
+ "com.typesafe.akka:akka-actor_2.12",
+ "org.scala-lang:scala-library",
+ "org.slf4j:slf4j-api"
+ ],
+ "com.typesafe.akka:akka-stream_2.12": [
+ "com.typesafe.akka:akka-actor_2.12",
+ "com.typesafe.akka:akka-protobuf_2.12",
+ "com.typesafe:ssl-config-core_2.12",
+ "org.reactivestreams:reactive-streams",
+ "org.scala-lang:scala-library"
+ ],
+ "com.typesafe.netty:netty-reactive-streams": [
+ "io.netty:netty-handler",
+ "org.reactivestreams:reactive-streams"
+ ],
+ "com.typesafe.netty:netty-reactive-streams-http": [
+ "com.typesafe.netty:netty-reactive-streams",
+ "io.netty:netty-codec-http"
+ ],
+ "com.typesafe.play:build-link": [
+ "com.typesafe.play:play-exceptions"
+ ],
+ "com.typesafe.play:play-akka-http-server_2.12": [
+ "com.typesafe.akka:akka-http-core_2.12",
+ "com.typesafe.play:play-server_2.12",
+ "com.typesafe.play:play-streams_2.12",
+ "org.scala-lang:scala-library"
+ ],
+ "com.typesafe.play:play-functional_2.12": [
+ "org.scala-lang:scala-library"
+ ],
+ "com.typesafe.play:play-guice_2.12": [
+ "com.google.inject.extensions:guice-assistedinject",
+ "com.google.inject:guice",
+ "com.typesafe.play:play_2.12",
+ "org.scala-lang:scala-library"
+ ],
+ "com.typesafe.play:play-json_2.12": [
+ "com.fasterxml.jackson.core:jackson-annotations",
+ "com.fasterxml.jackson.core:jackson-core",
+ "com.fasterxml.jackson.core:jackson-databind",
+ "com.fasterxml.jackson.datatype:jackson-datatype-jdk8",
+ "com.fasterxml.jackson.datatype:jackson-datatype-jsr310",
+ "com.typesafe.play:play-functional_2.12",
+ "joda-time:joda-time",
+ "org.scala-lang:scala-library",
+ "org.scala-lang:scala-reflect"
+ ],
+ "com.typesafe.play:play-netty-server_2.12": [
+ "com.typesafe.netty:netty-reactive-streams-http",
+ "com.typesafe.play:play-server_2.12",
+ "io.netty:netty-transport-native-epoll:jar:linux-x86_64",
+ "org.scala-lang:scala-library"
+ ],
+ "com.typesafe.play:play-server_2.12": [
+ "com.typesafe.play:play_2.12",
+ "org.scala-lang:scala-library"
+ ],
+ "com.typesafe.play:play-specs2_2.12": [
+ "com.typesafe.play:play-test_2.12",
+ "org.scala-lang:scala-library",
+ "org.specs2:specs2-core_2.12",
+ "org.specs2:specs2-junit_2.12",
+ "org.specs2:specs2-mock_2.12"
+ ],
+ "com.typesafe.play:play-streams_2.12": [
+ "com.typesafe.akka:akka-stream_2.12",
+ "org.reactivestreams:reactive-streams",
+ "org.scala-lang.modules:scala-java8-compat_2.12",
+ "org.scala-lang:scala-library"
+ ],
+ "com.typesafe.play:play-test_2.12": [
+ "ch.qos.logback:logback-classic",
+ "com.google.code.findbugs:jsr305",
+ "com.google.guava:guava",
+ "com.google.inject.extensions:guice-assistedinject",
+ "com.google.inject:guice",
+ "com.novocode:junit-interface",
+ "com.typesafe.play:play-akka-http-server_2.12",
+ "com.typesafe.play:play-guice_2.12",
+ "com.typesafe.play:play-netty-server_2.12",
+ "junit:junit",
+ "org.fluentlenium:fluentlenium-core",
+ "org.scala-lang:scala-library",
+ "org.seleniumhq.selenium:htmlunit-driver",
+ "org.seleniumhq.selenium:selenium-api",
+ "org.seleniumhq.selenium:selenium-firefox-driver",
+ "org.seleniumhq.selenium:selenium-support"
+ ],
+ "com.typesafe.play:play_2.12": [
+ "com.fasterxml.jackson.core:jackson-annotations",
+ "com.fasterxml.jackson.core:jackson-core",
+ "com.fasterxml.jackson.core:jackson-databind",
+ "com.fasterxml.jackson.datatype:jackson-datatype-jdk8",
+ "com.fasterxml.jackson.datatype:jackson-datatype-jsr310",
+ "com.google.guava:guava",
+ "com.typesafe.akka:akka-actor_2.12",
+ "com.typesafe.akka:akka-slf4j_2.12",
+ "com.typesafe.play:build-link",
+ "com.typesafe.play:play-json_2.12",
+ "com.typesafe.play:play-streams_2.12",
+ "com.typesafe.play:twirl-api_2.12",
+ "com.typesafe:ssl-config-core_2.12",
+ "io.jsonwebtoken:jjwt",
+ "javax.inject:javax.inject",
+ "javax.transaction:jta",
+ "javax.xml.bind:jaxb-api",
+ "org.scala-lang.modules:scala-java8-compat_2.12",
+ "org.scala-lang.modules:scala-parser-combinators_2.12",
+ "org.scala-lang:scala-library",
+ "org.scala-lang:scala-reflect",
+ "org.slf4j:jcl-over-slf4j",
+ "org.slf4j:jul-to-slf4j",
+ "org.slf4j:slf4j-api"
+ ],
+ "com.typesafe.play:twirl-api_2.12": [
+ "org.scala-lang.modules:scala-xml_2.12",
+ "org.scala-lang:scala-library"
+ ],
+ "com.typesafe:ssl-config-core_2.12": [
+ "com.typesafe:config",
+ "org.scala-lang.modules:scala-parser-combinators_2.12",
+ "org.scala-lang:scala-library"
+ ],
+ "io.jsonwebtoken:jjwt": [
+ "com.fasterxml.jackson.core:jackson-databind"
+ ],
+ "io.netty:netty-buffer": [
+ "io.netty:netty-common"
+ ],
+ "io.netty:netty-codec": [
+ "io.netty:netty-buffer",
+ "io.netty:netty-common",
+ "io.netty:netty-transport"
+ ],
+ "io.netty:netty-codec-http": [
+ "io.netty:netty-buffer",
+ "io.netty:netty-codec",
+ "io.netty:netty-common",
+ "io.netty:netty-handler",
+ "io.netty:netty-transport"
+ ],
+ "io.netty:netty-handler": [
+ "io.netty:netty-buffer",
+ "io.netty:netty-codec",
+ "io.netty:netty-common",
+ "io.netty:netty-transport"
+ ],
+ "io.netty:netty-resolver": [
+ "io.netty:netty-common"
+ ],
+ "io.netty:netty-transport": [
+ "io.netty:netty-buffer",
+ "io.netty:netty-common",
+ "io.netty:netty-resolver"
+ ],
+ "io.netty:netty-transport-native-epoll:jar:linux-x86_64": [
+ "io.netty:netty-buffer",
+ "io.netty:netty-common",
+ "io.netty:netty-transport",
+ "io.netty:netty-transport-native-unix-common"
+ ],
+ "io.netty:netty-transport-native-unix-common": [
+ "io.netty:netty-buffer",
+ "io.netty:netty-common",
+ "io.netty:netty-transport"
+ ],
+ "javax.xml.bind:jaxb-api": [
+ "javax.activation:javax.activation-api"
+ ],
+ "junit:junit": [
+ "org.hamcrest:hamcrest-core"
+ ],
+ "net.sourceforge.htmlunit:htmlunit": [
+ "commons-io:commons-io",
+ "commons-logging:commons-logging",
+ "commons-net:commons-net",
+ "net.sourceforge.htmlunit:htmlunit-core-js",
+ "net.sourceforge.htmlunit:htmlunit-cssparser",
+ "net.sourceforge.htmlunit:neko-htmlunit",
+ "org.apache.commons:commons-lang3",
+ "org.apache.commons:commons-text",
+ "org.apache.httpcomponents:httpmime",
+ "org.eclipse.jetty.websocket:websocket-client",
+ "xalan:xalan"
+ ],
+ "net.sourceforge.htmlunit:neko-htmlunit": [
+ "xerces:xercesImpl"
+ ],
+ "org.apache.httpcomponents:httpclient": [
+ "commons-codec:commons-codec",
+ "commons-logging:commons-logging",
+ "org.apache.httpcomponents:httpcore"
+ ],
+ "org.apache.httpcomponents:httpmime": [
+ "org.apache.httpcomponents:httpclient"
+ ],
+ "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:jetty-xml"
+ ],
+ "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.eclipse.jetty:jetty-xml": [
+ "org.eclipse.jetty:jetty-util"
+ ],
+ "org.fluentlenium:fluentlenium-core": [
+ "commons-io:commons-io",
+ "org.apache.commons:commons-lang3",
+ "org.apache.httpcomponents:httpclient",
+ "org.atteo.classindex:classindex",
+ "org.seleniumhq.selenium:selenium-api",
+ "org.seleniumhq.selenium:selenium-remote-driver",
+ "org.seleniumhq.selenium:selenium-support"
+ ],
+ "org.mockito:mockito-core": [
+ "net.bytebuddy:byte-buddy",
+ "net.bytebuddy:byte-buddy-agent",
+ "org.objenesis:objenesis"
+ ],
+ "org.scala-lang.modules:scala-java8-compat_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"
+ ],
+ "org.seleniumhq.selenium:htmlunit-driver": [
+ "net.sourceforge.htmlunit:htmlunit"
+ ],
+ "org.seleniumhq.selenium:selenium-firefox-driver": [
+ "com.google.guava:guava",
+ "com.squareup.okhttp3:okhttp",
+ "com.squareup.okio:okio",
+ "net.bytebuddy:byte-buddy",
+ "org.apache.commons:commons-exec",
+ "org.seleniumhq.selenium:selenium-api",
+ "org.seleniumhq.selenium:selenium-remote-driver"
+ ],
+ "org.seleniumhq.selenium:selenium-remote-driver": [
+ "com.google.guava:guava",
+ "com.squareup.okhttp3:okhttp",
+ "com.squareup.okio:okio",
+ "net.bytebuddy:byte-buddy",
+ "org.apache.commons:commons-exec",
+ "org.seleniumhq.selenium:selenium-api"
+ ],
+ "org.seleniumhq.selenium:selenium-support": [
+ "com.google.guava:guava",
+ "com.squareup.okhttp3:okhttp",
+ "com.squareup.okio:okio",
+ "net.bytebuddy:byte-buddy",
+ "org.apache.commons:commons-exec",
+ "org.seleniumhq.selenium:selenium-api",
+ "org.seleniumhq.selenium:selenium-remote-driver"
+ ],
+ "org.slf4j:jcl-over-slf4j": [
+ "org.slf4j:slf4j-api"
+ ],
+ "org.slf4j:jul-to-slf4j": [
+ "org.slf4j:slf4j-api"
+ ],
+ "org.specs2:specs2-common_2.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",
+ "org.specs2:specs2-fp_2.12"
+ ],
+ "org.specs2:specs2-core_2.12": [
+ "org.scala-lang:scala-library",
+ "org.scala-sbt:test-interface",
+ "org.specs2:specs2-common_2.12",
+ "org.specs2:specs2-matcher_2.12"
+ ],
+ "org.specs2:specs2-fp_2.12": [
+ "org.scala-lang:scala-library"
+ ],
+ "org.specs2:specs2-junit_2.12": [
+ "junit:junit",
+ "org.scala-lang:scala-library",
+ "org.scala-sbt:test-interface",
+ "org.specs2:specs2-core_2.12"
+ ],
+ "org.specs2:specs2-matcher_2.12": [
+ "org.scala-lang:scala-library",
+ "org.specs2:specs2-common_2.12"
+ ],
+ "org.specs2:specs2-mock_2.12": [
+ "org.hamcrest:hamcrest-core",
+ "org.mockito:mockito-core",
+ "org.scala-lang:scala-library",
+ "org.scala-sbt:test-interface",
+ "org.specs2:specs2-core_2.12"
+ ],
+ "xalan:xalan": [
+ "xalan:serializer"
+ ],
+ "xerces:xercesImpl": [
+ "xml-apis:xml-apis"
+ ]
+ },
+ "skipped": [
+ "com.google.guava:listenablefuture:jar:sources"
+ ],
+ "packages": {
+ "aopalliance:aopalliance": [
+ "org.aopalliance.aop",
+ "org.aopalliance.intercept"
+ ],
+ "ch.qos.logback:logback-classic": [
+ "ch.qos.logback.classic",
+ "ch.qos.logback.classic.boolex",
+ "ch.qos.logback.classic.db",
+ "ch.qos.logback.classic.db.names",
+ "ch.qos.logback.classic.encoder",
+ "ch.qos.logback.classic.filter",
+ "ch.qos.logback.classic.gaffer",
+ "ch.qos.logback.classic.helpers",
+ "ch.qos.logback.classic.html",
+ "ch.qos.logback.classic.jmx",
+ "ch.qos.logback.classic.joran",
+ "ch.qos.logback.classic.joran.action",
+ "ch.qos.logback.classic.jul",
+ "ch.qos.logback.classic.layout",
+ "ch.qos.logback.classic.log4j",
+ "ch.qos.logback.classic.net",
+ "ch.qos.logback.classic.net.server",
+ "ch.qos.logback.classic.pattern",
+ "ch.qos.logback.classic.pattern.color",
+ "ch.qos.logback.classic.selector",
+ "ch.qos.logback.classic.selector.servlet",
+ "ch.qos.logback.classic.servlet",
+ "ch.qos.logback.classic.sift",
+ "ch.qos.logback.classic.spi",
+ "ch.qos.logback.classic.turbo",
+ "ch.qos.logback.classic.util",
+ "org.slf4j.impl"
+ ],
+ "ch.qos.logback:logback-core": [
+ "ch.qos.logback.core",
+ "ch.qos.logback.core.boolex",
+ "ch.qos.logback.core.db",
+ "ch.qos.logback.core.db.dialect",
+ "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.spi",
+ "ch.qos.logback.core.joran.util",
+ "ch.qos.logback.core.joran.util.beans",
+ "ch.qos.logback.core.layout",
+ "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.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.filter",
+ "com.fasterxml.jackson.core.format",
+ "com.fasterxml.jackson.core.io",
+ "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.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.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.google.code.findbugs:jsr305": [
+ "javax.annotation",
+ "javax.annotation.concurrent",
+ "javax.annotation.meta"
+ ],
+ "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:guice": [
+ "com.google.inject",
+ "com.google.inject.binder",
+ "com.google.inject.internal",
+ "com.google.inject.internal.asm",
+ "com.google.inject.internal.cglib.core",
+ "com.google.inject.internal.cglib.core.internal",
+ "com.google.inject.internal.cglib.proxy",
+ "com.google.inject.internal.cglib.reflect",
+ "com.google.inject.internal.cglib.transform",
+ "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.novocode:junit-interface": [
+ "com.novocode.junit"
+ ],
+ "com.squareup.okhttp3:okhttp": [
+ "okhttp3",
+ "okhttp3.internal",
+ "okhttp3.internal.cache",
+ "okhttp3.internal.cache2",
+ "okhttp3.internal.connection",
+ "okhttp3.internal.http",
+ "okhttp3.internal.http1",
+ "okhttp3.internal.http2",
+ "okhttp3.internal.io",
+ "okhttp3.internal.platform",
+ "okhttp3.internal.publicsuffix",
+ "okhttp3.internal.tls",
+ "okhttp3.internal.ws"
+ ],
+ "com.squareup.okio:okio": [
+ "okio"
+ ],
+ "com.typesafe.akka:akka-actor_2.12": [
+ "akka",
+ "akka.actor",
+ "akka.actor.dsl",
+ "akka.actor.dungeon",
+ "akka.actor.setup",
+ "akka.annotation",
+ "akka.compat",
+ "akka.dispatch",
+ "akka.dispatch.affinity",
+ "akka.dispatch.forkjoin",
+ "akka.dispatch.sysmsg",
+ "akka.event",
+ "akka.event.japi",
+ "akka.event.jul",
+ "akka.io",
+ "akka.io.dns",
+ "akka.io.dns.internal",
+ "akka.japi",
+ "akka.japi.function",
+ "akka.japi.pf",
+ "akka.japi.tuple",
+ "akka.pattern",
+ "akka.pattern.extended",
+ "akka.pattern.internal",
+ "akka.routing",
+ "akka.serialization",
+ "akka.util",
+ "akka.util.ccompat"
+ ],
+ "com.typesafe.akka:akka-http-core_2.12": [
+ "akka.http",
+ "akka.http.ccompat",
+ "akka.http.ccompat.imm",
+ "akka.http.impl.engine",
+ "akka.http.impl.engine.client",
+ "akka.http.impl.engine.client.pool",
+ "akka.http.impl.engine.parsing",
+ "akka.http.impl.engine.rendering",
+ "akka.http.impl.engine.server",
+ "akka.http.impl.engine.ws",
+ "akka.http.impl.model",
+ "akka.http.impl.model.parser",
+ "akka.http.impl.settings",
+ "akka.http.impl.util",
+ "akka.http.javadsl",
+ "akka.http.javadsl.model",
+ "akka.http.javadsl.model.headers",
+ "akka.http.javadsl.model.sse",
+ "akka.http.javadsl.model.ws",
+ "akka.http.javadsl.settings",
+ "akka.http.scaladsl",
+ "akka.http.scaladsl.model",
+ "akka.http.scaladsl.model.headers",
+ "akka.http.scaladsl.model.sse",
+ "akka.http.scaladsl.model.ws",
+ "akka.http.scaladsl.settings",
+ "akka.http.scaladsl.util"
+ ],
+ "com.typesafe.akka:akka-parsing_2.12": [
+ "akka.http.ccompat",
+ "akka.macros",
+ "akka.parboiled2",
+ "akka.parboiled2.support",
+ "akka.parboiled2.util",
+ "akka.shapeless",
+ "akka.shapeless.ops",
+ "akka.shapeless.syntax"
+ ],
+ "com.typesafe.akka:akka-protobuf_2.12": [
+ "akka.protobuf"
+ ],
+ "com.typesafe.akka:akka-slf4j_2.12": [
+ "akka.event.slf4j"
+ ],
+ "com.typesafe.akka:akka-stream_2.12": [
+ "akka.stream",
+ "akka.stream.actor",
+ "akka.stream.extra",
+ "akka.stream.impl",
+ "akka.stream.impl.fusing",
+ "akka.stream.impl.io",
+ "akka.stream.impl.io.compression",
+ "akka.stream.impl.streamref",
+ "akka.stream.javadsl",
+ "akka.stream.scaladsl",
+ "akka.stream.serialization",
+ "akka.stream.snapshot",
+ "akka.stream.stage",
+ "com.typesafe.sslconfig.akka",
+ "com.typesafe.sslconfig.akka.util"
+ ],
+ "com.typesafe.netty:netty-reactive-streams": [
+ "com.typesafe.netty"
+ ],
+ "com.typesafe.netty:netty-reactive-streams-http": [
+ "com.typesafe.netty.http"
+ ],
+ "com.typesafe.play:build-link": [
+ "play",
+ "play.core",
+ "play.core.server"
+ ],
+ "com.typesafe.play:play-akka-http-server_2.12": [
+ "akka.http.play",
+ "play.api.mvc.akkahttp",
+ "play.core.server",
+ "play.core.server.akkahttp"
+ ],
+ "com.typesafe.play:play-exceptions": [
+ "play.api"
+ ],
+ "com.typesafe.play:play-functional_2.12": [
+ "play.api.libs.functional",
+ "play.api.libs.functional.syntax"
+ ],
+ "com.typesafe.play:play-guice_2.12": [
+ "play.api.inject.guice",
+ "play.api.libs.concurrent",
+ "play.inject.guice",
+ "play.libs.akka"
+ ],
+ "com.typesafe.play:play-json_2.12": [
+ "play.api.libs.json",
+ "play.api.libs.json.jackson",
+ "play.api.libs.json.util"
+ ],
+ "com.typesafe.play:play-netty-server_2.12": [
+ "play.core.server",
+ "play.core.server.netty"
+ ],
+ "com.typesafe.play:play-server_2.12": [
+ "play.core.server",
+ "play.core.server.common",
+ "play.core.server.ssl",
+ "play.server"
+ ],
+ "com.typesafe.play:play-specs2_2.12": [
+ "play.api.test"
+ ],
+ "com.typesafe.play:play-streams_2.12": [
+ "play.api.libs.streams",
+ "play.libs.streams"
+ ],
+ "com.typesafe.play:play-test_2.12": [
+ "play.api.test",
+ "play.test"
+ ],
+ "com.typesafe.play:play_2.12": [
+ "controllers",
+ "models",
+ "play",
+ "play.api",
+ "play.api.controllers",
+ "play.api.data",
+ "play.api.data.format",
+ "play.api.data.validation",
+ "play.api.http",
+ "play.api.http.websocket",
+ "play.api.i18n",
+ "play.api.inject",
+ "play.api.internal.libs.concurrent",
+ "play.api.libs",
+ "play.api.libs.concurrent",
+ "play.api.libs.crypto",
+ "play.api.libs.typedmap",
+ "play.api.mvc",
+ "play.api.mvc.macros",
+ "play.api.mvc.request",
+ "play.api.routing",
+ "play.api.routing.sird",
+ "play.api.routing.sird.macroimpl",
+ "play.api.templates",
+ "play.components",
+ "play.controllers",
+ "play.core",
+ "play.core.cookie.encoding",
+ "play.core.formatters",
+ "play.core.j",
+ "play.core.parsers",
+ "play.core.routing",
+ "play.core.system",
+ "play.core.utils",
+ "play.http",
+ "play.http.websocket",
+ "play.i18n",
+ "play.inject",
+ "play.libs",
+ "play.libs.akka",
+ "play.libs.concurrent",
+ "play.libs.crypto",
+ "play.libs.exception",
+ "play.libs.reflect",
+ "play.libs.streams",
+ "play.libs.typedmap",
+ "play.mvc",
+ "play.routing",
+ "play.server",
+ "play.server.api",
+ "play.utils",
+ "views",
+ "views.html",
+ "views.html.defaultpages",
+ "views.html.helper",
+ "views.html.play20",
+ "views.js.helper",
+ "views.txt",
+ "views.xml"
+ ],
+ "com.typesafe.play:twirl-api_2.12": [
+ "play.twirl.api",
+ "play.twirl.api.utils"
+ ],
+ "com.typesafe:config": [
+ "com.typesafe.config",
+ "com.typesafe.config.impl",
+ "com.typesafe.config.parser"
+ ],
+ "com.typesafe:ssl-config-core_2.12": [
+ "com.typesafe.sslconfig.ssl",
+ "com.typesafe.sslconfig.ssl.debug",
+ "com.typesafe.sslconfig.util"
+ ],
+ "commons-codec:commons-codec": [
+ "org.apache.commons.codec",
+ "org.apache.commons.codec.binary",
+ "org.apache.commons.codec.digest",
+ "org.apache.commons.codec.language",
+ "org.apache.commons.codec.language.bm",
+ "org.apache.commons.codec.net"
+ ],
+ "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"
+ ],
+ "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"
+ ],
+ "io.jsonwebtoken:jjwt": [
+ "io.jsonwebtoken",
+ "io.jsonwebtoken.impl",
+ "io.jsonwebtoken.impl.compression",
+ "io.jsonwebtoken.impl.crypto",
+ "io.jsonwebtoken.lang"
+ ],
+ "io.netty:netty-buffer": [
+ "io.netty.buffer"
+ ],
+ "io.netty:netty-codec": [
+ "io.netty.handler.codec",
+ "io.netty.handler.codec.base64",
+ "io.netty.handler.codec.bytes",
+ "io.netty.handler.codec.compression",
+ "io.netty.handler.codec.json",
+ "io.netty.handler.codec.marshalling",
+ "io.netty.handler.codec.protobuf",
+ "io.netty.handler.codec.serialization",
+ "io.netty.handler.codec.string",
+ "io.netty.handler.codec.xml"
+ ],
+ "io.netty:netty-codec-http": [
+ "io.netty.handler.codec.http",
+ "io.netty.handler.codec.http.cookie",
+ "io.netty.handler.codec.http.cors",
+ "io.netty.handler.codec.http.multipart",
+ "io.netty.handler.codec.http.websocketx",
+ "io.netty.handler.codec.http.websocketx.extensions",
+ "io.netty.handler.codec.http.websocketx.extensions.compression",
+ "io.netty.handler.codec.rtsp",
+ "io.netty.handler.codec.spdy"
+ ],
+ "io.netty:netty-common": [
+ "io.netty.util",
+ "io.netty.util.collection",
+ "io.netty.util.concurrent",
+ "io.netty.util.internal",
+ "io.netty.util.internal.logging",
+ "io.netty.util.internal.shaded.org.jctools.queues",
+ "io.netty.util.internal.shaded.org.jctools.queues.atomic",
+ "io.netty.util.internal.shaded.org.jctools.util",
+ "io.netty.util.internal.svm"
+ ],
+ "io.netty:netty-handler": [
+ "io.netty.handler.flow",
+ "io.netty.handler.flush",
+ "io.netty.handler.ipfilter",
+ "io.netty.handler.logging",
+ "io.netty.handler.ssl",
+ "io.netty.handler.ssl.ocsp",
+ "io.netty.handler.ssl.util",
+ "io.netty.handler.stream",
+ "io.netty.handler.timeout",
+ "io.netty.handler.traffic"
+ ],
+ "io.netty:netty-resolver": [
+ "io.netty.resolver"
+ ],
+ "io.netty:netty-transport": [
+ "io.netty.bootstrap",
+ "io.netty.channel",
+ "io.netty.channel.embedded",
+ "io.netty.channel.group",
+ "io.netty.channel.internal",
+ "io.netty.channel.local",
+ "io.netty.channel.nio",
+ "io.netty.channel.oio",
+ "io.netty.channel.pool",
+ "io.netty.channel.socket",
+ "io.netty.channel.socket.nio",
+ "io.netty.channel.socket.oio"
+ ],
+ "io.netty:netty-transport-native-epoll:jar:linux-x86_64": [
+ "io.netty.channel.epoll"
+ ],
+ "io.netty:netty-transport-native-unix-common": [
+ "io.netty.channel.unix"
+ ],
+ "javax.activation:javax.activation-api": [
+ "javax.activation"
+ ],
+ "javax.inject:javax.inject": [
+ "javax.inject"
+ ],
+ "javax.transaction:jta": [
+ "javax.transaction",
+ "javax.transaction.xa"
+ ],
+ "javax.xml.bind:jaxb-api": [
+ "javax.xml.bind",
+ "javax.xml.bind.annotation",
+ "javax.xml.bind.annotation.adapters",
+ "javax.xml.bind.attachment",
+ "javax.xml.bind.helpers",
+ "javax.xml.bind.util"
+ ],
+ "joda-time:joda-time": [
+ "org.joda.time",
+ "org.joda.time.base",
+ "org.joda.time.chrono",
+ "org.joda.time.convert",
+ "org.joda.time.field",
+ "org.joda.time.format",
+ "org.joda.time.tz"
+ ],
+ "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.internal",
+ "org.junit.internal.builders",
+ "org.junit.internal.matchers",
+ "org.junit.internal.requests",
+ "org.junit.internal.runners",
+ "org.junit.internal.runners.model",
+ "org.junit.internal.runners.rules",
+ "org.junit.internal.runners.statements",
+ "org.junit.matchers",
+ "org.junit.rules",
+ "org.junit.runner",
+ "org.junit.runner.manipulation",
+ "org.junit.runner.notification",
+ "org.junit.runners",
+ "org.junit.runners.model",
+ "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.privilege",
+ "net.bytebuddy.utility.visitor"
+ ],
+ "net.bytebuddy:byte-buddy-agent": [
+ "net.bytebuddy.agent"
+ ],
+ "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.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.arrays",
+ "com.gargoylesoftware.htmlunit.javascript.host.budget",
+ "com.gargoylesoftware.htmlunit.javascript.host.canvas",
+ "com.gargoylesoftware.htmlunit.javascript.host.canvas.ext",
+ "com.gargoylesoftware.htmlunit.javascript.host.canvas.rendering",
+ "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.regexp",
+ "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.webstart",
+ "com.gargoylesoftware.htmlunit.xml",
+ "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.jdk15",
+ "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:neko-htmlunit": [
+ "net.sourceforge.htmlunit.cyberneko",
+ "net.sourceforge.htmlunit.cyberneko.filters",
+ "net.sourceforge.htmlunit.cyberneko.parsers"
+ ],
+ "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.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.apache.commons:commons-text": [
+ "org.apache.commons.text",
+ "org.apache.commons.text.diff",
+ "org.apache.commons.text.lookup",
+ "org.apache.commons.text.matcher",
+ "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.atteo.classindex:classindex": [
+ "org.atteo.classindex",
+ "org.atteo.classindex.processor",
+ "org.atteo.evo.classindex"
+ ],
+ "org.checkerframework:checker-qual": [
+ "org.checkerframework.checker.compilermsgs.qual",
+ "org.checkerframework.checker.fenum.qual",
+ "org.checkerframework.checker.formatter",
+ "org.checkerframework.checker.formatter.qual",
+ "org.checkerframework.checker.guieffect.qual",
+ "org.checkerframework.checker.i18n.qual",
+ "org.checkerframework.checker.i18nformatter",
+ "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.nullness",
+ "org.checkerframework.checker.nullness.qual",
+ "org.checkerframework.checker.optional.qual",
+ "org.checkerframework.checker.propkey.qual",
+ "org.checkerframework.checker.regex",
+ "org.checkerframework.checker.regex.qual",
+ "org.checkerframework.checker.signature.qual",
+ "org.checkerframework.checker.signedness",
+ "org.checkerframework.checker.signedness.qual",
+ "org.checkerframework.checker.tainting.qual",
+ "org.checkerframework.checker.units",
+ "org.checkerframework.checker.units.qual",
+ "org.checkerframework.common.aliasing.qual",
+ "org.checkerframework.common.reflection.qual",
+ "org.checkerframework.common.util.report.qual",
+ "org.checkerframework.common.value.qual",
+ "org.checkerframework.dataflow.qual",
+ "org.checkerframework.framework.qual",
+ "org.checkerframework.framework.util"
+ ],
+ "org.codehaus.mojo:animal-sniffer-annotations": [
+ "org.codehaus.mojo.animal_sniffer"
+ ],
+ "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.ssl"
+ ],
+ "org.eclipse.jetty:jetty-util": [
+ "org.eclipse.jetty.util",
+ "org.eclipse.jetty.util.annotation",
+ "org.eclipse.jetty.util.component",
+ "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.eclipse.jetty:jetty-xml": [
+ "org.eclipse.jetty.xml"
+ ],
+ "org.fluentlenium:fluentlenium-core": [
+ "org.fluentlenium.adapter",
+ "org.fluentlenium.configuration",
+ "org.fluentlenium.core",
+ "org.fluentlenium.core.action",
+ "org.fluentlenium.core.alert",
+ "org.fluentlenium.core.annotation",
+ "org.fluentlenium.core.capabilities",
+ "org.fluentlenium.core.components",
+ "org.fluentlenium.core.conditions",
+ "org.fluentlenium.core.conditions.message",
+ "org.fluentlenium.core.conditions.wait",
+ "org.fluentlenium.core.css",
+ "org.fluentlenium.core.dom",
+ "org.fluentlenium.core.domain",
+ "org.fluentlenium.core.events",
+ "org.fluentlenium.core.events.annotations",
+ "org.fluentlenium.core.filter",
+ "org.fluentlenium.core.filter.matcher",
+ "org.fluentlenium.core.hook",
+ "org.fluentlenium.core.hook.wait",
+ "org.fluentlenium.core.inject",
+ "org.fluentlenium.core.label",
+ "org.fluentlenium.core.navigation",
+ "org.fluentlenium.core.page",
+ "org.fluentlenium.core.proxy",
+ "org.fluentlenium.core.script",
+ "org.fluentlenium.core.search",
+ "org.fluentlenium.core.snapshot",
+ "org.fluentlenium.core.switchto",
+ "org.fluentlenium.core.url",
+ "org.fluentlenium.core.wait",
+ "org.fluentlenium.utils"
+ ],
+ "org.hamcrest:hamcrest-core": [
+ "org.hamcrest",
+ "org.hamcrest.core",
+ "org.hamcrest.internal"
+ ],
+ "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.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.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.junit.util",
+ "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.runners",
+ "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.reactivestreams:reactive-streams": [
+ "org.reactivestreams"
+ ],
+ "org.scala-lang.modules:scala-java8-compat_2.12": [
+ "scala.compat.java8",
+ "scala.compat.java8.FunctionConverters",
+ "scala.compat.java8.SpliteratorConverters",
+ "scala.compat.java8.collectionImpl",
+ "scala.compat.java8.converterImpl",
+ "scala.compat.java8.functionConverterImpls",
+ "scala.compat.java8.runtime",
+ "scala.compat.java8.wrappers",
+ "scala.concurrent.java8"
+ ],
+ "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"
+ ],
+ "org.scala-sbt:test-interface": [
+ "org.scalatools.testing",
+ "sbt.testing"
+ ],
+ "org.seleniumhq.selenium:htmlunit-driver": [
+ "org.openqa.selenium.htmlunit"
+ ],
+ "org.seleniumhq.selenium:selenium-api": [
+ "org.openqa.selenium",
+ "org.openqa.selenium.html5",
+ "org.openqa.selenium.interactions",
+ "org.openqa.selenium.interactions.internal",
+ "org.openqa.selenium.interactions.touch",
+ "org.openqa.selenium.internal",
+ "org.openqa.selenium.logging",
+ "org.openqa.selenium.logging.profiler",
+ "org.openqa.selenium.mobile"
+ ],
+ "org.seleniumhq.selenium:selenium-firefox-driver": [
+ "org.openqa.selenium.firefox",
+ "org.openqa.selenium.firefox.internal"
+ ],
+ "org.seleniumhq.selenium:selenium-remote-driver": [
+ "org.openqa.selenium.io",
+ "org.openqa.selenium.json",
+ "org.openqa.selenium.net",
+ "org.openqa.selenium.os",
+ "org.openqa.selenium.remote",
+ "org.openqa.selenium.remote.html5",
+ "org.openqa.selenium.remote.http",
+ "org.openqa.selenium.remote.internal",
+ "org.openqa.selenium.remote.mobile",
+ "org.openqa.selenium.remote.service",
+ "org.openqa.selenium.remote.session"
+ ],
+ "org.seleniumhq.selenium:selenium-support": [
+ "org.openqa.selenium.support",
+ "org.openqa.selenium.support.events",
+ "org.openqa.selenium.support.events.internal",
+ "org.openqa.selenium.support.pagefactory",
+ "org.openqa.selenium.support.pagefactory.internal",
+ "org.openqa.selenium.support.ui"
+ ],
+ "org.slf4j:jcl-over-slf4j": [
+ "org.apache.commons.logging",
+ "org.apache.commons.logging.impl"
+ ],
+ "org.slf4j:jul-to-slf4j": [
+ "org.slf4j.bridge"
+ ],
+ "org.slf4j:slf4j-api": [
+ "org.slf4j",
+ "org.slf4j.event",
+ "org.slf4j.helpers",
+ "org.slf4j.spi"
+ ],
+ "org.specs2:specs2-common_2.12": [
+ "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",
+ "org.specs2.xml",
+ "specs2"
+ ],
+ "org.specs2:specs2-core_2.12": [
+ "org.specs2",
+ "org.specs2.control",
+ "org.specs2.io",
+ "org.specs2.matcher",
+ "org.specs2.mutable",
+ "org.specs2.mutable.script",
+ "org.specs2.reporter",
+ "org.specs2.runner",
+ "org.specs2.specification",
+ "org.specs2.specification.core",
+ "org.specs2.specification.core.mutable",
+ "org.specs2.specification.create",
+ "org.specs2.specification.create.mutable",
+ "org.specs2.specification.dsl",
+ "org.specs2.specification.dsl.mutable",
+ "org.specs2.specification.mutable",
+ "org.specs2.specification.process",
+ "org.specs2.specification.script",
+ "specs2"
+ ],
+ "org.specs2:specs2-fp_2.12": [
+ "org.specs2.fp"
+ ],
+ "org.specs2:specs2-junit_2.12": [
+ "org.specs2",
+ "org.specs2.matcher",
+ "org.specs2.mutable",
+ "org.specs2.reporter",
+ "org.specs2.runner"
+ ],
+ "org.specs2:specs2-matcher_2.12": [
+ "org.specs2.matcher",
+ "org.specs2.matcher.describe"
+ ],
+ "org.specs2:specs2-mock_2.12": [
+ "org.mockito.internal.invocation",
+ "org.mockito.internal.matchers",
+ "org.mockito.internal.progress",
+ "org.specs2.matcher",
+ "org.specs2.mock",
+ "org.specs2.mock.mockito"
+ ],
+ "xalan:serializer": [
+ "org.apache.xml.serializer",
+ "org.apache.xml.serializer.dom3",
+ "org.apache.xml.serializer.utils"
+ ],
+ "xalan:xalan": [
+ "java_cup.runtime",
+ "org.apache.bcel",
+ "org.apache.bcel.classfile",
+ "org.apache.bcel.generic",
+ "org.apache.bcel.util",
+ "org.apache.bcel.verifier",
+ "org.apache.bcel.verifier.exc",
+ "org.apache.bcel.verifier.statics",
+ "org.apache.bcel.verifier.structurals",
+ "org.apache.regexp",
+ "org.apache.xalan",
+ "org.apache.xalan.client",
+ "org.apache.xalan.extensions",
+ "org.apache.xalan.lib",
+ "org.apache.xalan.lib.sql",
+ "org.apache.xalan.processor",
+ "org.apache.xalan.res",
+ "org.apache.xalan.serialize",
+ "org.apache.xalan.templates",
+ "org.apache.xalan.trace",
+ "org.apache.xalan.transformer",
+ "org.apache.xalan.xslt",
+ "org.apache.xalan.xsltc",
+ "org.apache.xalan.xsltc.cmdline",
+ "org.apache.xalan.xsltc.cmdline.getopt",
+ "org.apache.xalan.xsltc.compiler",
+ "org.apache.xalan.xsltc.compiler.util",
+ "org.apache.xalan.xsltc.dom",
+ "org.apache.xalan.xsltc.runtime",
+ "org.apache.xalan.xsltc.runtime.output",
+ "org.apache.xalan.xsltc.trax",
+ "org.apache.xalan.xsltc.util",
+ "org.apache.xml.dtm",
+ "org.apache.xml.dtm.ref",
+ "org.apache.xml.dtm.ref.dom2dtm",
+ "org.apache.xml.dtm.ref.sax2dtm",
+ "org.apache.xml.res",
+ "org.apache.xml.utils",
+ "org.apache.xml.utils.res",
+ "org.apache.xpath",
+ "org.apache.xpath.axes",
+ "org.apache.xpath.compiler",
+ "org.apache.xpath.domapi",
+ "org.apache.xpath.functions",
+ "org.apache.xpath.jaxp",
+ "org.apache.xpath.objects",
+ "org.apache.xpath.operations",
+ "org.apache.xpath.patterns",
+ "org.apache.xpath.res"
+ ],
+ "xerces:xercesImpl": [
+ "org.apache.html.dom",
+ "org.apache.wml",
+ "org.apache.wml.dom",
+ "org.apache.xerces.dom",
+ "org.apache.xerces.dom.events",
+ "org.apache.xerces.dom3.as",
+ "org.apache.xerces.impl",
+ "org.apache.xerces.impl.dtd",
+ "org.apache.xerces.impl.dtd.models",
+ "org.apache.xerces.impl.dv",
+ "org.apache.xerces.impl.dv.dtd",
+ "org.apache.xerces.impl.dv.util",
+ "org.apache.xerces.impl.dv.xs",
+ "org.apache.xerces.impl.io",
+ "org.apache.xerces.impl.msg",
+ "org.apache.xerces.impl.validation",
+ "org.apache.xerces.impl.xpath",
+ "org.apache.xerces.impl.xpath.regex",
+ "org.apache.xerces.impl.xs",
+ "org.apache.xerces.impl.xs.identity",
+ "org.apache.xerces.impl.xs.models",
+ "org.apache.xerces.impl.xs.opti",
+ "org.apache.xerces.impl.xs.traversers",
+ "org.apache.xerces.impl.xs.util",
+ "org.apache.xerces.jaxp",
+ "org.apache.xerces.jaxp.datatype",
+ "org.apache.xerces.jaxp.validation",
+ "org.apache.xerces.parsers",
+ "org.apache.xerces.stax",
+ "org.apache.xerces.stax.events",
+ "org.apache.xerces.util",
+ "org.apache.xerces.xinclude",
+ "org.apache.xerces.xni",
+ "org.apache.xerces.xni.grammars",
+ "org.apache.xerces.xni.parser",
+ "org.apache.xerces.xpointer",
+ "org.apache.xerces.xs",
+ "org.apache.xerces.xs.datatypes",
+ "org.apache.xml.serialize",
+ "org.w3c.dom.html"
+ ],
+ "xml-apis:xml-apis": [
+ "javax.xml",
+ "javax.xml.datatype",
+ "javax.xml.namespace",
+ "javax.xml.parsers",
+ "javax.xml.stream",
+ "javax.xml.stream.events",
+ "javax.xml.stream.util",
+ "javax.xml.transform",
+ "javax.xml.transform.dom",
+ "javax.xml.transform.sax",
+ "javax.xml.transform.stax",
+ "javax.xml.transform.stream",
+ "javax.xml.validation",
+ "javax.xml.xpath",
+ "org.apache.xmlcommons",
+ "org.w3c.dom",
+ "org.w3c.dom.bootstrap",
+ "org.w3c.dom.css",
+ "org.w3c.dom.events",
+ "org.w3c.dom.html",
+ "org.w3c.dom.ls",
+ "org.w3c.dom.ranges",
+ "org.w3c.dom.stylesheets",
+ "org.w3c.dom.traversal",
+ "org.w3c.dom.views",
+ "org.w3c.dom.xpath",
+ "org.xml.sax",
+ "org.xml.sax.ext",
+ "org.xml.sax.helpers"
+ ]
+ },
+ "repositories": {
+ "https://repo.maven.apache.org/maven2/": [
+ "aopalliance:aopalliance",
+ "aopalliance:aopalliance: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.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.google.code.findbugs:jsr305",
+ "com.google.code.findbugs:jsr305: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.novocode:junit-interface",
+ "com.novocode:junit-interface:jar:sources",
+ "com.squareup.okhttp3:okhttp",
+ "com.squareup.okhttp3:okhttp:jar:sources",
+ "com.squareup.okio:okio",
+ "com.squareup.okio:okio:jar:sources",
+ "com.typesafe.akka:akka-actor_2.12",
+ "com.typesafe.akka:akka-actor_2.12:jar:sources",
+ "com.typesafe.akka:akka-http-core_2.12",
+ "com.typesafe.akka:akka-http-core_2.12:jar:sources",
+ "com.typesafe.akka:akka-parsing_2.12",
+ "com.typesafe.akka:akka-parsing_2.12:jar:sources",
+ "com.typesafe.akka:akka-protobuf_2.12",
+ "com.typesafe.akka:akka-protobuf_2.12:jar:sources",
+ "com.typesafe.akka:akka-slf4j_2.12",
+ "com.typesafe.akka:akka-slf4j_2.12:jar:sources",
+ "com.typesafe.akka:akka-stream_2.12",
+ "com.typesafe.akka:akka-stream_2.12:jar:sources",
+ "com.typesafe.netty:netty-reactive-streams",
+ "com.typesafe.netty:netty-reactive-streams-http",
+ "com.typesafe.netty:netty-reactive-streams-http:jar:sources",
+ "com.typesafe.netty:netty-reactive-streams:jar:sources",
+ "com.typesafe.play:build-link",
+ "com.typesafe.play:build-link:jar:sources",
+ "com.typesafe.play:play-akka-http-server_2.12",
+ "com.typesafe.play:play-akka-http-server_2.12:jar:sources",
+ "com.typesafe.play:play-exceptions",
+ "com.typesafe.play:play-exceptions:jar:sources",
+ "com.typesafe.play:play-functional_2.12",
+ "com.typesafe.play:play-functional_2.12:jar:sources",
+ "com.typesafe.play:play-guice_2.12",
+ "com.typesafe.play:play-guice_2.12:jar:sources",
+ "com.typesafe.play:play-json_2.12",
+ "com.typesafe.play:play-json_2.12:jar:sources",
+ "com.typesafe.play:play-netty-server_2.12",
+ "com.typesafe.play:play-netty-server_2.12:jar:sources",
+ "com.typesafe.play:play-server_2.12",
+ "com.typesafe.play:play-server_2.12:jar:sources",
+ "com.typesafe.play:play-specs2_2.12",
+ "com.typesafe.play:play-specs2_2.12:jar:sources",
+ "com.typesafe.play:play-streams_2.12",
+ "com.typesafe.play:play-streams_2.12:jar:sources",
+ "com.typesafe.play:play-test_2.12",
+ "com.typesafe.play:play-test_2.12:jar:sources",
+ "com.typesafe.play:play_2.12",
+ "com.typesafe.play:play_2.12:jar:sources",
+ "com.typesafe.play:twirl-api_2.12",
+ "com.typesafe.play:twirl-api_2.12:jar:sources",
+ "com.typesafe:config",
+ "com.typesafe:config:jar:sources",
+ "com.typesafe:ssl-config-core_2.12",
+ "com.typesafe:ssl-config-core_2.12:jar:sources",
+ "commons-codec:commons-codec",
+ "commons-codec:commons-codec: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",
+ "io.jsonwebtoken:jjwt",
+ "io.jsonwebtoken:jjwt:jar:sources",
+ "io.netty:netty-buffer",
+ "io.netty:netty-buffer:jar:sources",
+ "io.netty:netty-codec",
+ "io.netty:netty-codec-http",
+ "io.netty:netty-codec-http:jar:sources",
+ "io.netty:netty-codec:jar:sources",
+ "io.netty:netty-common",
+ "io.netty:netty-common:jar:sources",
+ "io.netty:netty-handler",
+ "io.netty:netty-handler:jar:sources",
+ "io.netty:netty-resolver",
+ "io.netty:netty-resolver:jar:sources",
+ "io.netty:netty-transport",
+ "io.netty:netty-transport-native-epoll:jar:linux-x86_64",
+ "io.netty:netty-transport-native-epoll:jar:sources",
+ "io.netty:netty-transport-native-unix-common",
+ "io.netty:netty-transport-native-unix-common:jar:sources",
+ "io.netty:netty-transport:jar:sources",
+ "javax.activation:javax.activation-api",
+ "javax.activation:javax.activation-api:jar:sources",
+ "javax.inject:javax.inject",
+ "javax.inject:javax.inject:jar:sources",
+ "javax.transaction:jta",
+ "javax.transaction:jta:jar:sources",
+ "javax.xml.bind:jaxb-api",
+ "javax.xml.bind:jaxb-api:jar:sources",
+ "joda-time:joda-time",
+ "joda-time:joda-time: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: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.atteo.classindex:classindex",
+ "org.atteo.classindex:classindex:jar:sources",
+ "org.checkerframework:checker-qual",
+ "org.checkerframework:checker-qual:jar:sources",
+ "org.codehaus.mojo:animal-sniffer-annotations",
+ "org.codehaus.mojo:animal-sniffer-annotations: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.eclipse.jetty:jetty-xml",
+ "org.eclipse.jetty:jetty-xml:jar:sources",
+ "org.fluentlenium:fluentlenium-core",
+ "org.fluentlenium:fluentlenium-core:jar:sources",
+ "org.hamcrest:hamcrest-core",
+ "org.hamcrest:hamcrest-core:jar:sources",
+ "org.mockito:mockito-core",
+ "org.mockito:mockito-core:jar:sources",
+ "org.objenesis:objenesis",
+ "org.objenesis:objenesis:jar:sources",
+ "org.reactivestreams:reactive-streams",
+ "org.reactivestreams:reactive-streams:jar:sources",
+ "org.scala-lang.modules:scala-java8-compat_2.12",
+ "org.scala-lang.modules:scala-java8-compat_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",
+ "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-firefox-driver",
+ "org.seleniumhq.selenium:selenium-firefox-driver:jar:sources",
+ "org.seleniumhq.selenium:selenium-remote-driver",
+ "org.seleniumhq.selenium:selenium-remote-driver:jar:sources",
+ "org.seleniumhq.selenium:selenium-support",
+ "org.seleniumhq.selenium:selenium-support:jar:sources",
+ "org.slf4j:jcl-over-slf4j",
+ "org.slf4j:jcl-over-slf4j:jar:sources",
+ "org.slf4j:jul-to-slf4j",
+ "org.slf4j:jul-to-slf4j:jar:sources",
+ "org.slf4j:slf4j-api",
+ "org.slf4j:slf4j-api:jar:sources",
+ "org.specs2:specs2-common_2.12",
+ "org.specs2:specs2-common_2.12:jar:sources",
+ "org.specs2:specs2-core_2.12",
+ "org.specs2:specs2-core_2.12:jar:sources",
+ "org.specs2:specs2-fp_2.12",
+ "org.specs2:specs2-fp_2.12:jar:sources",
+ "org.specs2:specs2-junit_2.12",
+ "org.specs2:specs2-junit_2.12:jar:sources",
+ "org.specs2:specs2-matcher_2.12",
+ "org.specs2:specs2-matcher_2.12:jar:sources",
+ "org.specs2:specs2-mock_2.12",
+ "org.specs2:specs2-mock_2.12:jar:sources",
+ "xalan:serializer",
+ "xalan:serializer:jar:sources",
+ "xalan:xalan",
+ "xalan:xalan:jar:sources",
+ "xerces:xercesImpl",
+ "xerces:xercesImpl:jar:sources",
+ "xml-apis:xml-apis",
+ "xml-apis:xml-apis:jar:sources"
+ ],
+ "https://maven-central.storage-download.googleapis.com/maven2/": [
+ "aopalliance:aopalliance",
+ "aopalliance:aopalliance: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.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.google.code.findbugs:jsr305",
+ "com.google.code.findbugs:jsr305: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.novocode:junit-interface",
+ "com.novocode:junit-interface:jar:sources",
+ "com.squareup.okhttp3:okhttp",
+ "com.squareup.okhttp3:okhttp:jar:sources",
+ "com.squareup.okio:okio",
+ "com.squareup.okio:okio:jar:sources",
+ "com.typesafe.akka:akka-actor_2.12",
+ "com.typesafe.akka:akka-actor_2.12:jar:sources",
+ "com.typesafe.akka:akka-http-core_2.12",
+ "com.typesafe.akka:akka-http-core_2.12:jar:sources",
+ "com.typesafe.akka:akka-parsing_2.12",
+ "com.typesafe.akka:akka-parsing_2.12:jar:sources",
+ "com.typesafe.akka:akka-protobuf_2.12",
+ "com.typesafe.akka:akka-protobuf_2.12:jar:sources",
+ "com.typesafe.akka:akka-slf4j_2.12",
+ "com.typesafe.akka:akka-slf4j_2.12:jar:sources",
+ "com.typesafe.akka:akka-stream_2.12",
+ "com.typesafe.akka:akka-stream_2.12:jar:sources",
+ "com.typesafe.netty:netty-reactive-streams",
+ "com.typesafe.netty:netty-reactive-streams-http",
+ "com.typesafe.netty:netty-reactive-streams-http:jar:sources",
+ "com.typesafe.netty:netty-reactive-streams:jar:sources",
+ "com.typesafe.play:build-link",
+ "com.typesafe.play:build-link:jar:sources",
+ "com.typesafe.play:play-akka-http-server_2.12",
+ "com.typesafe.play:play-akka-http-server_2.12:jar:sources",
+ "com.typesafe.play:play-exceptions",
+ "com.typesafe.play:play-exceptions:jar:sources",
+ "com.typesafe.play:play-functional_2.12",
+ "com.typesafe.play:play-functional_2.12:jar:sources",
+ "com.typesafe.play:play-guice_2.12",
+ "com.typesafe.play:play-guice_2.12:jar:sources",
+ "com.typesafe.play:play-json_2.12",
+ "com.typesafe.play:play-json_2.12:jar:sources",
+ "com.typesafe.play:play-netty-server_2.12",
+ "com.typesafe.play:play-netty-server_2.12:jar:sources",
+ "com.typesafe.play:play-server_2.12",
+ "com.typesafe.play:play-server_2.12:jar:sources",
+ "com.typesafe.play:play-specs2_2.12",
+ "com.typesafe.play:play-specs2_2.12:jar:sources",
+ "com.typesafe.play:play-streams_2.12",
+ "com.typesafe.play:play-streams_2.12:jar:sources",
+ "com.typesafe.play:play-test_2.12",
+ "com.typesafe.play:play-test_2.12:jar:sources",
+ "com.typesafe.play:play_2.12",
+ "com.typesafe.play:play_2.12:jar:sources",
+ "com.typesafe.play:twirl-api_2.12",
+ "com.typesafe.play:twirl-api_2.12:jar:sources",
+ "com.typesafe:config",
+ "com.typesafe:config:jar:sources",
+ "com.typesafe:ssl-config-core_2.12",
+ "com.typesafe:ssl-config-core_2.12:jar:sources",
+ "commons-codec:commons-codec",
+ "commons-codec:commons-codec: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",
+ "io.jsonwebtoken:jjwt",
+ "io.jsonwebtoken:jjwt:jar:sources",
+ "io.netty:netty-buffer",
+ "io.netty:netty-buffer:jar:sources",
+ "io.netty:netty-codec",
+ "io.netty:netty-codec-http",
+ "io.netty:netty-codec-http:jar:sources",
+ "io.netty:netty-codec:jar:sources",
+ "io.netty:netty-common",
+ "io.netty:netty-common:jar:sources",
+ "io.netty:netty-handler",
+ "io.netty:netty-handler:jar:sources",
+ "io.netty:netty-resolver",
+ "io.netty:netty-resolver:jar:sources",
+ "io.netty:netty-transport",
+ "io.netty:netty-transport-native-epoll:jar:linux-x86_64",
+ "io.netty:netty-transport-native-epoll:jar:sources",
+ "io.netty:netty-transport-native-unix-common",
+ "io.netty:netty-transport-native-unix-common:jar:sources",
+ "io.netty:netty-transport:jar:sources",
+ "javax.activation:javax.activation-api",
+ "javax.activation:javax.activation-api:jar:sources",
+ "javax.inject:javax.inject",
+ "javax.inject:javax.inject:jar:sources",
+ "javax.transaction:jta",
+ "javax.transaction:jta:jar:sources",
+ "javax.xml.bind:jaxb-api",
+ "javax.xml.bind:jaxb-api:jar:sources",
+ "joda-time:joda-time",
+ "joda-time:joda-time: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: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.atteo.classindex:classindex",
+ "org.atteo.classindex:classindex:jar:sources",
+ "org.checkerframework:checker-qual",
+ "org.checkerframework:checker-qual:jar:sources",
+ "org.codehaus.mojo:animal-sniffer-annotations",
+ "org.codehaus.mojo:animal-sniffer-annotations: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.eclipse.jetty:jetty-xml",
+ "org.eclipse.jetty:jetty-xml:jar:sources",
+ "org.fluentlenium:fluentlenium-core",
+ "org.fluentlenium:fluentlenium-core:jar:sources",
+ "org.hamcrest:hamcrest-core",
+ "org.hamcrest:hamcrest-core:jar:sources",
+ "org.mockito:mockito-core",
+ "org.mockito:mockito-core:jar:sources",
+ "org.objenesis:objenesis",
+ "org.objenesis:objenesis:jar:sources",
+ "org.reactivestreams:reactive-streams",
+ "org.reactivestreams:reactive-streams:jar:sources",
+ "org.scala-lang.modules:scala-java8-compat_2.12",
+ "org.scala-lang.modules:scala-java8-compat_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",
+ "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-firefox-driver",
+ "org.seleniumhq.selenium:selenium-firefox-driver:jar:sources",
+ "org.seleniumhq.selenium:selenium-remote-driver",
+ "org.seleniumhq.selenium:selenium-remote-driver:jar:sources",
+ "org.seleniumhq.selenium:selenium-support",
+ "org.seleniumhq.selenium:selenium-support:jar:sources",
+ "org.slf4j:jcl-over-slf4j",
+ "org.slf4j:jcl-over-slf4j:jar:sources",
+ "org.slf4j:jul-to-slf4j",
+ "org.slf4j:jul-to-slf4j:jar:sources",
+ "org.slf4j:slf4j-api",
+ "org.slf4j:slf4j-api:jar:sources",
+ "org.specs2:specs2-common_2.12",
+ "org.specs2:specs2-common_2.12:jar:sources",
+ "org.specs2:specs2-core_2.12",
+ "org.specs2:specs2-core_2.12:jar:sources",
+ "org.specs2:specs2-fp_2.12",
+ "org.specs2:specs2-fp_2.12:jar:sources",
+ "org.specs2:specs2-junit_2.12",
+ "org.specs2:specs2-junit_2.12:jar:sources",
+ "org.specs2:specs2-matcher_2.12",
+ "org.specs2:specs2-matcher_2.12:jar:sources",
+ "org.specs2:specs2-mock_2.12",
+ "org.specs2:specs2-mock_2.12:jar:sources",
+ "xalan:serializer",
+ "xalan:serializer:jar:sources",
+ "xalan:xalan",
+ "xalan:xalan:jar:sources",
+ "xerces:xercesImpl",
+ "xerces:xercesImpl:jar:sources",
+ "xml-apis:xml-apis",
+ "xml-apis:xml-apis:jar:sources"
+ ],
+ "https://mirror.bazel.build/repo1.maven.org/maven2/": [
+ "aopalliance:aopalliance",
+ "aopalliance:aopalliance: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.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.google.code.findbugs:jsr305",
+ "com.google.code.findbugs:jsr305: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.novocode:junit-interface",
+ "com.novocode:junit-interface:jar:sources",
+ "com.squareup.okhttp3:okhttp",
+ "com.squareup.okhttp3:okhttp:jar:sources",
+ "com.squareup.okio:okio",
+ "com.squareup.okio:okio:jar:sources",
+ "com.typesafe.akka:akka-actor_2.12",
+ "com.typesafe.akka:akka-actor_2.12:jar:sources",
+ "com.typesafe.akka:akka-http-core_2.12",
+ "com.typesafe.akka:akka-http-core_2.12:jar:sources",
+ "com.typesafe.akka:akka-parsing_2.12",
+ "com.typesafe.akka:akka-parsing_2.12:jar:sources",
+ "com.typesafe.akka:akka-protobuf_2.12",
+ "com.typesafe.akka:akka-protobuf_2.12:jar:sources",
+ "com.typesafe.akka:akka-slf4j_2.12",
+ "com.typesafe.akka:akka-slf4j_2.12:jar:sources",
+ "com.typesafe.akka:akka-stream_2.12",
+ "com.typesafe.akka:akka-stream_2.12:jar:sources",
+ "com.typesafe.netty:netty-reactive-streams",
+ "com.typesafe.netty:netty-reactive-streams-http",
+ "com.typesafe.netty:netty-reactive-streams-http:jar:sources",
+ "com.typesafe.netty:netty-reactive-streams:jar:sources",
+ "com.typesafe.play:build-link",
+ "com.typesafe.play:build-link:jar:sources",
+ "com.typesafe.play:play-akka-http-server_2.12",
+ "com.typesafe.play:play-akka-http-server_2.12:jar:sources",
+ "com.typesafe.play:play-exceptions",
+ "com.typesafe.play:play-exceptions:jar:sources",
+ "com.typesafe.play:play-functional_2.12",
+ "com.typesafe.play:play-functional_2.12:jar:sources",
+ "com.typesafe.play:play-guice_2.12",
+ "com.typesafe.play:play-guice_2.12:jar:sources",
+ "com.typesafe.play:play-json_2.12",
+ "com.typesafe.play:play-json_2.12:jar:sources",
+ "com.typesafe.play:play-netty-server_2.12",
+ "com.typesafe.play:play-netty-server_2.12:jar:sources",
+ "com.typesafe.play:play-server_2.12",
+ "com.typesafe.play:play-server_2.12:jar:sources",
+ "com.typesafe.play:play-specs2_2.12",
+ "com.typesafe.play:play-specs2_2.12:jar:sources",
+ "com.typesafe.play:play-streams_2.12",
+ "com.typesafe.play:play-streams_2.12:jar:sources",
+ "com.typesafe.play:play-test_2.12",
+ "com.typesafe.play:play-test_2.12:jar:sources",
+ "com.typesafe.play:play_2.12",
+ "com.typesafe.play:play_2.12:jar:sources",
+ "com.typesafe.play:twirl-api_2.12",
+ "com.typesafe.play:twirl-api_2.12:jar:sources",
+ "com.typesafe:config",
+ "com.typesafe:config:jar:sources",
+ "com.typesafe:ssl-config-core_2.12",
+ "com.typesafe:ssl-config-core_2.12:jar:sources",
+ "commons-codec:commons-codec",
+ "commons-codec:commons-codec: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",
+ "io.jsonwebtoken:jjwt",
+ "io.jsonwebtoken:jjwt:jar:sources",
+ "io.netty:netty-buffer",
+ "io.netty:netty-buffer:jar:sources",
+ "io.netty:netty-codec",
+ "io.netty:netty-codec-http",
+ "io.netty:netty-codec-http:jar:sources",
+ "io.netty:netty-codec:jar:sources",
+ "io.netty:netty-common",
+ "io.netty:netty-common:jar:sources",
+ "io.netty:netty-handler",
+ "io.netty:netty-handler:jar:sources",
+ "io.netty:netty-resolver",
+ "io.netty:netty-resolver:jar:sources",
+ "io.netty:netty-transport",
+ "io.netty:netty-transport-native-epoll:jar:linux-x86_64",
+ "io.netty:netty-transport-native-epoll:jar:sources",
+ "io.netty:netty-transport-native-unix-common",
+ "io.netty:netty-transport-native-unix-common:jar:sources",
+ "io.netty:netty-transport:jar:sources",
+ "javax.activation:javax.activation-api",
+ "javax.activation:javax.activation-api:jar:sources",
+ "javax.inject:javax.inject",
+ "javax.inject:javax.inject:jar:sources",
+ "javax.transaction:jta",
+ "javax.transaction:jta:jar:sources",
+ "javax.xml.bind:jaxb-api",
+ "javax.xml.bind:jaxb-api:jar:sources",
+ "joda-time:joda-time",
+ "joda-time:joda-time: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: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.atteo.classindex:classindex",
+ "org.atteo.classindex:classindex:jar:sources",
+ "org.checkerframework:checker-qual",
+ "org.checkerframework:checker-qual:jar:sources",
+ "org.codehaus.mojo:animal-sniffer-annotations",
+ "org.codehaus.mojo:animal-sniffer-annotations: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.eclipse.jetty:jetty-xml",
+ "org.eclipse.jetty:jetty-xml:jar:sources",
+ "org.fluentlenium:fluentlenium-core",
+ "org.fluentlenium:fluentlenium-core:jar:sources",
+ "org.hamcrest:hamcrest-core",
+ "org.hamcrest:hamcrest-core:jar:sources",
+ "org.mockito:mockito-core",
+ "org.mockito:mockito-core:jar:sources",
+ "org.objenesis:objenesis",
+ "org.objenesis:objenesis:jar:sources",
+ "org.reactivestreams:reactive-streams",
+ "org.reactivestreams:reactive-streams:jar:sources",
+ "org.scala-lang.modules:scala-java8-compat_2.12",
+ "org.scala-lang.modules:scala-java8-compat_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",
+ "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-firefox-driver",
+ "org.seleniumhq.selenium:selenium-firefox-driver:jar:sources",
+ "org.seleniumhq.selenium:selenium-remote-driver",
+ "org.seleniumhq.selenium:selenium-remote-driver:jar:sources",
+ "org.seleniumhq.selenium:selenium-support",
+ "org.seleniumhq.selenium:selenium-support:jar:sources",
+ "org.slf4j:jcl-over-slf4j",
+ "org.slf4j:jcl-over-slf4j:jar:sources",
+ "org.slf4j:jul-to-slf4j",
+ "org.slf4j:jul-to-slf4j:jar:sources",
+ "org.slf4j:slf4j-api",
+ "org.slf4j:slf4j-api:jar:sources",
+ "org.specs2:specs2-common_2.12",
+ "org.specs2:specs2-common_2.12:jar:sources",
+ "org.specs2:specs2-core_2.12",
+ "org.specs2:specs2-core_2.12:jar:sources",
+ "org.specs2:specs2-fp_2.12",
+ "org.specs2:specs2-fp_2.12:jar:sources",
+ "org.specs2:specs2-junit_2.12",
+ "org.specs2:specs2-junit_2.12:jar:sources",
+ "org.specs2:specs2-matcher_2.12",
+ "org.specs2:specs2-matcher_2.12:jar:sources",
+ "org.specs2:specs2-mock_2.12",
+ "org.specs2:specs2-mock_2.12:jar:sources",
+ "xalan:serializer",
+ "xalan:serializer:jar:sources",
+ "xalan:xalan",
+ "xalan:xalan:jar:sources",
+ "xerces:xercesImpl",
+ "xerces:xercesImpl:jar:sources",
+ "xml-apis:xml-apis",
+ "xml-apis:xml-apis:jar:sources"
+ ]
+ },
+ "version": "2"
}