From 88c7072fc3e3b6809a4f4a4c9af38304c3c62cc4 Mon Sep 17 00:00:00 2001 From: James Judd Date: Thu, 21 Sep 2023 15:03:43 -0600 Subject: [PATCH 01/21] Update to JDK 21, Scala versions, Bazel 7.2.0, and use rules_java They did not add the remotejdk_21 target from bazel_tools and instead are recommending people use rules_java instead. --- .bazelrc | 4 +- .bazelrc_shared | 17 ++- .github/workflows/ci.yml | 2 +- BUILD | 13 ++ README.md | 2 +- WORKSPACE | 33 ++---- annex_2_12_install.json | 30 +++-- annex_3_install.json | 108 ++++++++++------- annex_install.json | 44 ++++--- docs/newdocs/scala_versions.md | 44 +++---- rules/scala/workspace.bzl | 6 +- rules/scala/workspace_2_12.bzl | 6 +- rules/scala/workspace_3.bzl | 6 +- src/main/scala/BUILD | 60 +++++----- tests/.bazelrc | 10 +- tests/BUILD | 23 ++-- tests/WORKSPACE | 37 ++---- tests/annex_test_install.json | 68 ++++++----- tests/compat/ported_tests/BUILD | 1 + tests/compile/log_level/BUILD | 2 +- tests/compile/logger/Example.scala | 2 +- tests/coverage/BUILD | 1 + tests/dependencies/indirect/BUILD | 6 +- tests/plugins/classpath/BUILD | 5 +- tests/plugins/kind-projector/BUILD | 18 +-- tests/plugins/macros/BUILD | 10 +- tests/providers/BUILD | 16 +-- tests/resources/reference_conf/BUILD | 1 + tests/scala/BUILD | 112 +++++++++--------- tests/workspace.bzl | 2 +- .../devtools/build/buildjar/jarhelper/BUILD | 2 + tools/bazel | 12 +- 32 files changed, 364 insertions(+), 339 deletions(-) diff --git a/.bazelrc b/.bazelrc index ca0bab4e0..e9f3c16b1 100644 --- a/.bazelrc +++ b/.bazelrc @@ -1,5 +1,3 @@ common --config=rules -common:v5.0 --config=rules_v5.0 -common:v6.3 --config=rules_v6.3 -common:v7.0 --config=rules_v7.0 +common:v7.2 --config=rules_v7.2 import %workspace%/.bazelrc_shared diff --git a/.bazelrc_shared b/.bazelrc_shared index d86b754b0..ca327bebc 100644 --- a/.bazelrc_shared +++ b/.bazelrc_shared @@ -3,10 +3,11 @@ common --color=yes common --noenable_bzlmod build --experimental_strict_action_env -build --javacopt="-source 11 -target 11" -build --java_language_version=11 -build --tool_java_language_version=11 -build --incompatible_java_common_parameters=false +build --javacopt="-source 21 -target 21" +build --java_language_version="21" +build --java_runtime_version="remotejdk_21" +build --tool_java_language_version="21" +build --tool_java_runtime_version="remotejdk_21" build --strategy=ScalaCompile=worker build --worker_max_instances=4 @@ -27,17 +28,13 @@ test --test_output=all #build:rules --disk_cache=.bazel_cache #build:tests --disk_cache=../.bazel_cache -common:rules_v5.0 --config=noop -common:rules_v6.3 --config=noop -common:rules_v7.0 --config=noop +common:rules_v7.2 --config=noop # route potentially unrouted configs to a terminating noop config # it's a noop because we use the default value common:rules --config=noop common:tests --config=noop -common:v5.0 --config=rules_v5.0 -common:v6.3 --config=rules_v6.3 -common:v7.0 --config=rules_v7.0 +common:v7.2 --config=rules_v7.2 # pick something trivial as a "noop" common:noop --logging=3 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d9d0f23f..aba27ca45 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-20.04] - bazel_version: [6.3.2, 7.0.0] + bazel_version: [7.2.0] steps: - uses: actions/checkout@v3 - run: ./scripts/ci.sh build diff --git a/BUILD b/BUILD index 7c54e2b70..a53295df1 100644 --- a/BUILD +++ b/BUILD @@ -1,4 +1,17 @@ load("@com_github_bazelbuild_buildtools//buildifier:def.bzl", "buildifier") +load( + "@rules_java//toolchains:default_java_toolchain.bzl", + "DEFAULT_TOOLCHAIN_CONFIGURATION", + "default_java_toolchain", +) + +default_java_toolchain( + name = "repository_default_toolchain_21", + configuration = DEFAULT_TOOLCHAIN_CONFIGURATION, + java_runtime = "@rules_java//toolchains:remotejdk_21", + source_version = "21", + target_version = "21", +) buildifier( name = "buildifier", diff --git a/README.md b/README.md index 98ef7658e..7f2acf136 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,7 @@ protobuf_deps() # Specify the scala compiler we wish to use; in this case, we'll use the default one specified in rules_scala_annex bind( name = "default_scala", - actual = "@rules_scala_annex//src/main/scala:zinc_2_13_11", + actual = "@rules_scala_annex//src/main/scala:zinc_2_13_14", ) ``` diff --git a/WORKSPACE b/WORKSPACE index 1fa2da66c..d62855b4f 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -73,32 +73,19 @@ load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps") protobuf_deps() -jdk_build_file_content = """ -filegroup( - name = "jdk", - srcs = glob(["**/*"]), - visibility = ["//visibility:public"], -) -filegroup( - name = "java", - srcs = ["bin/java"], - visibility = ["//visibility:public"], -) -""" - +# rules_java http_archive( - name = "jdk11-linux", - build_file_content = jdk_build_file_content, - strip_prefix = "jdk-11.0.11%2B9", - url = "https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.11%2B9/OpenJDK11U-jdk_x64_linux_hotspot_11.0.11_9.tar.gz", + name = "rules_java", + urls = [ + "https://github.com/bazelbuild/rules_java/releases/download/7.6.4/rules_java-7.6.4.tar.gz", + ], + sha256 = "80e61f508ff79a3fde4a549b8b1f6ec7f8a82c259e51240a4403e5be36f88142", ) +load("@rules_java//java:repositories.bzl", "rules_java_dependencies", "rules_java_toolchains") +rules_java_dependencies() +rules_java_toolchains() -http_archive( - name = "jdk11-osx", - build_file_content = jdk_build_file_content, - strip_prefix = "jdk-11.0.11%2B9", - url = "https:/github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.11%2B9/OpenJDK11U-jdk_x64_mac_hotspot_11.0.11_9.tar.gz", -) +register_toolchains("//:repository_default_toolchain_21_definition") rules_jvm_external_tag = "5.3" diff --git a/annex_2_12_install.json b/annex_2_12_install.json index 062e11d0e..6c503c9b5 100644 --- a/annex_2_12_install.json +++ b/annex_2_12_install.json @@ -1,35 +1,35 @@ { "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": 1131823096, - "__RESOLVED_ARTIFACTS_HASH": 1162908931, + "__INPUT_ARTIFACTS_HASH": -39935131, + "__RESOLVED_ARTIFACTS_HASH": 1773281105, "artifacts": { "org.scala-lang.modules:scala-xml_2.12": { "shasums": { - "jar": "7cc3b6ceb56e879cb977e8e043f4bfe2e062f78795efd7efa09f85003cb3230a", - "sources": "a7e8aac79394df396afda98b35537791809d815ce15ab2224f7d31e50c753922" + "jar": "fd92f78b7acfea72999aceba5b377a000f42f9296d3d98224c9b1c471815582f", + "sources": "975a70a8cc0eff1ad1a495a60b60b51a973607cf362efb00f0c1e4565b77ff7c" }, - "version": "1.0.6" + "version": "2.2.0" }, "org.scala-lang:scala-compiler": { "shasums": { - "jar": "2a1b3fbf9c956073c8c5374098a6f987e3b8d76e34756ab985fc7d2ca37ee113", - "sources": "67bed0363088875356bf1b2960e863877d69767ebcbb5f3bf4043815ce8b8652" + "jar": "d12975f4cf9a450ea12870243648a851f92165448fdda5a292747cb3bdaecc4f", + "sources": "71c64235c39490e7865f7ab9aa04a16c99ac720105f6da2d3a873b8a40082c23" }, - "version": "2.12.14" + "version": "2.12.19" }, "org.scala-lang:scala-library": { "shasums": { - "jar": "0451dce8322903a6c2aa7d31232b54daa72a61ced8ade0b4c5022442a3f6cb57", - "sources": "5d3d5e62367e1dc39d6eac1299db6a3a4ead71f6f3bae2394b2d61251461dd26" + "jar": "81e32f8e31236ef84c21287f1fbaa916fc6525b2e63220d4a0f2396e91871d50", + "sources": "8bfc1530510a87686ef1081f60714c594d752fcf025b92acfd0ff6c09a7efa76" }, - "version": "2.12.14" + "version": "2.12.19" }, "org.scala-lang:scala-reflect": { "shasums": { - "jar": "497f4603e9d19dc4fa591cd467de5e32238d240bbd955d3dac6390b270889522", - "sources": "8b2299b758fa07cf8c1cc388b7d1e0d59a4c83dca84bc8fbef0006401c2d7dc3" + "jar": "ff6eaa5548779d61d35b98cb25e931951c5a9f1abc48741e9df95324ee2ae66c", + "sources": "391ef7b6927dfa1f187f4749ac98996d38bae1f2e1f40addb0e22bdacedcf254" }, - "version": "2.12.14" + "version": "2.12.19" }, "org.scala-sbt:compiler-bridge_2.12": { "shasums": { @@ -78,8 +78,6 @@ "scala.xml.include", "scala.xml.include.sax", "scala.xml.parsing", - "scala.xml.persistent", - "scala.xml.pull", "scala.xml.transform" ], "org.scala-lang:scala-compiler": [ diff --git a/annex_3_install.json b/annex_3_install.json index 2a35aba71..fd14c4765 100644 --- a/annex_3_install.json +++ b/annex_3_install.json @@ -1,104 +1,117 @@ { "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": 980913409, - "__RESOLVED_ARTIFACTS_HASH": -1954267692, + "__INPUT_ARTIFACTS_HASH": -1260333558, + "__RESOLVED_ARTIFACTS_HASH": -723133851, + "conflict_resolution": { + "org.scala-sbt:compiler-interface:1.9.3": "org.scala-sbt:compiler-interface:1.9.6" + }, "artifacts": { "net.java.dev.jna:jna": { "shasums": { - "jar": "01cb505c0698d0f7acf3524c7e73acb7dc424a5bae5e9c86ce44075ab32bc4ee", - "sources": "b2c47bfe2b471c3e03e0e7ffca9c2d23c3e6f63fca8a443a00129c957235ac5c" + "jar": "34ed1e1f27fa896bca50dbc4e99cf3732967cec387a7a0d5e3486c09673fe8c6", + "sources": "ebd774c761215676cda059fd68240628ef99f4aafa6d355ae00d184855aef134" + }, + "version": "5.14.0" + }, + "org.jline:jline-native": { + "shasums": { + "jar": "42d5bbe1f546dea248b8c901da7deb9943f76290379552923c9763495bb9f172", + "sources": "a3026f0bfe678502ac7f37dba48563d18f1640d585c164f921adbe01fa3152fb" }, - "version": "5.3.1" + "version": "3.25.1" }, "org.jline:jline-reader": { "shasums": { - "jar": "5a794c15884538c312a37c1b49cf025a013d8303ad31eadb53d4f8ae091ef355", - "sources": "74eab73d50e5e23c649cd0ea149121f4f33424a6b2497756e2c2f08b363cf5d3" + "jar": "26333a275de502adf1dd9e6ea50aa0b4021412c71490df9ed5e88a648886ee89", + "sources": "b5164bad15bb8d29566566b12cf4be95b252e18d3056ef96e70b934dbc3872cd" }, - "version": "3.19.0" + "version": "3.25.1" }, "org.jline:jline-terminal": { "shasums": { - "jar": "abdbeafa38c4ccd82578c1f3d08ea48af439eff194d23aa3bae18fbe93b4dcf0", - "sources": "249e29e67e300d978491fcfbdbced5c9ecabec8aeaaf36145edfd5e890f34ac6" + "jar": "c0f5d70901255da66a94e59778b265d19f9308342578e34c88fc92d1b0c65fef", + "sources": "bee7c4d6b7c19365719d56f380c0fe96e0ddc584fa059104afe919e5b3be1d90" }, - "version": "3.19.0" + "version": "3.25.1" }, "org.jline:jline-terminal-jna": { "shasums": { - "jar": "4a86975ba94756eaf70dea642d8d4c32535b65479050b56c476dc8c6b0519331", - "sources": "8bb10c163466591935b8accdf3b1793cc83478a56fa2a767f11810f110c2de30" + "jar": "58ca9d719c373206af15775ee3cd5f268136ea0d0c4e009c3e96a6d4612d5c66", + "sources": "fe03ffce7be95b6e1aa7e46ddc65b57c4fa4931b04ed65f64e590043c6eabfc5" }, - "version": "3.19.0" + "version": "3.25.1" }, "org.scala-lang.modules:scala-asm": { "shasums": { - "jar": "d55573711d63b6278443bc2fad577f63a3c60a2ee16633741a54ee202185fe95", - "sources": "58c34d273c0c5b7ca6ea6e73b388e969a4c7d5dd6a08ac4c705cb37b4356331b" + "jar": "bf16f8b69e89cadab550bce266a052780af7f1eb29dd1c04c3bd014113752c12", + "sources": "6a58718b53a6bd8f1b1e22b2bf7ef9b88eccbbe5e0fc223847b0343100d4a45a" }, - "version": "9.4.0-scala-1" + "version": "9.6.0-scala-1" }, "org.scala-lang:scala-library": { "shasums": { - "jar": "e6ca607c3fce03e8fa38af3374ce1f8bb098e316e8bf6f6d27331360feddb1c1", - "sources": "a991527579c81765cc74ecdbf57fe8fda9c1fd88fceebf19266f030e456ee0f0" + "jar": "c6a879e4973a60f6162668542a33eaccc2bb565d1c934fb061c5844259131dd1", + "sources": "df3f19e71b4d2dd6bb882a6deafb31c7dceaad4f26489b9fd9ca56b493229174" }, - "version": "2.13.10" + "version": "2.13.12" }, "org.scala-lang:scala3-compiler_3": { "shasums": { - "jar": "783cfb049fc762ecc49fd774197d0ca9f011cfb7aca17a81a2206c4b574c31a7", - "sources": "73822b518310e8edef3f1aa7fa17b057b0a16ad0553afe878f9e029faa78b0d6" + "jar": "c50f6089b1d55b0b7f9fbb2ef9d69f966b07c734d9b96e2b45b5b41b2d1bdd45", + "sources": "e887ce463f9fe65b732bc26af1462b8ab7097e8dfbc582ca89823a8cc5bf383e" }, - "version": "3.3.0" + "version": "3.4.2" }, "org.scala-lang:scala3-interfaces": { "shasums": { - "jar": "8bc0a975553be0a7d1e0f4dfb864553bdeb1ce03f86d0df8f6d5af09a0dba391", - "sources": "6a1eb7999f0b22a47c4f18a162c4302e233cbe15f1712192e7675a4b1f155be7" + "jar": "3907de290b0e38070f5b5e5598d08d5f302ad0ef9014f7a690ca8e90946ddda3", + "sources": "d0bc8086b14a247ed50f56c6e09f9563b907b10a7b2d90b493eed5eb7a5df1c4" }, - "version": "3.3.0" + "version": "3.4.2" }, "org.scala-lang:scala3-library_3": { "shasums": { - "jar": "78add3aaa13701690b73fd90a13d1cae1da32565dedb379e65ade30a16973f6b", - "sources": "7ad1c5ccd27408703aa6f5a1889e55b7fc475486e25d9de76a314ce649759357" + "jar": "5d8a8535e11d9dc52400cca0bc1d0edfe9385f15af5710c454ce8ab0e62783a0", + "sources": "9780c029947dfb9d8473d9e184185d83e11fe3a7da4578d937decd56b8818987" }, - "version": "3.3.0" + "version": "3.4.2" }, "org.scala-lang:scala3-sbt-bridge": { "shasums": { - "jar": "b79230db5fd73657d55d2fd45f30cd81fff31ee483d9f44982fe0857c80c10a9", - "sources": "fa60fc4cee640ced214445f98851534fecec6a9ad64d9558b1997f13cb1bf7c1" + "jar": "76ae65d99f14e131bd271ac22f805fbb8a39338a95e3fb38fd480fbca01964fe", + "sources": "32e4085415e70046fb70b9e05492dc551ea32e47d2df1890611298f91bacec5e" }, - "version": "3.3.0" + "version": "3.4.2" }, "org.scala-lang:tasty-core_3": { "shasums": { - "jar": "dc88fcb0fc4e766ac681e805ad2fbecfc485e6774d167e5cefdd764840d2f97c", - "sources": "54fc03d4ff477df6ac9eda96d1955812736c07a4c1de30e4c2e2a4cea9a82748" + "jar": "3697f3a858c594c5022f2f7751504c069a384b92b4e093e9742bbaa627e0c10f", + "sources": "24541ecf51853f3226acd3bfa9a3deaf4d3604fc19f1a1945febcc73f82ca800" }, - "version": "3.3.0" + "version": "3.4.2" }, "org.scala-sbt:compiler-interface": { "shasums": { - "jar": "fa586b4b1bdb61c48821cf9568507c1e4d57de3763d27ac2214523b00a173115", - "sources": "22200c6be450ea4651088f1d43670d14ee7808aa0c1b07a1ff6bc1104a3d7488" + "jar": "b986ad1cfcef14c8abeaa3e788df28be9150acfbf587b5f7aa92c1b043c4fa8d", + "sources": "a31ff0dcd76779a3ce36c161a5fb2c9849929ee2b91a9baee4570c0641f5cfca" }, - "version": "1.9.3" + "version": "1.9.6" }, "org.scala-sbt:util-interface": { "shasums": { - "jar": "cbf6c0db09223e4c6c41afc4c5d831c47e3564e83361df4ba3cb04e439f83675", - "sources": "bed4331c842f3c8b1c198ec25ead990fd064e1a0672ae2856aafc2a7593ec1fe" + "jar": "1302b1a265688b7bc31796d41f93fbe548e5daf36ea4dc848ee0a6b15fc53904", + "sources": "e904a8c2f498a14b48ebc5e0e35b6c8844846b5ab9a4244042da4ec02811e561" }, - "version": "1.9.2" + "version": "1.9.8" } }, "dependencies": { "org.jline:jline-reader": [ "org.jline:jline-terminal" ], + "org.jline:jline-terminal": [ + "org.jline:jline-native" + ], "org.jline:jline-terminal-jna": [ "net.java.dev.jna:jna", "org.jline:jline-terminal" @@ -130,6 +143,9 @@ "com.sun.jna.ptr", "com.sun.jna.win32" ], + "org.jline:jline-native": [ + "org.jline.nativ" + ], "org.jline:jline-reader": [ "org.jline.keymap", "org.jline.reader", @@ -140,6 +156,7 @@ "org.jline:jline-terminal": [ "org.jline.terminal", "org.jline.terminal.impl", + "org.jline.terminal.impl.exec", "org.jline.terminal.spi", "org.jline.utils" ], @@ -221,8 +238,10 @@ "dotty.tools.dotc.reporting", "dotty.tools.dotc.rewrites", "dotty.tools.dotc.sbt", + "dotty.tools.dotc.sbt.interfaces", "dotty.tools.dotc.semanticdb", "dotty.tools.dotc.semanticdb.internal", + "dotty.tools.dotc.staging", "dotty.tools.dotc.transform", "dotty.tools.dotc.transform.init", "dotty.tools.dotc.transform.localopt", @@ -245,6 +264,7 @@ "scala", "scala.annotation", "scala.annotation.internal", + "scala.annotation.unchecked", "scala.compiletime", "scala.compiletime.ops", "scala.compiletime.testing", @@ -281,6 +301,8 @@ "https://repo.maven.apache.org/maven2/": [ "net.java.dev.jna:jna", "net.java.dev.jna:jna:jar:sources", + "org.jline:jline-native", + "org.jline:jline-native:jar:sources", "org.jline:jline-reader", "org.jline:jline-reader:jar:sources", "org.jline:jline-terminal", @@ -309,6 +331,8 @@ "https://maven-central.storage-download.googleapis.com/maven2/": [ "net.java.dev.jna:jna", "net.java.dev.jna:jna:jar:sources", + "org.jline:jline-native", + "org.jline:jline-native:jar:sources", "org.jline:jline-reader", "org.jline:jline-reader:jar:sources", "org.jline:jline-terminal", @@ -337,6 +361,8 @@ "https://mirror.bazel.build/repo1.maven.org/maven2/": [ "net.java.dev.jna:jna", "net.java.dev.jna:jna:jar:sources", + "org.jline:jline-native", + "org.jline:jline-native:jar:sources", "org.jline:jline-reader", "org.jline:jline-reader:jar:sources", "org.jline:jline-terminal", diff --git a/annex_install.json b/annex_install.json index b0e3bada4..aacb384ce 100644 --- a/annex_install.json +++ b/annex_install.json @@ -1,7 +1,7 @@ { "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": -397429128, - "__RESOLVED_ARTIFACTS_HASH": 1851902022, + "__INPUT_ARTIFACTS_HASH": -1072929893, + "__RESOLVED_ARTIFACTS_HASH": -1699692112, "artifacts": { "ch.epfl.scala:bloop-backend_2.12": { "shasums": { @@ -558,10 +558,10 @@ }, "net.java.dev.jna:jna": { "shasums": { - "jar": "66d4f819a062a51a1d5627bffc23fac55d1677f0e0a1feba144aabdd670a64bb", - "sources": "a4c45843e8f60df141c4f37602365a421bb278ca1ef30ba0a043d6a871dd29f4" + "jar": "34ed1e1f27fa896bca50dbc4e99cf3732967cec387a7a0d5e3486c09673fe8c6", + "sources": "ebd774c761215676cda059fd68240628ef99f4aafa6d355ae00d184855aef134" }, - "version": "5.13.0" + "version": "5.14.0" }, "net.java.dev.jna:jna-platform": { "shasums": { @@ -635,10 +635,10 @@ }, "org.jline:jline": { "shasums": { - "jar": "7c3ec8d2c5815188bbaefa4c7c42bc9b8ec172382ca026a4b4f3d113c0b5c3e3", - "sources": "8071c15cd25bc76e60d6a51a4d9cb99937d7d8a845c6d52dab15fe0c871163ff" + "jar": "421efcde9db04c34b9c03cd66e0460e75e5cdd4a3cafde54ef370049ac092e7c", + "sources": "fc452b72d16b34773168a8e5e6aa9d5a54e4bd85fc099e397fe34e4133ab5efd" }, - "version": "3.22.0" + "version": "3.25.1" }, "org.jline:jline-terminal": { "shasums": { @@ -719,24 +719,24 @@ }, "org.scala-lang:scala-compiler": { "shasums": { - "jar": "c5a14770370e73a69367b131da1533890200b1e2aa70643b73f9ff31ef2e69ec", - "sources": "7cfb1a0c6d939e05f82262c9d73f0fa82a6649d055bf0ba1f5e9d10d640860bb" + "jar": "17b7e1dd95900420816a3bc2788c8c7358c2a3c42899765a5c463a46bfa569a6", + "sources": "d6fc2c62cb90e32d5c08a1fbd312e2c5995d2a128f89ce34a5181e52cbff0809" }, - "version": "2.13.11" + "version": "2.13.14" }, "org.scala-lang:scala-library": { "shasums": { - "jar": "71853291f61bda32786a866533361cae474344f5b2772a379179b02112444ed3", - "sources": "c09a5106c3694c044de8494c7d640637b268ea03d1bec46ea5f41bca8841ed1a" + "jar": "43e0ca1583df1966eaf02f0fbddcfb3784b995dd06bfc907209347758ce4b7e3", + "sources": "4be0650f427ebf6ff8a462fe634fdc02665d59ec3962c4d98dbf5ac766f1dd4f" }, - "version": "2.13.11" + "version": "2.13.14" }, "org.scala-lang:scala-reflect": { "shasums": { - "jar": "6a46ed9b333857e8b5ea668bb254ed8e47dacd1116bf53ade9467aa4ae8f1818", - "sources": "5273592d92d539f2d327276296eb9238a0d8dec4e7efe700f6648678f43f1e4c" + "jar": "8846baaa8cf43b1b19725ab737abff145ca58d14a4d02e75d71ca8f7ca5f2926", + "sources": "94bf451e612d9460dbc7cee4beed84a7e5dd7b86bcb901ee8c78f7cf5e035e01" }, - "version": "2.13.11" + "version": "2.13.14" }, "org.scala-sbt.ivy:ivy": { "shasums": { @@ -2403,7 +2403,10 @@ "org.jline.builtins.telnet", "org.jline.console", "org.jline.console.impl", + "org.jline.jansi", + "org.jline.jansi.io", "org.jline.keymap", + "org.jline.nativ", "org.jline.reader", "org.jline.reader.impl", "org.jline.reader.impl.completer", @@ -2412,6 +2415,7 @@ "org.jline.terminal", "org.jline.terminal.impl", "org.jline.terminal.impl.exec", + "org.jline.terminal.impl.ffm", "org.jline.terminal.impl.jansi", "org.jline.terminal.impl.jansi.freebsd", "org.jline.terminal.impl.jansi.linux", @@ -2424,6 +2428,12 @@ "org.jline.terminal.impl.jna.osx", "org.jline.terminal.impl.jna.solaris", "org.jline.terminal.impl.jna.win", + "org.jline.terminal.impl.jni", + "org.jline.terminal.impl.jni.freebsd", + "org.jline.terminal.impl.jni.linux", + "org.jline.terminal.impl.jni.osx", + "org.jline.terminal.impl.jni.solaris", + "org.jline.terminal.impl.jni.win", "org.jline.terminal.spi", "org.jline.utils", "org.jline.widget" diff --git a/docs/newdocs/scala_versions.md b/docs/newdocs/scala_versions.md index 500ab1f87..a816752ca 100644 --- a/docs/newdocs/scala_versions.md +++ b/docs/newdocs/scala_versions.md @@ -2,12 +2,12 @@ The scala version used by a buildable target is specified via the `ScalaConfiguration` passed in to the rule's `scala` attribute. -This attribute defaults to using the `default_scala` specified via `bind` in the `WORKSPACE` file of the repo. For example, suppose the `ScalaConfiguration` you wish to default to is defined by `//scala:2_13_11`. In your `WORKSPACE`, you would include: +This attribute defaults to using the `default_scala` specified via `bind` in the `WORKSPACE` file of the repo. For example, suppose the `ScalaConfiguration` you wish to default to is defined by `//scala:2_13_14`. In your `WORKSPACE`, you would include: ```python bind( name = "default_scala", - actual = "//scala:2_13_11", + actual = "//scala:2_13_14", ) ``` @@ -16,34 +16,34 @@ We provide two means of creating the `ScalaConfiguration`: `configure_bootstrap_ Example: ```python -compiler_classpath_2_13_11 = [ - "@scala_compiler_2_13_11//jar", - "@scala_library_2_13_11//jar", - "@scala_reflect_2_13_11//jar", +compiler_classpath_2_13_14 = [ + "@scala_compiler_2_13_14//jar", + "@scala_library_2_13_14//jar", + "@scala_reflect_2_13_14//jar", ] -runtime_classpath_2_13_11 = [ - "@scala_library_2_13_11//jar", +runtime_classpath_2_13_14 = [ + "@scala_library_2_13_14//jar", ] # This creates a basic ScalaConfiguration that relies on the scalac compiler configure_bootstrap_scala( - name = "bootstrap_2_13_11", - compiler_classpath = compiler_classpath_2_13_11, - runtime_classpath = runtime_classpath_2_13_11, - version = "2.13.11", + name = "bootstrap_2_13_14", + compiler_classpath = compiler_classpath_2_13_14, + runtime_classpath = runtime_classpath_2_13_14, + version = "2.13.14", visibility = ["//visibility:public"], ) # compiler bridge needed to configure zinc compiler scala_library( - name = "compiler_bridge_2_13_11", + name = "compiler_bridge_2_13_14", srcs = [ "@compiler_bridge_2_13//:src", ], - scala = ":bootstrap_2_13_11", + scala = ":bootstrap_2_13_14", visibility = ["//visibility:public"], - deps = compiler_classpath_2_13_11 + [ + deps = compiler_classpath_2_13_14 + [ "@scala_annex_org_scala_sbt_compiler_interface//jar", "@scala_annex_org_scala_sbt_util_interface//jar", ], @@ -51,11 +51,11 @@ scala_library( # This augments the configuration to configure the zinc compiler configure_zinc_scala( - name = "zinc_2_13_11", - compiler_bridge = ":compiler_bridge_2_13_11", - compiler_classpath = compiler_classpath_2_13_11, - runtime_classpath = runtime_classpath_2_13_11, - version = "2.13.11", + name = "zinc_2_13_14", + compiler_bridge = ":compiler_bridge_2_13_14", + compiler_classpath = compiler_classpath_2_13_14, + runtime_classpath = runtime_classpath_2_13_14, + version = "2.13.14", visibility = ["//visibility:public"], ) ``` @@ -68,13 +68,13 @@ For example: scala_library( name = "example_compiled_with_scalac", srcs = glob(["**/*.scala"]) - scala = ":bootstrap_2_13_11 + scala = ":bootstrap_2_13_14 ) scala_library( name = "example_compiled_with_zinc", srcs = glob(["**/*.scala"]) - scala = ":zinc_2_13_11 + scala = ":zinc_2_13_14 ) # This would use whatever //external:default_scala points to (i.e. what you bind default_scala to in your WORKSPACE) diff --git a/rules/scala/workspace.bzl b/rules/scala/workspace.bzl index 2da8bc49a..874c468cf 100644 --- a/rules/scala/workspace.bzl +++ b/rules/scala/workspace.bzl @@ -18,9 +18,9 @@ def scala_artifacts(): "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.4", "net.sourceforge.argparse4j:argparse4j:0.8.1", "org.jacoco:org.jacoco.core:0.7.5.201505241946", - "org.scala-lang:scala-compiler:2.13.11", - "org.scala-lang:scala-library:2.13.11", - "org.scala-lang:scala-reflect:2.13.11", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", "org.scala-sbt:compiler-interface:1.9.3", "org.scala-sbt:io_2.13:1.9.1", "org.scala-sbt:test-interface:1.0", diff --git a/rules/scala/workspace_2_12.bzl b/rules/scala/workspace_2_12.bzl index 10e518ebf..164b4a57e 100644 --- a/rules/scala/workspace_2_12.bzl +++ b/rules/scala/workspace_2_12.bzl @@ -3,9 +3,9 @@ load("@rules_jvm_external//:specs.bzl", "maven") def scala_2_12_artifacts(): return [ - "org.scala-lang:scala-compiler:2.12.14", - "org.scala-lang:scala-library:2.12.14", - "org.scala-lang:scala-reflect:2.12.14", + "org.scala-lang:scala-compiler:2.12.19", + "org.scala-lang:scala-library:2.12.19", + "org.scala-lang:scala-reflect:2.12.19", # The compiler bridge has a dependency on compiler-interface, which has a dependency on the Scala 2 # library. We need to set this to neverlink = True to avoid this the Scala 2 library being pulled # onto the Scala 3, and other Scala versions like 2.12, compiler classpath during runtime. diff --git a/rules/scala/workspace_3.bzl b/rules/scala/workspace_3.bzl index 4193ddf49..3be51cfda 100644 --- a/rules/scala/workspace_3.bzl +++ b/rules/scala/workspace_3.bzl @@ -3,13 +3,13 @@ load("@rules_jvm_external//:specs.bzl", "maven") def scala_3_artifacts(): return [ - "org.scala-lang:scala3-compiler_3:3.3.0", - "org.scala-lang:scala3-library_3:3.3.0", + "org.scala-lang:scala3-compiler_3:3.4.2", + "org.scala-lang:scala3-library_3:3.4.2", "org.scala-sbt:compiler-interface:1.9.3", # The compiler bridge has a dependency on compiler-interface, which has a dependency on the Scala 2 # library. We need to set this to neverlink = True to avoid this the Scala 2 library being pulled # onto the Scala 3, and other Scala versions like 2.12, compiler classpath during runtime. - maven.artifact("org.scala-lang", "scala3-sbt-bridge", "3.3.0", neverlink = True), + maven.artifact("org.scala-lang", "scala3-sbt-bridge", "3.4.2", neverlink = True), ] def scala_3_repositories(): diff --git a/src/main/scala/BUILD b/src/main/scala/BUILD index 1db5021a5..ef9bc0b68 100644 --- a/src/main/scala/BUILD +++ b/src/main/scala/BUILD @@ -7,56 +7,56 @@ load( alias( name = "bootstrap", - actual = ":bootstrap_2_13_11", + actual = ":bootstrap_2_13_14", visibility = ["//visibility:public"], ) alias( name = "bootstrap_3", - actual = ":bootstrap_3_3_0", + actual = ":bootstrap_3_4_2", visibility = ["//visibility:public"], ) alias( name = "zinc", - actual = ":zinc_2_13_11", + actual = ":zinc_2_13_14", visibility = ["//visibility:public"], ) alias( name = "zinc_3", - actual = ":zinc_3_3_0", + actual = ":zinc_3_4_2", visibility = ["//visibility:public"], ) # Scala 2.13 -compiler_classpath_2_13_11 = [ +compiler_classpath_2_13_14 = [ "@annex//:org_scala_lang_scala_compiler", "@annex//:org_scala_lang_scala_library", "@annex//:org_scala_lang_scala_reflect", ] -runtime_classpath_2_13_11 = [ +runtime_classpath_2_13_14 = [ "@annex//:org_scala_lang_scala_library", ] configure_bootstrap_scala( - name = "bootstrap_2_13_11", - compiler_classpath = compiler_classpath_2_13_11, - runtime_classpath = runtime_classpath_2_13_11, - version = "2.13.11", + name = "bootstrap_2_13_14", + compiler_classpath = compiler_classpath_2_13_14, + runtime_classpath = runtime_classpath_2_13_14, + version = "2.13.14", visibility = ["//visibility:public"], ) configure_zinc_scala( - name = "zinc_2_13_11", + name = "zinc_2_13_14", compiler_bridge = "@annex//:org_scala_sbt_compiler_bridge_2_13", - compiler_classpath = compiler_classpath_2_13_11, + compiler_classpath = compiler_classpath_2_13_14, global_scalacopts = [ "-Ytasty-reader", ], - runtime_classpath = runtime_classpath_2_13_11, - version = "2.13.11", + runtime_classpath = runtime_classpath_2_13_14, + version = "2.13.14", visibility = ["//visibility:public"], ) @@ -67,41 +67,41 @@ configure_zinc_scala( scala_library( name = "scala-sdk", deps_used_whitelist = [ - "@annex_3//:org_scala_lang_scala3_library_3_3_3_0", + "@annex_3//:org_scala_lang_scala3_library_3_3_4_2", ], scala = ":zinc_3", deps = [ - "@annex_3//:org_scala_lang_scala3_library_3_3_3_0", + "@annex_3//:org_scala_lang_scala3_library_3_3_4_2", ], ) -compiler_classpath_3_3_0 = [ - "@annex_3//:org_scala_lang_scala3_compiler_3_3_3_0", - "@annex_3//:org_scala_lang_scala3_library_3_3_3_0", +compiler_classpath_3_4_2 = [ + "@annex_3//:org_scala_lang_scala3_compiler_3_3_4_2", + "@annex_3//:org_scala_lang_scala3_library_3_3_4_2", ] -runtime_classpath_3_3_0 = [ - "@annex_3//:org_scala_lang_scala3_library_3_3_3_0", +runtime_classpath_3_4_2 = [ + "@annex_3//:org_scala_lang_scala3_library_3_3_4_2", "@annex_3//:org_scala_lang_scala3_interfaces", "@annex_3//:org_scala_lang_tasty_core_3", ] configure_bootstrap_scala( - name = "bootstrap_3_3_0", - compiler_classpath = compiler_classpath_3_3_0, - runtime_classpath = runtime_classpath_3_3_0, + name = "bootstrap_3_4_2", + compiler_classpath = compiler_classpath_3_4_2, + runtime_classpath = runtime_classpath_3_4_2, use_ijar = False, - version = "3.3.0", + version = "3.4.2", visibility = ["//visibility:public"], ) configure_zinc_scala( - name = "zinc_3_3_0", - compiler_bridge = "@annex_3//:org_scala_lang_scala3_sbt_bridge_3_3_0", - compiler_classpath = compiler_classpath_3_3_0, - runtime_classpath = runtime_classpath_3_3_0, + name = "zinc_3_4_2", + compiler_bridge = "@annex_3//:org_scala_lang_scala3_sbt_bridge_3_4_2", + compiler_classpath = compiler_classpath_3_4_2, + runtime_classpath = runtime_classpath_3_4_2, use_ijar = False, - version = "3.3.0", + version = "3.4.2", visibility = ["//visibility:public"], ) diff --git a/tests/.bazelrc b/tests/.bazelrc index 3389a59bd..a0dd9087c 100644 --- a/tests/.bazelrc +++ b/tests/.bazelrc @@ -1,10 +1,8 @@ common --config=tests -build --javabase="//:jdk" -build --host_javabase="//:jdk" -build --java_language_version="11" -build --java_runtime_version="remotejdk_11" -build --tool_java_language_version="11" -build --tool_java_runtime_version="remotejdk_11" +build --java_language_version="21" +build --java_runtime_version="remotejdk_21" +build --tool_java_language_version="21" +build --tool_java_runtime_version="remotejdk_21" import %workspace%/../.bazelrc_shared diff --git a/tests/BUILD b/tests/BUILD index 940c866b6..7664b47fb 100644 --- a/tests/BUILD +++ b/tests/BUILD @@ -1,12 +1,13 @@ -java_runtime( - name = "jdk", - srcs = select({ - "@bazel_tools//src/conditions:linux_x86_64": ["@jdk11-linux//:jdk"], - "@bazel_tools//src/conditions:darwin_x86_64": ["@jdk11-osx//:jdk"], - }), - java = select({ - "@bazel_tools//src/conditions:linux_x86_64": "@jdk11-linux//:java", - "@bazel_tools//src/conditions:darwin_x86_64": "@jdk11-osx//:java", - }), - visibility = ["//visibility:public"], +load( + "@rules_java//toolchains:default_java_toolchain.bzl", + "DEFAULT_TOOLCHAIN_CONFIGURATION", + "default_java_toolchain", +) + +default_java_toolchain( + name = "repository_default_toolchain_21", + configuration = DEFAULT_TOOLCHAIN_CONFIGURATION, + java_runtime = "@rules_java//toolchains:remotejdk_21", + source_version = "21", + target_version = "21", ) diff --git a/tests/WORKSPACE b/tests/WORKSPACE index dff71dfc5..b074d3d22 100644 --- a/tests/WORKSPACE +++ b/tests/WORKSPACE @@ -32,32 +32,19 @@ load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps") protobuf_deps() -jdk_build_file_content = """ -filegroup( - name = "jdk", - srcs = glob(["**/*"]), - visibility = ["//visibility:public"], -) -filegroup( - name = "java", - srcs = ["bin/java"], - visibility = ["//visibility:public"], -) -""" - +# rules_java http_archive( - name = "jdk11-linux", - build_file_content = jdk_build_file_content, - strip_prefix = "jdk-11.0.9.1+1", - url = "https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.9.1%2B1/OpenJDK11U-jdk_x64_linux_hotspot_11.0.9.1_1.tar.gz", + name = "rules_java", + urls = [ + "https://github.com/bazelbuild/rules_java/releases/download/7.6.4/rules_java-7.6.4.tar.gz", + ], + sha256 = "80e61f508ff79a3fde4a549b8b1f6ec7f8a82c259e51240a4403e5be36f88142", ) +load("@rules_java//java:repositories.bzl", "rules_java_dependencies", "rules_java_toolchains") +rules_java_dependencies() +rules_java_toolchains() -http_archive( - name = "jdk11-osx", - build_file_content = jdk_build_file_content, - strip_prefix = "jdk-11.0.9.1+1/Contents/Home", - url = "https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.9.1%2B1/OpenJDK11U-jdk_x64_mac_hotspot_11.0.9.1_1.tar.gz", -) +register_toolchains("//:repository_default_toolchain_21_definition") local_repository( name = "rules_scala_annex", @@ -132,7 +119,7 @@ scala_import_external( emulate_rules_scala( extra_deps = [ - "@annex//:org_scala_lang_scala_reflect_2_13_11", + "@annex//:org_scala_lang_scala_reflect_2_13_14", "@annex_test//:org_scala_lang_modules_scala_xml_2_13", ], scala = "@//scala:2_13", @@ -193,7 +180,7 @@ jvm_maven_import_external( bind( name = "default_scala", - actual = "//scala:zinc_2_13_11", + actual = "//scala:zinc_2_13_14", ) http_file( diff --git a/tests/annex_test_install.json b/tests/annex_test_install.json index 5a56036aa..69ee68dc9 100644 --- a/tests/annex_test_install.json +++ b/tests/annex_test_install.json @@ -1,7 +1,7 @@ { "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": -788911655, - "__RESOLVED_ARTIFACTS_HASH": 1001665426, + "__INPUT_ARTIFACTS_HASH": 71573883, + "__RESOLVED_ARTIFACTS_HASH": 281212344, "conflict_resolution": { "com.google.protobuf:protobuf-java:3.11.4": "com.google.protobuf:protobuf-java:3.15.8", "com.thesamet.scalapb:lenses_2.13:0.9.0": "com.thesamet.scalapb:lenses_2.13:0.11.4" @@ -37,17 +37,17 @@ }, "net.java.dev.jna:jna": { "shasums": { - "jar": "66d4f819a062a51a1d5627bffc23fac55d1677f0e0a1feba144aabdd670a64bb", - "sources": "a4c45843e8f60df141c4f37602365a421bb278ca1ef30ba0a043d6a871dd29f4" + "jar": "34ed1e1f27fa896bca50dbc4e99cf3732967cec387a7a0d5e3486c09673fe8c6", + "sources": "ebd774c761215676cda059fd68240628ef99f4aafa6d355ae00d184855aef134" }, - "version": "5.13.0" + "version": "5.14.0" }, "org.jline:jline": { "shasums": { - "jar": "7c3ec8d2c5815188bbaefa4c7c42bc9b8ec172382ca026a4b4f3d113c0b5c3e3", - "sources": "8071c15cd25bc76e60d6a51a4d9cb99937d7d8a845c6d52dab15fe0c871163ff" + "jar": "421efcde9db04c34b9c03cd66e0460e75e5cdd4a3cafde54ef370049ac092e7c", + "sources": "fc452b72d16b34773168a8e5e6aa9d5a54e4bd85fc099e397fe34e4133ab5efd" }, - "version": "3.22.0" + "version": "3.25.1" }, "org.portable-scala:portable-scala-reflect_2.13": { "shasums": { @@ -79,24 +79,24 @@ }, "org.scala-lang:scala-compiler": { "shasums": { - "jar": "c5a14770370e73a69367b131da1533890200b1e2aa70643b73f9ff31ef2e69ec", - "sources": "7cfb1a0c6d939e05f82262c9d73f0fa82a6649d055bf0ba1f5e9d10d640860bb" + "jar": "17b7e1dd95900420816a3bc2788c8c7358c2a3c42899765a5c463a46bfa569a6", + "sources": "d6fc2c62cb90e32d5c08a1fbd312e2c5995d2a128f89ce34a5181e52cbff0809" }, - "version": "2.13.11" + "version": "2.13.14" }, "org.scala-lang:scala-library": { "shasums": { - "jar": "71853291f61bda32786a866533361cae474344f5b2772a379179b02112444ed3", - "sources": "c09a5106c3694c044de8494c7d640637b268ea03d1bec46ea5f41bca8841ed1a" + "jar": "43e0ca1583df1966eaf02f0fbddcfb3784b995dd06bfc907209347758ce4b7e3", + "sources": "4be0650f427ebf6ff8a462fe634fdc02665d59ec3962c4d98dbf5ac766f1dd4f" }, - "version": "2.13.11" + "version": "2.13.14" }, "org.scala-lang:scala-reflect": { "shasums": { - "jar": "6a46ed9b333857e8b5ea668bb254ed8e47dacd1116bf53ade9467aa4ae8f1818", - "sources": "5273592d92d539f2d327276296eb9238a0d8dec4e7efe700f6648678f43f1e4c" + "jar": "8846baaa8cf43b1b19725ab737abff145ca58d14a4d02e75d71ca8f7ca5f2926", + "sources": "94bf451e612d9460dbc7cee4beed84a7e5dd7b86bcb901ee8c78f7cf5e035e01" }, - "version": "2.13.11" + "version": "2.13.14" }, "org.scala-sbt:compiler-interface": { "shasums": { @@ -266,12 +266,12 @@ }, "version": "4.12.3" }, - "org.typelevel:kind-projector_2.13.11": { + "org.typelevel:kind-projector_2.13.14": { "shasums": { - "jar": "c5c49245a962206d708b7c9368d9f1dd77c773250c0f7bdde9c78e994889cb19", - "sources": "9a22c0477069663a95adfd80fc8ea918e00b742b63472abc859aff45b7cdb459" + "jar": "569fec54deba82cd143f05a6a0456c9e3bf56bff310b0968f0adb5fb3b352d92", + "sources": "baf8fbcbed5c19413cc87694f8d2208e4f92dedb8ff851bfdfc89a78025e1c5f" }, - "version": "0.13.2" + "version": "0.13.3" } }, "dependencies": { @@ -424,7 +424,7 @@ "org.scala-lang:scala-library", "org.specs2:specs2-common_2.13" ], - "org.typelevel:kind-projector_2.13.11": [ + "org.typelevel:kind-projector_2.13.14": [ "org.scala-lang:scala-compiler", "org.scala-lang:scala-library" ] @@ -476,7 +476,10 @@ "org.jline.builtins.telnet", "org.jline.console", "org.jline.console.impl", + "org.jline.jansi", + "org.jline.jansi.io", "org.jline.keymap", + "org.jline.nativ", "org.jline.reader", "org.jline.reader.impl", "org.jline.reader.impl.completer", @@ -485,6 +488,7 @@ "org.jline.terminal", "org.jline.terminal.impl", "org.jline.terminal.impl.exec", + "org.jline.terminal.impl.ffm", "org.jline.terminal.impl.jansi", "org.jline.terminal.impl.jansi.freebsd", "org.jline.terminal.impl.jansi.linux", @@ -497,6 +501,12 @@ "org.jline.terminal.impl.jna.osx", "org.jline.terminal.impl.jna.solaris", "org.jline.terminal.impl.jna.win", + "org.jline.terminal.impl.jni", + "org.jline.terminal.impl.jni.freebsd", + "org.jline.terminal.impl.jni.linux", + "org.jline.terminal.impl.jni.osx", + "org.jline.terminal.impl.jni.solaris", + "org.jline.terminal.impl.jni.win", "org.jline.terminal.spi", "org.jline.utils", "org.jline.widget" @@ -768,7 +778,7 @@ "org.specs2.matcher", "org.specs2.matcher.describe" ], - "org.typelevel:kind-projector_2.13.11": [ + "org.typelevel:kind-projector_2.13.14": [ "d_m" ] }, @@ -848,8 +858,8 @@ "org.specs2:specs2-fp_2.13:jar:sources", "org.specs2:specs2-matcher_2.13", "org.specs2:specs2-matcher_2.13:jar:sources", - "org.typelevel:kind-projector_2.13.11", - "org.typelevel:kind-projector_2.13.11:jar:sources" + "org.typelevel:kind-projector_2.13.14", + "org.typelevel:kind-projector_2.13.14:jar:sources" ], "https://maven-central.storage-download.googleapis.com/maven2/": [ "com.google.protobuf:protobuf-java", @@ -926,8 +936,8 @@ "org.specs2:specs2-fp_2.13:jar:sources", "org.specs2:specs2-matcher_2.13", "org.specs2:specs2-matcher_2.13:jar:sources", - "org.typelevel:kind-projector_2.13.11", - "org.typelevel:kind-projector_2.13.11:jar:sources" + "org.typelevel:kind-projector_2.13.14", + "org.typelevel:kind-projector_2.13.14:jar:sources" ], "https://mirror.bazel.build/repo1.maven.org/maven2/": [ "com.google.protobuf:protobuf-java", @@ -1004,8 +1014,8 @@ "org.specs2:specs2-fp_2.13:jar:sources", "org.specs2:specs2-matcher_2.13", "org.specs2:specs2-matcher_2.13:jar:sources", - "org.typelevel:kind-projector_2.13.11", - "org.typelevel:kind-projector_2.13.11:jar:sources" + "org.typelevel:kind-projector_2.13.14", + "org.typelevel:kind-projector_2.13.14:jar:sources" ] }, "version": "2" diff --git a/tests/compat/ported_tests/BUILD b/tests/compat/ported_tests/BUILD index b25c688fe..6dcbd84cc 100644 --- a/tests/compat/ported_tests/BUILD +++ b/tests/compat/ported_tests/BUILD @@ -6,6 +6,7 @@ load( "scala_test", "scala_test_suite", ) +load("@rules_java//java:defs.bzl", "java_library") scala_library( name = "Runtime", diff --git a/tests/compile/log_level/BUILD b/tests/compile/log_level/BUILD index b3e285481..55554e478 100644 --- a/tests/compile/log_level/BUILD +++ b/tests/compile/log_level/BUILD @@ -3,6 +3,6 @@ load("@rules_scala_annex//rules:scala.bzl", "scala_binary") scala_binary( name = "lib", srcs = ["Example.scala"], - scala = "//scala:zinc_2_13_11_log_level_debug", + scala = "//scala:zinc_2_13_14_log_level_debug", deps = [], ) diff --git a/tests/compile/logger/Example.scala b/tests/compile/logger/Example.scala index 63ce2f9a1..12172f945 100644 --- a/tests/compile/logger/Example.scala +++ b/tests/compile/logger/Example.scala @@ -10,7 +10,7 @@ import xsbti.Severity object Example { def main(args: Array[String]) { val logger = new AnnexLogger(LogLevel.Info) - val reporter = new LoggedReporter(logger, "2.13.11") + val reporter = new LoggedReporter(logger, "2.13.14") val problem1 = problem("", new JavaPosition("Test Line", 100, "", 100), "Info Message 1", Severity.Info) val problem2 = problem("", new JavaPosition("Test Line", 200, "", 200), "Warning Message 2", Severity.Warn) val problem3 = problem("", new JavaPosition("Test Line", 300, "", 300), "Error Message 3", Severity.Error) diff --git a/tests/coverage/BUILD b/tests/coverage/BUILD index ec9d93770..282d04421 100644 --- a/tests/coverage/BUILD +++ b/tests/coverage/BUILD @@ -1,4 +1,5 @@ load("@rules_scala_annex//rules:scala.bzl", "scala_library", "scala_test") +load("@rules_java//java:defs.bzl", "java_library", "java_test") scala_test( name = "test-all", diff --git a/tests/dependencies/indirect/BUILD b/tests/dependencies/indirect/BUILD index 08aecba7b..5578ddab0 100644 --- a/tests/dependencies/indirect/BUILD +++ b/tests/dependencies/indirect/BUILD @@ -59,19 +59,19 @@ scala_library( scala_library( name = "define_a", srcs = ["A.scala"], - scala = "@rules_scala_annex//src/main/scala:zinc_2_13_11", + scala = "@rules_scala_annex//src/main/scala:zinc_2_13_14", ) scala_library( name = "define_b", srcs = ["B.scala"], - scala = "@rules_scala_annex//src/main/scala:zinc_2_13_11", + scala = "@rules_scala_annex//src/main/scala:zinc_2_13_14", deps = [":define_a"], ) scala_library( name = "define_c", srcs = ["C.scala"], - scala = "@rules_scala_annex//src/main/scala:zinc_2_13_11", + scala = "@rules_scala_annex//src/main/scala:zinc_2_13_14", deps = [":define_b"], ) diff --git a/tests/plugins/classpath/BUILD b/tests/plugins/classpath/BUILD index 8b4e0afa1..70cbfd6b6 100644 --- a/tests/plugins/classpath/BUILD +++ b/tests/plugins/classpath/BUILD @@ -1,4 +1,5 @@ load("@rules_scala_annex//rules:scala.bzl", "scala_library") +load("@rules_java//java:defs.bzl", "java_binary") scala_library( name = "plugin-lib", @@ -39,8 +40,8 @@ scala_library( tags = ["manual"], deps = [ ":plugin-lib", - "@annex//:org_scala_lang_scala_compiler_2_13_11", - "@annex//:org_scala_lang_scala_reflect_2_13_11", + "@annex//:org_scala_lang_scala_compiler_2_13_14", + "@annex//:org_scala_lang_scala_reflect_2_13_14", ], ) diff --git a/tests/plugins/kind-projector/BUILD b/tests/plugins/kind-projector/BUILD index fb720668c..350ecc22c 100644 --- a/tests/plugins/kind-projector/BUILD +++ b/tests/plugins/kind-projector/BUILD @@ -4,31 +4,31 @@ scala_library( name = "kind-projector", srcs = ["KindProjector.scala"], plugins = [ - "@annex_test//:org_typelevel_kind_projector_2_13_11", + "@annex_test//:org_typelevel_kind_projector_2_13_14", ], tags = ["manual"], ) configure_zinc_scala( - name = "scala_2_13_11_with_kind_projector", + name = "scala_2_13_14_with_kind_projector", compiler_bridge = "@annex//:org_scala_sbt_compiler_bridge_2_13", compiler_classpath = [ - "@annex//:org_scala_lang_scala_compiler_2_13_11", - "@annex//:org_scala_lang_scala_reflect_2_13_11", - "@annex//:org_scala_lang_scala_library_2_13_11", + "@annex//:org_scala_lang_scala_compiler_2_13_14", + "@annex//:org_scala_lang_scala_reflect_2_13_14", + "@annex//:org_scala_lang_scala_library_2_13_14", ], global_plugins = [ - "@annex_test//:org_typelevel_kind_projector_2_13_11", + "@annex_test//:org_typelevel_kind_projector_2_13_14", ], runtime_classpath = [ - "@annex//:org_scala_lang_scala_library_2_13_11", + "@annex//:org_scala_lang_scala_library_2_13_14", ], - version = "2.13.11", + version = "2.13.14", ) scala_library( name = "kind-projector-via-global-plugins", srcs = ["KindProjector.scala"], - scala = ":scala_2_13_11_with_kind_projector", + scala = ":scala_2_13_14_with_kind_projector", tags = ["manual"], ) diff --git a/tests/plugins/macros/BUILD b/tests/plugins/macros/BUILD index 97fee1de1..527476417 100644 --- a/tests/plugins/macros/BUILD +++ b/tests/plugins/macros/BUILD @@ -6,7 +6,7 @@ scala_library( scala = "//scala:2_13", deps = [ ":macro_bad", - "@annex//:org_scala_lang_scala_reflect_2_13_11", + "@annex//:org_scala_lang_scala_reflect_2_13_14", ], ) @@ -17,7 +17,7 @@ scala_library( scala = "//scala:2_13", deps = [ ":util", - "@annex//:org_scala_lang_scala_reflect_2_13_11", + "@annex//:org_scala_lang_scala_reflect_2_13_14", ], ) @@ -28,7 +28,7 @@ scala_library( scala = "//scala:2_13", deps = [ ":macro", - "@annex//:org_scala_lang_scala_reflect_2_13_11", + "@annex//:org_scala_lang_scala_reflect_2_13_14", ], ) @@ -38,7 +38,7 @@ scala_library( scala = "//scala:2_13", deps = [ ":util", - "@annex//:org_scala_lang_scala_reflect_2_13_11", + "@annex//:org_scala_lang_scala_reflect_2_13_14", ], ) @@ -46,7 +46,7 @@ scala_library( name = "util", srcs = ["MacroUtil.scala"], scala = "//scala:2_13", - deps = ["@annex//:org_scala_lang_scala_reflect_2_13_11"], + deps = ["@annex//:org_scala_lang_scala_reflect_2_13_14"], ) scala_binary( diff --git a/tests/providers/BUILD b/tests/providers/BUILD index 14ac30432..446a7424e 100644 --- a/tests/providers/BUILD +++ b/tests/providers/BUILD @@ -18,14 +18,14 @@ load( declare_scala_configuration( name = "provided_scala_configuration", compiler_classpath = [ - "@annex//:org_scala_lang_scala_compiler_2_13_11", - "@annex//:org_scala_lang_scala_library_2_13_11", - "@annex//:org_scala_lang_scala_reflect_2_13_11", + "@annex//:org_scala_lang_scala_compiler_2_13_14", + "@annex//:org_scala_lang_scala_library_2_13_14", + "@annex//:org_scala_lang_scala_reflect_2_13_14", ], runtime_classpath = [ - "@annex//:org_scala_lang_scala_library_2_13_11", + "@annex//:org_scala_lang_scala_library_2_13_14", ], - version = "2.13.11", + version = "2.13.14", ) bootstrap_scala_library( @@ -33,9 +33,9 @@ bootstrap_scala_library( srcs = ["@compiler_bridge_2_13//:src"], scala = ":provided_scala_configuration", deps = [ - "@annex//:org_scala_lang_scala_compiler_2_13_11", - "@annex//:org_scala_lang_scala_library_2_13_11", - "@annex//:org_scala_lang_scala_reflect_2_13_11", + "@annex//:org_scala_lang_scala_compiler_2_13_14", + "@annex//:org_scala_lang_scala_library_2_13_14", + "@annex//:org_scala_lang_scala_reflect_2_13_14", "@annex//:org_scala_sbt_compiler_interface", "@annex//:org_scala_sbt_util_interface", ], diff --git a/tests/resources/reference_conf/BUILD b/tests/resources/reference_conf/BUILD index f8d6dd3c8..a02564ac4 100644 --- a/tests/resources/reference_conf/BUILD +++ b/tests/resources/reference_conf/BUILD @@ -1,4 +1,5 @@ load("@rules_scala_annex//rules:scala.bzl", "scala_library") +load("@rules_java//java:defs.bzl", "java_library") scala_library( name = "plain", diff --git a/tests/scala/BUILD b/tests/scala/BUILD index d1c08f79b..f3aac9860 100644 --- a/tests/scala/BUILD +++ b/tests/scala/BUILD @@ -7,136 +7,136 @@ load( alias( name = "2_12", - actual = ":zinc_2_12_14", + actual = ":zinc_2_12_19", visibility = ["//visibility:public"], ) alias( name = "2_13", - actual = ":zinc_2_13_11", + actual = ":zinc_2_13_14", visibility = ["//visibility:public"], ) alias( name = "3", - actual = ":zinc_3_3_0", + actual = ":zinc_3_4_2", visibility = ["//visibility:public"], ) -# zinc 2.12.14 +# zinc 2.12.19 -compiler_classpath_2_12_14 = [ - "@annex_2_12//:org_scala_lang_scala_compiler_2_12_14", - "@annex_2_12//:org_scala_lang_scala_reflect_2_12_14", - "@annex_2_12//:org_scala_lang_scala_library_2_12_14", +compiler_classpath_2_12_19 = [ + "@annex_2_12//:org_scala_lang_scala_compiler_2_12_19", + "@annex_2_12//:org_scala_lang_scala_reflect_2_12_19", + "@annex_2_12//:org_scala_lang_scala_library_2_12_19", ] -runtime_classpath_2_12_14 = [ - "@annex_2_12//:org_scala_lang_scala_library_2_12_14", +runtime_classpath_2_12_19 = [ + "@annex_2_12//:org_scala_lang_scala_library_2_12_19", ] configure_bootstrap_scala( - name = "bootstrap_2_12_14", - compiler_classpath = compiler_classpath_2_12_14, - runtime_classpath = runtime_classpath_2_12_14, - version = "2.12.14", + name = "bootstrap_2_12_19", + compiler_classpath = compiler_classpath_2_12_19, + runtime_classpath = runtime_classpath_2_12_19, + version = "2.12.19", visibility = ["//visibility:public"], ) configure_zinc_scala( - name = "zinc_2_12_14", + name = "zinc_2_12_19", compiler_bridge = "@annex_2_12//:org_scala_sbt_compiler_bridge_2_12", - compiler_classpath = compiler_classpath_2_12_14, - runtime_classpath = runtime_classpath_2_12_14, - version = "2.12.14", + compiler_classpath = compiler_classpath_2_12_19, + runtime_classpath = runtime_classpath_2_12_19, + version = "2.12.19", visibility = ["//visibility:public"], ) -# zinc 2.13.11 +# zinc 2.13.14 -compiler_classpath_2_13_11 = [ - "@annex//:org_scala_lang_scala_compiler_2_13_11", - "@annex//:org_scala_lang_scala_reflect_2_13_11", - "@annex//:org_scala_lang_scala_library_2_13_11", +compiler_classpath_2_13_14 = [ + "@annex//:org_scala_lang_scala_compiler_2_13_14", + "@annex//:org_scala_lang_scala_reflect_2_13_14", + "@annex//:org_scala_lang_scala_library_2_13_14", ] -runtime_classpath_2_13_11 = [ - "@annex//:org_scala_lang_scala_library_2_13_11", +runtime_classpath_2_13_14 = [ + "@annex//:org_scala_lang_scala_library_2_13_14", ] configure_bootstrap_scala( - name = "bootstrap_2_13_11", - compiler_classpath = compiler_classpath_2_13_11, - runtime_classpath = runtime_classpath_2_13_11, - version = "2.13.11", + name = "bootstrap_2_13_14", + compiler_classpath = compiler_classpath_2_13_14, + runtime_classpath = runtime_classpath_2_13_14, + version = "2.13.14", visibility = ["//visibility:public"], ) configure_zinc_scala( - name = "zinc_2_13_11", + name = "zinc_2_13_14", compiler_bridge = "@annex//:org_scala_sbt_compiler_bridge_2_13", - compiler_classpath = compiler_classpath_2_13_11, + compiler_classpath = compiler_classpath_2_13_14, global_scalacopts = [ "-Ytasty-reader", ], - runtime_classpath = runtime_classpath_2_13_11, - version = "2.13.11", + runtime_classpath = runtime_classpath_2_13_14, + version = "2.13.14", visibility = ["//visibility:public"], ) -# zinc 3.3.0 +# zinc 3.4.2 -compiler_classpath_3_3_0 = [ - "@annex_3//:org_scala_lang_scala3_compiler_3_3_3_0", - "@annex_3//:org_scala_lang_scala3_library_3_3_3_0", +compiler_classpath_3_4_2 = [ + "@annex_3//:org_scala_lang_scala3_compiler_3_3_4_2", + "@annex_3//:org_scala_lang_scala3_library_3_3_4_2", ] -runtime_classpath_3_3_0 = [ - "@annex_3//:org_scala_lang_scala3_library_3_3_3_0", +runtime_classpath_3_4_2 = [ + "@annex_3//:org_scala_lang_scala3_library_3_3_4_2", "@annex_3//:org_scala_lang_scala3_interfaces", "@annex_3//:org_scala_lang_tasty_core_3", ] configure_bootstrap_scala( - name = "bootstrap_3_3_0", - compiler_classpath = compiler_classpath_3_3_0, - runtime_classpath = runtime_classpath_3_3_0, + name = "bootstrap_3_4_2", + compiler_classpath = compiler_classpath_3_4_2, + runtime_classpath = runtime_classpath_3_4_2, use_ijar = False, - version = "3.3.0", + version = "3.4.2", visibility = ["//visibility:public"], ) configure_zinc_scala( - name = "zinc_3_3_0", - compiler_bridge = "@annex_3//:org_scala_lang_scala3_sbt_bridge_3_3_0", - compiler_classpath = compiler_classpath_3_3_0, - runtime_classpath = runtime_classpath_3_3_0, + name = "zinc_3_4_2", + compiler_bridge = "@annex_3//:org_scala_lang_scala3_sbt_bridge_3_4_2", + compiler_classpath = compiler_classpath_3_4_2, + runtime_classpath = runtime_classpath_3_4_2, use_ijar = False, - version = "3.3.0", + version = "3.4.2", visibility = ["//visibility:public"], ) # For global scalacoptions test configure_zinc_scala( - name = "zinc_2_13_11_fatal_deprecation_opt", + name = "zinc_2_13_14_fatal_deprecation_opt", compiler_bridge = "@annex//:org_scala_sbt_compiler_bridge_2_13", - compiler_classpath = compiler_classpath_2_13_11, + compiler_classpath = compiler_classpath_2_13_14, global_scalacopts = [ "-deprecation", "-Xfatal-warnings", ], - runtime_classpath = runtime_classpath_2_13_11, - version = "2.13.11", + runtime_classpath = runtime_classpath_2_13_14, + version = "2.13.14", visibility = ["//scalacopts/rule:__subpackages__"], ) # for log_level test configure_zinc_scala( - name = "zinc_2_13_11_log_level_debug", + name = "zinc_2_13_14_log_level_debug", compiler_bridge = "@annex//:org_scala_sbt_compiler_bridge_2_13", - compiler_classpath = compiler_classpath_2_13_11, + compiler_classpath = compiler_classpath_2_13_14, log_level = "debug", - runtime_classpath = runtime_classpath_2_13_11, - version = "2.13.11", + runtime_classpath = runtime_classpath_2_13_14, + version = "2.13.14", visibility = ["//visibility:public"], ) diff --git a/tests/workspace.bzl b/tests/workspace.bzl index 5298d1491..c8f696d3d 100644 --- a/tests/workspace.bzl +++ b/tests/workspace.bzl @@ -13,7 +13,7 @@ def test_artifacts(): "org.specs2:specs2-common_2.13:4.12.3", "org.specs2:specs2-core_2.13:4.12.3", "org.specs2:specs2-matcher_2.13:4.12.3", - "org.typelevel:kind-projector_2.13.11:0.13.2", + "org.typelevel:kind-projector_2.13.14:0.13.3", ] def test_dependencies(): diff --git a/third_party/bazel/src/java_tools/buildjar/java/com/google/devtools/build/buildjar/jarhelper/BUILD b/third_party/bazel/src/java_tools/buildjar/java/com/google/devtools/build/buildjar/jarhelper/BUILD index c1f22329b..8a8cf017e 100644 --- a/third_party/bazel/src/java_tools/buildjar/java/com/google/devtools/build/buildjar/jarhelper/BUILD +++ b/third_party/bazel/src/java_tools/buildjar/java/com/google/devtools/build/buildjar/jarhelper/BUILD @@ -1,5 +1,7 @@ licenses(["notice"]) + # Copyright 2014 The Bazel Authors. Licensed under Apache License, Version 2.0 +load("@rules_java//java:defs.bzl", "java_binary", "java_library") java_library( name = "jarhelper", diff --git a/tools/bazel b/tools/bazel index afcc896c9..bacb7e487 100755 --- a/tools/bazel +++ b/tools/bazel @@ -15,7 +15,7 @@ abs_path() { workspace=$(cd $(dirname "$0")/..; pwd) root_workspace=$(cd $(dirname $(abs_path "$0"))/..; pwd) -default_bazel_version='7.0.0' +default_bazel_version='7.2.0' if [ -z "$BAZEL_VERSION" ]; then bazel_version="$default_bazel_version" @@ -29,14 +29,8 @@ case "$bazel_version" in bazel_version=$("$BAZEL_REAL" version | awk '/Build label/ {print $3}' | cut -d '-' -f 1) bazel="$BAZEL_REAL" ;; - '5.0.0') - linux_sha='42cfb37d2834d075996b9d02698674be7f322f0acd864b17c3191301329845f9' - ;; - '6.3.2') - linux_sha='f117506267ed148d5f4f9844bcf187c4f111dad7ff4f1a9eb1f4e45331f3f9f0' - ;; - '7.0.0') - linux_sha='b32c278fd1e72a676ea560d7b4e71ce97536405f6a3f8c1752acb4e88c031184' + '7.2.0') + linux_sha='63434c9d4d352e829d89180a08e04f0e71cca68daf27c382d6f40fa50c48de6a' ;; *) echo "The requested Bazel version '$bazel_version' is not supported" From 9f376722bac3dea02b6a0749d61fe6d650810001 Mon Sep 17 00:00:00 2001 From: James Judd Date: Wed, 19 Jun 2024 16:36:43 -0600 Subject: [PATCH 02/21] Don't trap JVM exits because the SecurityManager is deprecated The JDK deprecated the SecurityManager: https://openjdk.org/jeps/411 In JDK 18+ accessing the SecurityManager throws an UnsupportedOperationException. There is no alternative way to trap JVM exits and prevent them. There is a ticket for the JDK to add a way to do this https://bugs.openjdk.org/browse/JDK-8199704 sbt ran into this same issue and resovled it just by not trapping exits anymore https://github.com/sbt/sbt/pull/6665 https://github.com/sbt/sbt/issues/6558 --- rules/scala_proto/BUILD | 1 + .../private/ScalaProtoWorker.scala | 7 +- .../common/error/AnnexWorkerError.scala | 12 + .../rules_scala/common/error/BUILD | 14 + .../rules_scala/common/worker/BUILD | 1 + .../common/worker/WorkerMain.scala | 18 +- .../rules_scala/workers/zinc/compile/BUILD | 1 + .../workers/zinc/compile/ZincRunner.scala | 5 +- tests/deployjar/expected | 5512 ++++++++--------- 9 files changed, 2794 insertions(+), 2777 deletions(-) create mode 100644 src/main/scala/higherkindness/rules_scala/common/error/AnnexWorkerError.scala create mode 100644 src/main/scala/higherkindness/rules_scala/common/error/BUILD diff --git a/rules/scala_proto/BUILD b/rules/scala_proto/BUILD index 2bd8e80f3..669c1afbb 100644 --- a/rules/scala_proto/BUILD +++ b/rules/scala_proto/BUILD @@ -20,6 +20,7 @@ scala_binary( visibility = ["//visibility:public"], deps = [ "//src/main/scala/higherkindness/rules_scala/common/args", + "//src/main/scala/higherkindness/rules_scala/common/error", "//src/main/scala/higherkindness/rules_scala/common/worker", "@annex//:net_sourceforge_argparse4j_argparse4j", "@annex_proto//:com_github_os72_protoc_jar", diff --git a/rules/scala_proto/private/ScalaProtoWorker.scala b/rules/scala_proto/private/ScalaProtoWorker.scala index cfbb77543..5e0460fa1 100644 --- a/rules/scala_proto/private/ScalaProtoWorker.scala +++ b/rules/scala_proto/private/ScalaProtoWorker.scala @@ -1,6 +1,7 @@ package annex.scala.proto import higherkindness.rules_scala.common.args.implicits._ +import higherkindness.rules_scala.common.error.AnnexWorkerError import higherkindness.rules_scala.common.worker.WorkerMain import java.io.{File, PrintStream} import java.nio.file.{Files, Paths} @@ -63,13 +64,13 @@ object ScalaProtoWorker extends WorkerMain[Unit] { } } - val exit = ProtocBridge.runWithGenerators( + val exitCode = ProtocBridge.runWithGenerators( new MyProtocRunner, namedGenerators = List("scala" -> ScalaPbCodeGenerator), params = params ) - if (exit != 0) { - sys.exit(exit) + if (exitCode != 0) { + throw new AnnexWorkerError(exitCode) } } diff --git a/src/main/scala/higherkindness/rules_scala/common/error/AnnexWorkerError.scala b/src/main/scala/higherkindness/rules_scala/common/error/AnnexWorkerError.scala new file mode 100644 index 000000000..a7b097c30 --- /dev/null +++ b/src/main/scala/higherkindness/rules_scala/common/error/AnnexWorkerError.scala @@ -0,0 +1,12 @@ +package higherkindness.rules_scala +package common.error + +final class AnnexWorkerError( + val code: Int, + val message: String = "", + val cause: Throwable = null +) extends Error(message, cause) + +object AnnexWorkerError { + def unapply(e: AnnexWorkerError): Option[(Int, String, Throwable)] = Some((e.code, e.getMessage, e.getCause)) +} diff --git a/src/main/scala/higherkindness/rules_scala/common/error/BUILD b/src/main/scala/higherkindness/rules_scala/common/error/BUILD new file mode 100644 index 000000000..0947bfd06 --- /dev/null +++ b/src/main/scala/higherkindness/rules_scala/common/error/BUILD @@ -0,0 +1,14 @@ +load("//rules:scalafmt.bzl", "scala_format_test") +load("//rules:scala.bzl", "scala_library") + +scala_library( + name = "error", + srcs = glob(["**/*.scala"]), + scala = "//src/main/scala:bootstrap", + visibility = ["//visibility:public"], +) + +scala_format_test( + name = "format", + srcs = glob(["**/*.scala"]), +) diff --git a/src/main/scala/higherkindness/rules_scala/common/worker/BUILD b/src/main/scala/higherkindness/rules_scala/common/worker/BUILD index b5f9cd74d..fe0e0f53f 100644 --- a/src/main/scala/higherkindness/rules_scala/common/worker/BUILD +++ b/src/main/scala/higherkindness/rules_scala/common/worker/BUILD @@ -7,6 +7,7 @@ scala_library( scala = "//src/main/scala:bootstrap", visibility = ["//visibility:public"], deps = [ + "//src/main/scala/higherkindness/rules_scala/common/error", "//third_party/bazel/src/main/protobuf:worker_protocol_java_proto", ], ) diff --git a/src/main/scala/higherkindness/rules_scala/common/worker/WorkerMain.scala b/src/main/scala/higherkindness/rules_scala/common/worker/WorkerMain.scala index 08ce4829d..63d9f7162 100644 --- a/src/main/scala/higherkindness/rules_scala/common/worker/WorkerMain.scala +++ b/src/main/scala/higherkindness/rules_scala/common/worker/WorkerMain.scala @@ -1,9 +1,9 @@ package higherkindness.rules_scala package common.worker +import common.error.AnnexWorkerError import com.google.devtools.build.lib.worker.WorkerProtocol import java.io.{ByteArrayInputStream, ByteArrayOutputStream, OutputStream, PrintStream} -import java.security.Permission import java.util.concurrent.ForkJoinPool import scala.annotation.tailrec import scala.concurrent.{ExecutionContext, Future} @@ -11,8 +11,6 @@ import scala.util.{Failure, Success} trait WorkerMain[S] { - private[this] case class ExitTrapped(code: Int) extends Throwable - protected[this] def init(args: Option[Array[String]]): S protected[this] def work(ctx: S, args: Array[String], out: PrintStream): Unit @@ -22,14 +20,12 @@ trait WorkerMain[S] { case "--persistent_worker" :: args => val stdin = System.in val stdout = System.out - val defaultSecurityManager = System.getSecurityManager val exceptionHandler = new Thread.UncaughtExceptionHandler { override def uncaughtException(t: Thread, err: Throwable): Unit = err match { case e: Throwable => { // Future catches all NonFatal errors, and wraps them in a Failure, so only Fatal errors get here. // If any request thread throws a Fatal error (OOM, StackOverflow, etc.), we can't trust the JVM, so log the error and exit. e.printStackTrace(System.err) - System.setSecurityManager(defaultSecurityManager) System.exit(1) } } @@ -42,16 +38,6 @@ trait WorkerMain[S] { ) implicit val ec = ExecutionContext.fromExecutor(fjp) - System.setSecurityManager(new SecurityManager { - val Exit = raw"exitVM\.(-?\d+)".r - override def checkPermission(permission: Permission): Unit = { - permission.getName match { - case Exit(code) => throw new ExitTrapped(code.toInt) - case _ => - } - } - }) - System.setIn(new ByteArrayInputStream(Array.emptyByteArray)) System.setOut(System.err) @@ -86,7 +72,7 @@ trait WorkerMain[S] { work(ctx, args, out) 0 } catch { - case ExitTrapped(code) => code + case AnnexWorkerError(code, _, _) => code } } diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/BUILD b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/BUILD index 22d5879e3..b0ffa3331 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/BUILD +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/BUILD @@ -11,6 +11,7 @@ scala_binary( "@annex//:com_lihaoyi_sourcecode_2_13", ], deps = [ + "//src/main/scala/higherkindness/rules_scala/common/error", "//src/main/scala/higherkindness/rules_scala/common/worker", "//src/main/scala/higherkindness/rules_scala/workers/common", "//third_party/bazel/src/java_tools/buildjar/java/com/google/devtools/build/buildjar/jarhelper", diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala index 4420a5d33..d21d30046 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala @@ -6,6 +6,7 @@ import workers.common.AnnexScalaInstance import workers.common.CommonArguments import workers.common.FileUtil import workers.common.LoggedReporter +import common.error.AnnexWorkerError import common.worker.WorkerMain import com.google.devtools.build.buildjar.jarhelper.JarCreator import java.io.{File, PrintStream, PrintWriter} @@ -256,10 +257,10 @@ object ZincRunner extends WorkerMain[Namespace] { val compileResult = try incrementalCompiler.compile(inputs, logger) catch { - case _: CompileFailed => sys.exit(-1) + case _: CompileFailed => throw new AnnexWorkerError(-1) case e: ClassFormatError => throw new Exception("You may be missing a `macro = True` attribute.", e) - sys.exit(1) + throw new AnnexWorkerError(1) case e: StackOverflowError => { // Downgrade to NonFatal error. // The JVM is not guaranteed to free shared resources correctly when unwinding the stack to catch a StackOverflowError, diff --git a/tests/deployjar/expected b/tests/deployjar/expected index de01c0236..8c648b5a1 100644 --- a/tests/deployjar/expected +++ b/tests/deployjar/expected @@ -1,2386 +1,2289 @@ --rw---- 2.0 fat 0 bx 0% stor 20100101.000000 META-INF/ -rw---- 1.0 fat 0 b- 0% stor 20100101.000000 foo/ --rw---- 2.0 fat 846 b- 38% defN 20100101.000002 foo/TestBinary$.class --rw---- 2.0 fat 713 b- 23% defN 20100101.000002 foo/TestBinary.class --rw---- 2.0 fat 11357 bl 65% defN 20100101.000000 LICENSE --rw---- 2.0 fat 646 bl 39% defN 20100101.000000 NOTICE --rw---- 2.0 fat 354 bl 43% defN 20100101.000000 library.properties --rw---- 2.0 fat 3288 bl 65% defN 20100101.000000 rootdoc.txt -rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/ --rw---- 2.0 fat 3234 bl 46% defN 20100101.000002 scala/$eq$colon$eq.class --rw---- 2.0 fat 3266 bl 71% defN 20100101.000002 scala/$less$colon$less$$anon$1.class --rw---- 2.0 fat 1558 bl 54% defN 20100101.000002 scala/$less$colon$less$.class --rw---- 2.0 fat 8092 bl 62% defN 20100101.000002 scala/$less$colon$less.class --rw---- 2.0 fat 658 bl 22% defN 20100101.000002 scala/AnyVal.class --rw---- 2.0 fat 384 bl 19% defN 20100101.000002 scala/AnyValCompanion.class --rw---- 2.0 fat 4855 bl 49% defN 20100101.000002 scala/App.class --rw---- 2.0 fat 46594 bl 68% defN 20100101.000002 scala/Array$.class --rw---- 2.0 fat 3252 bl 60% defN 20100101.000002 scala/Array$ArrayFactory.class --rw---- 2.0 fat 3109 bl 62% defN 20100101.000002 scala/Array$UnapplySeqWrapper$.class --rw---- 2.0 fat 2404 bl 58% defN 20100101.000002 scala/Array$UnapplySeqWrapper.class --rw---- 2.0 fat 28614 bl 57% defN 20100101.000002 scala/Array.class --rw---- 2.0 fat 881 bl 43% defN 20100101.000002 scala/Boolean$.class --rw---- 2.0 fat 1791 bl 36% defN 20100101.000002 scala/Boolean.class --rw---- 2.0 fat 1519 bl 54% defN 20100101.000002 scala/Byte$.class --rw---- 2.0 fat 8531 bl 50% defN 20100101.000002 scala/Byte.class --rw---- 2.0 fat 1424 bl 52% defN 20100101.000002 scala/Char$.class --rw---- 2.0 fat 8403 bl 50% defN 20100101.000002 scala/Char.class --rw---- 2.0 fat 4517 bl 62% defN 20100101.000002 scala/Console$.class --rw---- 2.0 fat 4899 bl 52% defN 20100101.000002 scala/Console.class --rw---- 2.0 fat 825 bl 21% defN 20100101.000002 scala/DelayedInit.class --rw---- 2.0 fat 1375 bl 51% defN 20100101.000002 scala/Double$.class --rw---- 2.0 fat 6826 bl 48% defN 20100101.000002 scala/Double.class --rw---- 2.0 fat 616 bl 41% defN 20100101.000002 scala/DummyImplicit$.class --rw---- 2.0 fat 780 bl 31% defN 20100101.000002 scala/DummyImplicit.class --rw---- 2.0 fat 300 bl 17% defN 20100101.000002 scala/Dynamic.class --rw---- 2.0 fat 3137 bl 51% defN 20100101.000002 scala/Enumeration$Val.class --rw---- 2.0 fat 3079 bl 57% defN 20100101.000002 scala/Enumeration$Value.class --rw---- 2.0 fat 4706 bl 72% defN 20100101.000002 scala/Enumeration$ValueOrdering$.class --rw---- 2.0 fat 5100 bl 66% defN 20100101.000002 scala/Enumeration$ValueSet$$anon$1.class --rw---- 2.0 fat 4160 bl 64% defN 20100101.000002 scala/Enumeration$ValueSet$.class --rw---- 2.0 fat 25895 bl 74% defN 20100101.000002 scala/Enumeration$ValueSet.class --rw---- 2.0 fat 19131 bl 49% defN 20100101.000002 scala/Enumeration.class --rw---- 2.0 fat 503 bl 24% defN 20100101.000002 scala/Equals.class --rw---- 2.0 fat 1451 bl 51% defN 20100101.000002 scala/Float$.class --rw---- 2.0 fat 6922 bl 48% defN 20100101.000002 scala/Float.class --rw---- 2.0 fat 11500 bl 72% defN 20100101.000002 scala/Function$.class --rw---- 2.0 fat 7242 bl 62% defN 20100101.000002 scala/Function.class --rw---- 2.0 fat 291 bl 36% defN 20100101.000002 scala/Function0$mcB$sp.class --rw---- 2.0 fat 291 bl 36% defN 20100101.000002 scala/Function0$mcC$sp.class --rw---- 2.0 fat 291 bl 36% defN 20100101.000002 scala/Function0$mcD$sp.class --rw---- 2.0 fat 291 bl 36% defN 20100101.000002 scala/Function0$mcF$sp.class --rw---- 2.0 fat 291 bl 36% defN 20100101.000002 scala/Function0$mcI$sp.class --rw---- 2.0 fat 291 bl 36% defN 20100101.000002 scala/Function0$mcJ$sp.class --rw---- 2.0 fat 291 bl 36% defN 20100101.000002 scala/Function0$mcS$sp.class --rw---- 2.0 fat 298 bl 31% defN 20100101.000002 scala/Function0$mcV$sp.class --rw---- 2.0 fat 291 bl 36% defN 20100101.000002 scala/Function0$mcZ$sp.class --rw---- 2.0 fat 3748 bl 60% defN 20100101.000002 scala/Function0.class --rw---- 2.0 fat 734 bl 43% defN 20100101.000002 scala/Function1$.class --rw---- 2.0 fat 2013 bl 55% defN 20100101.000002 scala/Function1$UnliftOps$.class --rw---- 2.0 fat 1841 bl 54% defN 20100101.000002 scala/Function1$UnliftOps.class --rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcDD$sp.class --rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcDF$sp.class --rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcDI$sp.class --rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcDJ$sp.class --rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcFD$sp.class --rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcFF$sp.class --rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcFI$sp.class --rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcFJ$sp.class --rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcID$sp.class --rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcIF$sp.class --rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcII$sp.class --rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcIJ$sp.class --rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcJD$sp.class --rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcJF$sp.class --rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcJI$sp.class --rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcJJ$sp.class --rw---- 2.0 fat 335 bl 38% defN 20100101.000002 scala/Function1$mcVD$sp.class --rw---- 2.0 fat 335 bl 38% defN 20100101.000002 scala/Function1$mcVF$sp.class --rw---- 2.0 fat 335 bl 38% defN 20100101.000002 scala/Function1$mcVI$sp.class --rw---- 2.0 fat 335 bl 38% defN 20100101.000002 scala/Function1$mcVJ$sp.class --rw---- 2.0 fat 328 bl 41% defN 20100101.000002 scala/Function1$mcZD$sp.class --rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcZF$sp.class --rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcZI$sp.class --rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcZJ$sp.class --rw---- 2.0 fat 11673 bl 64% defN 20100101.000002 scala/Function1.class --rw---- 2.0 fat 5604 bl 56% defN 20100101.000002 scala/Function10.class --rw---- 2.0 fat 5830 bl 57% defN 20100101.000002 scala/Function11.class --rw---- 2.0 fat 6058 bl 57% defN 20100101.000002 scala/Function12.class --rw---- 2.0 fat 6283 bl 57% defN 20100101.000002 scala/Function13.class --rw---- 2.0 fat 6509 bl 57% defN 20100101.000002 scala/Function14.class --rw---- 2.0 fat 6736 bl 58% defN 20100101.000002 scala/Function15.class --rw---- 2.0 fat 6963 bl 58% defN 20100101.000002 scala/Function16.class --rw---- 2.0 fat 7189 bl 58% defN 20100101.000002 scala/Function17.class --rw---- 2.0 fat 7415 bl 58% defN 20100101.000002 scala/Function18.class --rw---- 2.0 fat 7663 bl 59% defN 20100101.000002 scala/Function19.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcDDD$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcDDI$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcDDJ$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcDID$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcDII$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcDIJ$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcDJD$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcDJI$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcDJJ$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcFDD$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcFDI$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcFDJ$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcFID$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcFII$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcFIJ$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcFJD$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcFJI$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcFJJ$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcIDD$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcIDI$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcIDJ$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcIID$sp.class --rw---- 2.0 fat 365 bl 47% defN 20100101.000002 scala/Function2$mcIII$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcIIJ$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcIJD$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcIJI$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcIJJ$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcJDD$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcJDI$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcJDJ$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcJID$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcJII$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcJIJ$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcJJD$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcJJI$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcJJJ$sp.class --rw---- 2.0 fat 372 bl 42% defN 20100101.000002 scala/Function2$mcVDD$sp.class --rw---- 2.0 fat 372 bl 42% defN 20100101.000002 scala/Function2$mcVDI$sp.class --rw---- 2.0 fat 372 bl 42% defN 20100101.000002 scala/Function2$mcVDJ$sp.class --rw---- 2.0 fat 372 bl 42% defN 20100101.000002 scala/Function2$mcVID$sp.class --rw---- 2.0 fat 372 bl 42% defN 20100101.000002 scala/Function2$mcVII$sp.class --rw---- 2.0 fat 372 bl 42% defN 20100101.000002 scala/Function2$mcVIJ$sp.class --rw---- 2.0 fat 372 bl 42% defN 20100101.000002 scala/Function2$mcVJD$sp.class --rw---- 2.0 fat 372 bl 42% defN 20100101.000002 scala/Function2$mcVJI$sp.class --rw---- 2.0 fat 372 bl 42% defN 20100101.000002 scala/Function2$mcVJJ$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcZDD$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcZDI$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcZDJ$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcZID$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcZII$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcZIJ$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcZJD$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcZJI$sp.class --rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcZJJ$sp.class --rw---- 2.0 fat 20664 bl 76% defN 20100101.000002 scala/Function2.class --rw---- 2.0 fat 7894 bl 59% defN 20100101.000002 scala/Function20.class --rw---- 2.0 fat 8126 bl 59% defN 20100101.000002 scala/Function21.class --rw---- 2.0 fat 8356 bl 59% defN 20100101.000002 scala/Function22.class --rw---- 2.0 fat 4207 bl 54% defN 20100101.000002 scala/Function3.class --rw---- 2.0 fat 4687 bl 56% defN 20100101.000002 scala/Function4.class --rw---- 2.0 fat 4524 bl 55% defN 20100101.000002 scala/Function5.class --rw---- 2.0 fat 4734 bl 55% defN 20100101.000002 scala/Function6.class --rw---- 2.0 fat 4944 bl 55% defN 20100101.000002 scala/Function7.class --rw---- 2.0 fat 5156 bl 55% defN 20100101.000002 scala/Function8.class --rw---- 2.0 fat 5366 bl 56% defN 20100101.000002 scala/Function9.class --rw---- 2.0 fat 1338 bl 50% defN 20100101.000002 scala/Int$.class --rw---- 2.0 fat 8432 bl 49% defN 20100101.000002 scala/Int.class --rw---- 2.0 fat 1254 bl 48% defN 20100101.000002 scala/Long$.class --rw---- 2.0 fat 8168 bl 50% defN 20100101.000002 scala/Long.class --rw---- 2.0 fat 7208 bl 54% defN 20100101.000002 scala/LowPriorityImplicits.class --rw---- 2.0 fat 1504 bl 30% defN 20100101.000002 scala/LowPriorityImplicits2.class --rw---- 2.0 fat 2531 bl 37% defN 20100101.000002 scala/MatchError.class --rw---- 2.0 fat 1950 bl 52% defN 20100101.000002 scala/None$.class --rw---- 2.0 fat 7324 bl 64% defN 20100101.000002 scala/None.class --rw---- 2.0 fat 858 bl 30% defN 20100101.000002 scala/NotImplementedError.class --rw---- 2.0 fat 2256 bl 52% defN 20100101.000002 scala/Option$.class --rw---- 2.0 fat 4017 bl 61% defN 20100101.000002 scala/Option$WithFilter.class --rw---- 2.0 fat 13744 bl 54% defN 20100101.000002 scala/Option.class --rw---- 2.0 fat 9288 bl 73% defN 20100101.000002 scala/PartialFunction$$anon$1.class --rw---- 2.0 fat 1358 bl 50% defN 20100101.000002 scala/PartialFunction$$anonfun$fromFunction$1.class --rw---- 2.0 fat 4382 bl 60% defN 20100101.000002 scala/PartialFunction$.class --rw---- 2.0 fat 8361 bl 73% defN 20100101.000002 scala/PartialFunction$AndThen.class --rw---- 2.0 fat 9479 bl 72% defN 20100101.000002 scala/PartialFunction$Combined.class --rw---- 2.0 fat 3658 bl 58% defN 20100101.000002 scala/PartialFunction$ElementWiseExtractor$.class --rw---- 2.0 fat 1839 bl 59% defN 20100101.000002 scala/PartialFunction$ElementWiseExtractor.class --rw---- 2.0 fat 1802 bl 53% defN 20100101.000002 scala/PartialFunction$Lifted.class --rw---- 2.0 fat 2907 bl 61% defN 20100101.000002 scala/PartialFunction$OrElse.class --rw---- 2.0 fat 1906 bl 53% defN 20100101.000002 scala/PartialFunction$Unlifted.class --rw---- 2.0 fat 11621 bl 49% defN 20100101.000002 scala/PartialFunction.class --rw---- 2.0 fat 12236 bl 68% defN 20100101.000002 scala/Predef$.class --rw---- 2.0 fat 1901 bl 51% defN 20100101.000002 scala/Predef$ArrayCharSequence.class --rw---- 2.0 fat 1704 bl 52% defN 20100101.000002 scala/Predef$ArrowAssoc$.class --rw---- 2.0 fat 1672 bl 53% defN 20100101.000002 scala/Predef$ArrowAssoc.class --rw---- 2.0 fat 2932 bl 58% defN 20100101.000002 scala/Predef$Ensuring$.class --rw---- 2.0 fat 2790 bl 56% defN 20100101.000002 scala/Predef$Ensuring.class --rw---- 2.0 fat 1935 bl 52% defN 20100101.000002 scala/Predef$SeqCharSequence.class --rw---- 2.0 fat 1882 bl 51% defN 20100101.000002 scala/Predef$StringFormat$.class --rw---- 2.0 fat 1776 bl 52% defN 20100101.000002 scala/Predef$StringFormat.class --rw---- 2.0 fat 1766 bl 52% defN 20100101.000002 scala/Predef$any2stringadd$.class --rw---- 2.0 fat 1455 bl 53% defN 20100101.000002 scala/Predef$any2stringadd.class --rw---- 2.0 fat 21978 bl 49% defN 20100101.000002 scala/Predef.class --rw---- 2.0 fat 1110 bl 42% defN 20100101.000002 scala/Product$$anon$1.class --rw---- 2.0 fat 1217 bl 44% defN 20100101.000002 scala/Product$$anon$2.class --rw---- 2.0 fat 2686 bl 48% defN 20100101.000002 scala/Product.class --rw---- 2.0 fat 740 bl 40% defN 20100101.000002 scala/Product1$.class --rw---- 2.0 fat 252 bl 33% defN 20100101.000002 scala/Product1$mcD$sp.class --rw---- 2.0 fat 252 bl 33% defN 20100101.000002 scala/Product1$mcI$sp.class --rw---- 2.0 fat 252 bl 33% defN 20100101.000002 scala/Product1$mcJ$sp.class --rw---- 2.0 fat 3287 bl 48% defN 20100101.000002 scala/Product1.class +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/annotation/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/annotation/meta/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/annotation/unchecked/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/beans/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/collection/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/collection/concurrent/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/collection/convert/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/collection/convert/impl/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/collection/generic/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/collection/immutable/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/collection/mutable/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/compat/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/concurrent/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/concurrent/duration/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/concurrent/impl/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/io/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/jdk/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/jdk/javaapi/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/math/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/ref/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/reflect/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/reflect/macros/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/reflect/macros/internal/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/runtime/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/runtime/java8/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/sys/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/sys/process/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/util/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/util/control/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/util/hashing/ +-rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/util/matching/ +-rw---- 2.0 fat 0 bx 0% stor 20100101.000000 META-INF/ +-rw---- 2.0 fat 10004 bl 75% defN 20100101.000002 scala/math/Numeric$BigIntIsIntegral$.class +-rw---- 2.0 fat 1000 bl 47% defN 20100101.000002 scala/concurrent/BlockContext$DefaultBlockContext$.class +-rw---- 2.0 fat 1001 bl 46% defN 20100101.000002 scala/collection/LazyZip3$.class +-rw---- 2.0 fat 1003 bl 45% defN 20100101.000002 scala/collection/mutable/Seq$.class +-rw---- 2.0 fat 1003 bl 46% defN 20100101.000002 scala/collection/LinearSeq$.class +-rw---- 2.0 fat 1007 bl 45% defN 20100101.000002 scala/util/hashing/MurmurHash3$$anon$1.class +-rw---- 2.0 fat 10099 bl 73% defN 20100101.000002 scala/collection/Iterator$.class +-rw---- 2.0 fat 1009 bl 45% defN 20100101.000002 scala/collection/IndexedSeq$.class +-rw---- 2.0 fat 1009 bl 54% defN 20100101.000002 scala/collection/SortedIterableFactory$Delegate.class -rw---- 2.0 fat 1011 bl 50% defN 20100101.000002 scala/Product10$.class --rw---- 2.0 fat 3910 bl 47% defN 20100101.000002 scala/Product10.class --rw---- 2.0 fat 1043 bl 52% defN 20100101.000002 scala/Product11$.class --rw---- 2.0 fat 4093 bl 47% defN 20100101.000002 scala/Product11.class --rw---- 2.0 fat 1075 bl 53% defN 20100101.000002 scala/Product12$.class --rw---- 2.0 fat 4279 bl 48% defN 20100101.000002 scala/Product12.class --rw---- 2.0 fat 1107 bl 54% defN 20100101.000002 scala/Product13$.class --rw---- 2.0 fat 4462 bl 48% defN 20100101.000002 scala/Product13.class --rw---- 2.0 fat 1139 bl 54% defN 20100101.000002 scala/Product14$.class --rw---- 2.0 fat 4644 bl 49% defN 20100101.000002 scala/Product14.class --rw---- 2.0 fat 1171 bl 55% defN 20100101.000002 scala/Product15$.class --rw---- 2.0 fat 4826 bl 50% defN 20100101.000002 scala/Product15.class --rw---- 2.0 fat 1203 bl 56% defN 20100101.000002 scala/Product16$.class --rw---- 2.0 fat 5008 bl 50% defN 20100101.000002 scala/Product16.class --rw---- 2.0 fat 1235 bl 56% defN 20100101.000002 scala/Product17$.class --rw---- 2.0 fat 5192 bl 50% defN 20100101.000002 scala/Product17.class --rw---- 2.0 fat 1267 bl 57% defN 20100101.000002 scala/Product18$.class --rw---- 2.0 fat 5376 bl 51% defN 20100101.000002 scala/Product18.class --rw---- 2.0 fat 1299 bl 58% defN 20100101.000002 scala/Product19$.class --rw---- 2.0 fat 5557 bl 51% defN 20100101.000002 scala/Product19.class --rw---- 2.0 fat 769 bl 42% defN 20100101.000002 scala/Product2$.class --rw---- 2.0 fat 271 bl 37% defN 20100101.000002 scala/Product2$mcDD$sp.class --rw---- 2.0 fat 271 bl 37% defN 20100101.000002 scala/Product2$mcDI$sp.class --rw---- 2.0 fat 271 bl 37% defN 20100101.000002 scala/Product2$mcDJ$sp.class --rw---- 2.0 fat 271 bl 37% defN 20100101.000002 scala/Product2$mcID$sp.class --rw---- 2.0 fat 271 bl 37% defN 20100101.000002 scala/Product2$mcII$sp.class --rw---- 2.0 fat 271 bl 37% defN 20100101.000002 scala/Product2$mcIJ$sp.class --rw---- 2.0 fat 271 bl 37% defN 20100101.000002 scala/Product2$mcJD$sp.class --rw---- 2.0 fat 271 bl 37% defN 20100101.000002 scala/Product2$mcJI$sp.class --rw---- 2.0 fat 271 bl 37% defN 20100101.000002 scala/Product2$mcJJ$sp.class --rw---- 2.0 fat 4029 bl 52% defN 20100101.000002 scala/Product2.class --rw---- 2.0 fat 1331 bl 59% defN 20100101.000002 scala/Product20$.class --rw---- 2.0 fat 5739 bl 51% defN 20100101.000002 scala/Product20.class --rw---- 2.0 fat 1363 bl 59% defN 20100101.000002 scala/Product21$.class --rw---- 2.0 fat 5921 bl 52% defN 20100101.000002 scala/Product21.class --rw---- 2.0 fat 1395 bl 60% defN 20100101.000002 scala/Product22$.class --rw---- 2.0 fat 6105 bl 52% defN 20100101.000002 scala/Product22.class --rw---- 2.0 fat 798 bl 42% defN 20100101.000002 scala/Product3$.class --rw---- 2.0 fat 2722 bl 43% defN 20100101.000002 scala/Product3.class --rw---- 2.0 fat 827 bl 44% defN 20100101.000002 scala/Product4$.class --rw---- 2.0 fat 2883 bl 44% defN 20100101.000002 scala/Product4.class --rw---- 2.0 fat 856 bl 45% defN 20100101.000002 scala/Product5$.class --rw---- 2.0 fat 3045 bl 44% defN 20100101.000002 scala/Product5.class --rw---- 2.0 fat 885 bl 46% defN 20100101.000002 scala/Product6$.class --rw---- 2.0 fat 3207 bl 45% defN 20100101.000002 scala/Product6.class --rw---- 2.0 fat 914 bl 47% defN 20100101.000002 scala/Product7$.class --rw---- 2.0 fat 3368 bl 46% defN 20100101.000002 scala/Product7.class --rw---- 2.0 fat 943 bl 48% defN 20100101.000002 scala/Product8$.class --rw---- 2.0 fat 3539 bl 46% defN 20100101.000002 scala/Product8.class --rw---- 2.0 fat 972 bl 49% defN 20100101.000002 scala/Product9$.class --rw---- 2.0 fat 3714 bl 47% defN 20100101.000002 scala/Product9.class --rw---- 2.0 fat 414 bl 30% defN 20100101.000002 scala/Proxy$.class --rw---- 2.0 fat 358 bl 34% defN 20100101.000002 scala/Proxy$Typed.class --rw---- 2.0 fat 2114 bl 38% defN 20100101.000002 scala/Proxy.class --rw---- 2.0 fat 1793 bl 55% defN 20100101.000002 scala/ScalaReflectionException$.class --rw---- 2.0 fat 5718 bl 51% defN 20100101.000002 scala/ScalaReflectionException.class --rw---- 2.0 fat 867 bl 26% defN 20100101.000002 scala/SerialVersionUID.class --rw---- 2.0 fat 1426 bl 52% defN 20100101.000002 scala/Short$.class --rw---- 2.0 fat 8397 bl 50% defN 20100101.000002 scala/Short.class --rw---- 2.0 fat 1328 bl 48% defN 20100101.000002 scala/Some$.class --rw---- 2.0 fat 4496 bl 45% defN 20100101.000002 scala/Some.class --rw---- 2.0 fat 4523 bl 79% defN 20100101.000002 scala/Specializable$.class --rw---- 2.0 fat 682 bl 45% defN 20100101.000002 scala/Specializable$Group.class --rw---- 2.0 fat 248 bl 32% defN 20100101.000002 scala/Specializable$SpecializedGroup.class --rw---- 2.0 fat 3722 bl 55% defN 20100101.000002 scala/Specializable.class --rw---- 2.0 fat 16249 bl 58% defN 20100101.000002 scala/StringContext$.class --rw---- 2.0 fat 1639 bl 43% defN 20100101.000002 scala/StringContext$InvalidEscapeException.class +-rw---- 2.0 fat 1012 bl 40% defN 20100101.000002 scala/io/Position$.class +-rw---- 2.0 fat 1015 bl 46% defN 20100101.000002 scala/collection/mutable/Buffer$.class +-rw---- 2.0 fat 1015 bl 46% defN 20100101.000002 scala/collection/mutable/Set$.class +-rw---- 2.0 fat 1017 bl 27% defN 20100101.000002 scala/annotation/compileTimeOnly.class +-rw---- 2.0 fat 1017 bl 51% defN 20100101.000002 scala/collection/mutable/AnyRefMap$$anon$2.class +-rw---- 2.0 fat 10187 bl 69% defN 20100101.000002 scala/reflect/ManifestFactory$.class +-rw---- 2.0 fat 1019 bl 49% defN 20100101.000002 scala/runtime/ZippedIterable3$.class +-rw---- 2.0 fat 1019 bl 51% defN 20100101.000002 scala/collection/mutable/AnyRefMap$$anon$3.class +-rw---- 2.0 fat 1019 bl 53% defN 20100101.000002 scala/math/Ordering$BigIntOrdering.class +-rw---- 2.0 fat 10202 bl 75% defN 20100101.000002 scala/math/Numeric$BigDecimalIsFractional$.class +-rw---- 2.0 fat 10210 bl 78% defN 20100101.000002 scala/math/Ordering$.class +-rw---- 2.0 fat 1021 bl 41% defN 20100101.000002 scala/collection/immutable/IndexedSeqDefaults$.class +-rw---- 2.0 fat 10222 bl 61% defN 20100101.000002 scala/runtime/RichByte.class +-rw---- 2.0 fat 10235 bl 64% defN 20100101.000002 scala/collection/Seq.class +-rw---- 2.0 fat 1023 bl 32% defN 20100101.000002 scala/reflect/macros/internal/macroImpl.class +-rw---- 2.0 fat 1023 bl 53% defN 20100101.000002 scala/math/Ordering$StringOrdering.class +-rw---- 2.0 fat 10254 bl 61% defN 20100101.000002 scala/runtime/RichShort.class +-rw---- 2.0 fat 10258 bl 76% defN 20100101.000002 scala/collection/IndexedSeqView$Id.class +-rw---- 2.0 fat 1027 bl 47% defN 20100101.000002 scala/collection/SortedMap$.class +-rw---- 2.0 fat 10286 bl 76% defN 20100101.000002 scala/collection/IndexedSeqView$Drop.class +-rw---- 2.0 fat 10286 bl 76% defN 20100101.000002 scala/collection/IndexedSeqView$Take.class +-rw---- 2.0 fat 10309 bl 58% defN 20100101.000002 scala/math/package.class +-rw---- 2.0 fat 10311 bl 76% defN 20100101.000002 scala/collection/IndexedSeqView$DropRight.class +-rw---- 2.0 fat 10311 bl 76% defN 20100101.000002 scala/collection/IndexedSeqView$TakeRight.class +-rw---- 2.0 fat 10316 bl 56% defN 20100101.000002 scala/Tuple7.class +-rw---- 2.0 fat 1031 bl 46% defN 20100101.000002 scala/collection/mutable/IndexedSeq$.class +-rw---- 2.0 fat 10331 bl 68% defN 20100101.000002 scala/collection/mutable/ArrayDeque$.class +-rw---- 2.0 fat 1033 bl 47% defN 20100101.000002 scala/collection/LazyZip4$.class +-rw---- 2.0 fat 10342 bl 76% defN 20100101.000002 scala/collection/IndexedSeqView$Appended.class +-rw---- 2.0 fat 10347 bl 76% defN 20100101.000002 scala/collection/IndexedSeqView$Prepended.class +-rw---- 2.0 fat 1034 bl 47% defN 20100101.000002 scala/util/hashing/Hashing$$anon$1.class +-rw---- 2.0 fat 1034 bl 48% defN 20100101.000002 scala/collection/mutable/HashSet$$anon$4.class +-rw---- 2.0 fat 1034 bl 51% defN 20100101.000002 scala/util/Using$Manager$Resource.class +-rw---- 2.0 fat 1035 bl 49% defN 20100101.000002 scala/util/hashing/MurmurHash3$$anon$3.class +-rw---- 2.0 fat 1036 bl 46% defN 20100101.000002 scala/collection/mutable/IndexedBuffer$.class +-rw---- 2.0 fat 10372 bl 76% defN 20100101.000002 scala/collection/IndexedSeqView$Map.class +-rw---- 2.0 fat 10390 bl 52% defN 20100101.000002 scala/collection/concurrent/TrieMapIterator.class +-rw---- 2.0 fat 10393 bl 76% defN 20100101.000002 scala/collection/IndexedSeqView$Concat.class +-rw---- 2.0 fat 1039 bl 43% defN 20100101.000002 scala/runtime/BoxedUnit.class +-rw---- 2.0 fat 1041 bl 38% defN 20100101.000002 scala/io/LowPriorityCodecImplicits.class +-rw---- 2.0 fat 10428 bl 75% defN 20100101.000002 scala/collection/IndexedSeqView$Reverse.class +-rw---- 2.0 fat 1042 bl 49% defN 20100101.000002 scala/collection/mutable/BitSet$SerializationProxy.class +-rw---- 2.0 fat 10431 bl 74% defN 20100101.000002 scala/math/Numeric$FloatIsFractional$.class +-rw---- 2.0 fat 10431 bl 75% defN 20100101.000002 scala/math/Numeric$BigDecimalAsIfIntegral$.class +-rw---- 2.0 fat 10433 bl 74% defN 20100101.000002 scala/collection/AbstractIndexedSeqView.class +-rw---- 2.0 fat 1043 bl 47% defN 20100101.000002 scala/collection/mutable/Iterable$.class +-rw---- 2.0 fat 1043 bl 47% defN 20100101.000002 scala/collection/mutable/SortedMap$.class +-rw---- 2.0 fat 1043 bl 52% defN 20100101.000002 scala/Product11$.class +-rw---- 2.0 fat 10452 bl 74% defN 20100101.000002 scala/math/Numeric$DoubleIsFractional$.class +-rw---- 2.0 fat 1046 bl 42% defN 20100101.000002 scala/collection/mutable/MutationTracker$.class +-rw---- 2.0 fat 1047 bl 42% defN 20100101.000002 scala/util/control/NoStackTrace$.class +-rw---- 2.0 fat 10486 bl 81% defN 20100101.000002 scala/collection/convert/ImplicitConversions$.class +-rw---- 2.0 fat 10488 bl 73% defN 20100101.000002 scala/collection/mutable/UnrolledBuffer$.class +-rw---- 2.0 fat 1049 bl 46% defN 20100101.000002 scala/collection/SortedSet$.class +-rw---- 2.0 fat 10503 bl 65% defN 20100101.000002 scala/sys/process/ProcessImpl$PipedProcesses.class +-rw---- 2.0 fat 1052 bl 50% defN 20100101.000002 scala/collection/mutable/ArrayBuffer$$anon$1.class +-rw---- 2.0 fat 1054 bl 51% defN 20100101.000002 scala/collection/immutable/Map$Map2$$anon$2.class +-rw---- 2.0 fat 1054 bl 51% defN 20100101.000002 scala/collection/immutable/Map$Map3$$anon$5.class +-rw---- 2.0 fat 1054 bl 51% defN 20100101.000002 scala/collection/immutable/Map$Map4$$anon$8.class +-rw---- 2.0 fat 1056 bl 44% defN 20100101.000002 scala/collection/StepperShape$Shape$.class +-rw---- 2.0 fat 1056 bl 48% defN 20100101.000002 scala/collection/mutable/HashMap$$anon$6.class +-rw---- 2.0 fat 1056 bl 51% defN 20100101.000002 scala/collection/immutable/Map$Map2$$anon$3.class +-rw---- 2.0 fat 1056 bl 51% defN 20100101.000002 scala/collection/immutable/Map$Map3$$anon$6.class +-rw---- 2.0 fat 1056 bl 51% defN 20100101.000002 scala/collection/immutable/Map$Map4$$anon$9.class +-rw---- 2.0 fat 1058 bl 50% defN 20100101.000002 scala/collection/immutable/BitSet$SerializationProxy.class +-rw---- 2.0 fat 1063 bl 51% defN 20100101.000002 scala/math/Ordering$SymbolOrdering.class +-rw---- 2.0 fat 1065 bl 47% defN 20100101.000002 scala/collection/mutable/SortedSet$.class +-rw---- 2.0 fat 1065 bl 47% defN 20100101.000002 scala/io/Source$NoPositioner$.class +-rw---- 2.0 fat 1066 bl 43% defN 20100101.000002 scala/ValueOf$.class +-rw---- 2.0 fat 10680 bl 69% defN 20100101.000002 scala/collection/convert/ToJavaImplicits.class +-rw---- 2.0 fat 1070 bl 50% defN 20100101.000002 scala/runtime/NonLocalReturnControl$mcB$sp.class +-rw---- 2.0 fat 1070 bl 50% defN 20100101.000002 scala/runtime/NonLocalReturnControl$mcJ$sp.class +-rw---- 2.0 fat 1070 bl 51% defN 20100101.000002 scala/runtime/NonLocalReturnControl$mcZ$sp.class +-rw---- 2.0 fat 1071 bl 55% defN 20100101.000002 scala/math/Ordering$BigDecimalOrdering.class +-rw---- 2.0 fat 1072 bl 51% defN 20100101.000002 scala/runtime/NonLocalReturnControl$mcF$sp.class +-rw---- 2.0 fat 1072 bl 51% defN 20100101.000002 scala/runtime/NonLocalReturnControl$mcS$sp.class +-rw---- 2.0 fat 1074 bl 50% defN 20100101.000002 scala/runtime/NonLocalReturnControl$mcD$sp.class +-rw---- 2.0 fat 1075 bl 53% defN 20100101.000002 scala/Product12$.class +-rw---- 2.0 fat 1076 bl 51% defN 20100101.000002 scala/runtime/NonLocalReturnControl$mcI$sp.class +-rw---- 2.0 fat 1079 bl 52% defN 20100101.000002 scala/runtime/NonLocalReturnControl$mcV$sp.class +-rw---- 2.0 fat 10801 bl 56% defN 20100101.000002 scala/collection/SeqOps$CombinationsItr.class +-rw---- 2.0 fat 10806 bl 73% defN 20100101.000002 scala/collection/immutable/Set$Set1.class +-rw---- 2.0 fat 1080 bl 51% defN 20100101.000002 scala/runtime/NonLocalReturnControl$mcC$sp.class +-rw---- 2.0 fat 10819 bl 82% defN 20100101.000002 scala/jdk/StreamConverters$.class +-rw---- 2.0 fat 1085 bl 48% defN 20100101.000002 scala/collection/immutable/Set$Set2$$anon$1.class +-rw---- 2.0 fat 1085 bl 48% defN 20100101.000002 scala/collection/immutable/Set$Set3$$anon$2.class +-rw---- 2.0 fat 1085 bl 48% defN 20100101.000002 scala/collection/immutable/Set$Set4$$anon$3.class +-rw---- 2.0 fat 1085 bl 48% defN 20100101.000002 scala/util/hashing/MurmurHash3$$anon$4.class +-rw---- 2.0 fat 10880 bl 70% defN 20100101.000002 scala/collection/immutable/Vector$.class +-rw---- 2.0 fat 10884 bl 67% defN 20100101.000002 scala/collection/mutable/ArrayBuffer$.class +-rw---- 2.0 fat 1089 bl 42% defN 20100101.000002 scala/collection/mutable/SortedSetOps.class +-rw---- 2.0 fat 1090 bl 48% defN 20100101.000002 scala/collection/StepperShape$Shape.class +-rw---- 2.0 fat 10929 bl 69% defN 20100101.000002 scala/collection/View$.class +-rw---- 2.0 fat 1094 bl 53% defN 20100101.000002 scala/collection/mutable/Growable$.class +-rw---- 2.0 fat 1095 bl 51% defN 20100101.000002 scala/collection/mutable/ArrayDeque$$anon$1.class +-rw---- 2.0 fat 1098 bl 54% defN 20100101.000002 scala/concurrent/JavaConversions$.class +-rw---- 2.0 fat 1098 bl 55% defN 20100101.000002 scala/jdk/FutureConverters$.class +-rw---- 2.0 fat 11006 bl 56% defN 20100101.000002 scala/collection/concurrent/LNode.class +-rw---- 2.0 fat 1100 bl 43% defN 20100101.000002 scala/collection/Iterator$$anon$24.class +-rw---- 2.0 fat 1101 bl 46% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$.class +-rw---- 2.0 fat 1105 bl 27% defN 20100101.000002 scala/concurrent/package.class +-rw---- 2.0 fat 1106 bl 38% defN 20100101.000002 scala/jdk/javaapi/DurationConverters.class +-rw---- 2.0 fat 1106 bl 48% defN 20100101.000002 scala/collection/mutable/ArrayBufferView$$anonfun$$lessinit$greater$1.class +-rw---- 2.0 fat 1106 bl 48% defN 20100101.000002 scala/concurrent/package$.class +-rw---- 2.0 fat 1106 bl 50% defN 20100101.000002 scala/collection/Searching$.class +-rw---- 2.0 fat 1107 bl 44% defN 20100101.000002 scala/collection/immutable/SortedSetOps.class +-rw---- 2.0 fat 1107 bl 54% defN 20100101.000002 scala/Product13$.class +-rw---- 2.0 fat 1108 bl 48% defN 20100101.000002 scala/sys/Prop$StringProp$$anonfun$$lessinit$greater$2.class +-rw---- 2.0 fat 11096 bl 71% defN 20100101.000002 scala/jdk/AnyAccumulator$.class +-rw---- 2.0 fat 1110 bl 42% defN 20100101.000002 scala/Product$$anon$1.class +-rw---- 2.0 fat 11124 bl 65% defN 20100101.000002 scala/collection/convert/AsScalaExtensions.class +-rw---- 2.0 fat 11197 bl 62% defN 20100101.000002 scala/io/Source$.class +-rw---- 2.0 fat 1119 bl 36% defN 20100101.000002 scala/collection/mutable/HashEntry.class +-rw---- 2.0 fat 1120 bl 53% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$URLInput.class +-rw---- 2.0 fat 1121 bl 51% defN 20100101.000002 scala/util/hashing/MurmurHash3$ArrayHashing$mcB$sp.class +-rw---- 2.0 fat 1121 bl 51% defN 20100101.000002 scala/util/hashing/MurmurHash3$ArrayHashing$mcC$sp.class +-rw---- 2.0 fat 1121 bl 51% defN 20100101.000002 scala/util/hashing/MurmurHash3$ArrayHashing$mcD$sp.class +-rw---- 2.0 fat 1121 bl 51% defN 20100101.000002 scala/util/hashing/MurmurHash3$ArrayHashing$mcF$sp.class +-rw---- 2.0 fat 1121 bl 51% defN 20100101.000002 scala/util/hashing/MurmurHash3$ArrayHashing$mcI$sp.class +-rw---- 2.0 fat 1121 bl 51% defN 20100101.000002 scala/util/hashing/MurmurHash3$ArrayHashing$mcJ$sp.class +-rw---- 2.0 fat 1121 bl 51% defN 20100101.000002 scala/util/hashing/MurmurHash3$ArrayHashing$mcS$sp.class +-rw---- 2.0 fat 1121 bl 51% defN 20100101.000002 scala/util/hashing/MurmurHash3$ArrayHashing$mcZ$sp.class +-rw---- 2.0 fat 1122 bl 52% defN 20100101.000002 scala/runtime/ZippedIterable2$$anon$1.class +-rw---- 2.0 fat 1126 bl 45% defN 20100101.000002 scala/collection/SeqOps$$anon$2.class -rw---- 2.0 fat 1128 bl 47% defN 20100101.000002 scala/StringContext$InvalidUnicodeEscapeException.class --rw---- 2.0 fat 1040 bl 47% defN 20100101.000002 scala/StringContext$s$.class --rw---- 2.0 fat 8869 bl 48% defN 20100101.000002 scala/StringContext.class --rw---- 2.0 fat 1811 bl 55% defN 20100101.000002 scala/Symbol$.class --rw---- 2.0 fat 2482 bl 38% defN 20100101.000002 scala/Symbol.class --rw---- 2.0 fat 2780 bl 61% defN 20100101.000002 scala/Tuple1$.class +-rw---- 2.0 fat 11297 bl 53% defN 20100101.000002 scala/collection/SortedSetOps.class +-rw---- 2.0 fat 1129 bl 44% defN 20100101.000002 scala/collection/SeqOps$$anon$1.class +-rw---- 2.0 fat 1130 bl 54% defN 20100101.000002 scala/collection/mutable/HashSet$$anon$1.class +-rw---- 2.0 fat 1132 bl 52% defN 20100101.000002 scala/runtime/ZippedIterable3$$anon$1.class +-rw---- 2.0 fat 1133 bl 52% defN 20100101.000002 scala/collection/IterableOnceOps$$anon$1.class +-rw---- 2.0 fat 1133 bl 53% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$FileInput.class +-rw---- 2.0 fat 1134 bl 34% defN 20100101.000002 scala/collection/Hashing.class +-rw---- 2.0 fat 11357 bl 65% defN 20100101.000000 LICENSE +-rw---- 2.0 fat 11358 bl 54% defN 20100101.000002 scala/util/Failure.class +-rw---- 2.0 fat 11359 bl 72% defN 20100101.000002 scala/util/Properties$.class +-rw---- 2.0 fat 11375 bl 68% defN 20100101.000002 scala/collection/immutable/RedBlackTree$Tree.class +-rw---- 2.0 fat 1138 bl 55% defN 20100101.000002 scala/collection/convert/StreamExtensions$AccumulatorFactoryInfo$$anon$9.class +-rw---- 2.0 fat 1139 bl 54% defN 20100101.000002 scala/Product14$.class +-rw---- 2.0 fat 11407 bl 74% defN 20100101.000002 scala/math/Equiv$.class +-rw---- 2.0 fat 1140 bl 50% defN 20100101.000002 scala/util/hashing/ByteswapHashing$Chained.class +-rw---- 2.0 fat 1140 bl 54% defN 20100101.000002 scala/collection/mutable/HashMap$$anon$2.class +-rw---- 2.0 fat 11410 bl 75% defN 20100101.000002 scala/collection/mutable/AbstractMap.class +-rw---- 2.0 fat 11436 bl 70% defN 20100101.000002 scala/collection/convert/AsJavaConverters.class +-rw---- 2.0 fat 11437 bl 57% defN 20100101.000002 scala/Tuple8.class +-rw---- 2.0 fat 1143 bl 56% defN 20100101.000002 scala/collection/convert/StreamExtensions$AccumulatorFactoryInfo$$anon$10.class +-rw---- 2.0 fat 1144 bl 54% defN 20100101.000002 scala/collection/mutable/HashMap$$anon$3.class +-rw---- 2.0 fat 1146 bl 52% defN 20100101.000002 scala/math/Numeric$Implicits$.class +-rw---- 2.0 fat 1147 bl 53% defN 20100101.000002 scala/collection/immutable/package$.class +-rw---- 2.0 fat 11496 bl 66% defN 20100101.000002 scala/collection/convert/AsJavaExtensions.class +-rw---- 2.0 fat 1149 bl 55% defN 20100101.000002 scala/collection/convert/StreamExtensions$AccumulatorFactoryInfo$$anon$11.class +-rw---- 2.0 fat 11500 bl 72% defN 20100101.000002 scala/Function$.class +-rw---- 2.0 fat 11510 bl 48% defN 20100101.000002 scala/util/Random.class +-rw---- 2.0 fat 1151 bl 48% defN 20100101.000002 scala/sys/Prop$FileProp$$anonfun$$lessinit$greater$1.class +-rw---- 2.0 fat 1151 bl 51% defN 20100101.000002 scala/util/Using$Releasable$AutoCloseableIsReleasable$.class +-rw---- 2.0 fat 11533 bl 52% defN 20100101.000002 scala/collection/MapView.class +-rw---- 2.0 fat 11566 bl 71% defN 20100101.000002 scala/collection/immutable/Set$Set2.class +-rw---- 2.0 fat 11578 bl 76% defN 20100101.000002 scala/runtime/AbstractFunction2.class +-rw---- 2.0 fat 11616 bl 61% defN 20100101.000002 scala/collection/mutable/ArrayBufferView.class +-rw---- 2.0 fat 11621 bl 49% defN 20100101.000002 scala/PartialFunction.class +-rw---- 2.0 fat 1163 bl 29% defN 20100101.000002 scala/annotation/nowarn.class +-rw---- 2.0 fat 1165 bl 50% defN 20100101.000002 scala/util/hashing/ByteswapHashing$.class +-rw---- 2.0 fat 11673 bl 64% defN 20100101.000002 scala/Function1.class +-rw---- 2.0 fat 1167 bl 52% defN 20100101.000002 scala/math/Integral$Implicits$.class +-rw---- 2.0 fat 1167 bl 53% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$FileOutput.class +-rw---- 2.0 fat 1170 bl 46% defN 20100101.000002 scala/collection/mutable/AbstractIterable.class +-rw---- 2.0 fat 1171 bl 55% defN 20100101.000002 scala/Product15$.class +-rw---- 2.0 fat 11742 bl 56% defN 20100101.000002 scala/reflect/Manifest.class +-rw---- 2.0 fat 1174 bl 49% defN 20100101.000002 scala/language$experimental$.class +-rw---- 2.0 fat 1178 bl 44% defN 20100101.000002 scala/math/Equiv$Int$.class +-rw---- 2.0 fat 1178 bl 48% defN 20100101.000002 scala/math/Equiv$Unit$.class +-rw---- 2.0 fat 11817 bl 80% defN 20100101.000002 scala/jdk/javaapi/StreamConverters$.class +-rw---- 2.0 fat 1182 bl 44% defN 20100101.000002 scala/math/Equiv$Byte$.class +-rw---- 2.0 fat 1182 bl 44% defN 20100101.000002 scala/math/Equiv$Char$.class +-rw---- 2.0 fat 1182 bl 45% defN 20100101.000002 scala/runtime/RichBoolean$.class +-rw---- 2.0 fat 1183 bl 40% defN 20100101.000002 scala/util/ChainingSyntax.class +-rw---- 2.0 fat 1183 bl 43% defN 20100101.000002 scala/math/Equiv$Long$.class +-rw---- 2.0 fat 11848 bl 56% defN 20100101.000002 scala/sys/SystemProperties.class +-rw---- 2.0 fat 11861 bl 64% defN 20100101.000002 scala/collection/Iterable.class +-rw---- 2.0 fat 1186 bl 44% defN 20100101.000002 scala/math/Equiv$Short$.class +-rw---- 2.0 fat 1187 bl 55% defN 20100101.000002 scala/collection/JavaConverters$AsJavaCollection.class +-rw---- 2.0 fat 11886 bl 63% defN 20100101.000002 scala/collection/mutable/IndexedBuffer.class +-rw---- 2.0 fat 1189 bl 43% defN 20100101.000002 scala/runtime/ScalaRunTime$$anon$1.class +-rw---- 2.0 fat 11907 bl 53% defN 20100101.000002 scala/util/Success.class +-rw---- 2.0 fat 1190 bl 47% defN 20100101.000002 scala/collection/View$Single.class +-rw---- 2.0 fat 1194 bl 44% defN 20100101.000002 scala/math/Equiv$Boolean$.class +-rw---- 2.0 fat 1194 bl 55% defN 20100101.000002 scala/collection/mutable/package$.class +-rw---- 2.0 fat 1195 bl 55% defN 20100101.000002 scala/collection/JavaConverters$AsJavaEnumeration.class +-rw---- 2.0 fat 1196 bl 51% defN 20100101.000002 scala/collection/View$Elems.class +-rw---- 2.0 fat 11995 bl 78% defN 20100101.000002 scala/Tuple2$.class +-rw---- 2.0 fat 1199 bl 46% defN 20100101.000002 scala/collection/immutable/StrictOptimizedSortedSetOps.class +-rw---- 2.0 fat 1200 bl 53% defN 20100101.000002 scala/util/hashing/MurmurHash3$ArrayHashing$mcV$sp.class +-rw---- 2.0 fat 12030 bl 66% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JMapWrapperLike.class +-rw---- 2.0 fat 12035 bl 71% defN 20100101.000002 scala/collection/immutable/Set$Set3.class +-rw---- 2.0 fat 1203 bl 56% defN 20100101.000002 scala/Product16$.class +-rw---- 2.0 fat 1204 bl 46% defN 20100101.000002 scala/collection/Iterator$$anon$26.class +-rw---- 2.0 fat 1204 bl 56% defN 20100101.000002 scala/math/Numeric$ExtraImplicits.class +-rw---- 2.0 fat 1206 bl 37% defN 20100101.000002 scala/runtime/RangedProxy.class +-rw---- 2.0 fat 1207 bl 49% defN 20100101.000002 scala/collection/convert/impl/BitSetStepper$.class +-rw---- 2.0 fat 1208 bl 44% defN 20100101.000002 scala/util/control/NonFatal$.class +-rw---- 2.0 fat 1209 bl 54% defN 20100101.000002 scala/math/Fractional$Implicits$.class +-rw---- 2.0 fat 1212 bl 50% defN 20100101.000002 scala/math/Numeric$BigDecimalIsConflicted$.class +-rw---- 2.0 fat 1213 bl 46% defN 20100101.000002 scala/sys/Prop$IntProp$$anonfun$$lessinit$greater$3.class +-rw---- 2.0 fat 1216 bl 52% defN 20100101.000002 scala/collection/convert/impl/IntChampStepper$.class +-rw---- 2.0 fat 12170 bl 63% defN 20100101.000002 scala/collection/immutable/IndexedSeq.class +-rw---- 2.0 fat 1217 bl 44% defN 20100101.000002 scala/Product$$anon$2.class +-rw---- 2.0 fat 12204 bl 69% defN 20100101.000002 scala/runtime/Tuple3Zipped$.class +-rw---- 2.0 fat 12212 bl 68% defN 20100101.000002 scala/Predef$.class +-rw---- 2.0 fat 12228 bl 57% defN 20100101.000002 scala/collection/SetOps.class +-rw---- 2.0 fat 1222 bl 52% defN 20100101.000002 scala/collection/convert/impl/LongChampStepper$.class +-rw---- 2.0 fat 1224 bl 28% defN 20100101.000002 scala/annotation/showAsInfix.class +-rw---- 2.0 fat 1224 bl 45% defN 20100101.000002 scala/math/Equiv$Symbol$.class +-rw---- 2.0 fat 1224 bl 52% defN 20100101.000002 scala/collection/convert/impl/AnyChampStepper$.class +-rw---- 2.0 fat 12252 bl 60% defN 20100101.000002 scala/collection/mutable/UnrolledBuffer$Unrolled.class +-rw---- 2.0 fat 1225 bl 27% defN 20100101.000002 scala/collection/SortedIterableFactory.class +-rw---- 2.0 fat 1225 bl 47% defN 20100101.000002 scala/sys/Prop$DoubleProp$$anonfun$$lessinit$greater$4.class +-rw---- 2.0 fat 1225 bl 48% defN 20100101.000002 scala/collection/StrictOptimizedLinearSeqOps$$anon$1.class +-rw---- 2.0 fat 1225 bl 54% defN 20100101.000002 scala/runtime/ClassValueCompat$JavaClassValue.class +-rw---- 2.0 fat 1225 bl 57% defN 20100101.000002 scala/collection/mutable/LinkedHashSet$$anon$1.class +-rw---- 2.0 fat 1226 bl 56% defN 20100101.000002 scala/math/Integral$ExtraImplicits.class +-rw---- 2.0 fat 12285 bl 75% defN 20100101.000002 scala/collection/immutable/SortedMapOps$ImmutableKeySortedSet.class +-rw---- 2.0 fat 1228 bl 54% defN 20100101.000002 scala/runtime/ObjectRef.class +-rw---- 2.0 fat 1231 bl 56% defN 20100101.000002 scala/collection/JavaConverters$AsJavaDictionary.class +-rw---- 2.0 fat 1232 bl 52% defN 20100101.000002 scala/Tuple1$mcJ$sp.class +-rw---- 2.0 fat 1232 bl 53% defN 20100101.000002 scala/math/Fractional$FractionalOps.class +-rw---- 2.0 fat 1234 bl 52% defN 20100101.000002 scala/collection/convert/impl/DoubleChampStepper$.class +-rw---- 2.0 fat 1235 bl 48% defN 20100101.000002 scala/collection/Iterator$$anon$9.class +-rw---- 2.0 fat 1235 bl 56% defN 20100101.000002 scala/Product17$.class -rw---- 2.0 fat 1236 bl 52% defN 20100101.000002 scala/Tuple1$mcD$sp.class +-rw---- 2.0 fat 1237 bl 52% defN 20100101.000002 scala/collection/mutable/CollisionProofHashMap$$anon$3.class -rw---- 2.0 fat 1238 bl 52% defN 20100101.000002 scala/Tuple1$mcI$sp.class --rw---- 2.0 fat 1232 bl 52% defN 20100101.000002 scala/Tuple1$mcJ$sp.class --rw---- 2.0 fat 6687 bl 51% defN 20100101.000002 scala/Tuple1.class --rw---- 2.0 fat 2599 bl 62% defN 20100101.000002 scala/Tuple10$.class --rw---- 2.0 fat 13928 bl 61% defN 20100101.000002 scala/Tuple10.class --rw---- 2.0 fat 2735 bl 63% defN 20100101.000002 scala/Tuple11$.class --rw---- 2.0 fat 15276 bl 62% defN 20100101.000002 scala/Tuple11.class --rw---- 2.0 fat 2871 bl 64% defN 20100101.000002 scala/Tuple12$.class --rw---- 2.0 fat 16698 bl 63% defN 20100101.000002 scala/Tuple12.class --rw---- 2.0 fat 3007 bl 65% defN 20100101.000002 scala/Tuple13$.class --rw---- 2.0 fat 18173 bl 64% defN 20100101.000002 scala/Tuple13.class --rw---- 2.0 fat 3143 bl 65% defN 20100101.000002 scala/Tuple14$.class --rw---- 2.0 fat 19710 bl 65% defN 20100101.000002 scala/Tuple14.class --rw---- 2.0 fat 3279 bl 66% defN 20100101.000002 scala/Tuple15$.class --rw---- 2.0 fat 21312 bl 66% defN 20100101.000002 scala/Tuple15.class --rw---- 2.0 fat 3415 bl 67% defN 20100101.000002 scala/Tuple16$.class --rw---- 2.0 fat 23033 bl 67% defN 20100101.000002 scala/Tuple16.class --rw---- 2.0 fat 3551 bl 68% defN 20100101.000002 scala/Tuple17$.class --rw---- 2.0 fat 24836 bl 67% defN 20100101.000002 scala/Tuple17.class --rw---- 2.0 fat 3687 bl 68% defN 20100101.000002 scala/Tuple18$.class --rw---- 2.0 fat 26698 bl 67% defN 20100101.000002 scala/Tuple18.class --rw---- 2.0 fat 3823 bl 69% defN 20100101.000002 scala/Tuple19$.class --rw---- 2.0 fat 28640 bl 68% defN 20100101.000002 scala/Tuple19.class --rw---- 2.0 fat 11995 bl 78% defN 20100101.000002 scala/Tuple2$.class --rw---- 2.0 fat 2075 bl 62% defN 20100101.000002 scala/Tuple2$mcCC$sp.class --rw---- 2.0 fat 2217 bl 61% defN 20100101.000002 scala/Tuple2$mcCD$sp.class --rw---- 2.0 fat 2219 bl 62% defN 20100101.000002 scala/Tuple2$mcCI$sp.class --rw---- 2.0 fat 2213 bl 61% defN 20100101.000002 scala/Tuple2$mcCJ$sp.class --rw---- 2.0 fat 2213 bl 62% defN 20100101.000002 scala/Tuple2$mcCZ$sp.class --rw---- 2.0 fat 2217 bl 61% defN 20100101.000002 scala/Tuple2$mcDC$sp.class --rw---- 2.0 fat 2123 bl 62% defN 20100101.000002 scala/Tuple2$mcDD$sp.class --rw---- 2.0 fat 2267 bl 61% defN 20100101.000002 scala/Tuple2$mcDI$sp.class --rw---- 2.0 fat 2261 bl 61% defN 20100101.000002 scala/Tuple2$mcDJ$sp.class --rw---- 2.0 fat 2207 bl 61% defN 20100101.000002 scala/Tuple2$mcDZ$sp.class --rw---- 2.0 fat 2219 bl 62% defN 20100101.000002 scala/Tuple2$mcIC$sp.class --rw---- 2.0 fat 2267 bl 61% defN 20100101.000002 scala/Tuple2$mcID$sp.class --rw---- 2.0 fat 2125 bl 62% defN 20100101.000002 scala/Tuple2$mcII$sp.class --rw---- 2.0 fat 2263 bl 61% defN 20100101.000002 scala/Tuple2$mcIJ$sp.class --rw---- 2.0 fat 2209 bl 62% defN 20100101.000002 scala/Tuple2$mcIZ$sp.class --rw---- 2.0 fat 2213 bl 61% defN 20100101.000002 scala/Tuple2$mcJC$sp.class --rw---- 2.0 fat 2261 bl 61% defN 20100101.000002 scala/Tuple2$mcJD$sp.class --rw---- 2.0 fat 2263 bl 61% defN 20100101.000002 scala/Tuple2$mcJI$sp.class --rw---- 2.0 fat 2119 bl 62% defN 20100101.000002 scala/Tuple2$mcJJ$sp.class --rw---- 2.0 fat 2203 bl 61% defN 20100101.000002 scala/Tuple2$mcJZ$sp.class --rw---- 2.0 fat 2213 bl 62% defN 20100101.000002 scala/Tuple2$mcZC$sp.class --rw---- 2.0 fat 2207 bl 61% defN 20100101.000002 scala/Tuple2$mcZD$sp.class --rw---- 2.0 fat 2209 bl 62% defN 20100101.000002 scala/Tuple2$mcZI$sp.class --rw---- 2.0 fat 2203 bl 61% defN 20100101.000002 scala/Tuple2$mcZJ$sp.class --rw---- 2.0 fat 2065 bl 62% defN 20100101.000002 scala/Tuple2$mcZZ$sp.class --rw---- 2.0 fat 17672 bl 69% defN 20100101.000002 scala/Tuple2.class --rw---- 2.0 fat 3959 bl 69% defN 20100101.000002 scala/Tuple20$.class --rw---- 2.0 fat 30627 bl 68% defN 20100101.000002 scala/Tuple20.class --rw---- 2.0 fat 4095 bl 69% defN 20100101.000002 scala/Tuple21$.class --rw---- 2.0 fat 32695 bl 69% defN 20100101.000002 scala/Tuple21.class --rw---- 2.0 fat 4231 bl 70% defN 20100101.000002 scala/Tuple22$.class --rw---- 2.0 fat 34834 bl 70% defN 20100101.000002 scala/Tuple22.class --rw---- 2.0 fat 1678 bl 53% defN 20100101.000002 scala/Tuple3$.class --rw---- 2.0 fat 6455 bl 49% defN 20100101.000002 scala/Tuple3.class --rw---- 2.0 fat 1807 bl 54% defN 20100101.000002 scala/Tuple4$.class --rw---- 2.0 fat 7318 bl 51% defN 20100101.000002 scala/Tuple4.class --rw---- 2.0 fat 1936 bl 56% defN 20100101.000002 scala/Tuple5$.class --rw---- 2.0 fat 8254 bl 53% defN 20100101.000002 scala/Tuple5.class --rw---- 2.0 fat 2065 bl 57% defN 20100101.000002 scala/Tuple6$.class --rw---- 2.0 fat 9258 bl 55% defN 20100101.000002 scala/Tuple6.class --rw---- 2.0 fat 2194 bl 59% defN 20100101.000002 scala/Tuple7$.class --rw---- 2.0 fat 10316 bl 56% defN 20100101.000002 scala/Tuple7.class --rw---- 2.0 fat 2323 bl 60% defN 20100101.000002 scala/Tuple8$.class --rw---- 2.0 fat 11437 bl 57% defN 20100101.000002 scala/Tuple8.class --rw---- 2.0 fat 2452 bl 61% defN 20100101.000002 scala/Tuple9$.class +-rw---- 2.0 fat 1241 bl 51% defN 20100101.000002 scala/collection/MapView$Values.class +-rw---- 2.0 fat 1242 bl 49% defN 20100101.000002 scala/collection/immutable/Stream$$hash$colon$colon$.class +-rw---- 2.0 fat 1242 bl 52% defN 20100101.000002 scala/util/hashing/MurmurHash3$$anon$2.class +-rw---- 2.0 fat 1244 bl 45% defN 20100101.000002 scala/math/Equiv$String$.class +-rw---- 2.0 fat 1246 bl 52% defN 20100101.000002 scala/util/hashing/MurmurHash3$$anon$5.class +-rw---- 2.0 fat 1246 bl 56% defN 20100101.000002 scala/collection/mutable/OpenHashMap$$anon$2.class +-rw---- 2.0 fat 1247 bl 40% defN 20100101.000002 scala/runtime/FractionalProxy.class +-rw---- 2.0 fat 1248 bl 56% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamShape.class +-rw---- 2.0 fat 1249 bl 46% defN 20100101.000002 scala/math/Equiv$BigInt$.class +-rw---- 2.0 fat 1251 bl 49% defN 20100101.000002 scala/concurrent/Future$$anon$1.class +-rw---- 2.0 fat 1252 bl 54% defN 20100101.000002 scala/math/Equiv$Implicits$.class +-rw---- 2.0 fat 1254 bl 46% defN 20100101.000002 scala/collection/mutable/HashTable$.class +-rw---- 2.0 fat 1254 bl 48% defN 20100101.000002 scala/Long$.class +-rw---- 2.0 fat 1255 bl 52% defN 20100101.000002 scala/ref/SoftReference$.class +-rw---- 2.0 fat 1255 bl 52% defN 20100101.000002 scala/ref/WeakReference$.class +-rw---- 2.0 fat 12561 bl 73% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JSetWrapper.class +-rw---- 2.0 fat 1256 bl 49% defN 20100101.000002 scala/collection/MapOps$$anon$2.class +-rw---- 2.0 fat 12572 bl 57% defN 20100101.000002 scala/collection/mutable/MapOps.class +-rw---- 2.0 fat 1258 bl 49% defN 20100101.000002 scala/collection/MapOps$$anon$3.class +-rw---- 2.0 fat 12598 bl 78% defN 20100101.000002 scala/util/hashing/MurmurHash3$accum$1.class +-rw---- 2.0 fat 12607 bl 83% defN 20100101.000002 scala/jdk/CollectionConverters$.class +-rw---- 2.0 fat 1260 bl 38% defN 20100101.000002 scala/runtime/ScalaWholeNumberProxy.class -rw---- 2.0 fat 12628 bl 59% defN 20100101.000002 scala/Tuple9.class --rw---- 2.0 fat 757 bl 24% defN 20100101.000002 scala/UninitializedError.class --rw---- 2.0 fat 1800 bl 55% defN 20100101.000002 scala/UninitializedFieldError$.class --rw---- 2.0 fat 5931 bl 51% defN 20100101.000002 scala/UninitializedFieldError.class --rw---- 2.0 fat 3517 bl 45% defN 20100101.000002 scala/UniquenessCache.class --rw---- 2.0 fat 927 bl 45% defN 20100101.000002 scala/Unit$.class --rw---- 2.0 fat 1558 bl 32% defN 20100101.000002 scala/Unit.class --rw---- 2.0 fat 1066 bl 43% defN 20100101.000002 scala/ValueOf$.class --rw---- 2.0 fat 2138 bl 38% defN 20100101.000002 scala/ValueOf.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/annotation/ --rw---- 2.0 fat 544 bl 26% defN 20100101.000002 scala/annotation/Annotation.class --rw---- 2.0 fat 667 bl 23% defN 20100101.000002 scala/annotation/ClassfileAnnotation.class --rw---- 2.0 fat 444 bl 27% defN 20100101.000002 scala/annotation/ConstantAnnotation.class --rw---- 2.0 fat 366 bl 21% defN 20100101.000002 scala/annotation/StaticAnnotation.class --rw---- 2.0 fat 359 bl 19% defN 20100101.000002 scala/annotation/TypeConstraint.class --rw---- 2.0 fat 1017 bl 26% defN 20100101.000002 scala/annotation/compileTimeOnly.class --rw---- 2.0 fat 3278 bl 54% defN 20100101.000002 scala/annotation/elidable$.class --rw---- 2.0 fat 2410 bl 37% defN 20100101.000002 scala/annotation/elidable.class --rw---- 2.0 fat 878 bl 30% defN 20100101.000002 scala/annotation/implicitAmbiguous.class --rw---- 2.0 fat 837 bl 30% defN 20100101.000002 scala/annotation/implicitNotFound.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/annotation/meta/ --rw---- 2.0 fat 652 bl 29% defN 20100101.000002 scala/annotation/meta/beanGetter.class --rw---- 2.0 fat 652 bl 29% defN 20100101.000002 scala/annotation/meta/beanSetter.class --rw---- 2.0 fat 669 bl 30% defN 20100101.000002 scala/annotation/meta/companionClass.class --rw---- 2.0 fat 673 bl 30% defN 20100101.000002 scala/annotation/meta/companionMethod.class --rw---- 2.0 fat 673 bl 30% defN 20100101.000002 scala/annotation/meta/companionObject.class --rw---- 2.0 fat 631 bl 29% defN 20100101.000002 scala/annotation/meta/field.class --rw---- 2.0 fat 636 bl 29% defN 20100101.000002 scala/annotation/meta/getter.class --rw---- 2.0 fat 959 bl 29% defN 20100101.000002 scala/annotation/meta/languageFeature.class --rw---- 2.0 fat 433 bl 31% defN 20100101.000002 scala/annotation/meta/package$.class --rw---- 2.0 fat 366 bl 15% defN 20100101.000002 scala/annotation/meta/package.class --rw---- 2.0 fat 631 bl 29% defN 20100101.000002 scala/annotation/meta/param.class --rw---- 2.0 fat 636 bl 29% defN 20100101.000002 scala/annotation/meta/setter.class --rw---- 2.0 fat 894 bl 30% defN 20100101.000002 scala/annotation/migration.class --rw---- 2.0 fat 543 bl 35% defN 20100101.000002 scala/annotation/nowarn$.class --rw---- 2.0 fat 1163 bl 29% defN 20100101.000002 scala/annotation/nowarn.class --rw---- 2.0 fat 534 bl 36% defN 20100101.000002 scala/annotation/showAsInfix$.class --rw---- 2.0 fat 1224 bl 28% defN 20100101.000002 scala/annotation/showAsInfix.class --rw---- 2.0 fat 748 bl 26% defN 20100101.000002 scala/annotation/strictfp.class --rw---- 2.0 fat 611 bl 29% defN 20100101.000002 scala/annotation/switch.class --rw---- 2.0 fat 615 bl 29% defN 20100101.000002 scala/annotation/tailrec.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/annotation/unchecked/ --rw---- 2.0 fat 748 bl 31% defN 20100101.000002 scala/annotation/unchecked/uncheckedStable.class --rw---- 2.0 fat 697 bl 32% defN 20100101.000002 scala/annotation/unchecked/uncheckedVariance.class --rw---- 2.0 fat 769 bl 27% defN 20100101.000002 scala/annotation/unspecialized.class --rw---- 2.0 fat 955 bl 31% defN 20100101.000002 scala/annotation/unused.class --rw---- 2.0 fat 615 bl 29% defN 20100101.000002 scala/annotation/varargs.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/beans/ --rw---- 2.0 fat 807 bl 26% defN 20100101.000002 scala/beans/BeanProperty.class --rw---- 2.0 fat 836 bl 27% defN 20100101.000002 scala/beans/BooleanBeanProperty.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/collection/ --rw---- 2.0 fat 10433 bl 74% defN 20100101.000002 scala/collection/AbstractIndexedSeqView.class --rw---- 2.0 fat 29770 bl 77% defN 20100101.000002 scala/collection/AbstractIterable.class --rw---- 2.0 fat 28570 bl 78% defN 20100101.000002 scala/collection/AbstractIterator.class --rw---- 2.0 fat 17394 bl 75% defN 20100101.000002 scala/collection/AbstractMap.class --rw---- 2.0 fat 17772 bl 75% defN 20100101.000002 scala/collection/AbstractMapView.class --rw---- 2.0 fat 22371 bl 75% defN 20100101.000002 scala/collection/AbstractSeq.class --rw---- 2.0 fat 17849 bl 75% defN 20100101.000002 scala/collection/AbstractSeqView.class --rw---- 2.0 fat 9760 bl 73% defN 20100101.000002 scala/collection/AbstractSet.class --rw---- 2.0 fat 2238 bl 56% defN 20100101.000002 scala/collection/AbstractView.class +-rw---- 2.0 fat 1265 bl 58% defN 20100101.000002 scala/collection/mutable/LinkedHashMap$$anon$2.class +-rw---- 2.0 fat 12679 bl 56% defN 20100101.000002 scala/collection/immutable/HashSetBuilder.class +-rw---- 2.0 fat 1267 bl 52% defN 20100101.000002 scala/collection/MapView$Keys.class +-rw---- 2.0 fat 1267 bl 57% defN 20100101.000002 scala/Product18$.class +-rw---- 2.0 fat 1269 bl 58% defN 20100101.000002 scala/collection/mutable/LinkedHashMap$$anon$4.class +-rw---- 2.0 fat 1270 bl 38% defN 20100101.000002 scala/collection/Hashing$.class +-rw---- 2.0 fat 1270 bl 49% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$URLInput$$anonfun$$lessinit$greater$1.class +-rw---- 2.0 fat 1270 bl 58% defN 20100101.000002 scala/math/Fractional$ExtraImplicits.class +-rw---- 2.0 fat 127779 bl 63% defN 20100101.000002 scala/collection/ArrayOps.class +-rw---- 2.0 fat 1277 bl 47% defN 20100101.000002 scala/math/Equiv$Float$IeeeEquiv$.class +-rw---- 2.0 fat 1278 bl 59% defN 20100101.000002 scala/sys/process/ProcessImpl$OrProcess.class +-rw---- 2.0 fat 1281 bl 47% defN 20100101.000002 scala/math/Equiv$BigDecimal$.class +-rw---- 2.0 fat 1282 bl 36% defN 20100101.000002 scala/runtime/MethodCache.class +-rw---- 2.0 fat 1283 bl 59% defN 20100101.000002 scala/sys/process/ProcessImpl$AndProcess.class +-rw---- 2.0 fat 1284 bl 19% defN 20100101.000002 scala/collection/generic/package.class +-rw---- 2.0 fat 1284 bl 47% defN 20100101.000002 scala/math/Equiv$Double$IeeeEquiv$.class +-rw---- 2.0 fat 12871 bl 50% defN 20100101.000002 scala/collection/SeqView.class +-rw---- 2.0 fat 12891 bl 67% defN 20100101.000002 scala/concurrent/duration/DurationConversions.class +-rw---- 2.0 fat 1289 bl 47% defN 20100101.000002 scala/math/Equiv$Float$StrictEquiv$.class +-rw---- 2.0 fat 1292 bl 43% defN 20100101.000002 scala/util/Try$.class +-rw---- 2.0 fat 1292 bl 47% defN 20100101.000002 scala/collection/Iterator$$anon$18.class +-rw---- 2.0 fat 1292 bl 55% defN 20100101.000002 scala/runtime/VolatileObjectRef.class +-rw---- 2.0 fat 1296 bl 47% defN 20100101.000002 scala/math/Equiv$Double$StrictEquiv$.class +-rw---- 2.0 fat 1296 bl 51% defN 20100101.000002 scala/collection/MapOps$$anon$1.class +-rw---- 2.0 fat 1297 bl 55% defN 20100101.000002 scala/collection/mutable/AnyRefMap$$anon$1.class +-rw---- 2.0 fat 1299 bl 50% defN 20100101.000002 scala/collection/immutable/LazyList$$hash$colon$colon$.class +-rw---- 2.0 fat 1299 bl 58% defN 20100101.000002 scala/Product19$.class +-rw---- 2.0 fat 1301 bl 60% defN 20100101.000002 scala/collection/convert/StreamExtensions$LowPriorityAccumulatorFactoryInfo$$anon$8.class +-rw---- 2.0 fat 1302 bl 58% defN 20100101.000002 scala/jdk/Accumulator$AccumulatorFactoryShape$$anon$2.class +-rw---- 2.0 fat 1303 bl 39% defN 20100101.000002 scala/collection/mutable/Cloneable.class +-rw---- 2.0 fat 1304 bl 48% defN 20100101.000002 scala/math/Equiv$DeprecatedFloatEquiv$.class +-rw---- 2.0 fat 1304 bl 59% defN 20100101.000002 scala/math/Numeric$BigDecimalIsFractional.class +-rw---- 2.0 fat 1305 bl 51% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$FileInput$$anonfun$$lessinit$greater$2.class +-rw---- 2.0 fat 1305 bl 59% defN 20100101.000002 scala/collection/convert/StreamExtensions$AccumulatorFactoryInfo$anyAccumulatorFactoryInfoPrototype$.class +-rw---- 2.0 fat 1307 bl 53% defN 20100101.000002 scala/collection/convert/StreamExtensions$IntArrayHasSeqParStream.class +-rw---- 2.0 fat 1308 bl 58% defN 20100101.000002 scala/jdk/Accumulator$AccumulatorFactoryShape$$anon$3.class +-rw---- 2.0 fat 1308 bl 60% defN 20100101.000002 scala/sys/process/ProcessImpl$ProcessSequence.class +-rw---- 2.0 fat 1310 bl 56% defN 20100101.000002 scala/collection/mutable/OpenHashMap$$anon$3.class +-rw---- 2.0 fat 13125 bl 65% defN 20100101.000002 scala/jdk/javaapi/StreamConverters.class +-rw---- 2.0 fat 1312 bl 47% defN 20100101.000002 scala/math/Equiv$DeprecatedDoubleEquiv$.class +-rw---- 2.0 fat 1312 bl 48% defN 20100101.000002 scala/concurrent/BatchingExecutorStatics$MissingParentBlockContext$.class +-rw---- 2.0 fat 13134 bl 50% defN 20100101.000002 scala/concurrent/duration/FiniteDuration.class +-rw---- 2.0 fat 1314 bl 53% defN 20100101.000002 scala/collection/convert/StreamExtensions$LongArrayHasSeqParStream.class +-rw---- 2.0 fat 13152 bl 42% defN 20100101.000002 scala/collection/immutable/Map.class -rw---- 2.0 fat 1318 bl 50% defN 20100101.000002 scala/collection/AnyStepper$$anon$2.class --rw---- 2.0 fat 844 bl 50% defN 20100101.000002 scala/collection/AnyStepper$$anon$3.class --rw---- 2.0 fat 826 bl 49% defN 20100101.000002 scala/collection/AnyStepper$$anon$4.class --rw---- 2.0 fat 832 bl 50% defN 20100101.000002 scala/collection/AnyStepper$$anon$5.class --rw---- 2.0 fat 2311 bl 68% defN 20100101.000002 scala/collection/AnyStepper$.class --rw---- 2.0 fat 2322 bl 56% defN 20100101.000002 scala/collection/AnyStepper$AnyStepperSpliterator.class --rw---- 2.0 fat 4423 bl 69% defN 20100101.000002 scala/collection/AnyStepper$BoxedDoubleStepper.class --rw---- 2.0 fat 4401 bl 69% defN 20100101.000002 scala/collection/AnyStepper$BoxedIntStepper.class --rw---- 2.0 fat 4403 bl 69% defN 20100101.000002 scala/collection/AnyStepper$BoxedLongStepper.class --rw---- 2.0 fat 5439 bl 51% defN 20100101.000002 scala/collection/AnyStepper.class --rw---- 2.0 fat 85639 bl 69% defN 20100101.000002 scala/collection/ArrayOps$.class --rw---- 2.0 fat 1495 bl 47% defN 20100101.000002 scala/collection/ArrayOps$ArrayIterator$mcB$sp.class --rw---- 2.0 fat 1505 bl 48% defN 20100101.000002 scala/collection/ArrayOps$ArrayIterator$mcC$sp.class --rw---- 2.0 fat 1499 bl 48% defN 20100101.000002 scala/collection/ArrayOps$ArrayIterator$mcD$sp.class --rw---- 2.0 fat 1497 bl 47% defN 20100101.000002 scala/collection/ArrayOps$ArrayIterator$mcF$sp.class --rw---- 2.0 fat 1497 bl 47% defN 20100101.000002 scala/collection/ArrayOps$ArrayIterator$mcI$sp.class --rw---- 2.0 fat 1491 bl 47% defN 20100101.000002 scala/collection/ArrayOps$ArrayIterator$mcJ$sp.class --rw---- 2.0 fat 1497 bl 47% defN 20100101.000002 scala/collection/ArrayOps$ArrayIterator$mcS$sp.class --rw---- 2.0 fat 1523 bl 50% defN 20100101.000002 scala/collection/ArrayOps$ArrayIterator$mcV$sp.class --rw---- 2.0 fat 1501 bl 47% defN 20100101.000002 scala/collection/ArrayOps$ArrayIterator$mcZ$sp.class --rw---- 2.0 fat 3421 bl 57% defN 20100101.000002 scala/collection/ArrayOps$ArrayIterator.class --rw---- 2.0 fat 1910 bl 52% defN 20100101.000002 scala/collection/ArrayOps$ArrayView.class --rw---- 2.0 fat 1481 bl 45% defN 20100101.000002 scala/collection/ArrayOps$GroupedIterator.class --rw---- 2.0 fat 1442 bl 48% defN 20100101.000002 scala/collection/ArrayOps$ReverseIterator$mcB$sp.class --rw---- 2.0 fat 1452 bl 48% defN 20100101.000002 scala/collection/ArrayOps$ReverseIterator$mcC$sp.class --rw---- 2.0 fat 1446 bl 48% defN 20100101.000002 scala/collection/ArrayOps$ReverseIterator$mcD$sp.class --rw---- 2.0 fat 1444 bl 48% defN 20100101.000002 scala/collection/ArrayOps$ReverseIterator$mcF$sp.class --rw---- 2.0 fat 1444 bl 48% defN 20100101.000002 scala/collection/ArrayOps$ReverseIterator$mcI$sp.class --rw---- 2.0 fat 1438 bl 48% defN 20100101.000002 scala/collection/ArrayOps$ReverseIterator$mcJ$sp.class --rw---- 2.0 fat 1444 bl 48% defN 20100101.000002 scala/collection/ArrayOps$ReverseIterator$mcS$sp.class --rw---- 2.0 fat 1476 bl 50% defN 20100101.000002 scala/collection/ArrayOps$ReverseIterator$mcV$sp.class --rw---- 2.0 fat 1448 bl 48% defN 20100101.000002 scala/collection/ArrayOps$ReverseIterator$mcZ$sp.class --rw---- 2.0 fat 3162 bl 58% defN 20100101.000002 scala/collection/ArrayOps$ReverseIterator.class --rw---- 2.0 fat 7670 bl 65% defN 20100101.000002 scala/collection/ArrayOps$WithFilter.class --rw---- 2.0 fat 127770 bl 63% defN 20100101.000002 scala/collection/ArrayOps.class --rw---- 2.0 fat 3106 bl 64% defN 20100101.000002 scala/collection/BitSet$.class --rw---- 2.0 fat 1901 bl 48% defN 20100101.000002 scala/collection/BitSet$SerializationProxy.class --rw---- 2.0 fat 5243 bl 49% defN 20100101.000002 scala/collection/BitSet.class --rw---- 2.0 fat 1871 bl 43% defN 20100101.000002 scala/collection/BitSetOps$$anon$1.class --rw---- 2.0 fat 2015 bl 39% defN 20100101.000002 scala/collection/BitSetOps$.class --rw---- 2.0 fat 20130 bl 55% defN 20100101.000002 scala/collection/BitSetOps.class --rw---- 2.0 fat 1825 bl 47% defN 20100101.000002 scala/collection/BufferedIterator.class --rw---- 2.0 fat 1455 bl 54% defN 20100101.000002 scala/collection/BuildFrom$$anon$1.class --rw---- 2.0 fat 2350 bl 63% defN 20100101.000002 scala/collection/BuildFrom$$anon$2.class --rw---- 2.0 fat 2591 bl 64% defN 20100101.000002 scala/collection/BuildFrom$$anon$3.class --rw---- 2.0 fat 2347 bl 64% defN 20100101.000002 scala/collection/BuildFrom$$anon$4.class --rw---- 2.0 fat 2395 bl 64% defN 20100101.000002 scala/collection/BuildFrom$$anon$5.class --rw---- 2.0 fat 2615 bl 68% defN 20100101.000002 scala/collection/BuildFrom$$anon$6.class --rw---- 2.0 fat 2336 bl 62% defN 20100101.000002 scala/collection/BuildFrom$$anon$7.class --rw---- 2.0 fat 2388 bl 64% defN 20100101.000002 scala/collection/BuildFrom$$anon$8.class --rw---- 2.0 fat 4722 bl 72% defN 20100101.000002 scala/collection/BuildFrom$.class --rw---- 2.0 fat 8063 bl 54% defN 20100101.000002 scala/collection/BuildFrom.class --rw---- 2.0 fat 2619 bl 65% defN 20100101.000002 scala/collection/BuildFromLowPriority1$$anon$10.class --rw---- 2.0 fat 2627 bl 64% defN 20100101.000002 scala/collection/BuildFromLowPriority1$$anon$9.class --rw---- 2.0 fat 2642 bl 46% defN 20100101.000002 scala/collection/BuildFromLowPriority1.class --rw---- 2.0 fat 2499 bl 65% defN 20100101.000002 scala/collection/BuildFromLowPriority2$$anon$11.class --rw---- 2.0 fat 2625 bl 65% defN 20100101.000002 scala/collection/BuildFromLowPriority2$$anon$12.class --rw---- 2.0 fat 2039 bl 47% defN 20100101.000002 scala/collection/BuildFromLowPriority2.class --rw---- 2.0 fat 669 bl 37% defN 20100101.000002 scala/collection/ClassTagIterableFactory$.class --rw---- 2.0 fat 8329 bl 75% defN 20100101.000002 scala/collection/ClassTagIterableFactory$AnyIterableDelegate.class --rw---- 2.0 fat 6282 bl 78% defN 20100101.000002 scala/collection/ClassTagIterableFactory$Delegate.class --rw---- 2.0 fat 21417 bl 64% defN 20100101.000002 scala/collection/ClassTagIterableFactory.class --rw---- 2.0 fat 659 bl 37% defN 20100101.000002 scala/collection/ClassTagSeqFactory$.class --rw---- 2.0 fat 1581 bl 62% defN 20100101.000002 scala/collection/ClassTagSeqFactory$AnySeqDelegate.class --rw---- 2.0 fat 1502 bl 61% defN 20100101.000002 scala/collection/ClassTagSeqFactory$Delegate.class --rw---- 2.0 fat 2593 bl 40% defN 20100101.000002 scala/collection/ClassTagSeqFactory.class --rw---- 2.0 fat 734 bl 26% defN 20100101.000002 scala/collection/DefaultMap.class --rw---- 2.0 fat 1834 bl 56% defN 20100101.000002 scala/collection/DoubleStepper$$anon$7.class --rw---- 2.0 fat 435 bl 32% defN 20100101.000002 scala/collection/DoubleStepper$.class --rw---- 2.0 fat 2895 bl 60% defN 20100101.000002 scala/collection/DoubleStepper$DoubleStepperSpliterator.class --rw---- 2.0 fat 3118 bl 47% defN 20100101.000002 scala/collection/DoubleStepper.class --rw---- 2.0 fat 1934 bl 62% defN 20100101.000002 scala/collection/EvidenceIterableFactory$.class --rw---- 2.0 fat 4307 bl 70% defN 20100101.000002 scala/collection/EvidenceIterableFactory$Delegate.class --rw---- 2.0 fat 2331 bl 66% defN 20100101.000002 scala/collection/EvidenceIterableFactory$EvidenceIterableFactoryToBuildFrom.class --rw---- 2.0 fat 1756 bl 58% defN 20100101.000002 scala/collection/EvidenceIterableFactory$ToFactory.class --rw---- 2.0 fat 9793 bl 53% defN 20100101.000002 scala/collection/EvidenceIterableFactory.class --rw---- 2.0 fat 3211 bl 53% defN 20100101.000002 scala/collection/EvidenceIterableFactoryDefaults.class +-rw---- 2.0 fat 1320 bl 58% defN 20100101.000002 scala/jdk/Accumulator$AccumulatorFactoryShape$$anon$1.class +-rw---- 2.0 fat 1328 bl 48% defN 20100101.000002 scala/Some$.class +-rw---- 2.0 fat 1328 bl 54% defN 20100101.000002 scala/collection/convert/StreamExtensions$DoubleArrayHasSeqParStream.class -rw---- 2.0 fat 1329 bl 55% defN 20100101.000002 scala/collection/Factory$.class --rw---- 2.0 fat 3542 bl 59% defN 20100101.000002 scala/collection/Factory$ArrayFactory.class --rw---- 2.0 fat 1850 bl 56% defN 20100101.000002 scala/collection/Factory$StringFactory.class --rw---- 2.0 fat 2445 bl 38% defN 20100101.000002 scala/collection/Factory.class --rw---- 2.0 fat 1270 bl 38% defN 20100101.000002 scala/collection/Hashing$.class --rw---- 2.0 fat 1134 bl 34% defN 20100101.000002 scala/collection/Hashing.class --rw---- 2.0 fat 1009 bl 45% defN 20100101.000002 scala/collection/IndexedSeq$.class --rw---- 2.0 fat 8846 bl 65% defN 20100101.000002 scala/collection/IndexedSeq.class --rw---- 2.0 fat 14090 bl 59% defN 20100101.000002 scala/collection/IndexedSeqOps.class --rw---- 2.0 fat 658 bl 38% defN 20100101.000002 scala/collection/IndexedSeqView$.class --rw---- 2.0 fat 10342 bl 76% defN 20100101.000002 scala/collection/IndexedSeqView$Appended.class --rw---- 2.0 fat 10393 bl 76% defN 20100101.000002 scala/collection/IndexedSeqView$Concat.class --rw---- 2.0 fat 10286 bl 76% defN 20100101.000002 scala/collection/IndexedSeqView$Drop.class --rw---- 2.0 fat 10311 bl 76% defN 20100101.000002 scala/collection/IndexedSeqView$DropRight.class --rw---- 2.0 fat 10258 bl 76% defN 20100101.000002 scala/collection/IndexedSeqView$Id.class --rw---- 2.0 fat 2723 bl 53% defN 20100101.000002 scala/collection/IndexedSeqView$IndexedSeqViewIterator.class --rw---- 2.0 fat 2225 bl 52% defN 20100101.000002 scala/collection/IndexedSeqView$IndexedSeqViewReverseIterator.class --rw---- 2.0 fat 10372 bl 76% defN 20100101.000002 scala/collection/IndexedSeqView$Map.class --rw---- 2.0 fat 10347 bl 76% defN 20100101.000002 scala/collection/IndexedSeqView$Prepended.class --rw---- 2.0 fat 10428 bl 75% defN 20100101.000002 scala/collection/IndexedSeqView$Reverse.class --rw---- 2.0 fat 2032 bl 51% defN 20100101.000002 scala/collection/IndexedSeqView$Slice.class --rw---- 2.0 fat 10286 bl 76% defN 20100101.000002 scala/collection/IndexedSeqView$Take.class --rw---- 2.0 fat 10311 bl 76% defN 20100101.000002 scala/collection/IndexedSeqView$TakeRight.class --rw---- 2.0 fat 13833 bl 53% defN 20100101.000002 scala/collection/IndexedSeqView.class --rw---- 2.0 fat 1800 bl 56% defN 20100101.000002 scala/collection/IntStepper$$anon$6.class --rw---- 2.0 fat 429 bl 31% defN 20100101.000002 scala/collection/IntStepper$.class --rw---- 2.0 fat 2845 bl 60% defN 20100101.000002 scala/collection/IntStepper$IntStepperSpliterator.class --rw---- 2.0 fat 3034 bl 47% defN 20100101.000002 scala/collection/IntStepper.class --rw---- 2.0 fat 3585 bl 66% defN 20100101.000002 scala/collection/Iterable$$anon$1.class +-rw---- 2.0 fat 1330 bl 58% defN 20100101.000002 scala/collection/mutable/LinkedHashMap$LinkedKeySet.class +-rw---- 2.0 fat 1331 bl 59% defN 20100101.000002 scala/Product20$.class +-rw---- 2.0 fat 1334 bl 55% defN 20100101.000002 scala/collection/immutable/Map$Map2$$anon$1.class +-rw---- 2.0 fat 1334 bl 55% defN 20100101.000002 scala/collection/immutable/Map$Map3$$anon$4.class +-rw---- 2.0 fat 1334 bl 55% defN 20100101.000002 scala/collection/immutable/Map$Map4$$anon$7.class +-rw---- 2.0 fat 13358 bl 63% defN 20100101.000002 scala/sys/process/BasicIO$.class +-rw---- 2.0 fat 1338 bl 50% defN 20100101.000002 scala/Int$.class +-rw---- 2.0 fat 1339 bl 52% defN 20100101.000002 scala/Double$.class +-rw---- 2.0 fat 1339 bl 58% defN 20100101.000002 scala/concurrent/duration/DurationConversions$spanConvert$.class +-rw---- 2.0 fat 1341 bl 54% defN 20100101.000002 scala/collection/View$Collect.class +-rw---- 2.0 fat 1342 bl 59% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$DaemonBuilder.class +-rw---- 2.0 fat 13442 bl 38% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers.class +-rw---- 2.0 fat 13459 bl 70% defN 20100101.000002 scala/collection/immutable/Set$Set4.class +-rw---- 2.0 fat 13477 bl 55% defN 20100101.000002 scala/Option.class +-rw---- 2.0 fat 13495 bl 61% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$Ordering.class +-rw---- 2.0 fat 1349 bl 51% defN 20100101.000002 scala/collection/View$Unfold.class +-rw---- 2.0 fat 13523 bl 71% defN 20100101.000002 scala/collection/immutable/Map$Map1.class +-rw---- 2.0 fat 1352 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcJJ$sp.class +-rw---- 2.0 fat 13535 bl 78% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$AbstractJMapWrapper.class +-rw---- 2.0 fat 1355 bl 52% defN 20100101.000002 scala/util/hashing/Hashing$.class +-rw---- 2.0 fat 1355 bl 55% defN 20100101.000002 scala/runtime/Static.class +-rw---- 2.0 fat 1355 bl 56% defN 20100101.000002 scala/util/control/TailCalls$.class +-rw---- 2.0 fat 1355 bl 60% defN 20100101.000002 scala/collection/mutable/HashSet$$anon$2.class +-rw---- 2.0 fat 1356 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcFF$sp.class +-rw---- 2.0 fat 1358 bl 50% defN 20100101.000002 scala/PartialFunction$$anonfun$fromFunction$1.class +-rw---- 2.0 fat 1360 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcDD$sp.class +-rw---- 2.0 fat 1360 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcII$sp.class -rw---- 2.0 fat 1362 bl 50% defN 20100101.000002 scala/collection/Iterable$.class --rw---- 2.0 fat 11861 bl 64% defN 20100101.000002 scala/collection/Iterable.class --rw---- 2.0 fat 2091 bl 63% defN 20100101.000002 scala/collection/IterableFactory$$anon$1.class --rw---- 2.0 fat 1591 bl 58% defN 20100101.000002 scala/collection/IterableFactory$.class --rw---- 2.0 fat 7883 bl 75% defN 20100101.000002 scala/collection/IterableFactory$Delegate.class +-rw---- 2.0 fat 1363 bl 59% defN 20100101.000002 scala/Product21$.class +-rw---- 2.0 fat 13648 bl 55% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView.class +-rw---- 2.0 fat 1365 bl 43% defN 20100101.000002 scala/collection/StepperShapeLowPriority1.class +-rw---- 2.0 fat 1367 bl 60% defN 20100101.000002 scala/collection/mutable/HashMap$$anon$4.class +-rw---- 2.0 fat 13688 bl 76% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntBinaryOperator.class +-rw---- 2.0 fat 13693 bl 76% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongBinaryOperator.class +-rw---- 2.0 fat 1370 bl 51% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$FileOutput$$anonfun$$lessinit$greater$3.class +-rw---- 2.0 fat 13719 bl 76% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleBinaryOperator.class +-rw---- 2.0 fat 1371 bl 55% defN 20100101.000002 scala/runtime/ClassValueCompat$FallbackClassValue.class +-rw---- 2.0 fat 13732 bl 54% defN 20100101.000002 scala/collection/immutable/Set.class +-rw---- 2.0 fat 1374 bl 46% defN 20100101.000002 scala/collection/concurrent/TrieMap$RemovalPolicy$.class +-rw---- 2.0 fat 1375 bl 48% defN 20100101.000002 scala/util/control/Breaks$$anon$1.class +-rw---- 2.0 fat 13822 bl 77% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaBinaryOperator.class +-rw---- 2.0 fat 1382 bl 53% defN 20100101.000002 scala/collection/View$ZipWithIndex.class +-rw---- 2.0 fat 13833 bl 53% defN 20100101.000002 scala/collection/IndexedSeqView.class +-rw---- 2.0 fat 1383 bl 53% defN 20100101.000002 scala/runtime/StructuralCallSite$.class +-rw---- 2.0 fat 1383 bl 57% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$IStreamBuilder.class +-rw---- 2.0 fat 1384 bl 57% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$OStreamBuilder.class +-rw---- 2.0 fat 13853 bl 45% defN 20100101.000002 scala/math/Numeric.class +-rw---- 2.0 fat 1387 bl 58% defN 20100101.000002 scala/collection/immutable/LazyList$State$Cons.class +-rw---- 2.0 fat 13918 bl 77% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaBiFunction.class +-rw---- 2.0 fat 13928 bl 61% defN 20100101.000002 scala/Tuple10.class +-rw---- 2.0 fat 1395 bl 60% defN 20100101.000002 scala/Product22$.class +-rw---- 2.0 fat 14078 bl 62% defN 20100101.000002 scala/runtime/RichDouble.class +-rw---- 2.0 fat 1407 bl 33% defN 20100101.000002 scala/math/LowPriorityEquiv.class +-rw---- 2.0 fat 14096 bl 62% defN 20100101.000002 scala/runtime/RichFloat.class +-rw---- 2.0 fat 1409 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcVJ$sp.class +-rw---- 2.0 fat 14108 bl 50% defN 20100101.000002 scala/collection/mutable/ArrayBuilder.class +-rw---- 2.0 fat 1410 bl 42% defN 20100101.000002 scala/jdk/javaapi/FutureConverters.class +-rw---- 2.0 fat 1411 bl 52% defN 20100101.000002 scala/Float$.class +-rw---- 2.0 fat 1412 bl 54% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcVF$sp.class +-rw---- 2.0 fat 1413 bl 49% defN 20100101.000002 scala/util/Success$.class +-rw---- 2.0 fat 1413 bl 59% defN 20100101.000002 scala/collection/StepperShapeLowPriority2$$anon$15.class +-rw---- 2.0 fat 14145 bl 76% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaBiConsumer.class +-rw---- 2.0 fat 14145 bl 76% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaBiPredicate.class +-rw---- 2.0 fat 1414 bl 54% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcVI$sp.class +-rw---- 2.0 fat 1415 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcVD$sp.class +-rw---- 2.0 fat 1419 bl 55% defN 20100101.000002 scala/util/matching/Regex$$anon$2.class +-rw---- 2.0 fat 14211 bl 76% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaToIntBiFunction.class +-rw---- 2.0 fat 1421 bl 53% defN 20100101.000002 scala/collection/immutable/SetNode$.class +-rw---- 2.0 fat 14221 bl 76% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaToLongBiFunction.class +-rw---- 2.0 fat 14235 bl 76% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaObjIntConsumer.class +-rw---- 2.0 fat 1423 bl 55% defN 20100101.000002 scala/sys/process/ProcessLogger$$anon$1.class +-rw---- 2.0 fat 1424 bl 52% defN 20100101.000002 scala/Char$.class +-rw---- 2.0 fat 1424 bl 53% defN 20100101.000002 scala/collection/Iterator$$anon$19.class +-rw---- 2.0 fat 14251 bl 76% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaObjLongConsumer.class +-rw---- 2.0 fat 14257 bl 76% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaToDoubleBiFunction.class +-rw---- 2.0 fat 1425 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcFJ$sp.class +-rw---- 2.0 fat 1425 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcJF$sp.class -rw---- 2.0 fat 1425 bl 55% defN 20100101.000002 scala/collection/IterableFactory$ToFactory.class --rw---- 2.0 fat 23459 bl 63% defN 20100101.000002 scala/collection/IterableFactory.class --rw---- 2.0 fat 2683 bl 53% defN 20100101.000002 scala/collection/IterableFactoryDefaults.class --rw---- 2.0 fat 2523 bl 54% defN 20100101.000002 scala/collection/IterableOnce$.class --rw---- 2.0 fat 3568 bl 44% defN 20100101.000002 scala/collection/IterableOnce.class --rw---- 2.0 fat 18015 bl 77% defN 20100101.000002 scala/collection/IterableOnceExtensionMethods$.class --rw---- 2.0 fat 38451 bl 63% defN 20100101.000002 scala/collection/IterableOnceExtensionMethods.class --rw---- 2.0 fat 1128 bl 53% defN 20100101.000002 scala/collection/IterableOnceOps$$anon$1.class --rw---- 2.0 fat 3854 bl 58% defN 20100101.000002 scala/collection/IterableOnceOps$Maximized.class --rw---- 2.0 fat 1456 bl 48% defN 20100101.000002 scala/collection/IterableOnceOps$Spanner$1.class --rw---- 2.0 fat 49675 bl 62% defN 20100101.000002 scala/collection/IterableOnceOps.class --rw---- 2.0 fat 432 bl 32% defN 20100101.000002 scala/collection/IterableOps$.class --rw---- 2.0 fat 2292 bl 58% defN 20100101.000002 scala/collection/IterableOps$Result$1.class --rw---- 2.0 fat 2591 bl 57% defN 20100101.000002 scala/collection/IterableOps$Scanner$1.class --rw---- 2.0 fat 2175 bl 62% defN 20100101.000002 scala/collection/IterableOps$SizeCompareOps$.class --rw---- 2.0 fat 2248 bl 63% defN 20100101.000002 scala/collection/IterableOps$SizeCompareOps.class --rw---- 2.0 fat 4337 bl 63% defN 20100101.000002 scala/collection/IterableOps$WithFilter.class --rw---- 2.0 fat 42887 bl 59% defN 20100101.000002 scala/collection/IterableOps.class --rw---- 2.0 fat 1923 bl 52% defN 20100101.000002 scala/collection/Iterator$$anon$1.class --rw---- 2.0 fat 1777 bl 47% defN 20100101.000002 scala/collection/Iterator$$anon$10.class --rw---- 2.0 fat 1640 bl 45% defN 20100101.000002 scala/collection/Iterator$$anon$11.class --rw---- 2.0 fat 1663 bl 44% defN 20100101.000002 scala/collection/Iterator$$anon$12.class --rw---- 2.0 fat 1649 bl 45% defN 20100101.000002 scala/collection/Iterator$$anon$13.class --rw---- 2.0 fat 1956 bl 51% defN 20100101.000002 scala/collection/Iterator$$anon$14.class --rw---- 2.0 fat 2477 bl 51% defN 20100101.000002 scala/collection/Iterator$$anon$15.class --rw---- 2.0 fat 1666 bl 51% defN 20100101.000002 scala/collection/Iterator$$anon$16.class --rw---- 2.0 fat 1773 bl 49% defN 20100101.000002 scala/collection/Iterator$$anon$17.class --rw---- 2.0 fat 1292 bl 47% defN 20100101.000002 scala/collection/Iterator$$anon$18.class --rw---- 2.0 fat 1349 bl 51% defN 20100101.000002 scala/collection/Iterator$$anon$19.class --rw---- 2.0 fat 1798 bl 44% defN 20100101.000002 scala/collection/Iterator$$anon$2.class +-rw---- 2.0 fat 1426 bl 52% defN 20100101.000002 scala/Short$.class +-rw---- 2.0 fat 1427 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcIJ$sp.class +-rw---- 2.0 fat 1427 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcJI$sp.class +-rw---- 2.0 fat 14283 bl 76% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaObjDoubleConsumer.class +-rw---- 2.0 fat 1428 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcJD$sp.class +-rw---- 2.0 fat 1428 bl 54% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcDJ$sp.class +-rw---- 2.0 fat 1429 bl 57% defN 20100101.000002 scala/collection/mutable/HashMap$$anon$1.class +-rw---- 2.0 fat 1430 bl 28% defN 20100101.000002 scala/concurrent/BatchingExecutorStatics.class +-rw---- 2.0 fat 1430 bl 29% defN 20100101.000002 scala/collection/immutable/package.class +-rw---- 2.0 fat 1430 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcIF$sp.class +-rw---- 2.0 fat 1430 bl 54% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcFI$sp.class +-rw---- 2.0 fat 1430 bl 60% defN 20100101.000002 scala/math/Equiv$ExtraImplicits.class +-rw---- 2.0 fat 1431 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcFD$sp.class +-rw---- 2.0 fat 1431 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcZJ$sp.class +-rw---- 2.0 fat 1431 bl 54% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcDF$sp.class +-rw---- 2.0 fat 1433 bl 47% defN 20100101.000002 scala/collection/StringOps$ReverseIterator.class +-rw---- 2.0 fat 1433 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcID$sp.class +-rw---- 2.0 fat 1433 bl 54% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcDI$sp.class +-rw---- 2.0 fat 1434 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcZF$sp.class +-rw---- 2.0 fat 1435 bl 46% defN 20100101.000002 scala/collection/package$$colon$plus$.class +-rw---- 2.0 fat 1435 bl 46% defN 20100101.000002 scala/collection/package$$plus$colon$.class +-rw---- 2.0 fat 1435 bl 49% defN 20100101.000002 scala/util/Left$.class +-rw---- 2.0 fat 1436 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcZI$sp.class +-rw---- 2.0 fat 1437 bl 47% defN 20100101.000002 scala/collection/StringOps$StringIterator.class +-rw---- 2.0 fat 1437 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcZD$sp.class +-rw---- 2.0 fat 14389 bl 75% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JPropertiesWrapper.class +-rw---- 2.0 fat 1438 bl 48% defN 20100101.000002 scala/collection/ArrayOps$ReverseIterator$mcJ$sp.class +-rw---- 2.0 fat 1438 bl 51% defN 20100101.000002 scala/concurrent/duration/package$DoubleMult$.class +-rw---- 2.0 fat 14392 bl 63% defN 20100101.000002 scala/runtime/RichLong.class +-rw---- 2.0 fat 14407 bl 59% defN 20100101.000002 scala/sys/process/Parser$.class -rw---- 2.0 fat 1440 bl 47% defN 20100101.000002 scala/collection/Iterator$$anon$20.class --rw---- 2.0 fat 2591 bl 56% defN 20100101.000002 scala/collection/Iterator$$anon$21.class --rw---- 2.0 fat 1588 bl 44% defN 20100101.000002 scala/collection/Iterator$$anon$22.class --rw---- 2.0 fat 1747 bl 46% defN 20100101.000002 scala/collection/Iterator$$anon$23.class --rw---- 2.0 fat 1100 bl 43% defN 20100101.000002 scala/collection/Iterator$$anon$24.class --rw---- 2.0 fat 2110 bl 43% defN 20100101.000002 scala/collection/Iterator$$anon$25.class --rw---- 2.0 fat 1204 bl 46% defN 20100101.000002 scala/collection/Iterator$$anon$26.class --rw---- 2.0 fat 938 bl 45% defN 20100101.000002 scala/collection/Iterator$$anon$27.class --rw---- 2.0 fat 1632 bl 53% defN 20100101.000002 scala/collection/Iterator$$anon$3$$anon$4$$anon$5.class --rw---- 2.0 fat 1613 bl 53% defN 20100101.000002 scala/collection/Iterator$$anon$3$$anon$4.class --rw---- 2.0 fat 1630 bl 53% defN 20100101.000002 scala/collection/Iterator$$anon$3.class --rw---- 2.0 fat 1687 bl 44% defN 20100101.000002 scala/collection/Iterator$$anon$6.class --rw---- 2.0 fat 6510 bl 69% defN 20100101.000002 scala/collection/Iterator$$anon$7.class --rw---- 2.0 fat 1850 bl 48% defN 20100101.000002 scala/collection/Iterator$$anon$8.class --rw---- 2.0 fat 1235 bl 48% defN 20100101.000002 scala/collection/Iterator$$anon$9.class --rw---- 2.0 fat 10099 bl 73% defN 20100101.000002 scala/collection/Iterator$.class --rw---- 2.0 fat 3682 bl 58% defN 20100101.000002 scala/collection/Iterator$ConcatIterator.class --rw---- 2.0 fat 1658 bl 61% defN 20100101.000002 scala/collection/Iterator$ConcatIteratorCell.class --rw---- 2.0 fat 7908 bl 56% defN 20100101.000002 scala/collection/Iterator$GroupedIterator.class --rw---- 2.0 fat 2792 bl 47% defN 20100101.000002 scala/collection/Iterator$Leading$1.class --rw---- 2.0 fat 2416 bl 48% defN 20100101.000002 scala/collection/Iterator$Partner$1.class --rw---- 2.0 fat 3018 bl 48% defN 20100101.000002 scala/collection/Iterator$SliceIterator.class --rw---- 2.0 fat 2063 bl 48% defN 20100101.000002 scala/collection/Iterator$UnfoldIterator.class --rw---- 2.0 fat 38893 bl 61% defN 20100101.000002 scala/collection/Iterator.class --rw---- 2.0 fat 26296 bl 80% defN 20100101.000002 scala/collection/JavaConverters$.class --rw---- 2.0 fat 841 bl 45% defN 20100101.000002 scala/collection/JavaConverters$AsJava.class --rw---- 2.0 fat 1187 bl 55% defN 20100101.000002 scala/collection/JavaConverters$AsJavaCollection.class --rw---- 2.0 fat 1231 bl 56% defN 20100101.000002 scala/collection/JavaConverters$AsJavaDictionary.class --rw---- 2.0 fat 1195 bl 55% defN 20100101.000002 scala/collection/JavaConverters$AsJavaEnumeration.class --rw---- 2.0 fat 845 bl 45% defN 20100101.000002 scala/collection/JavaConverters$AsScala.class --rw---- 2.0 fat 22683 bl 67% defN 20100101.000002 scala/collection/JavaConverters.class --rw---- 2.0 fat 1752 bl 54% defN 20100101.000002 scala/collection/LazyZip2$$anon$1$$anon$2.class --rw---- 2.0 fat 1793 bl 55% defN 20100101.000002 scala/collection/LazyZip2$$anon$1.class --rw---- 2.0 fat 2192 bl 54% defN 20100101.000002 scala/collection/LazyZip2$$anon$3$$anon$4.class --rw---- 2.0 fat 1793 bl 54% defN 20100101.000002 scala/collection/LazyZip2$$anon$3.class --rw---- 2.0 fat 2546 bl 54% defN 20100101.000002 scala/collection/LazyZip2$$anon$5$$anon$6.class --rw---- 2.0 fat 1859 bl 54% defN 20100101.000002 scala/collection/LazyZip2$$anon$5.class --rw---- 2.0 fat 1786 bl 56% defN 20100101.000002 scala/collection/LazyZip2$$anon$7$$anon$8.class --rw---- 2.0 fat 1745 bl 56% defN 20100101.000002 scala/collection/LazyZip2$$anon$7.class --rw---- 2.0 fat 968 bl 45% defN 20100101.000002 scala/collection/LazyZip2$.class --rw---- 2.0 fat 7479 bl 54% defN 20100101.000002 scala/collection/LazyZip2.class --rw---- 2.0 fat 2375 bl 56% defN 20100101.000002 scala/collection/LazyZip3$$anon$11$$anon$12.class --rw---- 2.0 fat 1870 bl 55% defN 20100101.000002 scala/collection/LazyZip3$$anon$11.class --rw---- 2.0 fat 2784 bl 55% defN 20100101.000002 scala/collection/LazyZip3$$anon$13$$anon$14.class --rw---- 2.0 fat 1925 bl 55% defN 20100101.000002 scala/collection/LazyZip3$$anon$13.class --rw---- 2.0 fat 1979 bl 58% defN 20100101.000002 scala/collection/LazyZip3$$anon$15$$anon$16.class --rw---- 2.0 fat 1820 bl 57% defN 20100101.000002 scala/collection/LazyZip3$$anon$15.class --rw---- 2.0 fat 1930 bl 56% defN 20100101.000002 scala/collection/LazyZip3$$anon$9$$anon$10.class --rw---- 2.0 fat 1854 bl 55% defN 20100101.000002 scala/collection/LazyZip3$$anon$9.class --rw---- 2.0 fat 1001 bl 46% defN 20100101.000002 scala/collection/LazyZip3$.class --rw---- 2.0 fat 8289 bl 55% defN 20100101.000002 scala/collection/LazyZip3.class --rw---- 2.0 fat 2111 bl 57% defN 20100101.000002 scala/collection/LazyZip4$$anon$17$$anon$18.class --rw---- 2.0 fat 1918 bl 56% defN 20100101.000002 scala/collection/LazyZip4$$anon$17.class --rw---- 2.0 fat 2551 bl 58% defN 20100101.000002 scala/collection/LazyZip4$$anon$19$$anon$20.class --rw---- 2.0 fat 1933 bl 55% defN 20100101.000002 scala/collection/LazyZip4$$anon$19.class --rw---- 2.0 fat 3018 bl 56% defN 20100101.000002 scala/collection/LazyZip4$$anon$21$$anon$22.class --rw---- 2.0 fat 1998 bl 56% defN 20100101.000002 scala/collection/LazyZip4$$anon$21.class --rw---- 2.0 fat 2165 bl 59% defN 20100101.000002 scala/collection/LazyZip4$$anon$23$$anon$24.class --rw---- 2.0 fat 1890 bl 58% defN 20100101.000002 scala/collection/LazyZip4$$anon$23.class --rw---- 2.0 fat 1033 bl 47% defN 20100101.000002 scala/collection/LazyZip4$.class --rw---- 2.0 fat 8481 bl 55% defN 20100101.000002 scala/collection/LazyZip4.class --rw---- 2.0 fat 1003 bl 46% defN 20100101.000002 scala/collection/LinearSeq$.class --rw---- 2.0 fat 8828 bl 65% defN 20100101.000002 scala/collection/LinearSeq.class --rw---- 2.0 fat 1660 bl 59% defN 20100101.000002 scala/collection/LinearSeqIterator$LazyCell.class --rw---- 2.0 fat 3596 bl 50% defN 20100101.000002 scala/collection/LinearSeqIterator.class --rw---- 2.0 fat 15287 bl 55% defN 20100101.000002 scala/collection/LinearSeqOps.class --rw---- 2.0 fat 1806 bl 56% defN 20100101.000002 scala/collection/LongStepper$$anon$8.class --rw---- 2.0 fat 431 bl 32% defN 20100101.000002 scala/collection/LongStepper$.class --rw---- 2.0 fat 2849 bl 60% defN 20100101.000002 scala/collection/LongStepper$LongStepperSpliterator.class --rw---- 2.0 fat 3047 bl 47% defN 20100101.000002 scala/collection/LongStepper.class --rw---- 2.0 fat 2247 bl 54% defN 20100101.000002 scala/collection/Map$.class --rw---- 2.0 fat 6605 bl 51% defN 20100101.000002 scala/collection/Map.class --rw---- 2.0 fat 2132 bl 64% defN 20100101.000002 scala/collection/MapFactory$$anon$2.class --rw---- 2.0 fat 1614 bl 58% defN 20100101.000002 scala/collection/MapFactory$.class --rw---- 2.0 fat 2188 bl 63% defN 20100101.000002 scala/collection/MapFactory$Delegate.class +-rw---- 2.0 fat 1440 bl 49% defN 20100101.000002 scala/util/Either$.class +-rw---- 2.0 fat 1442 bl 48% defN 20100101.000002 scala/collection/ArrayOps$ReverseIterator$mcB$sp.class +-rw---- 2.0 fat 1444 bl 48% defN 20100101.000002 scala/collection/ArrayOps$ReverseIterator$mcF$sp.class +-rw---- 2.0 fat 1444 bl 48% defN 20100101.000002 scala/collection/ArrayOps$ReverseIterator$mcI$sp.class +-rw---- 2.0 fat 1444 bl 48% defN 20100101.000002 scala/collection/ArrayOps$ReverseIterator$mcS$sp.class +-rw---- 2.0 fat 1444 bl 49% defN 20100101.000002 scala/util/Right$.class +-rw---- 2.0 fat 14468 bl 70% defN 20100101.000002 scala/collection/mutable/ArraySeq$.class +-rw---- 2.0 fat 1446 bl 48% defN 20100101.000002 scala/collection/ArrayOps$ReverseIterator$mcD$sp.class +-rw---- 2.0 fat 1448 bl 48% defN 20100101.000002 scala/collection/ArrayOps$ReverseIterator$mcZ$sp.class +-rw---- 2.0 fat 1452 bl 48% defN 20100101.000002 scala/collection/ArrayOps$ReverseIterator$mcC$sp.class +-rw---- 2.0 fat 1453 bl 51% defN 20100101.000002 scala/collection/immutable/LazyList$LazyIterator.class +-rw---- 2.0 fat 1455 bl 53% defN 20100101.000002 scala/Predef$any2stringadd.class +-rw---- 2.0 fat 1455 bl 54% defN 20100101.000002 scala/collection/BuildFrom$$anon$1.class +-rw---- 2.0 fat 1456 bl 48% defN 20100101.000002 scala/collection/IterableOnceOps$Spanner$1.class +-rw---- 2.0 fat 1457 bl 40% defN 20100101.000002 scala/runtime/java8/JFunction0$mcV$sp.class +-rw---- 2.0 fat 1457 bl 41% defN 20100101.000002 scala/jdk/Priority3FunctionExtensions.class +-rw---- 2.0 fat 1461 bl 39% defN 20100101.000002 scala/runtime/java8/JFunction0$mcB$sp.class +-rw---- 2.0 fat 1461 bl 39% defN 20100101.000002 scala/runtime/java8/JFunction0$mcJ$sp.class +-rw---- 2.0 fat 1463 bl 47% defN 20100101.000002 scala/runtime/AbstractFunction3.class +-rw---- 2.0 fat 14643 bl 70% defN 20100101.000002 scala/collection/immutable/Stream$.class +-rw---- 2.0 fat 1464 bl 39% defN 20100101.000002 scala/runtime/java8/JFunction0$mcF$sp.class +-rw---- 2.0 fat 1464 bl 39% defN 20100101.000002 scala/runtime/java8/JFunction0$mcS$sp.class +-rw---- 2.0 fat 1466 bl 39% defN 20100101.000002 scala/runtime/java8/JFunction0$mcI$sp.class +-rw---- 2.0 fat 1467 bl 39% defN 20100101.000002 scala/runtime/java8/JFunction0$mcD$sp.class -rw---- 2.0 fat 1467 bl 54% defN 20100101.000002 scala/collection/MapFactory$ToFactory.class --rw---- 2.0 fat 5080 bl 46% defN 20100101.000002 scala/collection/MapFactory.class --rw---- 2.0 fat 4386 bl 55% defN 20100101.000002 scala/collection/MapFactoryDefaults.class --rw---- 2.0 fat 1296 bl 51% defN 20100101.000002 scala/collection/MapOps$$anon$1.class --rw---- 2.0 fat 1256 bl 49% defN 20100101.000002 scala/collection/MapOps$$anon$2.class --rw---- 2.0 fat 1258 bl 49% defN 20100101.000002 scala/collection/MapOps$$anon$3.class --rw---- 2.0 fat 417 bl 31% defN 20100101.000002 scala/collection/MapOps$.class --rw---- 2.0 fat 2000 bl 61% defN 20100101.000002 scala/collection/MapOps$GenKeySet.class --rw---- 2.0 fat 2874 bl 63% defN 20100101.000002 scala/collection/MapOps$KeySet.class --rw---- 2.0 fat 4426 bl 64% defN 20100101.000002 scala/collection/MapOps$WithFilter.class --rw---- 2.0 fat 24777 bl 57% defN 20100101.000002 scala/collection/MapOps.class --rw---- 2.0 fat 2987 bl 68% defN 20100101.000002 scala/collection/MapView$$anon$1.class --rw---- 2.0 fat 5088 bl 65% defN 20100101.000002 scala/collection/MapView$.class --rw---- 2.0 fat 2350 bl 52% defN 20100101.000002 scala/collection/MapView$Filter.class --rw---- 2.0 fat 3525 bl 57% defN 20100101.000002 scala/collection/MapView$FilterKeys.class +-rw---- 2.0 fat 1468 bl 53% defN 20100101.000002 scala/collection/SeqView$Id.class +-rw---- 2.0 fat 1470 bl 39% defN 20100101.000002 scala/runtime/java8/JFunction0$mcZ$sp.class +-rw---- 2.0 fat 1471 bl 39% defN 20100101.000002 scala/runtime/java8/JFunction0$mcC$sp.class -rw---- 2.0 fat 1472 bl 53% defN 20100101.000002 scala/collection/MapView$Id.class --rw---- 2.0 fat 1267 bl 52% defN 20100101.000002 scala/collection/MapView$Keys.class --rw---- 2.0 fat 3351 bl 57% defN 20100101.000002 scala/collection/MapView$MapValues.class --rw---- 2.0 fat 2320 bl 53% defN 20100101.000002 scala/collection/MapView$TapEach.class --rw---- 2.0 fat 1241 bl 51% defN 20100101.000002 scala/collection/MapView$Values.class --rw---- 2.0 fat 11533 bl 52% defN 20100101.000002 scala/collection/MapView.class --rw---- 2.0 fat 2821 bl 47% defN 20100101.000002 scala/collection/MapViewFactory.class --rw---- 2.0 fat 1106 bl 50% defN 20100101.000002 scala/collection/Searching$.class --rw---- 2.0 fat 1962 bl 54% defN 20100101.000002 scala/collection/Searching$Found$.class --rw---- 2.0 fat 2917 bl 57% defN 20100101.000002 scala/collection/Searching$Found.class --rw---- 2.0 fat 2056 bl 55% defN 20100101.000002 scala/collection/Searching$InsertionPoint$.class --rw---- 2.0 fat 2874 bl 57% defN 20100101.000002 scala/collection/Searching$InsertionPoint.class --rw---- 2.0 fat 1521 bl 53% defN 20100101.000002 scala/collection/Searching$SearchImpl$.class -rw---- 2.0 fat 1472 bl 56% defN 20100101.000002 scala/collection/Searching$SearchImpl.class --rw---- 2.0 fat 474 bl 37% defN 20100101.000002 scala/collection/Searching$SearchResult.class --rw---- 2.0 fat 4155 bl 30% defN 20100101.000002 scala/collection/Searching.class --rw---- 2.0 fat 967 bl 44% defN 20100101.000002 scala/collection/Seq$.class --rw---- 2.0 fat 10235 bl 64% defN 20100101.000002 scala/collection/Seq.class --rw---- 2.0 fat 643 bl 36% defN 20100101.000002 scala/collection/SeqFactory$.class --rw---- 2.0 fat 7509 bl 74% defN 20100101.000002 scala/collection/SeqFactory$Delegate.class --rw---- 2.0 fat 3772 bl 68% defN 20100101.000002 scala/collection/SeqFactory$UnapplySeqWrapper$.class --rw---- 2.0 fat 2568 bl 62% defN 20100101.000002 scala/collection/SeqFactory$UnapplySeqWrapper.class --rw---- 2.0 fat 4075 bl 34% defN 20100101.000002 scala/collection/SeqFactory.class --rw---- 2.0 fat 931 bl 46% defN 20100101.000002 scala/collection/SeqMap$.class --rw---- 2.0 fat 2380 bl 45% defN 20100101.000002 scala/collection/SeqMap.class --rw---- 2.0 fat 1129 bl 44% defN 20100101.000002 scala/collection/SeqOps$$anon$1.class --rw---- 2.0 fat 1126 bl 45% defN 20100101.000002 scala/collection/SeqOps$$anon$2.class --rw---- 2.0 fat 2060 bl 50% defN 20100101.000002 scala/collection/SeqOps$$anon$3.class --rw---- 2.0 fat 4144 bl 46% defN 20100101.000002 scala/collection/SeqOps$.class --rw---- 2.0 fat 10801 bl 56% defN 20100101.000002 scala/collection/SeqOps$CombinationsItr.class --rw---- 2.0 fat 7251 bl 55% defN 20100101.000002 scala/collection/SeqOps$PermutationsItr.class --rw---- 2.0 fat 41315 bl 58% defN 20100101.000002 scala/collection/SeqOps.class --rw---- 2.0 fat 637 bl 37% defN 20100101.000002 scala/collection/SeqView$.class --rw---- 2.0 fat 18148 bl 76% defN 20100101.000002 scala/collection/SeqView$Appended.class --rw---- 2.0 fat 18223 bl 76% defN 20100101.000002 scala/collection/SeqView$Concat.class --rw---- 2.0 fat 18430 bl 75% defN 20100101.000002 scala/collection/SeqView$Drop.class --rw---- 2.0 fat 18474 bl 75% defN 20100101.000002 scala/collection/SeqView$DropRight.class --rw---- 2.0 fat 1468 bl 53% defN 20100101.000002 scala/collection/SeqView$Id.class --rw---- 2.0 fat 18214 bl 76% defN 20100101.000002 scala/collection/SeqView$Map.class --rw---- 2.0 fat 18147 bl 76% defN 20100101.000002 scala/collection/SeqView$Prepended.class --rw---- 2.0 fat 1550 bl 51% defN 20100101.000002 scala/collection/SeqView$Reverse.class --rw---- 2.0 fat 46479 bl 77% defN 20100101.000002 scala/collection/SeqView$Sorted$ReverseSorted.class --rw---- 2.0 fat 47924 bl 76% defN 20100101.000002 scala/collection/SeqView$Sorted.class --rw---- 2.0 fat 18917 bl 74% defN 20100101.000002 scala/collection/SeqView$Take.class --rw---- 2.0 fat 18515 bl 75% defN 20100101.000002 scala/collection/SeqView$TakeRight.class --rw---- 2.0 fat 12871 bl 50% defN 20100101.000002 scala/collection/SeqView.class --rw---- 2.0 fat 987 bl 45% defN 20100101.000002 scala/collection/Set$.class --rw---- 2.0 fat 9989 bl 64% defN 20100101.000002 scala/collection/Set.class --rw---- 2.0 fat 2343 bl 54% defN 20100101.000002 scala/collection/SetOps$$anon$1.class --rw---- 2.0 fat 4353 bl 53% defN 20100101.000002 scala/collection/SetOps$SubsetsItr.class --rw---- 2.0 fat 12228 bl 57% defN 20100101.000002 scala/collection/SetOps.class --rw---- 2.0 fat 665 bl 37% defN 20100101.000002 scala/collection/SortedIterableFactory$.class --rw---- 2.0 fat 1009 bl 54% defN 20100101.000002 scala/collection/SortedIterableFactory$Delegate.class --rw---- 2.0 fat 1225 bl 27% defN 20100101.000002 scala/collection/SortedIterableFactory.class --rw---- 2.0 fat 1027 bl 47% defN 20100101.000002 scala/collection/SortedMap$.class --rw---- 2.0 fat 4326 bl 49% defN 20100101.000002 scala/collection/SortedMap.class --rw---- 2.0 fat 1927 bl 61% defN 20100101.000002 scala/collection/SortedMapFactory$.class --rw---- 2.0 fat 2709 bl 66% defN 20100101.000002 scala/collection/SortedMapFactory$Delegate.class --rw---- 2.0 fat 2462 bl 66% defN 20100101.000002 scala/collection/SortedMapFactory$SortedMapFactoryToBuildFrom.class --rw---- 2.0 fat 1811 bl 58% defN 20100101.000002 scala/collection/SortedMapFactory$ToFactory.class --rw---- 2.0 fat 6792 bl 48% defN 20100101.000002 scala/collection/SortedMapFactory.class --rw---- 2.0 fat 4381 bl 53% defN 20100101.000002 scala/collection/SortedMapFactoryDefaults.class --rw---- 2.0 fat 667 bl 33% defN 20100101.000002 scala/collection/SortedMapOps$.class --rw---- 2.0 fat 1724 bl 60% defN 20100101.000002 scala/collection/SortedMapOps$GenKeySortedSet.class --rw---- 2.0 fat 46266 bl 78% defN 20100101.000002 scala/collection/SortedMapOps$KeySortedSet.class --rw---- 2.0 fat 4995 bl 67% defN 20100101.000002 scala/collection/SortedMapOps$WithFilter.class +-rw---- 2.0 fat 14736 bl 67% defN 20100101.000002 scala/sys/process/ProcessCreation.class +-rw---- 2.0 fat 1474 bl 52% defN 20100101.000002 scala/collection/immutable/AbstractSeq.class +-rw---- 2.0 fat 14756 bl 58% defN 20100101.000002 scala/collection/IndexedSeqOps.class +-rw---- 2.0 fat 1475 bl 50% defN 20100101.000002 scala/collection/mutable/PriorityQueue$$anon$1.class +-rw---- 2.0 fat 1476 bl 50% defN 20100101.000002 scala/collection/ArrayOps$ReverseIterator$mcV$sp.class +-rw---- 2.0 fat 1476 bl 58% defN 20100101.000002 scala/collection/immutable/RedBlackTree$KeysIterator.class +-rw---- 2.0 fat 1478 bl 46% defN 20100101.000002 scala/util/matching/UnanchoredRegex.class +-rw---- 2.0 fat 1479 bl 63% defN 20100101.000002 scala/collection/mutable/LinkedHashSet$$anon$2.class +-rw---- 2.0 fat 14811 bl 71% defN 20100101.000002 scala/collection/immutable/Map$Map2.class +-rw---- 2.0 fat 1481 bl 45% defN 20100101.000002 scala/collection/ArrayOps$GroupedIterator.class +-rw---- 2.0 fat 1483 bl 36% defN 20100101.000002 scala/concurrent/JavaConversions.class +-rw---- 2.0 fat 1484 bl 53% defN 20100101.000002 scala/runtime/ModuleSerializationProxy$.class +-rw---- 2.0 fat 1484 bl 57% defN 20100101.000002 scala/collection/convert/AsScalaExtensions$PropertiesHasAsScala.class +-rw---- 2.0 fat 1484 bl 59% defN 20100101.000002 scala/collection/immutable/RedBlackTree$ValuesIterator.class +-rw---- 2.0 fat 1487 bl 39% defN 20100101.000002 scala/sys/CreatorImpl.class +-rw---- 2.0 fat 1490 bl 54% defN 20100101.000002 scala/collection/View$Map.class +-rw---- 2.0 fat 14912 bl 57% defN 20100101.000002 scala/reflect/ClassManifestDeprecatedApis.class +-rw---- 2.0 fat 1491 bl 47% defN 20100101.000002 scala/collection/ArrayOps$ArrayIterator$mcJ$sp.class +-rw---- 2.0 fat 1492 bl 55% defN 20100101.000002 scala/collection/immutable/MapNode$.class +-rw---- 2.0 fat 1492 bl 56% defN 20100101.000002 scala/collection/convert/AsJavaExtensions$SetHasAsJava.class +-rw---- 2.0 fat 1493 bl 58% defN 20100101.000002 scala/concurrent/Channel$LinkedList.class +-rw---- 2.0 fat 14953 bl 65% defN 20100101.000002 scala/runtime/BoxesRunTime.class +-rw---- 2.0 fat 1495 bl 47% defN 20100101.000002 scala/collection/ArrayOps$ArrayIterator$mcB$sp.class +-rw---- 2.0 fat 1495 bl 56% defN 20100101.000002 scala/collection/convert/AsJavaExtensions$SeqHasAsJava.class +-rw---- 2.0 fat 1496 bl 57% defN 20100101.000002 scala/sys/process/ProcessLogger$.class +-rw---- 2.0 fat 1496 bl 61% defN 20100101.000002 scala/jdk/OptionConverters$.class +-rw---- 2.0 fat 1497 bl 47% defN 20100101.000002 scala/collection/ArrayOps$ArrayIterator$mcF$sp.class +-rw---- 2.0 fat 1497 bl 47% defN 20100101.000002 scala/collection/ArrayOps$ArrayIterator$mcI$sp.class +-rw---- 2.0 fat 1497 bl 47% defN 20100101.000002 scala/collection/ArrayOps$ArrayIterator$mcS$sp.class +-rw---- 2.0 fat 1498 bl 60% defN 20100101.000002 scala/collection/generic/IsIterableOnce$.class +-rw---- 2.0 fat 1499 bl 48% defN 20100101.000002 scala/collection/ArrayOps$ArrayIterator$mcD$sp.class +-rw---- 2.0 fat 1499 bl 51% defN 20100101.000002 scala/sys/process/ProcessImpl$OrProcess$$anonfun$$lessinit$greater$2.class +-rw---- 2.0 fat 1501 bl 47% defN 20100101.000002 scala/collection/ArrayOps$ArrayIterator$mcZ$sp.class +-rw---- 2.0 fat 1501 bl 55% defN 20100101.000002 scala/util/Either$MergeableEither.class +-rw---- 2.0 fat 1502 bl 54% defN 20100101.000002 scala/concurrent/duration/package$DoubleMult.class +-rw---- 2.0 fat 1502 bl 61% defN 20100101.000002 scala/collection/ClassTagSeqFactory$Delegate.class +-rw---- 2.0 fat 15031 bl 68% defN 20100101.000002 scala/util/control/Exception$.class +-rw---- 2.0 fat 1503 bl 52% defN 20100101.000002 scala/sys/process/ProcessImpl$AndProcess$$anonfun$$lessinit$greater$1.class +-rw---- 2.0 fat 15053 bl 61% defN 20100101.000002 scala/runtime/RichInt.class +-rw---- 2.0 fat 1505 bl 48% defN 20100101.000002 scala/collection/ArrayOps$ArrayIterator$mcC$sp.class +-rw---- 2.0 fat 1505 bl 53% defN 20100101.000002 scala/sys/process/ProcessImpl$ThreadProcess.class +-rw---- 2.0 fat 1505 bl 55% defN 20100101.000002 scala/collection/concurrent/CNodeBase.class +-rw---- 2.0 fat 1506 bl 53% defN 20100101.000002 scala/collection/immutable/LazyList$LazyBuilder$DeferredState.class +-rw---- 2.0 fat 15090 bl 59% defN 20100101.000002 scala/collection/mutable/Queue.class +-rw---- 2.0 fat 1512 bl 46% defN 20100101.000002 scala/collection/immutable/Node$.class +-rw---- 2.0 fat 15143 bl 47% defN 20100101.000002 scala/util/Either.class +-rw---- 2.0 fat 15159 bl 56% defN 20100101.000002 scala/collection/concurrent/CNode.class +-rw---- 2.0 fat 1517 bl 51% defN 20100101.000002 scala/util/Failure$.class +-rw---- 2.0 fat 1518 bl 57% defN 20100101.000002 scala/collection/convert/AsScalaExtensions$SetHasAsScala.class +-rw---- 2.0 fat 1519 bl 53% defN 20100101.000002 scala/sys/process/BasicIO$Uncloseable$.class +-rw---- 2.0 fat 1519 bl 54% defN 20100101.000002 scala/Byte$.class +-rw---- 2.0 fat 1520 bl 49% defN 20100101.000002 scala/collection/immutable/Range$$anon$1.class +-rw---- 2.0 fat 1521 bl 46% defN 20100101.000002 scala/collection/immutable/IntMapValueIterator.class +-rw---- 2.0 fat 1521 bl 53% defN 20100101.000002 scala/collection/Searching$SearchImpl$.class +-rw---- 2.0 fat 1521 bl 57% defN 20100101.000002 scala/collection/convert/AsJavaExtensions$MapHasAsJava.class -rw---- 2.0 fat 15237 bl 54% defN 20100101.000002 scala/collection/SortedMapOps.class --rw---- 2.0 fat 4145 bl 53% defN 20100101.000002 scala/collection/SortedOps.class --rw---- 2.0 fat 1049 bl 46% defN 20100101.000002 scala/collection/SortedSet$.class --rw---- 2.0 fat 5566 bl 54% defN 20100101.000002 scala/collection/SortedSet.class --rw---- 2.0 fat 3997 bl 54% defN 20100101.000002 scala/collection/SortedSetFactoryDefaults.class --rw---- 2.0 fat 857 bl 45% defN 20100101.000002 scala/collection/SortedSetOps$.class --rw---- 2.0 fat 4403 bl 65% defN 20100101.000002 scala/collection/SortedSetOps$WithFilter.class --rw---- 2.0 fat 11297 bl 53% defN 20100101.000002 scala/collection/SortedSetOps.class --rw---- 2.0 fat 2834 bl 52% defN 20100101.000002 scala/collection/SpecificIterableFactory.class --rw---- 2.0 fat 970 bl 45% defN 20100101.000002 scala/collection/Stepper$$anon$1.class --rw---- 2.0 fat 626 bl 34% defN 20100101.000002 scala/collection/Stepper$.class --rw---- 2.0 fat 248 bl 30% defN 20100101.000002 scala/collection/Stepper$EfficientSplit.class --rw---- 2.0 fat 4966 bl 69% defN 20100101.000002 scala/collection/Stepper$UnboxingByteStepper.class --rw---- 2.0 fat 4966 bl 69% defN 20100101.000002 scala/collection/Stepper$UnboxingCharStepper.class --rw---- 2.0 fat 4955 bl 70% defN 20100101.000002 scala/collection/Stepper$UnboxingDoubleStepper.class --rw---- 2.0 fat 5009 bl 69% defN 20100101.000002 scala/collection/Stepper$UnboxingFloatStepper.class --rw---- 2.0 fat 4906 bl 70% defN 20100101.000002 scala/collection/Stepper$UnboxingIntStepper.class --rw---- 2.0 fat 4917 bl 70% defN 20100101.000002 scala/collection/Stepper$UnboxingLongStepper.class --rw---- 2.0 fat 4971 bl 69% defN 20100101.000002 scala/collection/Stepper$UnboxingShortStepper.class --rw---- 2.0 fat 281 bl 37% defN 20100101.000002 scala/collection/Stepper$mcD$sp.class --rw---- 2.0 fat 281 bl 38% defN 20100101.000002 scala/collection/Stepper$mcI$sp.class --rw---- 2.0 fat 281 bl 38% defN 20100101.000002 scala/collection/Stepper$mcJ$sp.class --rw---- 2.0 fat 7243 bl 55% defN 20100101.000002 scala/collection/Stepper.class --rw---- 2.0 fat 970 bl 53% defN 20100101.000002 scala/collection/StepperShape$$anon$1$$anon$2.class --rw---- 2.0 fat 1745 bl 61% defN 20100101.000002 scala/collection/StepperShape$$anon$1.class --rw---- 2.0 fat 979 bl 54% defN 20100101.000002 scala/collection/StepperShape$$anon$11$$anon$12.class --rw---- 2.0 fat 1753 bl 61% defN 20100101.000002 scala/collection/StepperShape$$anon$11.class --rw---- 2.0 fat 984 bl 53% defN 20100101.000002 scala/collection/StepperShape$$anon$13$$anon$14.class --rw---- 2.0 fat 1765 bl 61% defN 20100101.000002 scala/collection/StepperShape$$anon$13.class --rw---- 2.0 fat 973 bl 54% defN 20100101.000002 scala/collection/StepperShape$$anon$3$$anon$4.class --rw---- 2.0 fat 1751 bl 61% defN 20100101.000002 scala/collection/StepperShape$$anon$3.class --rw---- 2.0 fat 979 bl 54% defN 20100101.000002 scala/collection/StepperShape$$anon$5$$anon$6.class --rw---- 2.0 fat 1763 bl 61% defN 20100101.000002 scala/collection/StepperShape$$anon$5.class --rw---- 2.0 fat 972 bl 53% defN 20100101.000002 scala/collection/StepperShape$$anon$7$$anon$8.class --rw---- 2.0 fat 1748 bl 61% defN 20100101.000002 scala/collection/StepperShape$$anon$7.class --rw---- 2.0 fat 976 bl 53% defN 20100101.000002 scala/collection/StepperShape$$anon$9$$anon$10.class --rw---- 2.0 fat 1752 bl 61% defN 20100101.000002 scala/collection/StepperShape$$anon$9.class --rw---- 2.0 fat 6853 bl 74% defN 20100101.000002 scala/collection/StepperShape$.class --rw---- 2.0 fat 1056 bl 44% defN 20100101.000002 scala/collection/StepperShape$Shape$.class --rw---- 2.0 fat 1090 bl 48% defN 20100101.000002 scala/collection/StepperShape$Shape.class --rw---- 2.0 fat 6772 bl 54% defN 20100101.000002 scala/collection/StepperShape.class --rw---- 2.0 fat 1365 bl 43% defN 20100101.000002 scala/collection/StepperShapeLowPriority1.class --rw---- 2.0 fat 1413 bl 59% defN 20100101.000002 scala/collection/StepperShapeLowPriority2$$anon$15.class --rw---- 2.0 fat 1846 bl 50% defN 20100101.000002 scala/collection/StepperShapeLowPriority2.class --rw---- 2.0 fat 3541 bl 52% defN 20100101.000002 scala/collection/StrictOptimizedClassTagSeqFactory.class --rw---- 2.0 fat 21285 bl 61% defN 20100101.000002 scala/collection/StrictOptimizedIterableOps.class --rw---- 2.0 fat 1225 bl 48% defN 20100101.000002 scala/collection/StrictOptimizedLinearSeqOps$$anon$1.class --rw---- 2.0 fat 3579 bl 54% defN 20100101.000002 scala/collection/StrictOptimizedLinearSeqOps.class --rw---- 2.0 fat 7695 bl 57% defN 20100101.000002 scala/collection/StrictOptimizedMapOps.class --rw---- 2.0 fat 6345 bl 56% defN 20100101.000002 scala/collection/StrictOptimizedSeqFactory.class --rw---- 2.0 fat 9465 bl 57% defN 20100101.000002 scala/collection/StrictOptimizedSeqOps.class --rw---- 2.0 fat 2102 bl 49% defN 20100101.000002 scala/collection/StrictOptimizedSetOps.class --rw---- 2.0 fat 8574 bl 56% defN 20100101.000002 scala/collection/StrictOptimizedSortedMapOps.class --rw---- 2.0 fat 7411 bl 57% defN 20100101.000002 scala/collection/StrictOptimizedSortedSetOps.class --rw---- 2.0 fat 2384 bl 47% defN 20100101.000002 scala/collection/StringOps$$anon$1.class --rw---- 2.0 fat 54514 bl 67% defN 20100101.000002 scala/collection/StringOps$.class +-rw---- 2.0 fat 1523 bl 50% defN 20100101.000002 scala/collection/ArrayOps$ArrayIterator$mcV$sp.class +-rw---- 2.0 fat 1525 bl 49% defN 20100101.000002 scala/collection/immutable/Range$$anon$2.class +-rw---- 2.0 fat 15276 bl 62% defN 20100101.000002 scala/Tuple11.class +-rw---- 2.0 fat 15287 bl 55% defN 20100101.000002 scala/collection/LinearSeqOps.class +-rw---- 2.0 fat 1528 bl 30% defN 20100101.000002 scala/LowPriorityImplicits2.class +-rw---- 2.0 fat 1528 bl 47% defN 20100101.000002 scala/util/Using$Manager$.class +-rw---- 2.0 fat 1533 bl 49% defN 20100101.000002 scala/sys/process/ProcessImpl$Spawn$.class +-rw---- 2.0 fat 1533 bl 56% defN 20100101.000002 scala/collection/convert/StreamExtensions$AnyArrayHasSeqParStream.class +-rw---- 2.0 fat 15345 bl 80% defN 20100101.000002 scala/jdk/FunctionConverters.class +-rw---- 2.0 fat 1536 bl 57% defN 20100101.000002 scala/collection/convert/AsScalaExtensions$ListHasAsScala.class +-rw---- 2.0 fat 1537 bl 34% defN 20100101.000002 scala/deprecatedInheritance.class +-rw---- 2.0 fat 1537 bl 48% defN 20100101.000002 scala/runtime/AbstractFunction4.class +-rw---- 2.0 fat 1539 bl 45% defN 20100101.000002 scala/collection/immutable/LongMapValueIterator.class +-rw---- 2.0 fat 1541 bl 52% defN 20100101.000002 scala/reflect/package$.class +-rw---- 2.0 fat 1543 bl 43% defN 20100101.000002 scala/runtime/EmptyMethodCache.class +-rw---- 2.0 fat 1543 bl 51% defN 20100101.000002 scala/concurrent/duration/package$DurationLong$.class +-rw---- 2.0 fat 1545 bl 64% defN 20100101.000002 scala/collection/mutable/LinkedHashMap$$anon$3.class +-rw---- 2.0 fat 1546 bl 31% defN 20100101.000002 scala/Unit.class +-rw---- 2.0 fat 1547 bl 57% defN 20100101.000002 scala/collection/convert/AsScalaExtensions$MapHasAsScala.class -rw---- 2.0 fat 1549 bl 50% defN 20100101.000002 scala/collection/StringOps$GroupedIterator.class --rw---- 2.0 fat 1433 bl 47% defN 20100101.000002 scala/collection/StringOps$ReverseIterator.class --rw---- 2.0 fat 1437 bl 47% defN 20100101.000002 scala/collection/StringOps$StringIterator.class --rw---- 2.0 fat 5626 bl 62% defN 20100101.000002 scala/collection/StringOps$WithFilter.class --rw---- 2.0 fat 91865 bl 63% defN 20100101.000002 scala/collection/StringOps.class --rw---- 2.0 fat 16339 bl 61% defN 20100101.000002 scala/collection/StringParsers$.class --rw---- 2.0 fat 2535 bl 39% defN 20100101.000002 scala/collection/StringParsers.class --rw---- 2.0 fat 1755 bl 55% defN 20100101.000002 scala/collection/StringView$.class --rw---- 2.0 fat 6773 bl 50% defN 20100101.000002 scala/collection/StringView.class --rw---- 2.0 fat 935 bl 46% defN 20100101.000002 scala/collection/View$$anon$1.class --rw---- 2.0 fat 10929 bl 69% defN 20100101.000002 scala/collection/View$.class --rw---- 2.0 fat 1615 bl 52% defN 20100101.000002 scala/collection/View$Appended.class --rw---- 2.0 fat 1341 bl 54% defN 20100101.000002 scala/collection/View$Collect.class --rw---- 2.0 fat 2741 bl 56% defN 20100101.000002 scala/collection/View$Concat.class +-rw---- 2.0 fat 1549 bl 56% defN 20100101.000002 scala/collection/convert/impl/IntBinaryTreeStepper$.class +-rw---- 2.0 fat 1549 bl 59% defN 20100101.000002 scala/collection/mutable/RedBlackTree$KeysIterator.class +-rw---- 2.0 fat 1549 bl 62% defN 20100101.000002 scala/math/Numeric$BigDecimalAsIfIntegral.class +-rw---- 2.0 fat 1550 bl 51% defN 20100101.000002 scala/collection/SeqView$Reverse.class -rw---- 2.0 fat 1550 bl 53% defN 20100101.000002 scala/collection/View$DistinctBy.class --rw---- 2.0 fat 1798 bl 48% defN 20100101.000002 scala/collection/View$Drop.class --rw---- 2.0 fat 1958 bl 49% defN 20100101.000002 scala/collection/View$DropRight.class --rw---- 2.0 fat 2410 bl 49% defN 20100101.000002 scala/collection/View$DropRightIterator.class --rw---- 2.0 fat 1561 bl 53% defN 20100101.000002 scala/collection/View$DropWhile.class --rw---- 2.0 fat 1196 bl 51% defN 20100101.000002 scala/collection/View$Elems.class --rw---- 2.0 fat 2643 bl 59% defN 20100101.000002 scala/collection/View$Empty$.class -rw---- 2.0 fat 1551 bl 46% defN 20100101.000002 scala/collection/View$Fill.class --rw---- 2.0 fat 3006 bl 57% defN 20100101.000002 scala/collection/View$Filter$.class --rw---- 2.0 fat 2018 bl 57% defN 20100101.000002 scala/collection/View$Filter.class --rw---- 2.0 fat 1609 bl 54% defN 20100101.000002 scala/collection/View$FlatMap.class --rw---- 2.0 fat 1806 bl 48% defN 20100101.000002 scala/collection/View$Iterate.class --rw---- 2.0 fat 2238 bl 51% defN 20100101.000002 scala/collection/View$LeftPartitionMapped$$anon$2.class --rw---- 2.0 fat 1617 bl 57% defN 20100101.000002 scala/collection/View$LeftPartitionMapped.class --rw---- 2.0 fat 1490 bl 54% defN 20100101.000002 scala/collection/View$Map.class --rw---- 2.0 fat 1801 bl 49% defN 20100101.000002 scala/collection/View$PadTo.class --rw---- 2.0 fat 2281 bl 55% defN 20100101.000002 scala/collection/View$Patched.class --rw---- 2.0 fat 1618 bl 52% defN 20100101.000002 scala/collection/View$Prepended.class --rw---- 2.0 fat 2246 bl 51% defN 20100101.000002 scala/collection/View$RightPartitionMapped$$anon$3.class --rw---- 2.0 fat 1624 bl 57% defN 20100101.000002 scala/collection/View$RightPartitionMapped.class --rw---- 2.0 fat 1705 bl 52% defN 20100101.000002 scala/collection/View$ScanLeft.class --rw---- 2.0 fat 1190 bl 47% defN 20100101.000002 scala/collection/View$Single.class --rw---- 2.0 fat 1601 bl 47% defN 20100101.000002 scala/collection/View$Tabulate.class --rw---- 2.0 fat 1831 bl 48% defN 20100101.000002 scala/collection/View$Take.class --rw---- 2.0 fat 1991 bl 49% defN 20100101.000002 scala/collection/View$TakeRight.class --rw---- 2.0 fat 2922 bl 49% defN 20100101.000002 scala/collection/View$TakeRightIterator.class +-rw---- 2.0 fat 1553 bl 58% defN 20100101.000002 scala/collection/immutable/IntMap$$anon$2.class +-rw---- 2.0 fat 1554 bl 58% defN 20100101.000002 scala/collection/convert/AsScalaExtensions$IterableHasAsScala.class +-rw---- 2.0 fat 1554 bl 58% defN 20100101.000002 scala/collection/convert/AsScalaExtensions$IteratorHasAsScala.class +-rw---- 2.0 fat 1555 bl 57% defN 20100101.000002 scala/collection/convert/impl/LongBinaryTreeStepper$.class +-rw---- 2.0 fat 1557 bl 52% defN 20100101.000002 scala/collection/mutable/HashSet$$anon$3.class +-rw---- 2.0 fat 1557 bl 56% defN 20100101.000002 scala/collection/convert/impl/AnyBinaryTreeStepper$.class +-rw---- 2.0 fat 1557 bl 57% defN 20100101.000002 scala/collection/immutable/Stream$cons$.class +-rw---- 2.0 fat 1557 bl 60% defN 20100101.000002 scala/collection/mutable/RedBlackTree$ValuesIterator.class +-rw---- 2.0 fat 1558 bl 46% defN 20100101.000002 scala/concurrent/Awaitable.class +-rw---- 2.0 fat 1558 bl 54% defN 20100101.000002 scala/$less$colon$less$.class +-rw---- 2.0 fat 1560 bl 57% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$$anon$2.class +-rw---- 2.0 fat 1560 bl 58% defN 20100101.000002 scala/collection/convert/AsJavaExtensions$MutableSetHasAsJava.class +-rw---- 2.0 fat 1561 bl 53% defN 20100101.000002 scala/collection/View$DropWhile.class -rw---- 2.0 fat 1561 bl 53% defN 20100101.000002 scala/collection/View$TakeWhile.class --rw---- 2.0 fat 1349 bl 51% defN 20100101.000002 scala/collection/View$Unfold.class --rw---- 2.0 fat 1749 bl 48% defN 20100101.000002 scala/collection/View$Updated$$anon$4.class --rw---- 2.0 fat 1638 bl 54% defN 20100101.000002 scala/collection/View$Updated.class --rw---- 2.0 fat 1943 bl 52% defN 20100101.000002 scala/collection/View$Zip.class --rw---- 2.0 fat 2186 bl 53% defN 20100101.000002 scala/collection/View$ZipAll.class --rw---- 2.0 fat 1382 bl 53% defN 20100101.000002 scala/collection/View$ZipWithIndex.class --rw---- 2.0 fat 22629 bl 51% defN 20100101.000002 scala/collection/View.class --rw---- 2.0 fat 1864 bl 38% defN 20100101.000002 scala/collection/WithFilter.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/collection/concurrent/ --rw---- 2.0 fat 349 bl 31% defN 20100101.000002 scala/collection/concurrent/BasicNode.class --rw---- 2.0 fat 2146 bl 56% defN 20100101.000002 scala/collection/concurrent/CNode$.class --rw---- 2.0 fat 15156 bl 56% defN 20100101.000002 scala/collection/concurrent/CNode.class --rw---- 2.0 fat 1505 bl 55% defN 20100101.000002 scala/collection/concurrent/CNodeBase.class --rw---- 2.0 fat 2416 bl 46% defN 20100101.000002 scala/collection/concurrent/FailedNode.class --rw---- 2.0 fat 290 bl 27% defN 20100101.000002 scala/collection/concurrent/Gen.class --rw---- 2.0 fat 1670 bl 56% defN 20100101.000002 scala/collection/concurrent/INode$.class --rw---- 2.0 fat 21405 bl 56% defN 20100101.000002 scala/collection/concurrent/INode.class --rw---- 2.0 fat 1625 bl 59% defN 20100101.000002 scala/collection/concurrent/INodeBase.class --rw---- 2.0 fat 640 bl 25% defN 20100101.000002 scala/collection/concurrent/KVNode.class --rw---- 2.0 fat 11006 bl 56% defN 20100101.000002 scala/collection/concurrent/LNode.class --rw---- 2.0 fat 2195 bl 63% defN 20100101.000002 scala/collection/concurrent/MainNode.class --rw---- 2.0 fat 6686 bl 53% defN 20100101.000002 scala/collection/concurrent/Map.class --rw---- 2.0 fat 2475 bl 63% defN 20100101.000002 scala/collection/concurrent/RDCSS_Descriptor$.class --rw---- 2.0 fat 7703 bl 54% defN 20100101.000002 scala/collection/concurrent/RDCSS_Descriptor.class --rw---- 2.0 fat 3440 bl 50% defN 20100101.000002 scala/collection/concurrent/SNode.class --rw---- 2.0 fat 3732 bl 50% defN 20100101.000002 scala/collection/concurrent/TNode.class --rw---- 2.0 fat 3869 bl 67% defN 20100101.000002 scala/collection/concurrent/TrieMap$.class --rw---- 2.0 fat 983 bl 44% defN 20100101.000002 scala/collection/concurrent/TrieMap$MangledHashing.class --rw---- 2.0 fat 1374 bl 46% defN 20100101.000002 scala/collection/concurrent/TrieMap$RemovalPolicy$.class --rw---- 2.0 fat 26560 bl 54% defN 20100101.000002 scala/collection/concurrent/TrieMap.class --rw---- 2.0 fat 628 bl 38% defN 20100101.000002 scala/collection/concurrent/TrieMapIterator$.class --rw---- 2.0 fat 10394 bl 52% defN 20100101.000002 scala/collection/concurrent/TrieMapIterator.class --rw---- 2.0 fat 2226 bl 57% defN 20100101.000002 scala/collection/concurrent/TrieMapSerializationEnd$.class --rw---- 2.0 fat 2081 bl 40% defN 20100101.000002 scala/collection/concurrent/TrieMapSerializationEnd.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/collection/convert/ --rw---- 2.0 fat 11436 bl 70% defN 20100101.000002 scala/collection/convert/AsJavaConverters.class -rw---- 2.0 fat 1562 bl 58% defN 20100101.000002 scala/collection/convert/AsJavaExtensions$BufferHasAsJava.class --rw---- 2.0 fat 1679 bl 60% defN 20100101.000002 scala/collection/convert/AsJavaExtensions$ConcurrentMapHasAsJava.class --rw---- 2.0 fat 1837 bl 61% defN 20100101.000002 scala/collection/convert/AsJavaExtensions$IterableHasAsJava.class --rw---- 2.0 fat 1842 bl 61% defN 20100101.000002 scala/collection/convert/AsJavaExtensions$IteratorHasAsJava.class --rw---- 2.0 fat 1521 bl 57% defN 20100101.000002 scala/collection/convert/AsJavaExtensions$MapHasAsJava.class --rw---- 2.0 fat 1880 bl 61% defN 20100101.000002 scala/collection/convert/AsJavaExtensions$MutableMapHasAsJava.class -rw---- 2.0 fat 1563 bl 58% defN 20100101.000002 scala/collection/convert/AsJavaExtensions$MutableSeqHasAsJava.class --rw---- 2.0 fat 1560 bl 58% defN 20100101.000002 scala/collection/convert/AsJavaExtensions$MutableSetHasAsJava.class --rw---- 2.0 fat 1495 bl 56% defN 20100101.000002 scala/collection/convert/AsJavaExtensions$SeqHasAsJava.class --rw---- 2.0 fat 1492 bl 56% defN 20100101.000002 scala/collection/convert/AsJavaExtensions$SetHasAsJava.class --rw---- 2.0 fat 11496 bl 66% defN 20100101.000002 scala/collection/convert/AsJavaExtensions.class --rw---- 2.0 fat 9367 bl 68% defN 20100101.000002 scala/collection/convert/AsScalaConverters.class --rw---- 2.0 fat 1572 bl 58% defN 20100101.000002 scala/collection/convert/AsScalaExtensions$CollectionHasAsScala.class --rw---- 2.0 fat 1701 bl 61% defN 20100101.000002 scala/collection/convert/AsScalaExtensions$ConcurrentMapHasAsScala.class --rw---- 2.0 fat 1610 bl 58% defN 20100101.000002 scala/collection/convert/AsScalaExtensions$DictionaryHasAsScala.class --rw---- 2.0 fat 1581 bl 58% defN 20100101.000002 scala/collection/convert/AsScalaExtensions$EnumerationHasAsScala.class --rw---- 2.0 fat 1554 bl 58% defN 20100101.000002 scala/collection/convert/AsScalaExtensions$IterableHasAsScala.class --rw---- 2.0 fat 1554 bl 58% defN 20100101.000002 scala/collection/convert/AsScalaExtensions$IteratorHasAsScala.class --rw---- 2.0 fat 1536 bl 57% defN 20100101.000002 scala/collection/convert/AsScalaExtensions$ListHasAsScala.class --rw---- 2.0 fat 1547 bl 57% defN 20100101.000002 scala/collection/convert/AsScalaExtensions$MapHasAsScala.class --rw---- 2.0 fat 1484 bl 57% defN 20100101.000002 scala/collection/convert/AsScalaExtensions$PropertiesHasAsScala.class --rw---- 2.0 fat 1518 bl 57% defN 20100101.000002 scala/collection/convert/AsScalaExtensions$SetHasAsScala.class --rw---- 2.0 fat 11124 bl 65% defN 20100101.000002 scala/collection/convert/AsScalaExtensions.class --rw---- 2.0 fat 10486 bl 81% defN 20100101.000002 scala/collection/convert/ImplicitConversions$.class --rw---- 2.0 fat 7229 bl 74% defN 20100101.000002 scala/collection/convert/ImplicitConversions.class --rw---- 2.0 fat 6065 bl 78% defN 20100101.000002 scala/collection/convert/ImplicitConversionsToJava$.class --rw---- 2.0 fat 4378 bl 70% defN 20100101.000002 scala/collection/convert/ImplicitConversionsToJava.class --rw---- 2.0 fat 4989 bl 76% defN 20100101.000002 scala/collection/convert/ImplicitConversionsToScala$.class --rw---- 2.0 fat 3668 bl 66% defN 20100101.000002 scala/collection/convert/ImplicitConversionsToScala.class --rw---- 2.0 fat 537 bl 43% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$$anon$7.class --rw---- 2.0 fat 1101 bl 46% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$.class --rw---- 2.0 fat 13535 bl 78% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$AbstractJMapWrapper.class --rw---- 2.0 fat 4329 bl 66% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$ConcurrentMapWrapper.class --rw---- 2.0 fat 3421 bl 59% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$DictionaryWrapper.class --rw---- 2.0 fat 2729 bl 63% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$IterableWrapper.class --rw---- 2.0 fat 2041 bl 66% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$IterableWrapperTrait.class --rw---- 2.0 fat 2098 bl 58% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$IteratorWrapper.class --rw---- 2.0 fat 9195 bl 73% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JCollectionWrapper.class --rw---- 2.0 fat 9263 bl 62% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JConcurrentMapWrapper.class --rw---- 2.0 fat 6064 bl 64% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JDictionaryWrapper.class --rw---- 2.0 fat 1391 bl 53% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JEnumerationWrapper.class --rw---- 2.0 fat 9037 bl 73% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JIterableWrapper.class --rw---- 2.0 fat 1329 bl 52% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JIteratorWrapper.class -rw---- 2.0 fat 15643 bl 72% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JListWrapper.class --rw---- 2.0 fat 1830 bl 58% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JMapWrapper.class --rw---- 2.0 fat 1986 bl 56% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JMapWrapperLike$$anon$5.class --rw---- 2.0 fat 12030 bl 66% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JMapWrapperLike.class --rw---- 2.0 fat 2251 bl 59% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JPropertiesWrapper$$anon$6.class --rw---- 2.0 fat 14389 bl 75% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JPropertiesWrapper.class --rw---- 2.0 fat 12561 bl 73% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JSetWrapper.class --rw---- 2.0 fat 2639 bl 60% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$MapWrapper$$anon$2$$anon$3$$anon$4.class --rw---- 2.0 fat 4170 bl 59% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$MapWrapper$$anon$2$$anon$3.class --rw---- 2.0 fat 1674 bl 60% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$MapWrapper$$anon$2.class --rw---- 2.0 fat 2310 bl 53% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$MapWrapper.class --rw---- 2.0 fat 3262 bl 65% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$MutableBufferWrapper.class --rw---- 2.0 fat 2326 bl 55% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$MutableMapWrapper.class --rw---- 2.0 fat 2828 bl 65% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$MutableSeqWrapper.class --rw---- 2.0 fat 1921 bl 55% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$MutableSetWrapper.class --rw---- 2.0 fat 2469 bl 65% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$SeqWrapper.class --rw---- 2.0 fat 2907 bl 55% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$SetWrapper$$anon$1.class --rw---- 2.0 fat 1738 bl 54% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$SetWrapper.class --rw---- 2.0 fat 13240 bl 37% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers.class --rw---- 2.0 fat 466 bl 35% defN 20100101.000002 scala/collection/convert/StreamExtensions$.class --rw---- 2.0 fat 1143 bl 56% defN 20100101.000002 scala/collection/convert/StreamExtensions$AccumulatorFactoryInfo$$anon$10.class --rw---- 2.0 fat 1149 bl 55% defN 20100101.000002 scala/collection/convert/StreamExtensions$AccumulatorFactoryInfo$$anon$11.class --rw---- 2.0 fat 1138 bl 55% defN 20100101.000002 scala/collection/convert/StreamExtensions$AccumulatorFactoryInfo$$anon$9.class --rw---- 2.0 fat 5508 bl 78% defN 20100101.000002 scala/collection/convert/StreamExtensions$AccumulatorFactoryInfo$.class --rw---- 2.0 fat 1305 bl 59% defN 20100101.000002 scala/collection/convert/StreamExtensions$AccumulatorFactoryInfo$anyAccumulatorFactoryInfoPrototype$.class --rw---- 2.0 fat 438 bl 44% defN 20100101.000002 scala/collection/convert/StreamExtensions$AccumulatorFactoryInfo.class --rw---- 2.0 fat 1533 bl 56% defN 20100101.000002 scala/collection/convert/StreamExtensions$AnyArrayHasSeqParStream.class --rw---- 2.0 fat 2513 bl 64% defN 20100101.000002 scala/collection/convert/StreamExtensions$ByteArrayHasSeqParStream.class --rw---- 2.0 fat 2513 bl 64% defN 20100101.000002 scala/collection/convert/StreamExtensions$CharArrayHasSeqParStream.class --rw---- 2.0 fat 1328 bl 54% defN 20100101.000002 scala/collection/convert/StreamExtensions$DoubleArrayHasSeqParStream.class --rw---- 2.0 fat 3496 bl 61% defN 20100101.000002 scala/collection/convert/StreamExtensions$DoubleStreamHasToScala.class --rw---- 2.0 fat 2530 bl 64% defN 20100101.000002 scala/collection/convert/StreamExtensions$FloatArrayHasSeqParStream.class --rw---- 2.0 fat 1307 bl 53% defN 20100101.000002 scala/collection/convert/StreamExtensions$IntArrayHasSeqParStream.class --rw---- 2.0 fat 3442 bl 60% defN 20100101.000002 scala/collection/convert/StreamExtensions$IntStreamHasToScala.class --rw---- 2.0 fat 2146 bl 61% defN 20100101.000002 scala/collection/convert/StreamExtensions$IterableHasSeqStream.class --rw---- 2.0 fat 2606 bl 62% defN 20100101.000002 scala/collection/convert/StreamExtensions$IterableNonGenericHasParStream.class --rw---- 2.0 fat 1314 bl 53% defN 20100101.000002 scala/collection/convert/StreamExtensions$LongArrayHasSeqParStream.class --rw---- 2.0 fat 3460 bl 60% defN 20100101.000002 scala/collection/convert/StreamExtensions$LongStreamHasToScala.class --rw---- 2.0 fat 1301 bl 60% defN 20100101.000002 scala/collection/convert/StreamExtensions$LowPriorityAccumulatorFactoryInfo$$anon$8.class --rw---- 2.0 fat 2146 bl 70% defN 20100101.000002 scala/collection/convert/StreamExtensions$LowPriorityAccumulatorFactoryInfo.class --rw---- 2.0 fat 3413 bl 70% defN 20100101.000002 scala/collection/convert/StreamExtensions$MapHasParKeyValueStream.class --rw---- 2.0 fat 3042 bl 68% defN 20100101.000002 scala/collection/convert/StreamExtensions$MapHasSeqKeyValueStream.class --rw---- 2.0 fat 2518 bl 64% defN 20100101.000002 scala/collection/convert/StreamExtensions$ShortArrayHasSeqParStream.class --rw---- 2.0 fat 2190 bl 59% defN 20100101.000002 scala/collection/convert/StreamExtensions$StepperHasParStream.class --rw---- 2.0 fat 2190 bl 59% defN 20100101.000002 scala/collection/convert/StreamExtensions$StepperHasSeqStream.class --rw---- 2.0 fat 4255 bl 62% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamHasToScala.class --rw---- 2.0 fat 1935 bl 61% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamShape$$anon$1.class --rw---- 2.0 fat 1948 bl 61% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamShape$$anon$2.class --rw---- 2.0 fat 1974 bl 61% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamShape$$anon$3.class --rw---- 2.0 fat 8210 bl 80% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamShape$.class --rw---- 2.0 fat 1248 bl 56% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamShape.class --rw---- 2.0 fat 2083 bl 64% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamShapeLowPriority1$$anon$4.class --rw---- 2.0 fat 2112 bl 69% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamShapeLowPriority1.class --rw---- 2.0 fat 2153 bl 58% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamUnboxer$$anon$5.class --rw---- 2.0 fat 2162 bl 58% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamUnboxer$$anon$6.class --rw---- 2.0 fat 2180 bl 58% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamUnboxer$$anon$7.class --rw---- 2.0 fat 3223 bl 74% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamUnboxer$.class --rw---- 2.0 fat 521 bl 44% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamUnboxer.class --rw---- 2.0 fat 2741 bl 65% defN 20100101.000002 scala/collection/convert/StreamExtensions$StringHasSeqParStream.class --rw---- 2.0 fat 30164 bl 57% defN 20100101.000002 scala/collection/convert/StreamExtensions.class --rw---- 2.0 fat 10680 bl 69% defN 20100101.000002 scala/collection/convert/ToJavaImplicits.class --rw---- 2.0 fat 8767 bl 67% defN 20100101.000002 scala/collection/convert/ToScalaImplicits.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/collection/convert/impl/ --rw---- 2.0 fat 1557 bl 56% defN 20100101.000002 scala/collection/convert/impl/AnyBinaryTreeStepper$.class --rw---- 2.0 fat 7559 bl 61% defN 20100101.000002 scala/collection/convert/impl/AnyBinaryTreeStepper.class --rw---- 2.0 fat 1224 bl 52% defN 20100101.000002 scala/collection/convert/impl/AnyChampStepper$.class --rw---- 2.0 fat 6595 bl 62% defN 20100101.000002 scala/collection/convert/impl/AnyChampStepper.class --rw---- 2.0 fat 5461 bl 62% defN 20100101.000002 scala/collection/convert/impl/AnyIndexedSeqStepper.class --rw---- 2.0 fat 6045 bl 61% defN 20100101.000002 scala/collection/convert/impl/AnyIteratorStepper.class --rw---- 2.0 fat 5360 bl 63% defN 20100101.000002 scala/collection/convert/impl/AnyNumericRangeStepper.class --rw---- 2.0 fat 5884 bl 61% defN 20100101.000002 scala/collection/convert/impl/AnyTableStepper.class --rw---- 2.0 fat 5377 bl 61% defN 20100101.000002 scala/collection/convert/impl/AnyVectorStepper.class --rw---- 2.0 fat 636 bl 40% defN 20100101.000002 scala/collection/convert/impl/BinaryTreeStepper$.class --rw---- 2.0 fat 717 bl 27% defN 20100101.000002 scala/collection/convert/impl/BinaryTreeStepper.class --rw---- 2.0 fat 6202 bl 45% defN 20100101.000002 scala/collection/convert/impl/BinaryTreeStepperBase.class --rw---- 2.0 fat 1207 bl 49% defN 20100101.000002 scala/collection/convert/impl/BitSetStepper$.class --rw---- 2.0 fat 9533 bl 56% defN 20100101.000002 scala/collection/convert/impl/BitSetStepper.class --rw---- 2.0 fat 5120 bl 63% defN 20100101.000002 scala/collection/convert/impl/BoxedBooleanArrayStepper.class --rw---- 2.0 fat 7336 bl 45% defN 20100101.000002 scala/collection/convert/impl/ChampStepperBase.class --rw---- 2.0 fat 5755 bl 63% defN 20100101.000002 scala/collection/convert/impl/CharStringStepper.class --rw---- 2.0 fat 6745 bl 60% defN 20100101.000002 scala/collection/convert/impl/CodePointStringStepper.class --rw---- 2.0 fat 5694 bl 64% defN 20100101.000002 scala/collection/convert/impl/DoubleArrayStepper.class +-rw---- 2.0 fat 1564 bl 34% defN 20100101.000002 scala/runtime/LazyUnit.class +-rw---- 2.0 fat 1564 bl 58% defN 20100101.000002 scala/collection/immutable/LongMap$$anon$2.class +-rw---- 2.0 fat 1566 bl 59% defN 20100101.000002 scala/concurrent/duration/DurationConversions$fromNowConvert$.class +-rw---- 2.0 fat 15679 bl 52% defN 20100101.000002 scala/collection/immutable/Vector2.class -rw---- 2.0 fat 1567 bl 57% defN 20100101.000002 scala/collection/convert/impl/DoubleBinaryTreeStepper$.class --rw---- 2.0 fat 8356 bl 62% defN 20100101.000002 scala/collection/convert/impl/DoubleBinaryTreeStepper.class --rw---- 2.0 fat 1234 bl 52% defN 20100101.000002 scala/collection/convert/impl/DoubleChampStepper$.class --rw---- 2.0 fat 7370 bl 63% defN 20100101.000002 scala/collection/convert/impl/DoubleChampStepper.class --rw---- 2.0 fat 6281 bl 63% defN 20100101.000002 scala/collection/convert/impl/DoubleIndexedSeqStepper.class --rw---- 2.0 fat 6562 bl 63% defN 20100101.000002 scala/collection/convert/impl/DoubleIteratorStepper.class --rw---- 2.0 fat 6772 bl 63% defN 20100101.000002 scala/collection/convert/impl/DoubleTableStepper.class --rw---- 2.0 fat 6041 bl 62% defN 20100101.000002 scala/collection/convert/impl/DoubleVectorStepper.class --rw---- 2.0 fat 2667 bl 40% defN 20100101.000002 scala/collection/convert/impl/InOrderStepperBase.class --rw---- 2.0 fat 2561 bl 40% defN 20100101.000002 scala/collection/convert/impl/IndexedStepperBase.class --rw---- 2.0 fat 5611 bl 64% defN 20100101.000002 scala/collection/convert/impl/IntArrayStepper.class --rw---- 2.0 fat 1549 bl 56% defN 20100101.000002 scala/collection/convert/impl/IntBinaryTreeStepper$.class --rw---- 2.0 fat 8250 bl 62% defN 20100101.000002 scala/collection/convert/impl/IntBinaryTreeStepper.class --rw---- 2.0 fat 1216 bl 52% defN 20100101.000002 scala/collection/convert/impl/IntChampStepper$.class --rw---- 2.0 fat 7240 bl 63% defN 20100101.000002 scala/collection/convert/impl/IntChampStepper.class --rw---- 2.0 fat 6192 bl 63% defN 20100101.000002 scala/collection/convert/impl/IntIndexedSeqStepper.class --rw---- 2.0 fat 6482 bl 62% defN 20100101.000002 scala/collection/convert/impl/IntIteratorStepper.class --rw---- 2.0 fat 6031 bl 64% defN 20100101.000002 scala/collection/convert/impl/IntNumericRangeStepper.class --rw---- 2.0 fat 6676 bl 63% defN 20100101.000002 scala/collection/convert/impl/IntTableStepper.class --rw---- 2.0 fat 5957 bl 62% defN 20100101.000002 scala/collection/convert/impl/IntVectorStepper.class --rw---- 2.0 fat 2868 bl 42% defN 20100101.000002 scala/collection/convert/impl/IteratorStepperBase.class --rw---- 2.0 fat 5643 bl 63% defN 20100101.000002 scala/collection/convert/impl/LongArrayStepper.class --rw---- 2.0 fat 1555 bl 57% defN 20100101.000002 scala/collection/convert/impl/LongBinaryTreeStepper$.class --rw---- 2.0 fat 8293 bl 62% defN 20100101.000002 scala/collection/convert/impl/LongBinaryTreeStepper.class --rw---- 2.0 fat 1222 bl 52% defN 20100101.000002 scala/collection/convert/impl/LongChampStepper$.class --rw---- 2.0 fat 7307 bl 63% defN 20100101.000002 scala/collection/convert/impl/LongChampStepper.class --rw---- 2.0 fat 6226 bl 62% defN 20100101.000002 scala/collection/convert/impl/LongIndexedSeqStepper.class --rw---- 2.0 fat 6503 bl 62% defN 20100101.000002 scala/collection/convert/impl/LongIteratorStepper.class --rw---- 2.0 fat 6065 bl 64% defN 20100101.000002 scala/collection/convert/impl/LongNumericRangeStepper.class --rw---- 2.0 fat 6715 bl 63% defN 20100101.000002 scala/collection/convert/impl/LongTableStepper.class --rw---- 2.0 fat 5990 bl 62% defN 20100101.000002 scala/collection/convert/impl/LongVectorStepper.class --rw---- 2.0 fat 5136 bl 62% defN 20100101.000002 scala/collection/convert/impl/ObjectArrayStepper.class --rw---- 2.0 fat 6143 bl 62% defN 20100101.000002 scala/collection/convert/impl/RangeStepper.class --rw---- 2.0 fat 4340 bl 42% defN 20100101.000002 scala/collection/convert/impl/TableStepperBase.class --rw---- 2.0 fat 3402 bl 44% defN 20100101.000002 scala/collection/convert/impl/VectorStepperBase.class --rw---- 2.0 fat 5676 bl 63% defN 20100101.000002 scala/collection/convert/impl/WidenedByteArrayStepper.class --rw---- 2.0 fat 5676 bl 63% defN 20100101.000002 scala/collection/convert/impl/WidenedCharArrayStepper.class --rw---- 2.0 fat 5749 bl 63% defN 20100101.000002 scala/collection/convert/impl/WidenedFloatArrayStepper.class --rw---- 2.0 fat 5683 bl 64% defN 20100101.000002 scala/collection/convert/impl/WidenedShortArrayStepper.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/collection/generic/ --rw---- 2.0 fat 457 bl 34% defN 20100101.000002 scala/collection/generic/BitOperations$.class --rw---- 2.0 fat 2708 bl 63% defN 20100101.000002 scala/collection/generic/BitOperations$Int$.class --rw---- 2.0 fat 6971 bl 62% defN 20100101.000002 scala/collection/generic/BitOperations$Int.class --rw---- 2.0 fat 2721 bl 63% defN 20100101.000002 scala/collection/generic/BitOperations$Long$.class --rw---- 2.0 fat 6041 bl 62% defN 20100101.000002 scala/collection/generic/BitOperations$Long.class --rw---- 2.0 fat 1913 bl 28% defN 20100101.000002 scala/collection/generic/BitOperations.class --rw---- 2.0 fat 2429 bl 50% defN 20100101.000002 scala/collection/generic/DefaultSerializable.class --rw---- 2.0 fat 5964 bl 49% defN 20100101.000002 scala/collection/generic/DefaultSerializationProxy.class --rw---- 2.0 fat 2433 bl 65% defN 20100101.000002 scala/collection/generic/IsIterable$$anon$1.class --rw---- 2.0 fat 2476 bl 66% defN 20100101.000002 scala/collection/generic/IsIterable$$anon$2.class --rw---- 2.0 fat 2221 bl 67% defN 20100101.000002 scala/collection/generic/IsIterable$.class --rw---- 2.0 fat 4805 bl 57% defN 20100101.000002 scala/collection/generic/IsIterable.class --rw---- 2.0 fat 2302 bl 54% defN 20100101.000002 scala/collection/generic/IsIterableLowPriority.class --rw---- 2.0 fat 1880 bl 60% defN 20100101.000002 scala/collection/generic/IsIterableOnce$$anon$1.class --rw---- 2.0 fat 1498 bl 60% defN 20100101.000002 scala/collection/generic/IsIterableOnce$.class --rw---- 2.0 fat 3818 bl 53% defN 20100101.000002 scala/collection/generic/IsIterableOnce.class --rw---- 2.0 fat 1626 bl 47% defN 20100101.000002 scala/collection/generic/IsIterableOnceLowPriority.class --rw---- 2.0 fat 2605 bl 66% defN 20100101.000002 scala/collection/generic/IsMap$$anon$1.class --rw---- 2.0 fat 2785 bl 67% defN 20100101.000002 scala/collection/generic/IsMap$$anon$2.class --rw---- 2.0 fat 3051 bl 70% defN 20100101.000002 scala/collection/generic/IsMap$$anon$3.class --rw---- 2.0 fat 3065 bl 70% defN 20100101.000002 scala/collection/generic/IsMap$$anon$4.class --rw---- 2.0 fat 3079 bl 70% defN 20100101.000002 scala/collection/generic/IsMap$$anon$5.class --rw---- 2.0 fat 3060 bl 70% defN 20100101.000002 scala/collection/generic/IsMap$$anon$6.class --rw---- 2.0 fat 2163 bl 68% defN 20100101.000002 scala/collection/generic/IsMap$.class --rw---- 2.0 fat 4240 bl 47% defN 20100101.000002 scala/collection/generic/IsMap.class --rw---- 2.0 fat 3169 bl 71% defN 20100101.000002 scala/collection/generic/IsSeq$$anon$1.class --rw---- 2.0 fat 2946 bl 69% defN 20100101.000002 scala/collection/generic/IsSeq$$anon$2.class --rw---- 2.0 fat 41348 bl 77% defN 20100101.000002 scala/collection/generic/IsSeq$$anon$3$$anon$4.class --rw---- 2.0 fat 3147 bl 70% defN 20100101.000002 scala/collection/generic/IsSeq$$anon$3.class --rw---- 2.0 fat 3220 bl 72% defN 20100101.000002 scala/collection/generic/IsSeq$$anon$5.class --rw---- 2.0 fat 42888 bl 77% defN 20100101.000002 scala/collection/generic/IsSeq$$anon$6$$anon$7.class --rw---- 2.0 fat 3057 bl 68% defN 20100101.000002 scala/collection/generic/IsSeq$$anon$6.class --rw---- 2.0 fat 3194 bl 70% defN 20100101.000002 scala/collection/generic/IsSeq$$anon$8.class --rw---- 2.0 fat 2698 bl 66% defN 20100101.000002 scala/collection/generic/IsSeq$.class --rw---- 2.0 fat 5613 bl 50% defN 20100101.000002 scala/collection/generic/IsSeq.class --rw---- 2.0 fat 2205 bl 57% defN 20100101.000002 scala/collection/generic/SerializeEnd$.class --rw---- 2.0 fat 2028 bl 40% defN 20100101.000002 scala/collection/generic/SerializeEnd.class --rw---- 2.0 fat 4150 bl 55% defN 20100101.000002 scala/collection/generic/Subtractable.class --rw---- 2.0 fat 439 bl 32% defN 20100101.000002 scala/collection/generic/package$.class --rw---- 2.0 fat 1284 bl 19% defN 20100101.000002 scala/collection/generic/package.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/collection/immutable/ --rw---- 2.0 fat 1950 bl 57% defN 20100101.000002 scala/collection/immutable/$colon$colon$.class --rw---- 2.0 fat 5356 bl 50% defN 20100101.000002 scala/collection/immutable/$colon$colon.class --rw---- 2.0 fat 6141 bl 71% defN 20100101.000002 scala/collection/immutable/AbstractMap.class --rw---- 2.0 fat 1474 bl 52% defN 20100101.000002 scala/collection/immutable/AbstractSeq.class --rw---- 2.0 fat 2915 bl 66% defN 20100101.000002 scala/collection/immutable/AbstractSet.class --rw---- 2.0 fat 2717 bl 58% defN 20100101.000002 scala/collection/immutable/AnyVectorStepper.class +-rw---- 2.0 fat 1567 bl 60% defN 20100101.000002 scala/collection/mutable/LinkedHashMap$$anon$1.class +-rw---- 2.0 fat 1569 bl 51% defN 20100101.000002 scala/concurrent/duration/package$DurationInt$.class +-rw---- 2.0 fat 15700 bl 58% defN 20100101.000002 scala/collection/mutable/Stack.class -rw---- 2.0 fat 15716 bl 70% defN 20100101.000002 scala/collection/immutable/ArraySeq$.class --rw---- 2.0 fat 5680 bl 61% defN 20100101.000002 scala/collection/immutable/ArraySeq$ofBoolean.class --rw---- 2.0 fat 5896 bl 60% defN 20100101.000002 scala/collection/immutable/ArraySeq$ofByte.class --rw---- 2.0 fat 6403 bl 61% defN 20100101.000002 scala/collection/immutable/ArraySeq$ofChar.class --rw---- 2.0 fat 5349 bl 61% defN 20100101.000002 scala/collection/immutable/ArraySeq$ofDouble.class --rw---- 2.0 fat 5344 bl 60% defN 20100101.000002 scala/collection/immutable/ArraySeq$ofFloat.class --rw---- 2.0 fat 5958 bl 60% defN 20100101.000002 scala/collection/immutable/ArraySeq$ofInt.class --rw---- 2.0 fat 6011 bl 61% defN 20100101.000002 scala/collection/immutable/ArraySeq$ofLong.class --rw---- 2.0 fat 4315 bl 59% defN 20100101.000002 scala/collection/immutable/ArraySeq$ofRef.class --rw---- 2.0 fat 5911 bl 60% defN 20100101.000002 scala/collection/immutable/ArraySeq$ofShort.class --rw---- 2.0 fat 3361 bl 58% defN 20100101.000002 scala/collection/immutable/ArraySeq$ofUnit.class --rw---- 2.0 fat 55967 bl 60% defN 20100101.000002 scala/collection/immutable/ArraySeq.class --rw---- 2.0 fat 2831 bl 40% defN 20100101.000002 scala/collection/immutable/BigVector.class --rw---- 2.0 fat 5425 bl 62% defN 20100101.000002 scala/collection/immutable/BitSet$.class --rw---- 2.0 fat 3710 bl 56% defN 20100101.000002 scala/collection/immutable/BitSet$BitSet1.class --rw---- 2.0 fat 4392 bl 57% defN 20100101.000002 scala/collection/immutable/BitSet$BitSet2.class --rw---- 2.0 fat 6871 bl 55% defN 20100101.000002 scala/collection/immutable/BitSet$BitSetN.class --rw---- 2.0 fat 1058 bl 50% defN 20100101.000002 scala/collection/immutable/BitSet$SerializationProxy.class --rw---- 2.0 fat 33444 bl 69% defN 20100101.000002 scala/collection/immutable/BitSet.class --rw---- 2.0 fat 37510 bl 50% defN 20100101.000002 scala/collection/immutable/BitmapIndexedMapNode.class --rw---- 2.0 fat 33838 bl 48% defN 20100101.000002 scala/collection/immutable/BitmapIndexedSetNode.class --rw---- 2.0 fat 4207 bl 45% defN 20100101.000002 scala/collection/immutable/ChampBaseIterator.class --rw---- 2.0 fat 3468 bl 43% defN 20100101.000002 scala/collection/immutable/ChampBaseReverseIterator.class --rw---- 2.0 fat 3951 bl 64% defN 20100101.000002 scala/collection/immutable/DoubleVectorStepper.class --rw---- 2.0 fat 25336 bl 56% defN 20100101.000002 scala/collection/immutable/HashCollisionMapNode.class --rw---- 2.0 fat 21354 bl 60% defN 20100101.000002 scala/collection/immutable/HashCollisionSetNode.class --rw---- 2.0 fat 3620 bl 65% defN 20100101.000002 scala/collection/immutable/HashMap$.class --rw---- 2.0 fat 16440 bl 70% defN 20100101.000002 scala/collection/immutable/HashMap$HashKeySet.class --rw---- 2.0 fat 8376 bl 69% defN 20100101.000002 scala/collection/immutable/HashMap$accum$1.class --rw---- 2.0 fat 50663 bl 61% defN 20100101.000002 scala/collection/immutable/HashMap.class --rw---- 2.0 fat 1914 bl 53% defN 20100101.000002 scala/collection/immutable/HashMapBuilder$$anon$1.class --rw---- 2.0 fat 16992 bl 56% defN 20100101.000002 scala/collection/immutable/HashMapBuilder.class --rw---- 2.0 fat 7899 bl 72% defN 20100101.000002 scala/collection/immutable/HashSet$.class --rw---- 2.0 fat 38367 bl 64% defN 20100101.000002 scala/collection/immutable/HashSet.class --rw---- 2.0 fat 1856 bl 53% defN 20100101.000002 scala/collection/immutable/HashSetBuilder$$anon$1.class --rw---- 2.0 fat 12683 bl 56% defN 20100101.000002 scala/collection/immutable/HashSetBuilder.class --rw---- 2.0 fat 1774 bl 56% defN 20100101.000002 scala/collection/immutable/IndexedSeq$.class --rw---- 2.0 fat 12170 bl 63% defN 20100101.000002 scala/collection/immutable/IndexedSeq.class --rw---- 2.0 fat 1021 bl 41% defN 20100101.000002 scala/collection/immutable/IndexedSeqDefaults$.class --rw---- 2.0 fat 733 bl 26% defN 20100101.000002 scala/collection/immutable/IndexedSeqDefaults.class --rw---- 2.0 fat 1799 bl 42% defN 20100101.000002 scala/collection/immutable/IndexedSeqOps.class +-rw---- 2.0 fat 1572 bl 58% defN 20100101.000002 scala/collection/convert/AsScalaExtensions$CollectionHasAsScala.class +-rw---- 2.0 fat 1574 bl 52% defN 20100101.000002 scala/reflect/ManifestFactory$AnyManifest.class +-rw---- 2.0 fat 1575 bl 53% defN 20100101.000002 scala/runtime/MethodHandleConstants.class +-rw---- 2.0 fat 15818 bl 70% defN 20100101.000002 scala/collection/immutable/Map$Map3.class +-rw---- 2.0 fat 1581 bl 58% defN 20100101.000002 scala/collection/convert/AsScalaExtensions$EnumerationHasAsScala.class +-rw---- 2.0 fat 1581 bl 62% defN 20100101.000002 scala/collection/ClassTagSeqFactory$AnySeqDelegate.class +-rw---- 2.0 fat 1584 bl 50% defN 20100101.000002 scala/reflect/ManifestFactory$PhantomManifest.class +-rw---- 2.0 fat 1584 bl 53% defN 20100101.000002 scala/util/matching/Regex$MatchIterator$$anon$3.class +-rw---- 2.0 fat 158619 bl 54% defN 20100101.000002 scala/jdk/FunctionWrappers.class +-rw---- 2.0 fat 1586 bl 30% defN 20100101.000002 scala/deprecated.class +-rw---- 2.0 fat 1587 bl 49% defN 20100101.000002 scala/collection/immutable/Range$$anon$3.class +-rw---- 2.0 fat 1588 bl 44% defN 20100101.000002 scala/collection/Iterator$$anon$22.class +-rw---- 2.0 fat 1589 bl 54% defN 20100101.000002 scala/sys/process/ProcessImpl$ProcessSequence$$anonfun$$lessinit$greater$3.class +-rw---- 2.0 fat 1591 bl 58% defN 20100101.000002 scala/collection/IterableFactory$.class +-rw---- 2.0 fat 15923 bl 47% defN 20100101.000002 scala/reflect/ManifestFactory.class +-rw---- 2.0 fat 1595 bl 51% defN 20100101.000002 scala/jdk/DurationConverters$JavaDurationOps$.class +-rw---- 2.0 fat 1596 bl 52% defN 20100101.000002 scala/reflect/ManifestFactory$NothingManifest.class +-rw---- 2.0 fat 1598 bl 52% defN 20100101.000002 scala/collection/mutable/MutationTracker$CheckedIterator.class +-rw---- 2.0 fat 1600 bl 42% defN 20100101.000002 scala/runtime/OrderedProxy.class +-rw---- 2.0 fat 1600 bl 53% defN 20100101.000002 scala/collection/immutable/LazyList$State$Empty$.class +-rw---- 2.0 fat 16011 bl 66% defN 20100101.000002 scala/collection/mutable/ListMap.class +-rw---- 2.0 fat 1601 bl 47% defN 20100101.000002 scala/collection/View$Tabulate.class +-rw---- 2.0 fat 1601 bl 56% defN 20100101.000002 scala/jdk/DurationConverters$JavaDurationOps.class -rw---- 2.0 fat 1601 bl 57% defN 20100101.000002 scala/collection/immutable/IntMap$$anon$1.class --rw---- 2.0 fat 1553 bl 58% defN 20100101.000002 scala/collection/immutable/IntMap$$anon$2.class --rw---- 2.0 fat 5506 bl 68% defN 20100101.000002 scala/collection/immutable/IntMap$.class --rw---- 2.0 fat 2359 bl 59% defN 20100101.000002 scala/collection/immutable/IntMap$Bin$.class --rw---- 2.0 fat 3957 bl 67% defN 20100101.000002 scala/collection/immutable/IntMap$Bin.class --rw---- 2.0 fat 2011 bl 55% defN 20100101.000002 scala/collection/immutable/IntMap$Nil$.class --rw---- 2.0 fat 1908 bl 54% defN 20100101.000002 scala/collection/immutable/IntMap$Tip$.class --rw---- 2.0 fat 2894 bl 61% defN 20100101.000002 scala/collection/immutable/IntMap$Tip.class --rw---- 2.0 fat 2651 bl 67% defN 20100101.000002 scala/collection/immutable/IntMap$ToBuildFrom$.class --rw---- 2.0 fat 2045 bl 59% defN 20100101.000002 scala/collection/immutable/IntMap$ToFactory$.class --rw---- 2.0 fat 41115 bl 61% defN 20100101.000002 scala/collection/immutable/IntMap.class --rw---- 2.0 fat 2010 bl 48% defN 20100101.000002 scala/collection/immutable/IntMapEntryIterator.class --rw---- 2.0 fat 3579 bl 44% defN 20100101.000002 scala/collection/immutable/IntMapIterator.class --rw---- 2.0 fat 1817 bl 45% defN 20100101.000002 scala/collection/immutable/IntMapKeyIterator.class --rw---- 2.0 fat 4275 bl 64% defN 20100101.000002 scala/collection/immutable/IntMapUtils$.class --rw---- 2.0 fat 3136 bl 53% defN 20100101.000002 scala/collection/immutable/IntMapUtils.class --rw---- 2.0 fat 1521 bl 46% defN 20100101.000002 scala/collection/immutable/IntMapValueIterator.class --rw---- 2.0 fat 3876 bl 63% defN 20100101.000002 scala/collection/immutable/IntVectorStepper.class +-rw---- 2.0 fat 1604 bl 55% defN 20100101.000002 scala/collection/mutable/LinkedHashSet$$anon$3.class +-rw---- 2.0 fat 1604 bl 56% defN 20100101.000002 scala/collection/mutable/OpenHashMap$OpenEntry.class +-rw---- 2.0 fat 1607 bl 60% defN 20100101.000002 scala/sys/process/BasicIO$Streamed.class +-rw---- 2.0 fat 1608 bl 59% defN 20100101.000002 scala/collection/mutable/OpenHashMap$$anon$1.class +-rw---- 2.0 fat 1609 bl 54% defN 20100101.000002 scala/collection/View$FlatMap.class +-rw---- 2.0 fat 1610 bl 36% defN 20100101.000002 scala/util/control/NoStackTrace.class +-rw---- 2.0 fat 1610 bl 58% defN 20100101.000002 scala/collection/convert/AsScalaExtensions$DictionaryHasAsScala.class +-rw---- 2.0 fat 1611 bl 49% defN 20100101.000002 scala/runtime/AbstractFunction5.class +-rw---- 2.0 fat 1611 bl 61% defN 20100101.000002 scala/sys/process/BasicIO$LazilyListed.class +-rw---- 2.0 fat 1613 bl 53% defN 20100101.000002 scala/collection/Iterator$$anon$3$$anon$4.class +-rw---- 2.0 fat 1613 bl 57% defN 20100101.000002 scala/collection/immutable/LongMap$$anon$1.class +-rw---- 2.0 fat 1614 bl 58% defN 20100101.000002 scala/collection/MapFactory$.class +-rw---- 2.0 fat 1615 bl 52% defN 20100101.000002 scala/collection/View$Appended.class +-rw---- 2.0 fat 1615 bl 54% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$CheckedIterator.class +-rw---- 2.0 fat 16178 bl 57% defN 20100101.000002 scala/concurrent/duration/Duration$.class +-rw---- 2.0 fat 1617 bl 53% defN 20100101.000002 scala/util/control/TailCalls$Done$.class +-rw---- 2.0 fat 1617 bl 56% defN 20100101.000002 scala/concurrent/duration/Duration$$anon$3.class +-rw---- 2.0 fat 1617 bl 57% defN 20100101.000002 scala/collection/View$LeftPartitionMapped.class +-rw---- 2.0 fat 1618 bl 52% defN 20100101.000002 scala/collection/View$Prepended.class +-rw---- 2.0 fat 1619 bl 57% defN 20100101.000002 scala/math/Integral$IntegralOps.class +-rw---- 2.0 fat 1622 bl 35% defN 20100101.000002 scala/throws.class +-rw---- 2.0 fat 16241 bl 58% defN 20100101.000002 scala/StringContext$.class +-rw---- 2.0 fat 1624 bl 57% defN 20100101.000002 scala/collection/View$RightPartitionMapped.class -rw---- 2.0 fat 1625 bl 54% defN 20100101.000002 scala/collection/immutable/Iterable$.class --rw---- 2.0 fat 8837 bl 65% defN 20100101.000002 scala/collection/immutable/Iterable.class --rw---- 2.0 fat 1299 bl 50% defN 20100101.000002 scala/collection/immutable/LazyList$$hash$colon$colon$.class --rw---- 2.0 fat 27852 bl 68% defN 20100101.000002 scala/collection/immutable/LazyList$.class --rw---- 2.0 fat 4850 bl 65% defN 20100101.000002 scala/collection/immutable/LazyList$Deferrer$.class --rw---- 2.0 fat 3958 bl 65% defN 20100101.000002 scala/collection/immutable/LazyList$Deferrer.class --rw---- 2.0 fat 648 bl 43% defN 20100101.000002 scala/collection/immutable/LazyList$LazyBuilder$.class --rw---- 2.0 fat 1506 bl 53% defN 20100101.000002 scala/collection/immutable/LazyList$LazyBuilder$DeferredState.class --rw---- 2.0 fat 9713 bl 70% defN 20100101.000002 scala/collection/immutable/LazyList$LazyBuilder.class --rw---- 2.0 fat 1453 bl 51% defN 20100101.000002 scala/collection/immutable/LazyList$LazyIterator.class --rw---- 2.0 fat 5859 bl 62% defN 20100101.000002 scala/collection/immutable/LazyList$SerializationProxy.class --rw---- 2.0 fat 2433 bl 52% defN 20100101.000002 scala/collection/immutable/LazyList$SlidingIterator.class --rw---- 2.0 fat 891 bl 45% defN 20100101.000002 scala/collection/immutable/LazyList$State$.class --rw---- 2.0 fat 1387 bl 58% defN 20100101.000002 scala/collection/immutable/LazyList$State$Cons.class --rw---- 2.0 fat 1600 bl 53% defN 20100101.000002 scala/collection/immutable/LazyList$State$Empty$.class --rw---- 2.0 fat 542 bl 46% defN 20100101.000002 scala/collection/immutable/LazyList$State.class --rw---- 2.0 fat 5447 bl 65% defN 20100101.000002 scala/collection/immutable/LazyList$WithFilter.class --rw---- 2.0 fat 3563 bl 62% defN 20100101.000002 scala/collection/immutable/LazyList$cons$.class --rw---- 2.0 fat 78304 bl 63% defN 20100101.000002 scala/collection/immutable/LazyList.class --rw---- 2.0 fat 1764 bl 55% defN 20100101.000002 scala/collection/immutable/LinearSeq$.class --rw---- 2.0 fat 9027 bl 66% defN 20100101.000002 scala/collection/immutable/LinearSeq.class --rw---- 2.0 fat 980 bl 41% defN 20100101.000002 scala/collection/immutable/LinearSeqOps.class --rw---- 2.0 fat 5412 bl 75% defN 20100101.000002 scala/collection/immutable/List$$anon$1.class --rw---- 2.0 fat 8782 bl 73% defN 20100101.000002 scala/collection/immutable/List$.class --rw---- 2.0 fat 49050 bl 63% defN 20100101.000002 scala/collection/immutable/List.class --rw---- 2.0 fat 2755 bl 60% defN 20100101.000002 scala/collection/immutable/ListMap$$anon$1.class --rw---- 2.0 fat 5142 bl 61% defN 20100101.000002 scala/collection/immutable/ListMap$.class --rw---- 2.0 fat 637 bl 42% defN 20100101.000002 scala/collection/immutable/ListMap$EmptyListMap$.class --rw---- 2.0 fat 8675 bl 62% defN 20100101.000002 scala/collection/immutable/ListMap$Node.class --rw---- 2.0 fat 18355 bl 63% defN 20100101.000002 scala/collection/immutable/ListMap.class --rw---- 2.0 fat 8474 bl 59% defN 20100101.000002 scala/collection/immutable/ListMapBuilder.class +-rw---- 2.0 fat 1625 bl 59% defN 20100101.000002 scala/collection/concurrent/INodeBase.class +-rw---- 2.0 fat 1626 bl 47% defN 20100101.000002 scala/collection/generic/IsIterableOnceLowPriority.class +-rw---- 2.0 fat 1630 bl 53% defN 20100101.000002 scala/collection/Iterator$$anon$3.class +-rw---- 2.0 fat 1632 bl 53% defN 20100101.000002 scala/collection/Iterator$$anon$3$$anon$4$$anon$5.class +-rw---- 2.0 fat 1633 bl 56% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$SequentialBuilder.class +-rw---- 2.0 fat 1635 bl 37% defN 20100101.000002 scala/sys/process/Parser.class +-rw---- 2.0 fat 1637 bl 32% defN 20100101.000002 scala/deprecatedOverriding.class +-rw---- 2.0 fat 1638 bl 54% defN 20100101.000002 scala/collection/View$Updated.class +-rw---- 2.0 fat 16396 bl 61% defN 20100101.000002 scala/collection/StringParsers$.class +-rw---- 2.0 fat 1639 bl 43% defN 20100101.000002 scala/StringContext$InvalidEscapeException.class +-rw---- 2.0 fat 1640 bl 45% defN 20100101.000002 scala/collection/Iterator$$anon$11.class +-rw---- 2.0 fat 16433 bl 53% defN 20100101.000002 scala/util/matching/Regex.class +-rw---- 2.0 fat 16440 bl 70% defN 20100101.000002 scala/collection/immutable/HashMap$HashKeySet.class +-rw---- 2.0 fat 1649 bl 45% defN 20100101.000002 scala/collection/Iterator$$anon$13.class +-rw---- 2.0 fat 1649 bl 58% defN 20100101.000002 scala/math/Ordering$CachedReverse.class +-rw---- 2.0 fat 1651 bl 53% defN 20100101.000002 scala/util/matching/Regex$$anon$1.class -rw---- 2.0 fat 1652 bl 57% defN 20100101.000002 scala/collection/immutable/ListSet$$anon$1.class --rw---- 2.0 fat 7591 bl 72% defN 20100101.000002 scala/collection/immutable/ListSet$.class --rw---- 2.0 fat 694 bl 43% defN 20100101.000002 scala/collection/immutable/ListSet$EmptyListSet$.class --rw---- 2.0 fat 5318 bl 63% defN 20100101.000002 scala/collection/immutable/ListSet$Node.class --rw---- 2.0 fat 19830 bl 68% defN 20100101.000002 scala/collection/immutable/ListSet.class --rw---- 2.0 fat 1613 bl 57% defN 20100101.000002 scala/collection/immutable/LongMap$$anon$1.class --rw---- 2.0 fat 1564 bl 58% defN 20100101.000002 scala/collection/immutable/LongMap$$anon$2.class --rw---- 2.0 fat 5540 bl 68% defN 20100101.000002 scala/collection/immutable/LongMap$.class --rw---- 2.0 fat 2374 bl 59% defN 20100101.000002 scala/collection/immutable/LongMap$Bin$.class --rw---- 2.0 fat 3989 bl 66% defN 20100101.000002 scala/collection/immutable/LongMap$Bin.class --rw---- 2.0 fat 2016 bl 55% defN 20100101.000002 scala/collection/immutable/LongMap$Nil$.class --rw---- 2.0 fat 1912 bl 54% defN 20100101.000002 scala/collection/immutable/LongMap$Tip$.class --rw---- 2.0 fat 2907 bl 60% defN 20100101.000002 scala/collection/immutable/LongMap$Tip.class --rw---- 2.0 fat 2664 bl 68% defN 20100101.000002 scala/collection/immutable/LongMap$ToBuildFrom$.class --rw---- 2.0 fat 2056 bl 59% defN 20100101.000002 scala/collection/immutable/LongMap$ToFactory$.class --rw---- 2.0 fat 40941 bl 61% defN 20100101.000002 scala/collection/immutable/LongMap.class --rw---- 2.0 fat 2025 bl 48% defN 20100101.000002 scala/collection/immutable/LongMapEntryIterator.class --rw---- 2.0 fat 3597 bl 44% defN 20100101.000002 scala/collection/immutable/LongMapIterator.class --rw---- 2.0 fat 1832 bl 46% defN 20100101.000002 scala/collection/immutable/LongMapKeyIterator.class --rw---- 2.0 fat 4319 bl 64% defN 20100101.000002 scala/collection/immutable/LongMapUtils$.class --rw---- 2.0 fat 3161 bl 53% defN 20100101.000002 scala/collection/immutable/LongMapUtils.class --rw---- 2.0 fat 1539 bl 45% defN 20100101.000002 scala/collection/immutable/LongMapValueIterator.class --rw---- 2.0 fat 3896 bl 63% defN 20100101.000002 scala/collection/immutable/LongVectorStepper.class --rw---- 2.0 fat 3091 bl 63% defN 20100101.000002 scala/collection/immutable/Map$.class --rw---- 2.0 fat 4924 bl 65% defN 20100101.000002 scala/collection/immutable/Map$EmptyMap$.class --rw---- 2.0 fat 13523 bl 71% defN 20100101.000002 scala/collection/immutable/Map$Map1.class --rw---- 2.0 fat 1334 bl 55% defN 20100101.000002 scala/collection/immutable/Map$Map2$$anon$1.class --rw---- 2.0 fat 1054 bl 51% defN 20100101.000002 scala/collection/immutable/Map$Map2$$anon$2.class --rw---- 2.0 fat 1056 bl 51% defN 20100101.000002 scala/collection/immutable/Map$Map2$$anon$3.class --rw---- 2.0 fat 2277 bl 56% defN 20100101.000002 scala/collection/immutable/Map$Map2$Map2Iterator.class --rw---- 2.0 fat 14811 bl 71% defN 20100101.000002 scala/collection/immutable/Map$Map2.class --rw---- 2.0 fat 1334 bl 55% defN 20100101.000002 scala/collection/immutable/Map$Map3$$anon$4.class --rw---- 2.0 fat 1054 bl 51% defN 20100101.000002 scala/collection/immutable/Map$Map3$$anon$5.class --rw---- 2.0 fat 1056 bl 51% defN 20100101.000002 scala/collection/immutable/Map$Map3$$anon$6.class --rw---- 2.0 fat 2417 bl 57% defN 20100101.000002 scala/collection/immutable/Map$Map3$Map3Iterator.class --rw---- 2.0 fat 15818 bl 70% defN 20100101.000002 scala/collection/immutable/Map$Map3.class --rw---- 2.0 fat 1334 bl 55% defN 20100101.000002 scala/collection/immutable/Map$Map4$$anon$7.class --rw---- 2.0 fat 1054 bl 51% defN 20100101.000002 scala/collection/immutable/Map$Map4$$anon$8.class --rw---- 2.0 fat 1056 bl 51% defN 20100101.000002 scala/collection/immutable/Map$Map4$$anon$9.class --rw---- 2.0 fat 2557 bl 58% defN 20100101.000002 scala/collection/immutable/Map$Map4$Map4Iterator.class --rw---- 2.0 fat 17547 bl 70% defN 20100101.000002 scala/collection/immutable/Map$Map4.class --rw---- 2.0 fat 6811 bl 68% defN 20100101.000002 scala/collection/immutable/Map$WithDefault.class --rw---- 2.0 fat 13146 bl 42% defN 20100101.000002 scala/collection/immutable/Map.class --rw---- 2.0 fat 8574 bl 62% defN 20100101.000002 scala/collection/immutable/MapBuilderImpl.class --rw---- 2.0 fat 29488 bl 77% defN 20100101.000002 scala/collection/immutable/MapKeyIterator.class --rw---- 2.0 fat 31148 bl 77% defN 20100101.000002 scala/collection/immutable/MapKeyValueTupleHashIterator.class --rw---- 2.0 fat 30574 bl 77% defN 20100101.000002 scala/collection/immutable/MapKeyValueTupleIterator.class --rw---- 2.0 fat 30618 bl 77% defN 20100101.000002 scala/collection/immutable/MapKeyValueTupleReverseIterator.class --rw---- 2.0 fat 1492 bl 55% defN 20100101.000002 scala/collection/immutable/MapNode$.class --rw---- 2.0 fat 6814 bl 51% defN 20100101.000002 scala/collection/immutable/MapNode.class --rw---- 2.0 fat 2532 bl 48% defN 20100101.000002 scala/collection/immutable/MapNodeRemoveAllSetNodeIterator.class --rw---- 2.0 fat 3323 bl 65% defN 20100101.000002 scala/collection/immutable/MapOps$ImmutableKeySet.class --rw---- 2.0 fat 9728 bl 56% defN 20100101.000002 scala/collection/immutable/MapOps.class --rw---- 2.0 fat 29498 bl 77% defN 20100101.000002 scala/collection/immutable/MapValueIterator.class --rw---- 2.0 fat 34883 bl 70% defN 20100101.000002 scala/collection/immutable/NewVectorIterator.class --rw---- 2.0 fat 3886 bl 63% defN 20100101.000002 scala/collection/immutable/Nil$.class --rw---- 2.0 fat 31184 bl 73% defN 20100101.000002 scala/collection/immutable/Nil.class --rw---- 2.0 fat 1506 bl 47% defN 20100101.000002 scala/collection/immutable/Node$.class --rw---- 2.0 fat 5157 bl 43% defN 20100101.000002 scala/collection/immutable/Node.class --rw---- 2.0 fat 9720 bl 60% defN 20100101.000002 scala/collection/immutable/NumericRange$.class --rw---- 2.0 fat 2230 bl 61% defN 20100101.000002 scala/collection/immutable/NumericRange$Exclusive.class --rw---- 2.0 fat 2218 bl 61% defN 20100101.000002 scala/collection/immutable/NumericRange$Inclusive.class --rw---- 2.0 fat 2662 bl 54% defN 20100101.000002 scala/collection/immutable/NumericRange$NumericRangeIterator.class --rw---- 2.0 fat 38911 bl 61% defN 20100101.000002 scala/collection/immutable/NumericRange.class --rw---- 2.0 fat 9977 bl 72% defN 20100101.000002 scala/collection/immutable/Queue$.class --rw---- 2.0 fat 769 bl 49% defN 20100101.000002 scala/collection/immutable/Queue$EmptyQueue$.class --rw---- 2.0 fat 34561 bl 66% defN 20100101.000002 scala/collection/immutable/Queue.class --rw---- 2.0 fat 1520 bl 49% defN 20100101.000002 scala/collection/immutable/Range$$anon$1.class --rw---- 2.0 fat 1525 bl 49% defN 20100101.000002 scala/collection/immutable/Range$$anon$2.class --rw---- 2.0 fat 1587 bl 49% defN 20100101.000002 scala/collection/immutable/Range$$anon$3.class --rw---- 2.0 fat 2799 bl 52% defN 20100101.000002 scala/collection/immutable/Range$.class --rw---- 2.0 fat 2399 bl 66% defN 20100101.000002 scala/collection/immutable/Range$BigDecimal$.class --rw---- 2.0 fat 2007 bl 64% defN 20100101.000002 scala/collection/immutable/Range$BigInt$.class --rw---- 2.0 fat 667 bl 39% defN 20100101.000002 scala/collection/immutable/Range$Exclusive.class --rw---- 2.0 fat 667 bl 39% defN 20100101.000002 scala/collection/immutable/Range$Inclusive.class --rw---- 2.0 fat 2034 bl 60% defN 20100101.000002 scala/collection/immutable/Range$Int$.class --rw---- 2.0 fat 2036 bl 60% defN 20100101.000002 scala/collection/immutable/Range$Long$.class --rw---- 2.0 fat 2027 bl 56% defN 20100101.000002 scala/collection/immutable/Range$Partial$.class +-rw---- 2.0 fat 1655 bl 54% defN 20100101.000002 scala/concurrent/duration/Duration$$anon$2.class +-rw---- 2.0 fat 1657 bl 54% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$CheckedReverseIterator.class +-rw---- 2.0 fat 1658 bl 53% defN 20100101.000002 scala/reflect/ManifestFactory$ObjectManifest.class +-rw---- 2.0 fat 1658 bl 61% defN 20100101.000002 scala/collection/Iterator$ConcatIteratorCell.class +-rw---- 2.0 fat 1660 bl 59% defN 20100101.000002 scala/collection/LinearSeqIterator$LazyCell.class +-rw---- 2.0 fat 1661 bl 51% defN 20100101.000002 scala/concurrent/BatchingExecutor$SyncBatch.class +-rw---- 2.0 fat 1663 bl 44% defN 20100101.000002 scala/collection/Iterator$$anon$12.class +-rw---- 2.0 fat 1666 bl 51% defN 20100101.000002 scala/collection/Iterator$$anon$16.class +-rw---- 2.0 fat 16698 bl 63% defN 20100101.000002 scala/Tuple12.class +-rw---- 2.0 fat 1670 bl 55% defN 20100101.000002 scala/collection/concurrent/INode$.class +-rw---- 2.0 fat 1672 bl 53% defN 20100101.000002 scala/Predef$ArrowAssoc.class +-rw---- 2.0 fat 1674 bl 60% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$MapWrapper$$anon$2.class +-rw---- 2.0 fat 1678 bl 53% defN 20100101.000002 scala/Tuple3$.class +-rw---- 2.0 fat 1679 bl 53% defN 20100101.000002 scala/reflect/ManifestFactory$AnyValPhantomManifest.class +-rw---- 2.0 fat 1679 bl 60% defN 20100101.000002 scala/collection/convert/AsJavaExtensions$ConcurrentMapHasAsJava.class +-rw---- 2.0 fat 1684 bl 49% defN 20100101.000002 scala/runtime/AbstractFunction6.class +-rw---- 2.0 fat 1686 bl 44% defN 20100101.000002 scala/specialized.class +-rw---- 2.0 fat 1686 bl 63% defN 20100101.000002 scala/concurrent/impl/Promise$ManyCallbacks.class +-rw---- 2.0 fat 1687 bl 44% defN 20100101.000002 scala/collection/Iterator$$anon$6.class +-rw---- 2.0 fat 1691 bl 37% defN 20100101.000002 scala/sys/ShutdownHookThread.class +-rw---- 2.0 fat 1691 bl 56% defN 20100101.000002 scala/jdk/OptionShape$$anon$2.class +-rw---- 2.0 fat 1691 bl 65% defN 20100101.000002 scala/collection/mutable/CollisionProofHashMap$$anon$1.class +-rw---- 2.0 fat 1693 bl 55% defN 20100101.000002 scala/collection/immutable/WrappedString$UnwrapOp.class +-rw---- 2.0 fat 1694 bl 62% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$Ordering$Iterator$.class +-rw---- 2.0 fat 1697 bl 53% defN 20100101.000002 scala/util/ChainingOps$.class +-rw---- 2.0 fat 16988 bl 56% defN 20100101.000002 scala/collection/immutable/HashMapBuilder.class +-rw---- 2.0 fat 1700 bl 56% defN 20100101.000002 scala/jdk/OptionShape$$anon$3.class +-rw---- 2.0 fat 1701 bl 61% defN 20100101.000002 scala/collection/convert/AsScalaExtensions$ConcurrentMapHasAsScala.class +-rw---- 2.0 fat 1702 bl 51% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JIteratorWrapper.class +-rw---- 2.0 fat 1704 bl 52% defN 20100101.000002 scala/Predef$ArrowAssoc$.class -rw---- 2.0 fat 1704 bl 54% defN 20100101.000002 scala/collection/immutable/Range$Partial.class --rw---- 2.0 fat 43808 bl 60% defN 20100101.000002 scala/collection/immutable/Range.class --rw---- 2.0 fat 3300 bl 37% defN 20100101.000002 scala/collection/immutable/RangeIterator.class --rw---- 2.0 fat 44203 bl 67% defN 20100101.000002 scala/collection/immutable/RedBlackTree$.class --rw---- 2.0 fat 1858 bl 60% defN 20100101.000002 scala/collection/immutable/RedBlackTree$EntriesIterator.class --rw---- 2.0 fat 4840 bl 64% defN 20100101.000002 scala/collection/immutable/RedBlackTree$EqualsIterator.class --rw---- 2.0 fat 3664 bl 58% defN 20100101.000002 scala/collection/immutable/RedBlackTree$Helper.class --rw---- 2.0 fat 1476 bl 58% defN 20100101.000002 scala/collection/immutable/RedBlackTree$KeysIterator.class --rw---- 2.0 fat 2440 bl 62% defN 20100101.000002 scala/collection/immutable/RedBlackTree$MapHelper.class --rw---- 2.0 fat 2392 bl 60% defN 20100101.000002 scala/collection/immutable/RedBlackTree$SetHelper.class --rw---- 2.0 fat 11376 bl 68% defN 20100101.000002 scala/collection/immutable/RedBlackTree$Tree.class --rw---- 2.0 fat 5449 bl 63% defN 20100101.000002 scala/collection/immutable/RedBlackTree$TreeIterator.class --rw---- 2.0 fat 1484 bl 59% defN 20100101.000002 scala/collection/immutable/RedBlackTree$ValuesIterator.class --rw---- 2.0 fat 3354 bl 59% defN 20100101.000002 scala/collection/immutable/RedBlackTree$partitioner$1$.class --rw---- 2.0 fat 32777 bl 51% defN 20100101.000002 scala/collection/immutable/RedBlackTree.class +-rw---- 2.0 fat 17058 bl 76% defN 20100101.000002 scala/collection/mutable/SortedMap$WithDefault.class +-rw---- 2.0 fat 1705 bl 52% defN 20100101.000002 scala/collection/View$ScanLeft.class +-rw---- 2.0 fat 1713 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcJJ$sp.class +-rw---- 2.0 fat 1716 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcII$sp.class +-rw---- 2.0 fat 1717 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcFF$sp.class +-rw---- 2.0 fat 1718 bl 56% defN 20100101.000002 scala/jdk/OptionShape$$anon$1.class +-rw---- 2.0 fat 1721 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcDD$sp.class +-rw---- 2.0 fat 17228 bl 70% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$AbstractBuilder.class +-rw---- 2.0 fat 1724 bl 54% defN 20100101.000002 scala/jdk/DurationConverters$ScalaDurationOps$.class +-rw---- 2.0 fat 1724 bl 60% defN 20100101.000002 scala/collection/SortedMapOps$GenKeySortedSet.class +-rw---- 2.0 fat 1725 bl 52% defN 20100101.000002 scala/reflect/ManifestFactory$NullManifest.class +-rw---- 2.0 fat 1726 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcJI$sp.class +-rw---- 2.0 fat 1726 bl 42% defN 20100101.000002 scala/runtime/java8/JFunction1$mcVI$sp.class -rw---- 2.0 fat 1728 bl 55% defN 20100101.000002 scala/collection/immutable/Seq$.class --rw---- 2.0 fat 9272 bl 66% defN 20100101.000002 scala/collection/immutable/Seq.class --rw---- 2.0 fat 3020 bl 65% defN 20100101.000002 scala/collection/immutable/SeqMap$.class --rw---- 2.0 fat 51389 bl 79% defN 20100101.000002 scala/collection/immutable/SeqMap$EmptySeqMap$.class --rw---- 2.0 fat 49249 bl 77% defN 20100101.000002 scala/collection/immutable/SeqMap$SeqMap1.class --rw---- 2.0 fat 49751 bl 77% defN 20100101.000002 scala/collection/immutable/SeqMap$SeqMap2.class --rw---- 2.0 fat 50311 bl 77% defN 20100101.000002 scala/collection/immutable/SeqMap$SeqMap3.class --rw---- 2.0 fat 52491 bl 77% defN 20100101.000002 scala/collection/immutable/SeqMap$SeqMap4.class --rw---- 2.0 fat 6205 bl 68% defN 20100101.000002 scala/collection/immutable/SeqMap$SeqMapBuilderImpl.class --rw---- 2.0 fat 7368 bl 36% defN 20100101.000002 scala/collection/immutable/SeqMap.class --rw---- 2.0 fat 645 bl 29% defN 20100101.000002 scala/collection/immutable/SeqOps.class --rw---- 2.0 fat 7568 bl 72% defN 20100101.000002 scala/collection/immutable/Set$.class --rw---- 2.0 fat 4963 bl 70% defN 20100101.000002 scala/collection/immutable/Set$EmptySet$.class --rw---- 2.0 fat 10806 bl 73% defN 20100101.000002 scala/collection/immutable/Set$Set1.class --rw---- 2.0 fat 1085 bl 48% defN 20100101.000002 scala/collection/immutable/Set$Set2$$anon$1.class --rw---- 2.0 fat 11566 bl 71% defN 20100101.000002 scala/collection/immutable/Set$Set2.class --rw---- 2.0 fat 1085 bl 48% defN 20100101.000002 scala/collection/immutable/Set$Set3$$anon$2.class --rw---- 2.0 fat 12035 bl 71% defN 20100101.000002 scala/collection/immutable/Set$Set3.class --rw---- 2.0 fat 1085 bl 48% defN 20100101.000002 scala/collection/immutable/Set$Set4$$anon$3.class --rw---- 2.0 fat 13459 bl 70% defN 20100101.000002 scala/collection/immutable/Set$Set4.class --rw---- 2.0 fat 1874 bl 48% defN 20100101.000002 scala/collection/immutable/Set$SetNIterator.class --rw---- 2.0 fat 13732 bl 54% defN 20100101.000002 scala/collection/immutable/Set.class --rw---- 2.0 fat 6779 bl 63% defN 20100101.000002 scala/collection/immutable/SetBuilderImpl.class --rw---- 2.0 fat 30506 bl 77% defN 20100101.000002 scala/collection/immutable/SetHashIterator.class --rw---- 2.0 fat 29441 bl 77% defN 20100101.000002 scala/collection/immutable/SetIterator.class --rw---- 2.0 fat 1421 bl 53% defN 20100101.000002 scala/collection/immutable/SetNode$.class --rw---- 2.0 fat 4176 bl 48% defN 20100101.000002 scala/collection/immutable/SetNode.class --rw---- 2.0 fat 4902 bl 59% defN 20100101.000002 scala/collection/immutable/SetOps.class --rw---- 2.0 fat 29485 bl 77% defN 20100101.000002 scala/collection/immutable/SetReverseIterator.class --rw---- 2.0 fat 2179 bl 53% defN 20100101.000002 scala/collection/immutable/SortedMap$.class --rw---- 2.0 fat 18456 bl 77% defN 20100101.000002 scala/collection/immutable/SortedMap$WithDefault.class --rw---- 2.0 fat 6549 bl 51% defN 20100101.000002 scala/collection/immutable/SortedMap.class --rw---- 2.0 fat 12285 bl 75% defN 20100101.000002 scala/collection/immutable/SortedMapOps$ImmutableKeySortedSet.class --rw---- 2.0 fat 7757 bl 54% defN 20100101.000002 scala/collection/immutable/SortedMapOps.class --rw---- 2.0 fat 2289 bl 55% defN 20100101.000002 scala/collection/immutable/SortedSet$.class --rw---- 2.0 fat 4835 bl 58% defN 20100101.000002 scala/collection/immutable/SortedSet.class --rw---- 2.0 fat 1107 bl 44% defN 20100101.000002 scala/collection/immutable/SortedSetOps.class --rw---- 2.0 fat 1242 bl 49% defN 20100101.000002 scala/collection/immutable/Stream$$hash$colon$colon$.class --rw---- 2.0 fat 14643 bl 70% defN 20100101.000002 scala/collection/immutable/Stream$.class --rw---- 2.0 fat 2280 bl 55% defN 20100101.000002 scala/collection/immutable/Stream$Cons.class --rw---- 2.0 fat 3987 bl 62% defN 20100101.000002 scala/collection/immutable/Stream$Deferrer$.class --rw---- 2.0 fat 3960 bl 62% defN 20100101.000002 scala/collection/immutable/Stream$Deferrer.class --rw---- 2.0 fat 1771 bl 58% defN 20100101.000002 scala/collection/immutable/Stream$Empty$.class --rw---- 2.0 fat 2689 bl 53% defN 20100101.000002 scala/collection/immutable/Stream$SerializationProxy.class --rw---- 2.0 fat 7998 bl 62% defN 20100101.000002 scala/collection/immutable/Stream$WithFilter.class --rw---- 2.0 fat 1557 bl 57% defN 20100101.000002 scala/collection/immutable/Stream$cons$.class --rw---- 2.0 fat 44074 bl 59% defN 20100101.000002 scala/collection/immutable/Stream.class --rw---- 2.0 fat 2597 bl 49% defN 20100101.000002 scala/collection/immutable/StrictOptimizedMapOps.class --rw---- 2.0 fat 6378 bl 50% defN 20100101.000002 scala/collection/immutable/StrictOptimizedSeqOps.class --rw---- 2.0 fat 2315 bl 48% defN 20100101.000002 scala/collection/immutable/StrictOptimizedSetOps.class --rw---- 2.0 fat 3084 bl 52% defN 20100101.000002 scala/collection/immutable/StrictOptimizedSortedMapOps.class --rw---- 2.0 fat 1199 bl 46% defN 20100101.000002 scala/collection/immutable/StrictOptimizedSortedSetOps.class --rw---- 2.0 fat 5092 bl 64% defN 20100101.000002 scala/collection/immutable/TreeMap$.class --rw---- 2.0 fat 7656 bl 72% defN 20100101.000002 scala/collection/immutable/TreeMap$Adder.class --rw---- 2.0 fat 2342 bl 60% defN 20100101.000002 scala/collection/immutable/TreeMap$TreeMapBuilder$adder$.class --rw---- 2.0 fat 7770 bl 69% defN 20100101.000002 scala/collection/immutable/TreeMap$TreeMapBuilder.class --rw---- 2.0 fat 52262 bl 67% defN 20100101.000002 scala/collection/immutable/TreeMap.class --rw---- 2.0 fat 2357 bl 58% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$$anon$1.class --rw---- 2.0 fat 1560 bl 57% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$$anon$2.class --rw---- 2.0 fat 2437 bl 58% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$$anon$3.class --rw---- 2.0 fat 6217 bl 69% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$.class --rw---- 2.0 fat 8378 bl 67% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$Builder.class --rw---- 2.0 fat 725 bl 47% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$OrderBy$.class --rw---- 2.0 fat 2365 bl 58% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$OrderBy$Insertion$.class --rw---- 2.0 fat 2377 bl 59% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$OrderBy$Modification$.class --rw---- 2.0 fat 263 bl 32% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$OrderBy.class --rw---- 2.0 fat 5712 bl 64% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$Ordering$.class --rw---- 2.0 fat 2745 bl 63% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$Ordering$Bin$.class --rw---- 2.0 fat 6628 bl 64% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$Ordering$Bin.class --rw---- 2.0 fat 1694 bl 62% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$Ordering$Iterator$.class --rw---- 2.0 fat 2537 bl 52% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$Ordering$Iterator.class --rw---- 2.0 fat 2093 bl 56% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$Ordering$Tip$.class --rw---- 2.0 fat 4858 bl 59% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$Ordering$Tip.class --rw---- 2.0 fat 3203 bl 58% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$Ordering$Zero$.class --rw---- 2.0 fat 13495 bl 61% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$Ordering.class --rw---- 2.0 fat 38184 bl 57% defN 20100101.000002 scala/collection/immutable/TreeSeqMap.class --rw---- 2.0 fat 6816 bl 65% defN 20100101.000002 scala/collection/immutable/TreeSet$.class --rw---- 2.0 fat 6577 bl 69% defN 20100101.000002 scala/collection/immutable/TreeSet$TreeSetBuilder.class --rw---- 2.0 fat 2328 bl 60% defN 20100101.000002 scala/collection/immutable/TreeSet$sub$1$.class --rw---- 2.0 fat 42008 bl 67% defN 20100101.000002 scala/collection/immutable/TreeSet.class --rw---- 2.0 fat 10880 bl 70% defN 20100101.000002 scala/collection/immutable/Vector$.class --rw---- 2.0 fat 43811 bl 64% defN 20100101.000002 scala/collection/immutable/Vector.class --rw---- 2.0 fat 5530 bl 65% defN 20100101.000002 scala/collection/immutable/Vector0$.class --rw---- 2.0 fat 30040 bl 72% defN 20100101.000002 scala/collection/immutable/Vector0.class --rw---- 2.0 fat 7534 bl 53% defN 20100101.000002 scala/collection/immutable/Vector1.class --rw---- 2.0 fat 15679 bl 52% defN 20100101.000002 scala/collection/immutable/Vector2.class --rw---- 2.0 fat 23584 bl 54% defN 20100101.000002 scala/collection/immutable/Vector3.class --rw---- 2.0 fat 28019 bl 52% defN 20100101.000002 scala/collection/immutable/Vector4.class --rw---- 2.0 fat 32548 bl 50% defN 20100101.000002 scala/collection/immutable/Vector5.class --rw---- 2.0 fat 38584 bl 49% defN 20100101.000002 scala/collection/immutable/Vector6.class --rw---- 2.0 fat 29892 bl 53% defN 20100101.000002 scala/collection/immutable/VectorBuilder.class --rw---- 2.0 fat 1766 bl 38% defN 20100101.000002 scala/collection/immutable/VectorImpl.class --rw---- 2.0 fat 6638 bl 61% defN 20100101.000002 scala/collection/immutable/VectorInline$.class --rw---- 2.0 fat 6904 bl 49% defN 20100101.000002 scala/collection/immutable/VectorInline.class --rw---- 2.0 fat 2763 bl 45% defN 20100101.000002 scala/collection/immutable/VectorIterator.class --rw---- 2.0 fat 2351 bl 48% defN 20100101.000002 scala/collection/immutable/VectorMap$$anon$1.class --rw---- 2.0 fat 31639 bl 77% defN 20100101.000002 scala/collection/immutable/VectorMap$$anon$2.class --rw---- 2.0 fat 3527 bl 66% defN 20100101.000002 scala/collection/immutable/VectorMap$.class --rw---- 2.0 fat 2090 bl 56% defN 20100101.000002 scala/collection/immutable/VectorMap$Tombstone$.class --rw---- 2.0 fat 2820 bl 57% defN 20100101.000002 scala/collection/immutable/VectorMap$Tombstone.class --rw---- 2.0 fat 25802 bl 62% defN 20100101.000002 scala/collection/immutable/VectorMap.class --rw---- 2.0 fat 6974 bl 62% defN 20100101.000002 scala/collection/immutable/VectorMapBuilder.class --rw---- 2.0 fat 17358 bl 57% defN 20100101.000002 scala/collection/immutable/VectorSliceBuilder.class --rw---- 2.0 fat 9861 bl 58% defN 20100101.000002 scala/collection/immutable/VectorStatics$.class --rw---- 2.0 fat 5470 bl 52% defN 20100101.000002 scala/collection/immutable/VectorStatics.class --rw---- 2.0 fat 4905 bl 59% defN 20100101.000002 scala/collection/immutable/VectorStepperBase.class --rw---- 2.0 fat 4942 bl 63% defN 20100101.000002 scala/collection/immutable/WrappedString$.class +-rw---- 2.0 fat 1729 bl 42% defN 20100101.000002 scala/runtime/java8/JFunction1$mcVJ$sp.class +-rw---- 2.0 fat 1730 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcFI$sp.class +-rw---- 2.0 fat 1731 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcJF$sp.class +-rw---- 2.0 fat 1731 bl 42% defN 20100101.000002 scala/runtime/java8/JFunction1$mcVF$sp.class +-rw---- 2.0 fat 1732 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcFJ$sp.class +-rw---- 2.0 fat 1733 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcDI$sp.class +-rw---- 2.0 fat 1733 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcIJ$sp.class +-rw---- 2.0 fat 1733 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcJD$sp.class +-rw---- 2.0 fat 1733 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcVD$sp.class +-rw---- 2.0 fat 17350 bl 57% defN 20100101.000002 scala/collection/immutable/VectorSliceBuilder.class +-rw---- 2.0 fat 1735 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcDJ$sp.class +-rw---- 2.0 fat 1736 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcFD$sp.class +-rw---- 2.0 fat 1736 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcIF$sp.class +-rw---- 2.0 fat 1736 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcZI$sp.class +-rw---- 2.0 fat 1737 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcDF$sp.class +-rw---- 2.0 fat 1738 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcID$sp.class +-rw---- 2.0 fat 1738 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcZJ$sp.class +-rw---- 2.0 fat 1738 bl 55% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$SetWrapper.class +-rw---- 2.0 fat 17394 bl 75% defN 20100101.000002 scala/collection/AbstractMap.class +-rw---- 2.0 fat 1740 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcZF$sp.class +-rw---- 2.0 fat 1742 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcZD$sp.class +-rw---- 2.0 fat 17432 bl 74% defN 20100101.000002 scala/concurrent/impl/FutureConvertersImpl$CF.class +-rw---- 2.0 fat 1745 bl 56% defN 20100101.000002 scala/collection/LazyZip2$$anon$7.class +-rw---- 2.0 fat 1745 bl 61% defN 20100101.000002 scala/collection/StepperShape$$anon$1.class +-rw---- 2.0 fat 1747 bl 46% defN 20100101.000002 scala/collection/Iterator$$anon$23.class +-rw---- 2.0 fat 1748 bl 61% defN 20100101.000002 scala/collection/StepperShape$$anon$7.class +-rw---- 2.0 fat 1749 bl 48% defN 20100101.000002 scala/collection/View$Updated$$anon$4.class +-rw---- 2.0 fat 1751 bl 61% defN 20100101.000002 scala/collection/StepperShape$$anon$3.class +-rw---- 2.0 fat 1752 bl 47% defN 20100101.000002 scala/collection/immutable/IntMapKeyIterator.class -rw---- 2.0 fat 1752 bl 54% defN 20100101.000002 scala/collection/immutable/WrappedString$UnwrapOp$.class --rw---- 2.0 fat 1693 bl 55% defN 20100101.000002 scala/collection/immutable/WrappedString$UnwrapOp.class --rw---- 2.0 fat 20084 bl 60% defN 20100101.000002 scala/collection/immutable/WrappedString.class --rw---- 2.0 fat 1147 bl 53% defN 20100101.000002 scala/collection/immutable/package$.class --rw---- 2.0 fat 1430 bl 29% defN 20100101.000002 scala/collection/immutable/package.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/collection/mutable/ --rw---- 2.0 fat 8634 bl 75% defN 20100101.000002 scala/collection/mutable/AbstractBuffer.class --rw---- 2.0 fat 1170 bl 46% defN 20100101.000002 scala/collection/mutable/AbstractIterable.class --rw---- 2.0 fat 11400 bl 75% defN 20100101.000002 scala/collection/mutable/AbstractMap.class --rw---- 2.0 fat 2036 bl 56% defN 20100101.000002 scala/collection/mutable/AbstractSeq.class --rw---- 2.0 fat 8018 bl 73% defN 20100101.000002 scala/collection/mutable/AbstractSet.class --rw---- 2.0 fat 1297 bl 55% defN 20100101.000002 scala/collection/mutable/AnyRefMap$$anon$1.class --rw---- 2.0 fat 1017 bl 51% defN 20100101.000002 scala/collection/mutable/AnyRefMap$$anon$2.class --rw---- 2.0 fat 1019 bl 51% defN 20100101.000002 scala/collection/mutable/AnyRefMap$$anon$3.class --rw---- 2.0 fat 8468 bl 65% defN 20100101.000002 scala/collection/mutable/AnyRefMap$.class --rw---- 2.0 fat 4952 bl 69% defN 20100101.000002 scala/collection/mutable/AnyRefMap$AnyRefMapBuilder.class --rw---- 2.0 fat 1926 bl 49% defN 20100101.000002 scala/collection/mutable/AnyRefMap$AnyRefMapIterator.class --rw---- 2.0 fat 5847 bl 73% defN 20100101.000002 scala/collection/mutable/AnyRefMap$ExceptionDefault.class --rw---- 2.0 fat 3122 bl 71% defN 20100101.000002 scala/collection/mutable/AnyRefMap$ToBuildFrom$.class --rw---- 2.0 fat 2140 bl 61% defN 20100101.000002 scala/collection/mutable/AnyRefMap$ToFactory$.class --rw---- 2.0 fat 40622 bl 58% defN 20100101.000002 scala/collection/mutable/AnyRefMap.class --rw---- 2.0 fat 1065 bl 50% defN 20100101.000002 scala/collection/mutable/ArrayBuffer$$anon$1.class --rw---- 2.0 fat 10884 bl 67% defN 20100101.000002 scala/collection/mutable/ArrayBuffer$.class --rw---- 2.0 fat 43775 bl 64% defN 20100101.000002 scala/collection/mutable/ArrayBuffer.class --rw---- 2.0 fat 798 bl 43% defN 20100101.000002 scala/collection/mutable/ArrayBufferView$$anon$2.class --rw---- 2.0 fat 1106 bl 48% defN 20100101.000002 scala/collection/mutable/ArrayBufferView$$anonfun$$lessinit$greater$1.class --rw---- 2.0 fat 11620 bl 61% defN 20100101.000002 scala/collection/mutable/ArrayBufferView.class --rw---- 2.0 fat 2665 bl 58% defN 20100101.000002 scala/collection/mutable/ArrayBuilder$.class --rw---- 2.0 fat 2475 bl 50% defN 20100101.000002 scala/collection/mutable/ArrayBuilder$ofBoolean.class --rw---- 2.0 fat 2481 bl 51% defN 20100101.000002 scala/collection/mutable/ArrayBuilder$ofByte.class --rw---- 2.0 fat 2481 bl 51% defN 20100101.000002 scala/collection/mutable/ArrayBuilder$ofChar.class --rw---- 2.0 fat 2493 bl 51% defN 20100101.000002 scala/collection/mutable/ArrayBuilder$ofDouble.class --rw---- 2.0 fat 2487 bl 51% defN 20100101.000002 scala/collection/mutable/ArrayBuilder$ofFloat.class --rw---- 2.0 fat 2471 bl 51% defN 20100101.000002 scala/collection/mutable/ArrayBuilder$ofInt.class --rw---- 2.0 fat 2477 bl 51% defN 20100101.000002 scala/collection/mutable/ArrayBuilder$ofLong.class --rw---- 2.0 fat 3021 bl 55% defN 20100101.000002 scala/collection/mutable/ArrayBuilder$ofRef.class --rw---- 2.0 fat 2487 bl 50% defN 20100101.000002 scala/collection/mutable/ArrayBuilder$ofShort.class --rw---- 2.0 fat 3260 bl 60% defN 20100101.000002 scala/collection/mutable/ArrayBuilder$ofUnit.class --rw---- 2.0 fat 13381 bl 50% defN 20100101.000002 scala/collection/mutable/ArrayBuilder.class --rw---- 2.0 fat 1095 bl 51% defN 20100101.000002 scala/collection/mutable/ArrayDeque$$anon$1.class --rw---- 2.0 fat 10331 bl 68% defN 20100101.000002 scala/collection/mutable/ArrayDeque$.class --rw---- 2.0 fat 54545 bl 64% defN 20100101.000002 scala/collection/mutable/ArrayDeque.class --rw---- 2.0 fat 8744 bl 51% defN 20100101.000002 scala/collection/mutable/ArrayDequeOps.class --rw---- 2.0 fat 14468 bl 70% defN 20100101.000002 scala/collection/mutable/ArraySeq$.class --rw---- 2.0 fat 3370 bl 57% defN 20100101.000002 scala/collection/mutable/ArraySeq$ofBoolean.class --rw---- 2.0 fat 3767 bl 56% defN 20100101.000002 scala/collection/mutable/ArraySeq$ofByte.class --rw---- 2.0 fat 4816 bl 55% defN 20100101.000002 scala/collection/mutable/ArraySeq$ofChar.class --rw---- 2.0 fat 3900 bl 57% defN 20100101.000002 scala/collection/mutable/ArraySeq$ofDouble.class --rw---- 2.0 fat 3896 bl 57% defN 20100101.000002 scala/collection/mutable/ArraySeq$ofFloat.class --rw---- 2.0 fat 3815 bl 57% defN 20100101.000002 scala/collection/mutable/ArraySeq$ofInt.class --rw---- 2.0 fat 3868 bl 57% defN 20100101.000002 scala/collection/mutable/ArraySeq$ofLong.class --rw---- 2.0 fat 3484 bl 56% defN 20100101.000002 scala/collection/mutable/ArraySeq$ofRef.class --rw---- 2.0 fat 3778 bl 56% defN 20100101.000002 scala/collection/mutable/ArraySeq$ofShort.class --rw---- 2.0 fat 3467 bl 59% defN 20100101.000002 scala/collection/mutable/ArraySeq$ofUnit.class --rw---- 2.0 fat 41566 bl 63% defN 20100101.000002 scala/collection/mutable/ArraySeq.class --rw---- 2.0 fat 3606 bl 62% defN 20100101.000002 scala/collection/mutable/BitSet$.class --rw---- 2.0 fat 1042 bl 49% defN 20100101.000002 scala/collection/mutable/BitSet$SerializationProxy.class --rw---- 2.0 fat 40335 bl 66% defN 20100101.000002 scala/collection/mutable/BitSet.class --rw---- 2.0 fat 1015 bl 45% defN 20100101.000002 scala/collection/mutable/Buffer$.class --rw---- 2.0 fat 19831 bl 63% defN 20100101.000002 scala/collection/mutable/Buffer.class --rw---- 2.0 fat 4702 bl 68% defN 20100101.000002 scala/collection/mutable/Builder$$anon$1.class --rw---- 2.0 fat 3873 bl 51% defN 20100101.000002 scala/collection/mutable/Builder.class --rw---- 2.0 fat 695 bl 38% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$.class --rw---- 2.0 fat 6946 bl 76% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$Appended.class --rw---- 2.0 fat 1615 bl 54% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$CheckedIterator.class --rw---- 2.0 fat 1657 bl 54% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$CheckedReverseIterator.class --rw---- 2.0 fat 7004 bl 77% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$Concat.class --rw---- 2.0 fat 6890 bl 76% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$Drop.class --rw---- 2.0 fat 6915 bl 76% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$DropRight.class --rw---- 2.0 fat 6862 bl 76% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$Id.class --rw---- 2.0 fat 6970 bl 76% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$Map.class --rw---- 2.0 fat 6951 bl 76% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$Prepended.class --rw---- 2.0 fat 7068 bl 76% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$Reverse.class --rw---- 2.0 fat 7978 bl 73% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$Slice.class --rw---- 2.0 fat 6890 bl 76% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$Take.class --rw---- 2.0 fat 6915 bl 76% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$TakeRight.class --rw---- 2.0 fat 13648 bl 55% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView.class --rw---- 2.0 fat 423 bl 16% defN 20100101.000002 scala/collection/mutable/Clearable.class --rw---- 2.0 fat 1303 bl 39% defN 20100101.000002 scala/collection/mutable/Cloneable.class --rw---- 2.0 fat 1691 bl 64% defN 20100101.000002 scala/collection/mutable/CollisionProofHashMap$$anon$1.class --rw---- 2.0 fat 2203 bl 68% defN 20100101.000002 scala/collection/mutable/CollisionProofHashMap$$anon$2.class --rw---- 2.0 fat 1237 bl 52% defN 20100101.000002 scala/collection/mutable/CollisionProofHashMap$$anon$3.class --rw---- 2.0 fat 7829 bl 68% defN 20100101.000002 scala/collection/mutable/CollisionProofHashMap$.class --rw---- 2.0 fat 2634 bl 60% defN 20100101.000002 scala/collection/mutable/CollisionProofHashMap$DeserializationFactory.class --rw---- 2.0 fat 4426 bl 65% defN 20100101.000002 scala/collection/mutable/CollisionProofHashMap$LLNode.class --rw---- 2.0 fat 3197 bl 60% defN 20100101.000002 scala/collection/mutable/CollisionProofHashMap$MapIterator.class --rw---- 2.0 fat 486 bl 41% defN 20100101.000002 scala/collection/mutable/CollisionProofHashMap$Node.class --rw---- 2.0 fat 5561 bl 67% defN 20100101.000002 scala/collection/mutable/CollisionProofHashMap$RBNode.class --rw---- 2.0 fat 2476 bl 62% defN 20100101.000002 scala/collection/mutable/CollisionProofHashMap$RBNodesIterator.class --rw---- 2.0 fat 59186 bl 58% defN 20100101.000002 scala/collection/mutable/CollisionProofHashMap.class --rw---- 2.0 fat 1900 bl 44% defN 20100101.000002 scala/collection/mutable/DoublingUnrolledBuffer.class --rw---- 2.0 fat 1094 bl 53% defN 20100101.000002 scala/collection/mutable/Growable$.class --rw---- 2.0 fat 4606 bl 55% defN 20100101.000002 scala/collection/mutable/Growable.class --rw---- 2.0 fat 5450 bl 63% defN 20100101.000002 scala/collection/mutable/GrowableBuilder.class --rw---- 2.0 fat 1119 bl 36% defN 20100101.000002 scala/collection/mutable/HashEntry.class --rw---- 2.0 fat 1429 bl 57% defN 20100101.000002 scala/collection/mutable/HashMap$$anon$1.class --rw---- 2.0 fat 1140 bl 54% defN 20100101.000002 scala/collection/mutable/HashMap$$anon$2.class --rw---- 2.0 fat 1144 bl 54% defN 20100101.000002 scala/collection/mutable/HashMap$$anon$3.class --rw---- 2.0 fat 1367 bl 60% defN 20100101.000002 scala/collection/mutable/HashMap$$anon$4.class --rw---- 2.0 fat 1872 bl 52% defN 20100101.000002 scala/collection/mutable/HashMap$$anon$5.class --rw---- 2.0 fat 1056 bl 48% defN 20100101.000002 scala/collection/mutable/HashMap$$anon$6.class --rw---- 2.0 fat 3548 bl 62% defN 20100101.000002 scala/collection/mutable/HashMap$.class --rw---- 2.0 fat 2116 bl 57% defN 20100101.000002 scala/collection/mutable/HashMap$DeserializationFactory.class --rw---- 2.0 fat 2102 bl 54% defN 20100101.000002 scala/collection/mutable/HashMap$HashMapIterator.class --rw---- 2.0 fat 3438 bl 60% defN 20100101.000002 scala/collection/mutable/HashMap$Node.class --rw---- 2.0 fat 46745 bl 59% defN 20100101.000002 scala/collection/mutable/HashMap.class --rw---- 2.0 fat 1130 bl 54% defN 20100101.000002 scala/collection/mutable/HashSet$$anon$1.class --rw---- 2.0 fat 1355 bl 60% defN 20100101.000002 scala/collection/mutable/HashSet$$anon$2.class --rw---- 2.0 fat 1557 bl 52% defN 20100101.000002 scala/collection/mutable/HashSet$$anon$3.class --rw---- 2.0 fat 1034 bl 48% defN 20100101.000002 scala/collection/mutable/HashSet$$anon$4.class --rw---- 2.0 fat 7764 bl 71% defN 20100101.000002 scala/collection/mutable/HashSet$.class --rw---- 2.0 fat 2034 bl 56% defN 20100101.000002 scala/collection/mutable/HashSet$DeserializationFactory.class --rw---- 2.0 fat 2096 bl 54% defN 20100101.000002 scala/collection/mutable/HashSet$HashSetIterator.class --rw---- 2.0 fat 2619 bl 57% defN 20100101.000002 scala/collection/mutable/HashSet$Node.class --rw---- 2.0 fat 36560 bl 61% defN 20100101.000002 scala/collection/mutable/HashSet.class --rw---- 2.0 fat 2380 bl 57% defN 20100101.000002 scala/collection/mutable/HashTable$$anon$1.class --rw---- 2.0 fat 1254 bl 46% defN 20100101.000002 scala/collection/mutable/HashTable$.class --rw---- 2.0 fat 1962 bl 56% defN 20100101.000002 scala/collection/mutable/HashTable$HashUtils.class --rw---- 2.0 fat 18274 bl 54% defN 20100101.000002 scala/collection/mutable/HashTable.class --rw---- 2.0 fat 4931 bl 62% defN 20100101.000002 scala/collection/mutable/ImmutableBuilder.class --rw---- 2.0 fat 1036 bl 46% defN 20100101.000002 scala/collection/mutable/IndexedBuffer$.class --rw---- 2.0 fat 11883 bl 63% defN 20100101.000002 scala/collection/mutable/IndexedBuffer.class --rw---- 2.0 fat 1031 bl 46% defN 20100101.000002 scala/collection/mutable/IndexedSeq$.class --rw---- 2.0 fat 8691 bl 66% defN 20100101.000002 scala/collection/mutable/IndexedSeq.class --rw---- 2.0 fat 6118 bl 57% defN 20100101.000002 scala/collection/mutable/IndexedSeqOps.class --rw---- 2.0 fat 1043 bl 47% defN 20100101.000002 scala/collection/mutable/Iterable$.class --rw---- 2.0 fat 8380 bl 66% defN 20100101.000002 scala/collection/mutable/Iterable.class --rw---- 2.0 fat 1567 bl 60% defN 20100101.000002 scala/collection/mutable/LinkedHashMap$$anon$1.class --rw---- 2.0 fat 1265 bl 58% defN 20100101.000002 scala/collection/mutable/LinkedHashMap$$anon$2.class --rw---- 2.0 fat 1545 bl 64% defN 20100101.000002 scala/collection/mutable/LinkedHashMap$$anon$3.class --rw---- 2.0 fat 1269 bl 58% defN 20100101.000002 scala/collection/mutable/LinkedHashMap$$anon$4.class --rw---- 2.0 fat 1997 bl 55% defN 20100101.000002 scala/collection/mutable/LinkedHashMap$$anon$5.class --rw---- 2.0 fat 3380 bl 63% defN 20100101.000002 scala/collection/mutable/LinkedHashMap$.class --rw---- 2.0 fat 2707 bl 62% defN 20100101.000002 scala/collection/mutable/LinkedHashMap$LinkedEntry.class --rw---- 2.0 fat 2027 bl 58% defN 20100101.000002 scala/collection/mutable/LinkedHashMap$LinkedHashMapIterator.class --rw---- 2.0 fat 1330 bl 58% defN 20100101.000002 scala/collection/mutable/LinkedHashMap$LinkedKeySet.class --rw---- 2.0 fat 33542 bl 58% defN 20100101.000002 scala/collection/mutable/LinkedHashMap.class --rw---- 2.0 fat 1225 bl 57% defN 20100101.000002 scala/collection/mutable/LinkedHashSet$$anon$1.class --rw---- 2.0 fat 1479 bl 63% defN 20100101.000002 scala/collection/mutable/LinkedHashSet$$anon$2.class --rw---- 2.0 fat 1604 bl 55% defN 20100101.000002 scala/collection/mutable/LinkedHashSet$$anon$3.class --rw---- 2.0 fat 7638 bl 72% defN 20100101.000002 scala/collection/mutable/LinkedHashSet$.class --rw---- 2.0 fat 2312 bl 60% defN 20100101.000002 scala/collection/mutable/LinkedHashSet$Entry.class --rw---- 2.0 fat 1979 bl 58% defN 20100101.000002 scala/collection/mutable/LinkedHashSet$LinkedHashSetIterator.class --rw---- 2.0 fat 29428 bl 61% defN 20100101.000002 scala/collection/mutable/LinkedHashSet.class --rw---- 2.0 fat 8094 bl 73% defN 20100101.000002 scala/collection/mutable/ListBuffer$.class --rw---- 2.0 fat 37564 bl 62% defN 20100101.000002 scala/collection/mutable/ListBuffer.class --rw---- 2.0 fat 2979 bl 64% defN 20100101.000002 scala/collection/mutable/ListMap$.class --rw---- 2.0 fat 16011 bl 66% defN 20100101.000002 scala/collection/mutable/ListMap.class --rw---- 2.0 fat 2374 bl 48% defN 20100101.000002 scala/collection/mutable/LongMap$$anon$1.class --rw---- 2.0 fat 8734 bl 64% defN 20100101.000002 scala/collection/mutable/LongMap$.class --rw---- 2.0 fat 5062 bl 68% defN 20100101.000002 scala/collection/mutable/LongMap$LongMapBuilder.class --rw---- 2.0 fat 3000 bl 70% defN 20100101.000002 scala/collection/mutable/LongMap$ToBuildFrom$.class --rw---- 2.0 fat 2060 bl 59% defN 20100101.000002 scala/collection/mutable/LongMap$ToFactory$.class --rw---- 2.0 fat 38955 bl 59% defN 20100101.000002 scala/collection/mutable/LongMap.class --rw---- 2.0 fat 995 bl 45% defN 20100101.000002 scala/collection/mutable/Map$.class --rw---- 2.0 fat 6623 bl 68% defN 20100101.000002 scala/collection/mutable/Map$WithDefault.class --rw---- 2.0 fat 5584 bl 49% defN 20100101.000002 scala/collection/mutable/Map.class --rw---- 2.0 fat 12485 bl 57% defN 20100101.000002 scala/collection/mutable/MapOps.class --rw---- 2.0 fat 4088 bl 52% defN 20100101.000002 scala/collection/mutable/MultiMap.class --rw---- 2.0 fat 1046 bl 42% defN 20100101.000002 scala/collection/mutable/MutationTracker$.class --rw---- 2.0 fat 1598 bl 52% defN 20100101.000002 scala/collection/mutable/MutationTracker$CheckedIterator.class --rw---- 2.0 fat 2033 bl 29% defN 20100101.000002 scala/collection/mutable/MutationTracker.class --rw---- 2.0 fat 1608 bl 59% defN 20100101.000002 scala/collection/mutable/OpenHashMap$$anon$1.class --rw---- 2.0 fat 1246 bl 56% defN 20100101.000002 scala/collection/mutable/OpenHashMap$$anon$2.class --rw---- 2.0 fat 1310 bl 56% defN 20100101.000002 scala/collection/mutable/OpenHashMap$$anon$3.class --rw---- 2.0 fat 3119 bl 63% defN 20100101.000002 scala/collection/mutable/OpenHashMap$.class --rw---- 2.0 fat 1604 bl 56% defN 20100101.000002 scala/collection/mutable/OpenHashMap$OpenEntry.class --rw---- 2.0 fat 2321 bl 54% defN 20100101.000002 scala/collection/mutable/OpenHashMap$OpenHashMapIterator.class --rw---- 2.0 fat 26452 bl 62% defN 20100101.000002 scala/collection/mutable/OpenHashMap.class --rw---- 2.0 fat 1475 bl 50% defN 20100101.000002 scala/collection/mutable/PriorityQueue$$anon$1.class --rw---- 2.0 fat 5037 bl 69% defN 20100101.000002 scala/collection/mutable/PriorityQueue$$anon$2.class --rw---- 2.0 fat 5154 bl 68% defN 20100101.000002 scala/collection/mutable/PriorityQueue$.class --rw---- 2.0 fat 2583 bl 58% defN 20100101.000002 scala/collection/mutable/PriorityQueue$ResizableArrayAccess.class --rw---- 2.0 fat 33887 bl 62% defN 20100101.000002 scala/collection/mutable/PriorityQueue.class --rw---- 2.0 fat 8285 bl 73% defN 20100101.000002 scala/collection/mutable/Queue$.class --rw---- 2.0 fat 15090 bl 59% defN 20100101.000002 scala/collection/mutable/Queue.class --rw---- 2.0 fat 23562 bl 67% defN 20100101.000002 scala/collection/mutable/RedBlackTree$.class --rw---- 2.0 fat 1856 bl 61% defN 20100101.000002 scala/collection/mutable/RedBlackTree$EntriesIterator.class --rw---- 2.0 fat 1549 bl 59% defN 20100101.000002 scala/collection/mutable/RedBlackTree$KeysIterator.class --rw---- 2.0 fat 2835 bl 69% defN 20100101.000002 scala/collection/mutable/RedBlackTree$Node$.class --rw---- 2.0 fat 3174 bl 67% defN 20100101.000002 scala/collection/mutable/RedBlackTree$Node.class --rw---- 2.0 fat 980 bl 51% defN 20100101.000002 scala/collection/mutable/RedBlackTree$Tree$.class --rw---- 2.0 fat 1980 bl 64% defN 20100101.000002 scala/collection/mutable/RedBlackTree$Tree.class --rw---- 2.0 fat 3360 bl 58% defN 20100101.000002 scala/collection/mutable/RedBlackTree$TreeIterator.class --rw---- 2.0 fat 1557 bl 60% defN 20100101.000002 scala/collection/mutable/RedBlackTree$ValuesIterator.class --rw---- 2.0 fat 20605 bl 52% defN 20100101.000002 scala/collection/mutable/RedBlackTree.class --rw---- 2.0 fat 811 bl 31% defN 20100101.000002 scala/collection/mutable/ReusableBuilder.class --rw---- 2.0 fat 1003 bl 45% defN 20100101.000002 scala/collection/mutable/Seq$.class --rw---- 2.0 fat 8578 bl 66% defN 20100101.000002 scala/collection/mutable/Seq.class --rw---- 2.0 fat 955 bl 46% defN 20100101.000002 scala/collection/mutable/SeqMap$.class --rw---- 2.0 fat 2158 bl 47% defN 20100101.000002 scala/collection/mutable/SeqMap.class --rw---- 2.0 fat 3210 bl 42% defN 20100101.000002 scala/collection/mutable/SeqOps.class --rw---- 2.0 fat 1015 bl 46% defN 20100101.000002 scala/collection/mutable/Set$.class --rw---- 2.0 fat 8383 bl 66% defN 20100101.000002 scala/collection/mutable/Set.class --rw---- 2.0 fat 7235 bl 57% defN 20100101.000002 scala/collection/mutable/SetOps.class --rw---- 2.0 fat 5138 bl 56% defN 20100101.000002 scala/collection/mutable/Shrinkable.class --rw---- 2.0 fat 1043 bl 47% defN 20100101.000002 scala/collection/mutable/SortedMap$.class --rw---- 2.0 fat 17058 bl 76% defN 20100101.000002 scala/collection/mutable/SortedMap$WithDefault.class --rw---- 2.0 fat 6055 bl 52% defN 20100101.000002 scala/collection/mutable/SortedMap.class --rw---- 2.0 fat 2512 bl 47% defN 20100101.000002 scala/collection/mutable/SortedMapOps.class --rw---- 2.0 fat 1065 bl 47% defN 20100101.000002 scala/collection/mutable/SortedSet$.class --rw---- 2.0 fat 4279 bl 59% defN 20100101.000002 scala/collection/mutable/SortedSet.class --rw---- 2.0 fat 1089 bl 42% defN 20100101.000002 scala/collection/mutable/SortedSetOps.class --rw---- 2.0 fat 8285 bl 73% defN 20100101.000002 scala/collection/mutable/Stack$.class --rw---- 2.0 fat 15700 bl 58% defN 20100101.000002 scala/collection/mutable/Stack.class --rw---- 2.0 fat 866 bl 44% defN 20100101.000002 scala/collection/mutable/StringBuilder$.class --rw---- 2.0 fat 32708 bl 67% defN 20100101.000002 scala/collection/mutable/StringBuilder.class --rw---- 2.0 fat 3596 bl 66% defN 20100101.000002 scala/collection/mutable/TreeMap$.class --rw---- 2.0 fat 8529 bl 65% defN 20100101.000002 scala/collection/mutable/TreeMap$TreeMapProjection.class --rw---- 2.0 fat 41139 bl 69% defN 20100101.000002 scala/collection/mutable/TreeMap.class --rw---- 2.0 fat 5449 bl 69% defN 20100101.000002 scala/collection/mutable/TreeSet$$anon$1.class --rw---- 2.0 fat 6913 bl 65% defN 20100101.000002 scala/collection/mutable/TreeSet$.class --rw---- 2.0 fat 6465 bl 61% defN 20100101.000002 scala/collection/mutable/TreeSet$TreeSetProjection.class --rw---- 2.0 fat 32905 bl 68% defN 20100101.000002 scala/collection/mutable/TreeSet.class --rw---- 2.0 fat 2605 bl 57% defN 20100101.000002 scala/collection/mutable/UnrolledBuffer$$anon$1.class --rw---- 2.0 fat 10488 bl 73% defN 20100101.000002 scala/collection/mutable/UnrolledBuffer$.class --rw---- 2.0 fat 753 bl 43% defN 20100101.000002 scala/collection/mutable/UnrolledBuffer$Unrolled$.class --rw---- 2.0 fat 12252 bl 60% defN 20100101.000002 scala/collection/mutable/UnrolledBuffer$Unrolled.class --rw---- 2.0 fat 39764 bl 64% defN 20100101.000002 scala/collection/mutable/UnrolledBuffer.class --rw---- 2.0 fat 3004 bl 65% defN 20100101.000002 scala/collection/mutable/WeakHashMap$.class --rw---- 2.0 fat 3425 bl 48% defN 20100101.000002 scala/collection/mutable/WeakHashMap.class --rw---- 2.0 fat 1194 bl 55% defN 20100101.000002 scala/collection/mutable/package$.class --rw---- 2.0 fat 2349 bl 26% defN 20100101.000002 scala/collection/mutable/package.class --rw---- 2.0 fat 1435 bl 46% defN 20100101.000002 scala/collection/package$$colon$plus$.class --rw---- 2.0 fat 1435 bl 46% defN 20100101.000002 scala/collection/package$$plus$colon$.class --rw---- 2.0 fat 1888 bl 62% defN 20100101.000002 scala/collection/package$.class --rw---- 2.0 fat 3771 bl 35% defN 20100101.000002 scala/collection/package.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/compat/ --rw---- 2.0 fat 2104 bl 50% defN 20100101.000002 scala/compat/Platform$.class --rw---- 2.0 fat 3242 bl 33% defN 20100101.000002 scala/compat/Platform.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/concurrent/ --rw---- 2.0 fat 3630 bl 61% defN 20100101.000002 scala/concurrent/Await$.class --rw---- 2.0 fat 1860 bl 48% defN 20100101.000002 scala/concurrent/Await.class --rw---- 2.0 fat 472 bl 33% defN 20100101.000002 scala/concurrent/AwaitPermission$.class --rw---- 2.0 fat 400 bl 12% defN 20100101.000002 scala/concurrent/AwaitPermission.class --rw---- 2.0 fat 1558 bl 45% defN 20100101.000002 scala/concurrent/Awaitable.class --rw---- 2.0 fat 443 bl 14% defN 20100101.000002 scala/concurrent/Batchable.class --rw---- 2.0 fat 3022 bl 51% defN 20100101.000002 scala/concurrent/BatchingExecutor$AbstractBatch.class --rw---- 2.0 fat 9218 bl 68% defN 20100101.000002 scala/concurrent/BatchingExecutor$AsyncBatch.class --rw---- 2.0 fat 1661 bl 51% defN 20100101.000002 scala/concurrent/BatchingExecutor$SyncBatch.class --rw---- 2.0 fat 4932 bl 38% defN 20100101.000002 scala/concurrent/BatchingExecutor.class --rw---- 2.0 fat 796 bl 42% defN 20100101.000002 scala/concurrent/BatchingExecutorStatics$.class --rw---- 2.0 fat 1312 bl 48% defN 20100101.000002 scala/concurrent/BatchingExecutorStatics$MissingParentBlockContext$.class --rw---- 2.0 fat 1430 bl 28% defN 20100101.000002 scala/concurrent/BatchingExecutorStatics.class --rw---- 2.0 fat 2575 bl 58% defN 20100101.000002 scala/concurrent/BlockContext$.class --rw---- 2.0 fat 1000 bl 47% defN 20100101.000002 scala/concurrent/BlockContext$DefaultBlockContext$.class --rw---- 2.0 fat 2525 bl 45% defN 20100101.000002 scala/concurrent/BlockContext.class --rw---- 2.0 fat 506 bl 15% defN 20100101.000002 scala/concurrent/CanAwait.class --rw---- 2.0 fat 1493 bl 58% defN 20100101.000002 scala/concurrent/Channel$LinkedList.class --rw---- 2.0 fat 2250 bl 36% defN 20100101.000002 scala/concurrent/Channel.class --rw---- 2.0 fat 3046 bl 44% defN 20100101.000002 scala/concurrent/DelayedLazyVal.class --rw---- 2.0 fat 3022 bl 60% defN 20100101.000002 scala/concurrent/ExecutionContext$$anon$1.class --rw---- 2.0 fat 4300 bl 63% defN 20100101.000002 scala/concurrent/ExecutionContext$.class --rw---- 2.0 fat 817 bl 48% defN 20100101.000002 scala/concurrent/ExecutionContext$Implicits$.class --rw---- 2.0 fat 3708 bl 57% defN 20100101.000002 scala/concurrent/ExecutionContext$parasitic$.class --rw---- 2.0 fat 5017 bl 46% defN 20100101.000002 scala/concurrent/ExecutionContext.class --rw---- 2.0 fat 542 bl 25% defN 20100101.000002 scala/concurrent/ExecutionContextExecutor.class --rw---- 2.0 fat 589 bl 24% defN 20100101.000002 scala/concurrent/ExecutionContextExecutorService.class --rw---- 2.0 fat 1251 bl 49% defN 20100101.000002 scala/concurrent/Future$$anon$1.class --rw---- 2.0 fat 916 bl 46% defN 20100101.000002 scala/concurrent/Future$$anon$2.class --rw---- 2.0 fat 921 bl 46% defN 20100101.000002 scala/concurrent/Future$$anon$3.class --rw---- 2.0 fat 806 bl 48% defN 20100101.000002 scala/concurrent/Future$$anon$4.class --rw---- 2.0 fat 6179 bl 72% defN 20100101.000002 scala/concurrent/Future$$anon$5.class --rw---- 2.0 fat 22755 bl 68% defN 20100101.000002 scala/concurrent/Future$.class --rw---- 2.0 fat 9552 bl 71% defN 20100101.000002 scala/concurrent/Future$never$.class --rw---- 2.0 fat 34003 bl 60% defN 20100101.000002 scala/concurrent/Future.class --rw---- 2.0 fat 1098 bl 54% defN 20100101.000002 scala/concurrent/JavaConversions$.class --rw---- 2.0 fat 1483 bl 36% defN 20100101.000002 scala/concurrent/JavaConversions.class --rw---- 2.0 fat 645 bl 16% defN 20100101.000002 scala/concurrent/OnCompleteRunnable.class --rw---- 2.0 fat 1769 bl 57% defN 20100101.000002 scala/concurrent/Promise$.class --rw---- 2.0 fat 7431 bl 58% defN 20100101.000002 scala/concurrent/Promise.class --rw---- 2.0 fat 2851 bl 41% defN 20100101.000002 scala/concurrent/SyncChannel.class --rw---- 2.0 fat 3097 bl 39% defN 20100101.000002 scala/concurrent/SyncVar.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/concurrent/duration/ --rw---- 2.0 fat 2068 bl 56% defN 20100101.000002 scala/concurrent/duration/Deadline$.class --rw---- 2.0 fat 5060 bl 71% defN 20100101.000002 scala/concurrent/duration/Deadline$DeadlineIsOrdered$.class --rw---- 2.0 fat 7272 bl 53% defN 20100101.000002 scala/concurrent/duration/Deadline.class --rw---- 2.0 fat 2344 bl 63% defN 20100101.000002 scala/concurrent/duration/Duration$$anon$1.class --rw---- 2.0 fat 1655 bl 54% defN 20100101.000002 scala/concurrent/duration/Duration$$anon$2.class --rw---- 2.0 fat 1617 bl 56% defN 20100101.000002 scala/concurrent/duration/Duration$$anon$3.class --rw---- 2.0 fat 16178 bl 57% defN 20100101.000002 scala/concurrent/duration/Duration$.class --rw---- 2.0 fat 5042 bl 71% defN 20100101.000002 scala/concurrent/duration/Duration$DurationIsOrdered$.class --rw---- 2.0 fat 3511 bl 58% defN 20100101.000002 scala/concurrent/duration/Duration$Infinite.class --rw---- 2.0 fat 9287 bl 52% defN 20100101.000002 scala/concurrent/duration/Duration.class --rw---- 2.0 fat 477 bl 36% defN 20100101.000002 scala/concurrent/duration/DurationConversions$.class --rw---- 2.0 fat 487 bl 44% defN 20100101.000002 scala/concurrent/duration/DurationConversions$Classifier.class --rw---- 2.0 fat 1566 bl 59% defN 20100101.000002 scala/concurrent/duration/DurationConversions$fromNowConvert$.class --rw---- 2.0 fat 1339 bl 58% defN 20100101.000002 scala/concurrent/duration/DurationConversions$spanConvert$.class --rw---- 2.0 fat 12891 bl 67% defN 20100101.000002 scala/concurrent/duration/DurationConversions.class --rw---- 2.0 fat 2010 bl 56% defN 20100101.000002 scala/concurrent/duration/FiniteDuration$.class --rw---- 2.0 fat 5156 bl 72% defN 20100101.000002 scala/concurrent/duration/FiniteDuration$FiniteDurationIsOrdered$.class --rw---- 2.0 fat 13106 bl 50% defN 20100101.000002 scala/concurrent/duration/FiniteDuration.class --rw---- 2.0 fat 3246 bl 63% defN 20100101.000002 scala/concurrent/duration/package$.class --rw---- 2.0 fat 1438 bl 51% defN 20100101.000002 scala/concurrent/duration/package$DoubleMult$.class --rw---- 2.0 fat 1502 bl 54% defN 20100101.000002 scala/concurrent/duration/package$DoubleMult.class --rw---- 2.0 fat 2019 bl 52% defN 20100101.000002 scala/concurrent/duration/package$DurationDouble$.class --rw---- 2.0 fat 6582 bl 76% defN 20100101.000002 scala/concurrent/duration/package$DurationDouble.class --rw---- 2.0 fat 1569 bl 51% defN 20100101.000002 scala/concurrent/duration/package$DurationInt$.class --rw---- 2.0 fat 6736 bl 75% defN 20100101.000002 scala/concurrent/duration/package$DurationInt.class --rw---- 2.0 fat 1543 bl 51% defN 20100101.000002 scala/concurrent/duration/package$DurationLong$.class --rw---- 2.0 fat 6693 bl 75% defN 20100101.000002 scala/concurrent/duration/package$DurationLong.class +-rw---- 2.0 fat 1752 bl 54% defN 20100101.000002 scala/collection/LazyZip2$$anon$1$$anon$2.class +-rw---- 2.0 fat 1752 bl 61% defN 20100101.000002 scala/collection/StepperShape$$anon$9.class +-rw---- 2.0 fat 1753 bl 61% defN 20100101.000002 scala/collection/StepperShape$$anon$11.class +-rw---- 2.0 fat 17547 bl 70% defN 20100101.000002 scala/collection/immutable/Map$Map4.class +-rw---- 2.0 fat 1754 bl 52% defN 20100101.000002 scala/sys/BooleanProp$BooleanPropImpl.class +-rw---- 2.0 fat 1754 bl 53% defN 20100101.000002 scala/sys/process/processInternal$$anonfun$onError$1.class +-rw---- 2.0 fat 1755 bl 55% defN 20100101.000002 scala/collection/StringView$.class +-rw---- 2.0 fat 1756 bl 58% defN 20100101.000002 scala/collection/EvidenceIterableFactory$ToFactory.class +-rw---- 2.0 fat 1758 bl 50% defN 20100101.000002 scala/runtime/AbstractFunction7.class +-rw---- 2.0 fat 1759 bl 58% defN 20100101.000002 scala/util/control/Exception$Described.class +-rw---- 2.0 fat 1761 bl 55% defN 20100101.000002 scala/util/Either$LeftProjection$.class -rw---- 2.0 fat 1761 bl 57% defN 20100101.000002 scala/concurrent/duration/package$IntMult$.class --rw---- 2.0 fat 1831 bl 59% defN 20100101.000002 scala/concurrent/duration/package$IntMult.class +-rw---- 2.0 fat 1763 bl 61% defN 20100101.000002 scala/collection/StepperShape$$anon$5.class +-rw---- 2.0 fat 1764 bl 51% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JEnumerationWrapper.class +-rw---- 2.0 fat 1764 bl 55% defN 20100101.000002 scala/collection/immutable/LinearSeq$.class +-rw---- 2.0 fat 1765 bl 47% defN 20100101.000002 scala/collection/immutable/LongMapKeyIterator.class +-rw---- 2.0 fat 1765 bl 57% defN 20100101.000002 scala/jdk/FutureConverters$FutureOps.class +-rw---- 2.0 fat 1765 bl 61% defN 20100101.000002 scala/collection/StepperShape$$anon$13.class +-rw---- 2.0 fat 1766 bl 38% defN 20100101.000002 scala/collection/immutable/VectorImpl.class +-rw---- 2.0 fat 1766 bl 52% defN 20100101.000002 scala/Predef$any2stringadd$.class +-rw---- 2.0 fat 1766 bl 52% defN 20100101.000002 scala/util/Either$MergeableEither$.class -rw---- 2.0 fat 1766 bl 56% defN 20100101.000002 scala/concurrent/duration/package$LongMult$.class --rw---- 2.0 fat 1840 bl 58% defN 20100101.000002 scala/concurrent/duration/package$LongMult.class --rw---- 2.0 fat 538 bl 37% defN 20100101.000002 scala/concurrent/duration/package$fromNow$.class --rw---- 2.0 fat 529 bl 37% defN 20100101.000002 scala/concurrent/duration/package$span$.class --rw---- 2.0 fat 7649 bl 47% defN 20100101.000002 scala/concurrent/duration/package.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/concurrent/impl/ --rw---- 2.0 fat 6908 bl 66% defN 20100101.000002 scala/concurrent/impl/CompletionLatch.class --rw---- 2.0 fat 2112 bl 60% defN 20100101.000002 scala/concurrent/impl/ExecutionContextImpl$$anon$3.class --rw---- 2.0 fat 4205 bl 70% defN 20100101.000002 scala/concurrent/impl/ExecutionContextImpl$$anon$4.class --rw---- 2.0 fat 5607 bl 62% defN 20100101.000002 scala/concurrent/impl/ExecutionContextImpl$.class --rw---- 2.0 fat 3216 bl 65% defN 20100101.000002 scala/concurrent/impl/ExecutionContextImpl$DefaultThreadFactory$$anon$1$$anon$2.class --rw---- 2.0 fat 2642 bl 59% defN 20100101.000002 scala/concurrent/impl/ExecutionContextImpl$DefaultThreadFactory$$anon$1.class --rw---- 2.0 fat 3783 bl 59% defN 20100101.000002 scala/concurrent/impl/ExecutionContextImpl$DefaultThreadFactory.class --rw---- 2.0 fat 6138 bl 49% defN 20100101.000002 scala/concurrent/impl/ExecutionContextImpl.class --rw---- 2.0 fat 472 bl 35% defN 20100101.000002 scala/concurrent/impl/FutureConvertersImpl$.class --rw---- 2.0 fat 17432 bl 74% defN 20100101.000002 scala/concurrent/impl/FutureConvertersImpl$CF.class --rw---- 2.0 fat 2363 bl 61% defN 20100101.000002 scala/concurrent/impl/FutureConvertersImpl$P.class --rw---- 2.0 fat 3618 bl 24% defN 20100101.000002 scala/concurrent/impl/FutureConvertersImpl.class --rw---- 2.0 fat 2843 bl 57% defN 20100101.000002 scala/concurrent/impl/Promise$.class --rw---- 2.0 fat 311 bl 33% defN 20100101.000002 scala/concurrent/impl/Promise$Callbacks.class --rw---- 2.0 fat 27597 bl 70% defN 20100101.000002 scala/concurrent/impl/Promise$DefaultPromise.class --rw---- 2.0 fat 2595 bl 62% defN 20100101.000002 scala/concurrent/impl/Promise$Link.class --rw---- 2.0 fat 1686 bl 63% defN 20100101.000002 scala/concurrent/impl/Promise$ManyCallbacks.class --rw---- 2.0 fat 5894 bl 53% defN 20100101.000002 scala/concurrent/impl/Promise$Transformation.class --rw---- 2.0 fat 7467 bl 31% defN 20100101.000002 scala/concurrent/impl/Promise.class --rw---- 2.0 fat 1106 bl 48% defN 20100101.000002 scala/concurrent/package$.class --rw---- 2.0 fat 1105 bl 27% defN 20100101.000002 scala/concurrent/package.class --rw---- 2.0 fat 627 bl 43% defN 20100101.000002 scala/deprecated$.class --rw---- 2.0 fat 1586 bl 31% defN 20100101.000002 scala/deprecated.class --rw---- 2.0 fat 660 bl 44% defN 20100101.000002 scala/deprecatedInheritance$.class --rw---- 2.0 fat 1537 bl 34% defN 20100101.000002 scala/deprecatedInheritance.class --rw---- 2.0 fat 651 bl 42% defN 20100101.000002 scala/deprecatedName$.class --rw---- 2.0 fat 2038 bl 36% defN 20100101.000002 scala/deprecatedName.class --rw---- 2.0 fat 657 bl 44% defN 20100101.000002 scala/deprecatedOverriding$.class --rw---- 2.0 fat 1637 bl 33% defN 20100101.000002 scala/deprecatedOverriding.class --rw---- 2.0 fat 718 bl 25% defN 20100101.000002 scala/inline.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/io/ --rw---- 2.0 fat 447 bl 32% defN 20100101.000002 scala/io/AnsiColor$.class --rw---- 2.0 fat 5551 bl 61% defN 20100101.000002 scala/io/AnsiColor.class --rw---- 2.0 fat 2035 bl 52% defN 20100101.000002 scala/io/BufferedSource$BufferedLineIterator.class --rw---- 2.0 fat 7996 bl 49% defN 20100101.000002 scala/io/BufferedSource.class --rw---- 2.0 fat 913 bl 50% defN 20100101.000002 scala/io/Codec$$anon$1.class --rw---- 2.0 fat 4373 bl 56% defN 20100101.000002 scala/io/Codec$.class --rw---- 2.0 fat 8591 bl 49% defN 20100101.000002 scala/io/Codec.class --rw---- 2.0 fat 1041 bl 38% defN 20100101.000002 scala/io/LowPriorityCodecImplicits.class --rw---- 2.0 fat 1016 bl 40% defN 20100101.000002 scala/io/Position$.class --rw---- 2.0 fat 2441 bl 37% defN 20100101.000002 scala/io/Position.class --rw---- 2.0 fat 943 bl 49% defN 20100101.000002 scala/io/Source$$anon$1.class --rw---- 2.0 fat 11197 bl 62% defN 20100101.000002 scala/io/Source$.class --rw---- 2.0 fat 2509 bl 51% defN 20100101.000002 scala/io/Source$LineIterator.class --rw---- 2.0 fat 1065 bl 47% defN 20100101.000002 scala/io/Source$NoPositioner$.class --rw---- 2.0 fat 2598 bl 56% defN 20100101.000002 scala/io/Source$Positioner.class --rw---- 2.0 fat 645 bl 41% defN 20100101.000002 scala/io/Source$RelaxedPosition$.class --rw---- 2.0 fat 716 bl 49% defN 20100101.000002 scala/io/Source$RelaxedPositioner$.class --rw---- 2.0 fat 46927 bl 68% defN 20100101.000002 scala/io/Source.class --rw---- 2.0 fat 3246 bl 69% defN 20100101.000002 scala/io/StdIn$.class --rw---- 2.0 fat 8884 bl 57% defN 20100101.000002 scala/io/StdIn.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/jdk/ --rw---- 2.0 fat 21303 bl 73% defN 20100101.000002 scala/jdk/Accumulator$.class --rw---- 2.0 fat 1320 bl 58% defN 20100101.000002 scala/jdk/Accumulator$AccumulatorFactoryShape$$anon$1.class --rw---- 2.0 fat 1302 bl 58% defN 20100101.000002 scala/jdk/Accumulator$AccumulatorFactoryShape$$anon$2.class --rw---- 2.0 fat 1308 bl 58% defN 20100101.000002 scala/jdk/Accumulator$AccumulatorFactoryShape$$anon$3.class --rw---- 2.0 fat 4493 bl 75% defN 20100101.000002 scala/jdk/Accumulator$AccumulatorFactoryShape$.class --rw---- 2.0 fat 508 bl 44% defN 20100101.000002 scala/jdk/Accumulator$AccumulatorFactoryShape.class --rw---- 2.0 fat 1940 bl 63% defN 20100101.000002 scala/jdk/Accumulator$LowPriorityAccumulatorFactoryShape$$anon$4.class --rw---- 2.0 fat 1910 bl 67% defN 20100101.000002 scala/jdk/Accumulator$LowPriorityAccumulatorFactoryShape.class --rw---- 2.0 fat 527 bl 42% defN 20100101.000002 scala/jdk/Accumulator$mcD$sp.class --rw---- 2.0 fat 527 bl 42% defN 20100101.000002 scala/jdk/Accumulator$mcI$sp.class --rw---- 2.0 fat 527 bl 42% defN 20100101.000002 scala/jdk/Accumulator$mcJ$sp.class --rw---- 2.0 fat 72042 bl 72% defN 20100101.000002 scala/jdk/Accumulator.class --rw---- 2.0 fat 11096 bl 71% defN 20100101.000002 scala/jdk/AnyAccumulator$.class --rw---- 2.0 fat 3117 bl 55% defN 20100101.000002 scala/jdk/AnyAccumulator$SerializationProxy.class --rw---- 2.0 fat 22427 bl 55% defN 20100101.000002 scala/jdk/AnyAccumulator.class --rw---- 2.0 fat 2207 bl 56% defN 20100101.000002 scala/jdk/AnyAccumulatorStepper$$anon$1.class --rw---- 2.0 fat 8566 bl 56% defN 20100101.000002 scala/jdk/AnyAccumulatorStepper.class --rw---- 2.0 fat 12607 bl 83% defN 20100101.000002 scala/jdk/CollectionConverters$.class --rw---- 2.0 fat 9142 bl 78% defN 20100101.000002 scala/jdk/CollectionConverters.class --rw---- 2.0 fat 6421 bl 64% defN 20100101.000002 scala/jdk/DoubleAccumulator$.class --rw---- 2.0 fat 2725 bl 52% defN 20100101.000002 scala/jdk/DoubleAccumulator$SerializationProxy.class --rw---- 2.0 fat 21922 bl 53% defN 20100101.000002 scala/jdk/DoubleAccumulator.class --rw---- 2.0 fat 3300 bl 60% defN 20100101.000002 scala/jdk/DoubleAccumulatorStepper$$anon$1.class --rw---- 2.0 fat 8724 bl 57% defN 20100101.000002 scala/jdk/DoubleAccumulatorStepper.class --rw---- 2.0 fat 879 bl 50% defN 20100101.000002 scala/jdk/DurationConverters$.class --rw---- 2.0 fat 1595 bl 51% defN 20100101.000002 scala/jdk/DurationConverters$JavaDurationOps$.class --rw---- 2.0 fat 1601 bl 56% defN 20100101.000002 scala/jdk/DurationConverters$JavaDurationOps.class --rw---- 2.0 fat 1724 bl 54% defN 20100101.000002 scala/jdk/DurationConverters$ScalaDurationOps$.class +-rw---- 2.0 fat 17672 bl 69% defN 20100101.000002 scala/Tuple2.class +-rw---- 2.0 fat 1769 bl 49% defN 20100101.000002 scala/collection/Iterator$$anon$17.class +-rw---- 2.0 fat 1769 bl 57% defN 20100101.000002 scala/concurrent/Promise$.class +-rw---- 2.0 fat 1771 bl 55% defN 20100101.000002 scala/util/Either$RightProjection$.class +-rw---- 2.0 fat 1771 bl 58% defN 20100101.000002 scala/collection/immutable/Stream$Empty$.class +-rw---- 2.0 fat 1774 bl 56% defN 20100101.000002 scala/collection/immutable/IndexedSeq$.class +-rw---- 2.0 fat 1774 bl 59% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$Dummy.class +-rw---- 2.0 fat 1776 bl 52% defN 20100101.000002 scala/Predef$StringFormat.class +-rw---- 2.0 fat 17772 bl 75% defN 20100101.000002 scala/collection/AbstractMapView.class +-rw---- 2.0 fat 1779 bl 36% defN 20100101.000002 scala/Boolean.class -rw---- 2.0 fat 1782 bl 57% defN 20100101.000002 scala/jdk/DurationConverters$ScalaDurationOps.class --rw---- 2.0 fat 2400 bl 38% defN 20100101.000002 scala/jdk/DurationConverters.class --rw---- 2.0 fat 31413 bl 85% defN 20100101.000002 scala/jdk/FunctionConverters$.class --rw---- 2.0 fat 15345 bl 80% defN 20100101.000002 scala/jdk/FunctionConverters.class --rw---- 2.0 fat 436 bl 32% defN 20100101.000002 scala/jdk/FunctionWrappers$.class --rw---- 2.0 fat 1911 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaBiConsumer$.class --rw---- 2.0 fat 4104 bl 63% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaBiConsumer.class --rw---- 2.0 fat 1913 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaBiFunction$.class --rw---- 2.0 fat 4029 bl 63% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaBiFunction.class --rw---- 2.0 fat 1907 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaBiPredicate$.class --rw---- 2.0 fat 4422 bl 64% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaBiPredicate.class --rw---- 2.0 fat 1861 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaBinaryOperator$.class --rw---- 2.0 fat 3604 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaBinaryOperator.class --rw---- 2.0 fat 2194 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaBooleanSupplier$.class --rw---- 2.0 fat 3336 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaBooleanSupplier.class +-rw---- 2.0 fat 17849 bl 75% defN 20100101.000002 scala/collection/AbstractSeqView.class +-rw---- 2.0 fat 1785 bl 53% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction0AsIntSupplier$.class +-rw---- 2.0 fat 1785 bl 53% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsIntConsumer$.class +-rw---- 2.0 fat 1786 bl 56% defN 20100101.000002 scala/collection/LazyZip2$$anon$7$$anon$8.class +-rw---- 2.0 fat 1788 bl 39% defN 20100101.000002 scala/runtime/ZippedIterable2.class +-rw---- 2.0 fat 1789 bl 55% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaSupplier$.class +-rw---- 2.0 fat 1791 bl 47% defN 20100101.000002 scala/collection/Iterator$$anon$10.class +-rw---- 2.0 fat 1793 bl 54% defN 20100101.000002 scala/collection/LazyZip2$$anon$3.class +-rw---- 2.0 fat 1793 bl 55% defN 20100101.000002 scala/collection/LazyZip2$$anon$1.class +-rw---- 2.0 fat 1793 bl 55% defN 20100101.000002 scala/ScalaReflectionException$.class +-rw---- 2.0 fat 1797 bl 52% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction0AsLongSupplier$.class +-rw---- 2.0 fat 1797 bl 52% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsIntPredicate$.class +-rw---- 2.0 fat 1797 bl 53% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsLongConsumer$.class +-rw---- 2.0 fat 1798 bl 44% defN 20100101.000002 scala/collection/Iterator$$anon$2.class +-rw---- 2.0 fat 1798 bl 48% defN 20100101.000002 scala/collection/View$Drop.class +-rw---- 2.0 fat 1799 bl 42% defN 20100101.000002 scala/collection/immutable/IndexedSeqOps.class +-rw---- 2.0 fat 1800 bl 55% defN 20100101.000002 scala/UninitializedFieldError$.class +-rw---- 2.0 fat 1800 bl 56% defN 20100101.000002 scala/collection/IntStepper$$anon$6.class +-rw---- 2.0 fat 18015 bl 77% defN 20100101.000002 scala/collection/IterableOnceExtensionMethods$.class +-rw---- 2.0 fat 1801 bl 49% defN 20100101.000002 scala/collection/View$PadTo.class +-rw---- 2.0 fat 1802 bl 53% defN 20100101.000002 scala/PartialFunction$Lifted.class +-rw---- 2.0 fat 1806 bl 48% defN 20100101.000002 scala/collection/View$Iterate.class +-rw---- 2.0 fat 1806 bl 56% defN 20100101.000002 scala/collection/LongStepper$$anon$8.class +-rw---- 2.0 fat 1807 bl 54% defN 20100101.000002 scala/Tuple4$.class +-rw---- 2.0 fat 1809 bl 53% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsLongPredicate$.class +-rw---- 2.0 fat 1809 bl 61% defN 20100101.000002 scala/math/Ordered$$anon$1.class +-rw---- 2.0 fat 1810 bl 44% defN 20100101.000002 scala/collection/immutable/SetIterator.class +-rw---- 2.0 fat 1811 bl 55% defN 20100101.000002 scala/Symbol$.class +-rw---- 2.0 fat 1811 bl 58% defN 20100101.000002 scala/collection/SortedMapFactory$ToFactory.class +-rw---- 2.0 fat 18147 bl 76% defN 20100101.000002 scala/collection/SeqView$Prepended.class +-rw---- 2.0 fat 18148 bl 76% defN 20100101.000002 scala/collection/SeqView$Appended.class +-rw---- 2.0 fat 1816 bl 36% defN 20100101.000002 scala/reflect/package.class +-rw---- 2.0 fat 1816 bl 49% defN 20100101.000002 scala/math/Equiv$OptionEquiv.class +-rw---- 2.0 fat 18173 bl 64% defN 20100101.000002 scala/Tuple13.class +-rw---- 2.0 fat 1820 bl 57% defN 20100101.000002 scala/collection/LazyZip3$$anon$15.class +-rw---- 2.0 fat 18214 bl 76% defN 20100101.000002 scala/collection/SeqView$Map.class +-rw---- 2.0 fat 1821 bl 53% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction0AsDoubleSupplier$.class +-rw---- 2.0 fat 1821 bl 53% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoubleConsumer$.class +-rw---- 2.0 fat 1821 bl 56% defN 20100101.000002 scala/package$$hash$colon$colon$.class +-rw---- 2.0 fat 18223 bl 76% defN 20100101.000002 scala/collection/SeqView$Concat.class +-rw---- 2.0 fat 18258 bl 54% defN 20100101.000002 scala/collection/mutable/HashTable.class +-rw---- 2.0 fat 1825 bl 47% defN 20100101.000002 scala/collection/BufferedIterator.class +-rw---- 2.0 fat 1830 bl 55% defN 20100101.000002 scala/jdk/FutureConverters$FutureOps$.class +-rw---- 2.0 fat 1830 bl 58% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JMapWrapper.class +-rw---- 2.0 fat 1831 bl 48% defN 20100101.000002 scala/collection/View$Take.class +-rw---- 2.0 fat 1831 bl 59% defN 20100101.000002 scala/concurrent/duration/package$IntMult.class +-rw---- 2.0 fat 1832 bl 51% defN 20100101.000002 scala/runtime/AbstractFunction8.class +-rw---- 2.0 fat 1832 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntSupplierAsFunction0.class +-rw---- 2.0 fat 1833 bl 37% defN 20100101.000002 scala/runtime/LazyBoolean.class +-rw---- 2.0 fat 1833 bl 53% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction0AsBooleanSupplier$.class +-rw---- 2.0 fat 1833 bl 53% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoublePredicate$.class +-rw---- 2.0 fat 1834 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcJJJ$sp.class +-rw---- 2.0 fat 1834 bl 56% defN 20100101.000002 scala/collection/DoubleStepper$$anon$7.class +-rw---- 2.0 fat 18355 bl 63% defN 20100101.000002 scala/collection/immutable/ListMap.class +-rw---- 2.0 fat 1835 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaPredicate$.class +-rw---- 2.0 fat 1837 bl 61% defN 20100101.000002 scala/collection/convert/AsJavaExtensions$IterableHasAsJava.class +-rw---- 2.0 fat 1837 bl 62% defN 20100101.000002 scala/math/Ordering$Implicits$.class +-rw---- 2.0 fat 1838 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcIII$sp.class -rw---- 2.0 fat 1839 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaConsumer$.class --rw---- 2.0 fat 3933 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaConsumer.class --rw---- 2.0 fat 2357 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleBinaryOperator$.class --rw---- 2.0 fat 3566 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleBinaryOperator.class --rw---- 2.0 fat 2258 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleConsumer$.class --rw---- 2.0 fat 3678 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleConsumer.class --rw---- 2.0 fat 1885 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleFunction$.class --rw---- 2.0 fat 3718 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleFunction.class --rw---- 2.0 fat 2248 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoublePredicate$.class --rw---- 2.0 fat 3882 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoublePredicate.class --rw---- 2.0 fat 2183 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleSupplier$.class --rw---- 2.0 fat 3329 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleSupplier.class --rw---- 2.0 fat 2292 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleToIntFunction$.class --rw---- 2.0 fat 3463 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleToIntFunction.class --rw---- 2.0 fat 2303 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleToLongFunction$.class --rw---- 2.0 fat 3470 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleToLongFunction.class --rw---- 2.0 fat 2292 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleUnaryOperator$.class --rw---- 2.0 fat 3810 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleUnaryOperator.class +-rw---- 2.0 fat 1839 bl 59% defN 20100101.000002 scala/PartialFunction$ElementWiseExtractor.class +-rw---- 2.0 fat 1839 bl 61% defN 20100101.000002 scala/math/PartialOrdering$$anon$1.class +-rw---- 2.0 fat 1840 bl 58% defN 20100101.000002 scala/concurrent/duration/package$LongMult.class +-rw---- 2.0 fat 1841 bl 54% defN 20100101.000002 scala/Function1$UnliftOps.class -rw---- 2.0 fat 1841 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaFunction$.class --rw---- 2.0 fat 4105 bl 63% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaFunction.class --rw---- 2.0 fat 2324 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntBinaryOperator$.class --rw---- 2.0 fat 3541 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntBinaryOperator.class --rw---- 2.0 fat 2225 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntConsumer$.class --rw---- 2.0 fat 3647 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntConsumer.class +-rw---- 2.0 fat 1842 bl 55% defN 20100101.000002 scala/util/control/TailCalls$Call$.class +-rw---- 2.0 fat 1842 bl 61% defN 20100101.000002 scala/collection/convert/AsJavaExtensions$IteratorHasAsJava.class +-rw---- 2.0 fat 18430 bl 75% defN 20100101.000002 scala/collection/SeqView$Drop.class +-rw---- 2.0 fat 1843 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcDDD$sp.class +-rw---- 2.0 fat 18456 bl 77% defN 20100101.000002 scala/collection/immutable/SortedMap$WithDefault.class +-rw---- 2.0 fat 1845 bl 37% defN 20100101.000002 scala/runtime/LazyInt.class +-rw---- 2.0 fat 1845 bl 54% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsIntUnaryOperator$.class +-rw---- 2.0 fat 1845 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaUnaryOperator$.class +-rw---- 2.0 fat 1846 bl 36% defN 20100101.000002 scala/runtime/LazyLong.class +-rw---- 2.0 fat 1846 bl 50% defN 20100101.000002 scala/collection/StepperShapeLowPriority2.class +-rw---- 2.0 fat 18474 bl 75% defN 20100101.000002 scala/collection/SeqView$DropRight.class +-rw---- 2.0 fat 1848 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcJII$sp.class +-rw---- 2.0 fat 1848 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcVII$sp.class +-rw---- 2.0 fat 1848 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongSupplierAsFunction0.class +-rw---- 2.0 fat 1850 bl 36% defN 20100101.000002 scala/runtime/LazyByte.class +-rw---- 2.0 fat 1850 bl 36% defN 20100101.000002 scala/runtime/LazyChar.class +-rw---- 2.0 fat 1850 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcVJJ$sp.class +-rw---- 2.0 fat 1850 bl 48% defN 20100101.000002 scala/collection/Iterator$$anon$8.class +-rw---- 2.0 fat 1850 bl 56% defN 20100101.000002 scala/collection/Factory$StringFactory.class +-rw---- 2.0 fat 18515 bl 75% defN 20100101.000002 scala/collection/SeqView$TakeRight.class +-rw---- 2.0 fat 1851 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcFII$sp.class +-rw---- 2.0 fat 1854 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcFJJ$sp.class +-rw---- 2.0 fat 1854 bl 44% defN 20100101.000002 scala/collection/immutable/SetReverseIterator.class +-rw---- 2.0 fat 1854 bl 47% defN 20100101.000002 scala/ref/PhantomReferenceWithWrapper.class +-rw---- 2.0 fat 1854 bl 55% defN 20100101.000002 scala/collection/LazyZip3$$anon$9.class +-rw---- 2.0 fat 18550 bl 55% defN 20100101.000002 scala/util/hashing/MurmurHash3.class +-rw---- 2.0 fat 1855 bl 36% defN 20100101.000002 scala/runtime/LazyFloat.class +-rw---- 2.0 fat 1855 bl 37% defN 20100101.000002 scala/runtime/LazyShort.class +-rw---- 2.0 fat 1855 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcDII$sp.class +-rw---- 2.0 fat 1855 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcJDD$sp.class +-rw---- 2.0 fat 1855 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcIJJ$sp.class +-rw---- 2.0 fat 1855 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcVDD$sp.class -rw---- 2.0 fat 1855 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntFunction$.class --rw---- 2.0 fat 3671 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntFunction.class --rw---- 2.0 fat 2215 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntPredicate$.class --rw---- 2.0 fat 3848 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntPredicate.class --rw---- 2.0 fat 2150 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntSupplier$.class --rw---- 2.0 fat 3302 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntSupplier.class --rw---- 2.0 fat 2292 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntToDoubleFunction$.class --rw---- 2.0 fat 3462 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntToDoubleFunction.class --rw---- 2.0 fat 2270 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntToLongFunction$.class --rw---- 2.0 fat 3448 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntToLongFunction.class --rw---- 2.0 fat 2259 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntUnaryOperator$.class --rw---- 2.0 fat 3776 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntUnaryOperator.class --rw---- 2.0 fat 2335 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongBinaryOperator$.class --rw---- 2.0 fat 3552 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongBinaryOperator.class --rw---- 2.0 fat 2236 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongConsumer$.class --rw---- 2.0 fat 3660 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongConsumer.class +-rw---- 2.0 fat 1856 bl 52% defN 20100101.000002 scala/sys/process/processInternal$$anonfun$ioFailure$1.class +-rw---- 2.0 fat 1856 bl 61% defN 20100101.000002 scala/collection/mutable/RedBlackTree$EntriesIterator.class +-rw---- 2.0 fat 1857 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcDJJ$sp.class +-rw---- 2.0 fat 1857 bl 45% defN 20100101.000002 scala/collection/immutable/MapKeyIterator.class +-rw---- 2.0 fat 1857 bl 54% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsIntToLongFunction$.class +-rw---- 2.0 fat 1857 bl 54% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsLongToIntFunction$.class +-rw---- 2.0 fat 1857 bl 54% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsLongUnaryOperator$.class +-rw---- 2.0 fat 1857 bl 54% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsIntBinaryOperator$.class +-rw---- 2.0 fat 1857 bl 55% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntConsumerAsFunction1.class +-rw---- 2.0 fat 1858 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcFDD$sp.class +-rw---- 2.0 fat 1858 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcZII$sp.class +-rw---- 2.0 fat 1858 bl 59% defN 20100101.000002 scala/jdk/OptionConverters$RichOptionalInt.class +-rw---- 2.0 fat 1858 bl 60% defN 20100101.000002 scala/collection/immutable/RedBlackTree$EntriesIterator.class +-rw---- 2.0 fat 1859 bl 54% defN 20100101.000002 scala/collection/LazyZip2$$anon$5.class +-rw---- 2.0 fat 1860 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcIDD$sp.class +-rw---- 2.0 fat 1860 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcZJJ$sp.class +-rw---- 2.0 fat 1860 bl 48% defN 20100101.000002 scala/concurrent/Await.class +-rw---- 2.0 fat 1861 bl 36% defN 20100101.000002 scala/runtime/LazyDouble.class +-rw---- 2.0 fat 1861 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaBinaryOperator$.class +-rw---- 2.0 fat 1864 bl 38% defN 20100101.000002 scala/collection/WithFilter.class +-rw---- 2.0 fat 1864 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcZDD$sp.class -rw---- 2.0 fat 1865 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongFunction$.class --rw---- 2.0 fat 3700 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongFunction.class --rw---- 2.0 fat 2226 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongPredicate$.class --rw---- 2.0 fat 3862 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongPredicate.class --rw---- 2.0 fat 2161 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongSupplier$.class --rw---- 2.0 fat 3315 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongSupplier.class --rw---- 2.0 fat 2303 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongToDoubleFunction$.class --rw---- 2.0 fat 3472 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongToDoubleFunction.class --rw---- 2.0 fat 2270 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongToIntFunction$.class --rw---- 2.0 fat 3451 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongToIntFunction.class --rw---- 2.0 fat 2270 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongUnaryOperator$.class --rw---- 2.0 fat 3790 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongUnaryOperator.class --rw---- 2.0 fat 1965 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaObjDoubleConsumer$.class --rw---- 2.0 fat 3914 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaObjDoubleConsumer.class +-rw---- 2.0 fat 1866 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntPredicateAsFunction1.class +-rw---- 2.0 fat 1867 bl 45% defN 20100101.000002 scala/collection/immutable/MapValueIterator.class +-rw---- 2.0 fat 1869 bl 54% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsLongBinaryOperator$.class +-rw---- 2.0 fat 1869 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction0AsIntSupplier.class +-rw---- 2.0 fat 18700 bl 54% defN 20100101.000002 scala/runtime/Tuple2Zipped.class +-rw---- 2.0 fat 1870 bl 55% defN 20100101.000002 scala/collection/LazyZip3$$anon$11.class +-rw---- 2.0 fat 1871 bl 43% defN 20100101.000002 scala/collection/BitSetOps$$anon$1.class +-rw---- 2.0 fat 1872 bl 52% defN 20100101.000002 scala/collection/mutable/HashMap$$anon$5.class +-rw---- 2.0 fat 1872 bl 59% defN 20100101.000002 scala/jdk/OptionConverters$RichOptionalLong.class +-rw---- 2.0 fat 1873 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongConsumerAsFunction1.class +-rw---- 2.0 fat 1874 bl 48% defN 20100101.000002 scala/collection/immutable/Set$SetNIterator.class +-rw---- 2.0 fat 1875 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaToIntFunction$.class +-rw---- 2.0 fat 1875 bl 58% defN 20100101.000002 scala/util/matching/Regex$Replacement.class +-rw---- 2.0 fat 1880 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleSupplierAsFunction0.class +-rw---- 2.0 fat 1880 bl 60% defN 20100101.000002 scala/collection/generic/IsIterableOnce$$anon$1.class +-rw---- 2.0 fat 1880 bl 61% defN 20100101.000002 scala/collection/convert/AsJavaExtensions$MutableMapHasAsJava.class +-rw---- 2.0 fat 1881 bl 54% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoubleUnaryOperator$.class +-rw---- 2.0 fat 1881 bl 55% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoubleToIntFunction$.class +-rw---- 2.0 fat 1881 bl 55% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsIntToDoubleFunction$.class +-rw---- 2.0 fat 1881 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction0AsLongSupplier.class +-rw---- 2.0 fat 1881 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaConsumer$.class +-rw---- 2.0 fat 1881 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaSupplier$.class +-rw---- 2.0 fat 1882 bl 51% defN 20100101.000002 scala/Predef$StringFormat$.class +-rw---- 2.0 fat 1882 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongPredicateAsFunction1.class +-rw---- 2.0 fat 1885 bl 40% defN 20100101.000002 scala/runtime/ZippedIterable3.class +-rw---- 2.0 fat 1885 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleFunction$.class +-rw---- 2.0 fat 1885 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaToLongFunction$.class +-rw---- 2.0 fat 1888 bl 62% defN 20100101.000002 scala/collection/package$.class +-rw---- 2.0 fat 1890 bl 58% defN 20100101.000002 scala/collection/LazyZip4$$anon$23.class +-rw---- 2.0 fat 18917 bl 74% defN 20100101.000002 scala/collection/SeqView$Take.class +-rw---- 2.0 fat 1893 bl 55% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoubleToLongFunction$.class +-rw---- 2.0 fat 1893 bl 55% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsLongToDoubleFunction$.class +-rw---- 2.0 fat 1893 bl 55% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsDoubleBinaryOperator$.class +-rw---- 2.0 fat 1896 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcJIJ$sp.class +-rw---- 2.0 fat 1896 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcJJI$sp.class +-rw---- 2.0 fat 1896 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichBooleanSupplierAsFunction0.class +-rw---- 2.0 fat 1897 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaPredicate$.class +-rw---- 2.0 fat 1897 bl 60% defN 20100101.000002 scala/jdk/FutureConverters$CompletionStageOps.class +-rw---- 2.0 fat 1899 bl 46% defN 20100101.000002 scala/runtime/LambdaDeserializer.class +-rw---- 2.0 fat 1900 bl 44% defN 20100101.000002 scala/collection/mutable/DoublingUnrolledBuffer.class +-rw---- 2.0 fat 1900 bl 60% defN 20100101.000002 scala/jdk/OptionConverters$RichOptionalDouble.class +-rw---- 2.0 fat 1901 bl 48% defN 20100101.000002 scala/collection/BitSet$SerializationProxy.class +-rw---- 2.0 fat 1901 bl 51% defN 20100101.000002 scala/Predef$ArrayCharSequence.class +-rw---- 2.0 fat 1902 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcIIJ$sp.class +-rw---- 2.0 fat 1902 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcIJI$sp.class +-rw---- 2.0 fat 1903 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcJJD$sp.class +-rw---- 2.0 fat 1903 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcJDJ$sp.class +-rw---- 2.0 fat 1905 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcDDI$sp.class +-rw---- 2.0 fat 1905 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcDID$sp.class +-rw---- 2.0 fat 1905 bl 52% defN 20100101.000002 scala/runtime/AbstractFunction9.class +-rw---- 2.0 fat 1905 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleConsumerAsFunction1.class +-rw---- 2.0 fat 1905 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction0AsDoubleSupplier.class +-rw---- 2.0 fat 1905 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaToDoubleFunction$.class +-rw---- 2.0 fat 1906 bl 53% defN 20100101.000002 scala/PartialFunction$Unlifted.class +-rw---- 2.0 fat 1907 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcDDJ$sp.class +-rw---- 2.0 fat 1907 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcDJD$sp.class +-rw---- 2.0 fat 1907 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcIDI$sp.class +-rw---- 2.0 fat 1907 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcIID$sp.class +-rw---- 2.0 fat 1907 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaBiPredicate$.class +-rw---- 2.0 fat 1908 bl 54% defN 20100101.000002 scala/collection/immutable/IntMap$Tip$.class +-rw---- 2.0 fat 1910 bl 52% defN 20100101.000002 scala/collection/ArrayOps$ArrayView.class +-rw---- 2.0 fat 1910 bl 55% defN 20100101.000002 scala/math/BigDecimal$RoundingMode$.class +-rw---- 2.0 fat 1910 bl 67% defN 20100101.000002 scala/jdk/Accumulator$LowPriorityAccumulatorFactoryShape.class +-rw---- 2.0 fat 1911 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaBiConsumer$.class +-rw---- 2.0 fat 1912 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcVJI$sp.class +-rw---- 2.0 fat 1912 bl 45% defN 20100101.000002 scala/runtime/java8/JFunction2$mcVIJ$sp.class +-rw---- 2.0 fat 1912 bl 54% defN 20100101.000002 scala/collection/immutable/LongMap$Tip$.class +-rw---- 2.0 fat 19131 bl 49% defN 20100101.000002 scala/Enumeration.class +-rw---- 2.0 fat 1913 bl 28% defN 20100101.000002 scala/collection/generic/BitOperations.class +-rw---- 2.0 fat 1913 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaBiFunction$.class +-rw---- 2.0 fat 1914 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoublePredicateAsFunction1.class +-rw---- 2.0 fat 1915 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcFIJ$sp.class +-rw---- 2.0 fat 1915 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcFJI$sp.class +-rw---- 2.0 fat 1917 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcJDI$sp.class +-rw---- 2.0 fat 1917 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcJID$sp.class +-rw---- 2.0 fat 1917 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcVDI$sp.class +-rw---- 2.0 fat 1917 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcVID$sp.class +-rw---- 2.0 fat 1917 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction0AsBooleanSupplier.class +-rw---- 2.0 fat 1918 bl 56% defN 20100101.000002 scala/collection/LazyZip4$$anon$17.class +-rw---- 2.0 fat 1919 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcDIJ$sp.class +-rw---- 2.0 fat 1919 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcDJI$sp.class +-rw---- 2.0 fat 1919 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcVDJ$sp.class +-rw---- 2.0 fat 1919 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcVJD$sp.class +-rw---- 2.0 fat 1920 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcFDI$sp.class +-rw---- 2.0 fat 1920 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcFID$sp.class +-rw---- 2.0 fat 1921 bl 55% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$MutableSetWrapper.class +-rw---- 2.0 fat 1921 bl 62% defN 20100101.000002 scala/math/Ordering$OrderingOps.class +-rw---- 2.0 fat 1922 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcFDJ$sp.class +-rw---- 2.0 fat 1922 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcFJD$sp.class +-rw---- 2.0 fat 1922 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcZIJ$sp.class +-rw---- 2.0 fat 1922 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcZJI$sp.class +-rw---- 2.0 fat 1923 bl 52% defN 20100101.000002 scala/collection/Iterator$$anon$1.class +-rw---- 2.0 fat 1924 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcIDJ$sp.class +-rw---- 2.0 fat 1924 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcIJD$sp.class +-rw---- 2.0 fat 1925 bl 55% defN 20100101.000002 scala/collection/LazyZip3$$anon$13.class +-rw---- 2.0 fat 1926 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcZDI$sp.class +-rw---- 2.0 fat 1926 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcZID$sp.class +-rw---- 2.0 fat 1926 bl 49% defN 20100101.000002 scala/collection/mutable/AnyRefMap$AnyRefMapIterator.class +-rw---- 2.0 fat 19272 bl 65% defN 20100101.000002 scala/runtime/RichChar.class +-rw---- 2.0 fat 1927 bl 61% defN 20100101.000002 scala/collection/SortedMapFactory$.class +-rw---- 2.0 fat 1928 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcZDJ$sp.class +-rw---- 2.0 fat 1928 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcZJD$sp.class +-rw---- 2.0 fat 1929 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntFunction$.class +-rw---- 2.0 fat 1930 bl 56% defN 20100101.000002 scala/collection/LazyZip3$$anon$9$$anon$10.class +-rw---- 2.0 fat 1930 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntUnaryOperatorAsFunction1.class +-rw---- 2.0 fat 1933 bl 55% defN 20100101.000002 scala/collection/LazyZip4$$anon$19.class +-rw---- 2.0 fat 1933 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaFunction$.class +-rw---- 2.0 fat 1934 bl 62% defN 20100101.000002 scala/collection/EvidenceIterableFactory$.class +-rw---- 2.0 fat 1935 bl 52% defN 20100101.000002 scala/Predef$SeqCharSequence.class -rw---- 2.0 fat 1935 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaObjIntConsumer$.class --rw---- 2.0 fat 3891 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaObjIntConsumer.class +-rw---- 2.0 fat 1935 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsIntPredicate.class +-rw---- 2.0 fat 1935 bl 61% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamShape$$anon$1.class +-rw---- 2.0 fat 1936 bl 56% defN 20100101.000002 scala/Tuple5$.class +-rw---- 2.0 fat 1940 bl 63% defN 20100101.000002 scala/jdk/Accumulator$LowPriorityAccumulatorFactoryShape$$anon$4.class +-rw---- 2.0 fat 1941 bl 53% defN 20100101.000002 scala/sys/process/processInternal$$anonfun$onInterrupt$1.class +-rw---- 2.0 fat 1943 bl 52% defN 20100101.000002 scala/collection/View$Zip.class +-rw---- 2.0 fat 1944 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsIntConsumer.class +-rw---- 2.0 fat 1945 bl 43% defN 20100101.000002 scala/collection/immutable/SetHashIterator.class +-rw---- 2.0 fat 1945 bl 49% defN 20100101.000002 scala/collection/immutable/IntMapEntryIterator.class -rw---- 2.0 fat 1945 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaObjLongConsumer$.class --rw---- 2.0 fat 3896 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaObjLongConsumer.class --rw---- 2.0 fat 1835 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaPredicate$.class --rw---- 2.0 fat 4220 bl 63% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaPredicate.class --rw---- 2.0 fat 1789 bl 55% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaSupplier$.class --rw---- 2.0 fat 3449 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaSupplier.class --rw---- 2.0 fat 1977 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaToDoubleBiFunction$.class --rw---- 2.0 fat 3914 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaToDoubleBiFunction.class --rw---- 2.0 fat 1905 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaToDoubleFunction$.class --rw---- 2.0 fat 3736 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaToDoubleFunction.class +-rw---- 2.0 fat 1945 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongFunction$.class +-rw---- 2.0 fat 1946 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntToLongFunctionAsFunction1.class +-rw---- 2.0 fat 1946 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongToIntFunctionAsFunction1.class +-rw---- 2.0 fat 1946 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongUnaryOperatorAsFunction1.class +-rw---- 2.0 fat 1947 bl 53% defN 20100101.000002 scala/sys/process/processInternal$$anonfun$onIOInterrupt$1.class +-rw---- 2.0 fat 1947 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsLongPredicate.class -rw---- 2.0 fat 1947 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaToIntBiFunction$.class --rw---- 2.0 fat 3887 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaToIntBiFunction.class --rw---- 2.0 fat 1875 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaToIntFunction$.class --rw---- 2.0 fat 3709 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaToIntFunction.class +-rw---- 2.0 fat 1948 bl 61% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamShape$$anon$2.class +-rw---- 2.0 fat 1950 bl 52% defN 20100101.000002 scala/None$.class +-rw---- 2.0 fat 1950 bl 57% defN 20100101.000002 scala/collection/immutable/$colon$colon$.class +-rw---- 2.0 fat 1955 bl 55% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntSupplierAsFunction0$.class +-rw---- 2.0 fat 1956 bl 51% defN 20100101.000002 scala/collection/Iterator$$anon$14.class +-rw---- 2.0 fat 1956 bl 51% defN 20100101.000002 scala/sys/process/ProcessImpl$DummyProcess.class +-rw---- 2.0 fat 1956 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsLongConsumer.class -rw---- 2.0 fat 1957 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaToLongBiFunction$.class --rw---- 2.0 fat 3896 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaToLongBiFunction.class --rw---- 2.0 fat 1885 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaToLongFunction$.class --rw---- 2.0 fat 3718 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaToLongFunction.class --rw---- 2.0 fat 1845 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaUnaryOperator$.class --rw---- 2.0 fat 3541 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaUnaryOperator.class +-rw---- 2.0 fat 1958 bl 49% defN 20100101.000002 scala/collection/immutable/LongMapEntryIterator.class +-rw---- 2.0 fat 1958 bl 49% defN 20100101.000002 scala/collection/View$DropRight.class +-rw---- 2.0 fat 1960 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichSupplierAsFunction0.class +-rw---- 2.0 fat 1961 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaUnaryOperator$.class +-rw---- 2.0 fat 1961 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaToIntFunction$.class +-rw---- 2.0 fat 1962 bl 54% defN 20100101.000002 scala/collection/Searching$Found$.class +-rw---- 2.0 fat 1962 bl 56% defN 20100101.000002 scala/collection/mutable/HashTable$HashUtils.class +-rw---- 2.0 fat 1964 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntBinaryOperatorAsFunction2.class +-rw---- 2.0 fat 1965 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaObjDoubleConsumer$.class -rw---- 2.0 fat 1965 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaBiConsumer$.class --rw---- 2.0 fat 14145 bl 76% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaBiConsumer.class --rw---- 2.0 fat 2017 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaBiFunction$.class --rw---- 2.0 fat 13918 bl 77% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaBiFunction.class --rw---- 2.0 fat 1981 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaBiPredicate$.class --rw---- 2.0 fat 14145 bl 76% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaBiPredicate.class +-rw---- 2.0 fat 1968 bl 48% defN 20100101.000002 scala/util/matching/Regex$Groups$.class +-rw---- 2.0 fat 19710 bl 65% defN 20100101.000002 scala/Tuple14.class +-rw---- 2.0 fat 1971 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoublePredicate.class +-rw---- 2.0 fat 1973 bl 55% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongSupplierAsFunction0$.class +-rw---- 2.0 fat 1974 bl 61% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamShape$$anon$3.class +-rw---- 2.0 fat 1976 bl 47% defN 20100101.000002 scala/ref/SoftReferenceWithWrapper.class +-rw---- 2.0 fat 1976 bl 47% defN 20100101.000002 scala/ref/WeakReferenceWithWrapper.class +-rw---- 2.0 fat 1977 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaToDoubleBiFunction$.class -rw---- 2.0 fat 1977 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaBinaryOperator$.class --rw---- 2.0 fat 13822 bl 77% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaBinaryOperator.class --rw---- 2.0 fat 2207 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaBooleanSupplier$.class --rw---- 2.0 fat 4459 bl 63% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaBooleanSupplier.class --rw---- 2.0 fat 1881 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaConsumer$.class --rw---- 2.0 fat 8234 bl 71% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaConsumer.class --rw---- 2.0 fat 2292 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleBinaryOperator$.class --rw---- 2.0 fat 13719 bl 76% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleBinaryOperator.class --rw---- 2.0 fat 2190 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleConsumer$.class --rw---- 2.0 fat 7887 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleConsumer.class -rw---- 2.0 fat 1977 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleFunction$.class --rw---- 2.0 fat 8297 bl 71% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleFunction.class --rw---- 2.0 fat 2207 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoublePredicate$.class --rw---- 2.0 fat 7856 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoublePredicate.class --rw---- 2.0 fat 2190 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleSupplier$.class --rw---- 2.0 fat 4447 bl 63% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleSupplier.class --rw---- 2.0 fat 2275 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleToIntFunction$.class --rw---- 2.0 fat 7898 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleToIntFunction.class --rw---- 2.0 fat 2292 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleToLongFunction$.class --rw---- 2.0 fat 7902 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleToLongFunction.class --rw---- 2.0 fat 2275 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleUnaryOperator$.class --rw---- 2.0 fat 7899 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleUnaryOperator.class --rw---- 2.0 fat 1933 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaFunction$.class --rw---- 2.0 fat 8040 bl 71% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaFunction.class --rw---- 2.0 fat 2241 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntBinaryOperator$.class --rw---- 2.0 fat 13688 bl 76% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntBinaryOperator.class --rw---- 2.0 fat 2139 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntConsumer$.class --rw---- 2.0 fat 7857 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntConsumer.class --rw---- 2.0 fat 1929 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntFunction$.class --rw---- 2.0 fat 8225 bl 71% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntFunction.class --rw---- 2.0 fat 2156 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntPredicate$.class --rw---- 2.0 fat 7826 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntPredicate.class --rw---- 2.0 fat 2139 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntSupplier$.class --rw---- 2.0 fat 4419 bl 63% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntSupplier.class --rw---- 2.0 fat 2275 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntToDoubleFunction$.class --rw---- 2.0 fat 7896 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntToDoubleFunction.class --rw---- 2.0 fat 2241 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntToLongFunction$.class --rw---- 2.0 fat 7872 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntToLongFunction.class --rw---- 2.0 fat 2224 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntUnaryOperator$.class --rw---- 2.0 fat 7868 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntUnaryOperator.class --rw---- 2.0 fat 2258 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongBinaryOperator$.class --rw---- 2.0 fat 13693 bl 76% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongBinaryOperator.class --rw---- 2.0 fat 2156 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongConsumer$.class --rw---- 2.0 fat 7867 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongConsumer.class --rw---- 2.0 fat 1945 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongFunction$.class --rw---- 2.0 fat 8265 bl 71% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongFunction.class --rw---- 2.0 fat 2173 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongPredicate$.class --rw---- 2.0 fat 7836 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongPredicate.class --rw---- 2.0 fat 2156 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongSupplier$.class --rw---- 2.0 fat 4423 bl 63% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongSupplier.class --rw---- 2.0 fat 2292 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongToDoubleFunction$.class --rw---- 2.0 fat 7906 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongToDoubleFunction.class --rw---- 2.0 fat 2241 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongToIntFunction$.class --rw---- 2.0 fat 7878 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongToIntFunction.class --rw---- 2.0 fat 2241 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongUnaryOperator$.class --rw---- 2.0 fat 7873 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongUnaryOperator.class --rw---- 2.0 fat 2025 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaObjDoubleConsumer$.class --rw---- 2.0 fat 14283 bl 76% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaObjDoubleConsumer.class -rw---- 2.0 fat 1977 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaObjIntConsumer$.class --rw---- 2.0 fat 14235 bl 76% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaObjIntConsumer.class +-rw---- 2.0 fat 1977 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaToLongFunction$.class +-rw---- 2.0 fat 1978 bl 58% defN 20100101.000002 scala/jdk/FutureConverters$CompletionStageOps$.class +-rw---- 2.0 fat 1978 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleToIntFunctionAsFunction1.class +-rw---- 2.0 fat 1978 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleUnaryOperatorAsFunction1.class +-rw---- 2.0 fat 1978 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntToDoubleFunctionAsFunction1.class +-rw---- 2.0 fat 1979 bl 58% defN 20100101.000002 scala/collection/LazyZip3$$anon$15$$anon$16.class +-rw---- 2.0 fat 1979 bl 58% defN 20100101.000002 scala/collection/mutable/LinkedHashSet$LinkedHashSetIterator.class +-rw---- 2.0 fat 1979 bl 63% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$OrBuilder.class +-rw---- 2.0 fat 1980 bl 54% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntConsumerAsFunction1$.class +-rw---- 2.0 fat 1980 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoubleConsumer.class +-rw---- 2.0 fat 1980 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongBinaryOperatorAsFunction2.class +-rw---- 2.0 fat 1980 bl 64% defN 20100101.000002 scala/collection/mutable/RedBlackTree$Tree.class +-rw---- 2.0 fat 1981 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaBiPredicate$.class +-rw---- 2.0 fat 19830 bl 68% defN 20100101.000002 scala/collection/immutable/ListSet.class +-rw---- 2.0 fat 1983 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsIntUnaryOperator.class +-rw---- 2.0 fat 1985 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichConsumerAsFunction1.class +-rw---- 2.0 fat 1986 bl 56% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JMapWrapperLike$$anon$5.class +-rw---- 2.0 fat 1986 bl 63% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$AndBuilder.class +-rw---- 2.0 fat 1990 bl 51% defN 20100101.000002 scala/math/Equiv$IterableEquiv.class +-rw---- 2.0 fat 1991 bl 49% defN 20100101.000002 scala/collection/View$TakeRight.class +-rw---- 2.0 fat 1991 bl 55% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntPredicateAsFunction1$.class +-rw---- 2.0 fat 1992 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunctionAsFunction1.class -rw---- 2.0 fat 1993 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaObjLongConsumer$.class --rw---- 2.0 fat 14251 bl 76% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaObjLongConsumer.class --rw---- 2.0 fat 1897 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaPredicate$.class --rw---- 2.0 fat 8210 bl 71% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaPredicate.class --rw---- 2.0 fat 1881 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaSupplier$.class --rw---- 2.0 fat 4691 bl 65% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaSupplier.class --rw---- 2.0 fat 2093 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaToDoubleBiFunction$.class --rw---- 2.0 fat 14257 bl 76% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaToDoubleBiFunction.class +-rw---- 2.0 fat 1994 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleToLongFunctionAsFunction1.class +-rw---- 2.0 fat 1994 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongToDoubleFunctionAsFunction1.class +-rw---- 2.0 fat 1995 bl 37% defN 20100101.000002 scala/util/hashing/Hashing.class +-rw---- 2.0 fat 1995 bl 52% defN 20100101.000002 scala/runtime/AbstractFunction10.class +-rw---- 2.0 fat 1995 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsIntToLongFunction.class +-rw---- 2.0 fat 1995 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsLongToIntFunction.class +-rw---- 2.0 fat 1995 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsLongUnaryOperator.class +-rw---- 2.0 fat 19977 bl 62% defN 20100101.000002 scala/collection/mutable/Buffer.class +-rw---- 2.0 fat 1997 bl 55% defN 20100101.000002 scala/collection/mutable/LinkedHashMap$$anon$5.class +-rw---- 2.0 fat 1997 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichPredicateAsFunction1.class +-rw---- 2.0 fat 1998 bl 55% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongConsumerAsFunction1$.class +-rw---- 2.0 fat 1998 bl 56% defN 20100101.000002 scala/collection/LazyZip4$$anon$21.class +-rw---- 2.0 fat 2000 bl 62% defN 20100101.000002 scala/collection/MapOps$GenKeySet.class +-rw---- 2.0 fat 2007 bl 64% defN 20100101.000002 scala/collection/immutable/Range$BigInt$.class +-rw---- 2.0 fat 20084 bl 60% defN 20100101.000002 scala/collection/immutable/WrappedString.class +-rw---- 2.0 fat 2009 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleSupplierAsFunction0$.class +-rw---- 2.0 fat 2009 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongPredicateAsFunction1$.class -rw---- 2.0 fat 2009 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaToDoubleFunction$.class --rw---- 2.0 fat 8346 bl 71% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaToDoubleFunction.class +-rw---- 2.0 fat 2010 bl 56% defN 20100101.000002 scala/concurrent/duration/FiniteDuration$.class +-rw---- 2.0 fat 2011 bl 55% defN 20100101.000002 scala/collection/immutable/IntMap$Nil$.class +-rw---- 2.0 fat 2012 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleBinaryOperatorAsFunction2.class +-rw---- 2.0 fat 20130 bl 55% defN 20100101.000002 scala/collection/BitSetOps.class +-rw---- 2.0 fat 2013 bl 55% defN 20100101.000002 scala/Function1$UnliftOps$.class +-rw---- 2.0 fat 2014 bl 55% defN 20100101.000002 scala/collection/IterableOnce$.class +-rw---- 2.0 fat 2015 bl 39% defN 20100101.000002 scala/collection/BitSetOps$.class +-rw---- 2.0 fat 2016 bl 55% defN 20100101.000002 scala/collection/immutable/LongMap$Nil$.class +-rw---- 2.0 fat 2017 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaBiFunction$.class +-rw---- 2.0 fat 2018 bl 57% defN 20100101.000002 scala/collection/View$Filter.class +-rw---- 2.0 fat 2018 bl 65% defN 20100101.000002 scala/util/hashing/MurmurHash3$ArrayHashing.class +-rw---- 2.0 fat 2019 bl 34% defN 20100101.000002 scala/runtime/ModuleSerializationProxy.class +-rw---- 2.0 fat 2019 bl 52% defN 20100101.000002 scala/concurrent/duration/package$DurationDouble$.class +-rw---- 2.0 fat 2019 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoubleToIntFunction.class +-rw---- 2.0 fat 2019 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoubleUnaryOperator.class +-rw---- 2.0 fat 2019 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsIntToDoubleFunction.class +-rw---- 2.0 fat 2021 bl 64% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$SequenceBuilder.class +-rw---- 2.0 fat 2025 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaObjDoubleConsumer$.class +-rw---- 2.0 fat 2027 bl 56% defN 20100101.000002 scala/collection/immutable/Range$Partial$.class +-rw---- 2.0 fat 2027 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichBooleanSupplierAsFunction0$.class +-rw---- 2.0 fat 2027 bl 58% defN 20100101.000002 scala/collection/mutable/LinkedHashMap$LinkedHashMapIterator.class +-rw---- 2.0 fat 2028 bl 40% defN 20100101.000002 scala/collection/generic/SerializeEnd.class +-rw---- 2.0 fat 2029 bl 55% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$IStreamBuilder$$anonfun$$lessinit$greater$5.class +-rw---- 2.0 fat 2029 bl 55% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$OStreamBuilder$$anonfun$$lessinit$greater$4.class +-rw---- 2.0 fat 2031 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoubleToLongFunction.class +-rw---- 2.0 fat 2031 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsLongToDoubleFunction.class +-rw---- 2.0 fat 2032 bl 50% defN 20100101.000002 scala/sys/ShutdownHookThread$.class +-rw---- 2.0 fat 2032 bl 51% defN 20100101.000002 scala/collection/IndexedSeqView$Slice.class +-rw---- 2.0 fat 2033 bl 29% defN 20100101.000002 scala/collection/mutable/MutationTracker.class +-rw---- 2.0 fat 2034 bl 56% defN 20100101.000002 scala/collection/mutable/HashSet$DeserializationFactory.class +-rw---- 2.0 fat 2034 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleConsumerAsFunction1$.class +-rw---- 2.0 fat 2034 bl 60% defN 20100101.000002 scala/collection/immutable/Range$Int$.class +-rw---- 2.0 fat 2035 bl 52% defN 20100101.000002 scala/io/BufferedSource$BufferedLineIterator.class +-rw---- 2.0 fat 2035 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntFunctionAsFunction1.class +-rw---- 2.0 fat 2036 bl 56% defN 20100101.000002 scala/collection/mutable/AbstractSeq.class +-rw---- 2.0 fat 2036 bl 60% defN 20100101.000002 scala/collection/immutable/Range$Long$.class +-rw---- 2.0 fat 2038 bl 36% defN 20100101.000002 scala/deprecatedName.class +-rw---- 2.0 fat 2039 bl 47% defN 20100101.000002 scala/collection/BuildFromLowPriority2.class +-rw---- 2.0 fat 2040 bl 42% defN 20100101.000002 scala/language.class +-rw---- 2.0 fat 2041 bl 43% defN 20100101.000002 scala/runtime/MegaMethodCache.class +-rw---- 2.0 fat 2041 bl 56% defN 20100101.000002 scala/runtime/SymbolLiteral.class +-rw---- 2.0 fat 2041 bl 66% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$IterableWrapperTrait.class +-rw---- 2.0 fat 2042 bl 45% defN 20100101.000002 scala/collection/immutable/MapKeyValueTupleIterator.class +-rw---- 2.0 fat 2045 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoublePredicateAsFunction1$.class +-rw---- 2.0 fat 2045 bl 59% defN 20100101.000002 scala/collection/immutable/IntMap$ToFactory$.class -rw---- 2.0 fat 2045 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaToIntBiFunction$.class --rw---- 2.0 fat 14211 bl 76% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaToIntBiFunction.class --rw---- 2.0 fat 1961 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaToIntFunction$.class --rw---- 2.0 fat 8300 bl 71% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaToIntFunction.class --rw---- 2.0 fat 2061 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaToLongBiFunction$.class --rw---- 2.0 fat 14221 bl 76% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaToLongBiFunction.class --rw---- 2.0 fat 1977 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaToLongFunction$.class --rw---- 2.0 fat 8310 bl 71% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaToLongFunction.class --rw---- 2.0 fat 1961 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaUnaryOperator$.class --rw---- 2.0 fat 8037 bl 71% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaUnaryOperator.class --rw---- 2.0 fat 2208 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichBiConsumerAsFunction2$.class +-rw---- 2.0 fat 2049 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsIntBinaryOperator.class +-rw---- 2.0 fat 2054 bl 39% defN 20100101.000002 scala/runtime/LazyRef.class +-rw---- 2.0 fat 2054 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongFunctionAsFunction1.class -rw---- 2.0 fat 2055 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichBiConsumerAsFunction2.class --rw---- 2.0 fat 2255 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichBiFunctionAsFunction2$.class +-rw---- 2.0 fat 2056 bl 55% defN 20100101.000002 scala/collection/Searching$InsertionPoint$.class +-rw---- 2.0 fat 2056 bl 59% defN 20100101.000002 scala/collection/immutable/LongMap$ToFactory$.class +-rw---- 2.0 fat 2058 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichUnaryOperatorAsFunction1.class +-rw---- 2.0 fat 20605 bl 52% defN 20100101.000002 scala/collection/mutable/RedBlackTree.class +-rw---- 2.0 fat 2060 bl 42% defN 20100101.000002 scala/util/hashing/ByteswapHashing.class +-rw---- 2.0 fat 2060 bl 50% defN 20100101.000002 scala/collection/SeqOps$$anon$3.class +-rw---- 2.0 fat 2060 bl 59% defN 20100101.000002 scala/collection/mutable/LongMap$ToFactory$.class +-rw---- 2.0 fat 2061 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsLongBinaryOperator.class +-rw---- 2.0 fat 2061 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaToLongBiFunction$.class -rw---- 2.0 fat 2062 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichBiFunctionAsFunction2.class --rw---- 2.0 fat 2221 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichBiPredicateAsFunction2$.class +-rw---- 2.0 fat 2063 bl 48% defN 20100101.000002 scala/collection/Iterator$UnfoldIterator.class +-rw---- 2.0 fat 2063 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntUnaryOperatorAsFunction1$.class +-rw---- 2.0 fat 2065 bl 57% defN 20100101.000002 scala/Tuple6$.class +-rw---- 2.0 fat 2065 bl 62% defN 20100101.000002 scala/Tuple2$mcZZ$sp.class +-rw---- 2.0 fat 20664 bl 76% defN 20100101.000002 scala/Function2.class +-rw---- 2.0 fat 2066 bl 57% defN 20100101.000002 scala/jdk/OptionConverters$RichOption.class -rw---- 2.0 fat 2067 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichBiPredicateAsFunction2.class --rw---- 2.0 fat 2197 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichBinaryOperatorAsFunction2$.class +-rw---- 2.0 fat 2068 bl 56% defN 20100101.000002 scala/concurrent/duration/Deadline$.class +-rw---- 2.0 fat 2071 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichSupplierAsFunction0$.class +-rw---- 2.0 fat 2073 bl 53% defN 20100101.000002 scala/runtime/AbstractFunction11.class +-rw---- 2.0 fat 2073 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToIntFunctionAsFunction1.class +-rw---- 2.0 fat 2075 bl 40% defN 20100101.000002 scala/ref/Reference.class +-rw---- 2.0 fat 2075 bl 62% defN 20100101.000002 scala/Tuple2$mcCC$sp.class +-rw---- 2.0 fat 2078 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction0AsSupplier.class +-rw---- 2.0 fat 2080 bl 54% defN 20100101.000002 scala/util/control/Exception$$anonfun$pfFromExceptions$1.class -rw---- 2.0 fat 2080 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichBinaryOperatorAsFunction2.class --rw---- 2.0 fat 2027 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichBooleanSupplierAsFunction0$.class --rw---- 2.0 fat 1896 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichBooleanSupplierAsFunction0.class --rw---- 2.0 fat 2096 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichConsumerAsFunction1$.class --rw---- 2.0 fat 1985 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichConsumerAsFunction1.class --rw---- 2.0 fat 2153 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleBinaryOperatorAsFunction2$.class --rw---- 2.0 fat 2012 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleBinaryOperatorAsFunction2.class --rw---- 2.0 fat 2034 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleConsumerAsFunction1$.class --rw---- 2.0 fat 1905 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleConsumerAsFunction1.class --rw---- 2.0 fat 2209 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleFunctionAsFunction1$.class +-rw---- 2.0 fat 2081 bl 40% defN 20100101.000002 scala/collection/concurrent/TrieMapSerializationEnd.class +-rw---- 2.0 fat 2081 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntToLongFunctionAsFunction1$.class +-rw---- 2.0 fat 2081 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongToIntFunctionAsFunction1$.class +-rw---- 2.0 fat 2081 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongUnaryOperatorAsFunction1$.class +-rw---- 2.0 fat 2083 bl 64% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamShapeLowPriority1$$anon$4.class +-rw---- 2.0 fat 2085 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsDoubleBinaryOperator.class +-rw---- 2.0 fat 2086 bl 46% defN 20100101.000002 scala/collection/immutable/MapKeyValueTupleReverseIterator.class +-rw---- 2.0 fat 2090 bl 56% defN 20100101.000002 scala/collection/immutable/VectorMap$Tombstone$.class +-rw---- 2.0 fat 2091 bl 63% defN 20100101.000002 scala/collection/IterableFactory$$anon$1.class -rw---- 2.0 fat 2092 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleFunctionAsFunction1.class --rw---- 2.0 fat 2045 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoublePredicateAsFunction1$.class --rw---- 2.0 fat 1914 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoublePredicateAsFunction1.class --rw---- 2.0 fat 2009 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleSupplierAsFunction0$.class --rw---- 2.0 fat 1880 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleSupplierAsFunction0.class +-rw---- 2.0 fat 2092 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToLongFunctionAsFunction1.class +-rw---- 2.0 fat 2093 bl 56% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$Ordering$Tip$.class +-rw---- 2.0 fat 2093 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaToDoubleBiFunction$.class +-rw---- 2.0 fat 2096 bl 54% defN 20100101.000002 scala/collection/mutable/HashSet$HashSetIterator.class +-rw---- 2.0 fat 2096 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichConsumerAsFunction1$.class +-rw---- 2.0 fat 2099 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntBinaryOperatorAsFunction2$.class +-rw---- 2.0 fat 2102 bl 49% defN 20100101.000002 scala/collection/StrictOptimizedSetOps.class +-rw---- 2.0 fat 2102 bl 54% defN 20100101.000002 scala/collection/mutable/HashMap$HashMapIterator.class +-rw---- 2.0 fat 2104 bl 50% defN 20100101.000002 scala/compat/Platform$.class +-rw---- 2.0 fat 2106 bl 41% defN 20100101.000002 scala/sys/package.class +-rw---- 2.0 fat 2109 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichPredicateAsFunction1$.class +-rw---- 2.0 fat 2110 bl 43% defN 20100101.000002 scala/collection/Iterator$$anon$25.class +-rw---- 2.0 fat 2110 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsFunction.class +-rw---- 2.0 fat 2111 bl 57% defN 20100101.000002 scala/collection/LazyZip4$$anon$17$$anon$18.class +-rw---- 2.0 fat 2112 bl 60% defN 20100101.000002 scala/concurrent/impl/ExecutionContextImpl$$anon$3.class +-rw---- 2.0 fat 2112 bl 69% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamShapeLowPriority1.class +-rw---- 2.0 fat 2113 bl 39% defN 20100101.000002 scala/util/control/Breaks.class +-rw---- 2.0 fat 2114 bl 38% defN 20100101.000002 scala/Proxy.class +-rw---- 2.0 fat 2116 bl 57% defN 20100101.000002 scala/collection/mutable/HashMap$DeserializationFactory.class +-rw---- 2.0 fat 21176 bl 68% defN 20100101.000002 scala/util/Using$.class -rw---- 2.0 fat 2117 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleToIntFunctionAsFunction1$.class --rw---- 2.0 fat 1978 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleToIntFunctionAsFunction1.class +-rw---- 2.0 fat 2117 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleUnaryOperatorAsFunction1$.class +-rw---- 2.0 fat 2117 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntToDoubleFunctionAsFunction1$.class +-rw---- 2.0 fat 2117 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongBinaryOperatorAsFunction2$.class +-rw---- 2.0 fat 2117 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichObjIntConsumerAsFunction2.class +-rw---- 2.0 fat 2119 bl 62% defN 20100101.000002 scala/Tuple2$mcJJ$sp.class +-rw---- 2.0 fat 2120 bl 53% defN 20100101.000002 scala/math/Equiv$Tuple2Equiv.class +-rw---- 2.0 fat 2123 bl 62% defN 20100101.000002 scala/Tuple2$mcDD$sp.class +-rw---- 2.0 fat 2125 bl 58% defN 20100101.000002 scala/jdk/OptionConverters$RichOptional.class +-rw---- 2.0 fat 2125 bl 62% defN 20100101.000002 scala/Tuple2$mcII$sp.class +-rw---- 2.0 fat 21294 bl 61% defN 20100101.000002 scala/collection/StrictOptimizedIterableOps.class +-rw---- 2.0 fat 21303 bl 73% defN 20100101.000002 scala/jdk/Accumulator$.class +-rw---- 2.0 fat 2130 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToDoubleFunctionAsFunction1.class +-rw---- 2.0 fat 21312 bl 66% defN 20100101.000002 scala/Tuple15.class +-rw---- 2.0 fat 2132 bl 64% defN 20100101.000002 scala/collection/MapFactory$$anon$2.class -rw---- 2.0 fat 2135 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleToLongFunctionAsFunction1$.class --rw---- 2.0 fat 1994 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleToLongFunctionAsFunction1.class --rw---- 2.0 fat 2117 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleUnaryOperatorAsFunction1$.class --rw---- 2.0 fat 1978 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleUnaryOperatorAsFunction1.class --rw---- 2.0 fat 1833 bl 53% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction0AsBooleanSupplier$.class --rw---- 2.0 fat 1917 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction0AsBooleanSupplier.class --rw---- 2.0 fat 1821 bl 53% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction0AsDoubleSupplier$.class --rw---- 2.0 fat 1905 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction0AsDoubleSupplier.class --rw---- 2.0 fat 1785 bl 53% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction0AsIntSupplier$.class --rw---- 2.0 fat 1869 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction0AsIntSupplier.class --rw---- 2.0 fat 1797 bl 52% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction0AsLongSupplier$.class --rw---- 2.0 fat 1881 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction0AsLongSupplier.class +-rw---- 2.0 fat 2135 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongToDoubleFunctionAsFunction1$.class +-rw---- 2.0 fat 2136 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichObjLongConsumerAsFunction2.class +-rw---- 2.0 fat 2138 bl 38% defN 20100101.000002 scala/ValueOf.class +-rw---- 2.0 fat 21390 bl 56% defN 20100101.000002 scala/collection/concurrent/INode.class +-rw---- 2.0 fat 2139 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntConsumer$.class +-rw---- 2.0 fat 2139 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntSupplier$.class +-rw---- 2.0 fat 2140 bl 61% defN 20100101.000002 scala/collection/mutable/AnyRefMap$ToFactory$.class +-rw---- 2.0 fat 21417 bl 64% defN 20100101.000002 scala/collection/ClassTagIterableFactory.class +-rw---- 2.0 fat 2143 bl 55% defN 20100101.000002 scala/StringContext$s$.class +-rw---- 2.0 fat 2143 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunctionAsFunction1$.class +-rw---- 2.0 fat 2143 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToIntBiFunctionAsFunction2.class -rw---- 2.0 fat 2144 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction0AsSupplier$.class --rw---- 2.0 fat 2078 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction0AsSupplier.class --rw---- 2.0 fat 2219 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsConsumer$.class +-rw---- 2.0 fat 2146 bl 56% defN 20100101.000002 scala/collection/concurrent/CNode$.class +-rw---- 2.0 fat 2146 bl 61% defN 20100101.000002 scala/collection/convert/StreamExtensions$IterableHasSeqStream.class +-rw---- 2.0 fat 2146 bl 70% defN 20100101.000002 scala/collection/convert/StreamExtensions$LowPriorityAccumulatorFactoryInfo.class +-rw---- 2.0 fat 2147 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsPredicate.class +-rw---- 2.0 fat 2149 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntFunctionAsFunction1$.class +-rw---- 2.0 fat 2150 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntSupplier$.class +-rw---- 2.0 fat 2152 bl 54% defN 20100101.000002 scala/runtime/AbstractFunction12.class +-rw---- 2.0 fat 2153 bl 58% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamUnboxer$$anon$5.class -rw---- 2.0 fat 2153 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsConsumer.class --rw---- 2.0 fat 1821 bl 53% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoubleConsumer$.class --rw---- 2.0 fat 1980 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoubleConsumer.class --rw---- 2.0 fat 2282 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoubleFunction$.class --rw---- 2.0 fat 2222 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoubleFunction.class --rw---- 2.0 fat 1833 bl 53% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoublePredicate$.class --rw---- 2.0 fat 1971 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoublePredicate.class --rw---- 2.0 fat 1881 bl 55% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoubleToIntFunction$.class --rw---- 2.0 fat 2019 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoubleToIntFunction.class --rw---- 2.0 fat 1893 bl 55% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoubleToLongFunction$.class --rw---- 2.0 fat 2031 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoubleToLongFunction.class --rw---- 2.0 fat 1881 bl 54% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoubleUnaryOperator$.class --rw---- 2.0 fat 2019 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoubleUnaryOperator.class --rw---- 2.0 fat 2216 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsFunction$.class --rw---- 2.0 fat 2110 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsFunction.class --rw---- 2.0 fat 1785 bl 53% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsIntConsumer$.class --rw---- 2.0 fat 1944 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsIntConsumer.class --rw---- 2.0 fat 2240 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsIntFunction$.class +-rw---- 2.0 fat 2153 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleBinaryOperatorAsFunction2$.class +-rw---- 2.0 fat 2156 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntPredicate$.class +-rw---- 2.0 fat 2156 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongConsumer$.class +-rw---- 2.0 fat 2156 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongSupplier$.class +-rw---- 2.0 fat 2158 bl 47% defN 20100101.000002 scala/collection/mutable/SeqMap.class +-rw---- 2.0 fat 2161 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongSupplier$.class +-rw---- 2.0 fat 2162 bl 58% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamUnboxer$$anon$6.class +-rw---- 2.0 fat 2162 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsUnaryOperator.class +-rw---- 2.0 fat 2162 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToLongBiFunctionAsFunction2.class +-rw---- 2.0 fat 2163 bl 68% defN 20100101.000002 scala/collection/generic/IsMap$.class +-rw---- 2.0 fat 2165 bl 59% defN 20100101.000002 scala/collection/LazyZip4$$anon$23$$anon$24.class +-rw---- 2.0 fat 2169 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongFunctionAsFunction1$.class +-rw---- 2.0 fat 21710 bl 53% defN 20100101.000002 scala/jdk/IntAccumulator.class +-rw---- 2.0 fat 21716 bl 53% defN 20100101.000002 scala/jdk/LongAccumulator.class +-rw---- 2.0 fat 2172 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsBiFunction.class +-rw---- 2.0 fat 2173 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongPredicate$.class +-rw---- 2.0 fat 2174 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichUnaryOperatorAsFunction1$.class +-rw---- 2.0 fat 2174 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichObjDoubleConsumerAsFunction2.class +-rw---- 2.0 fat 2175 bl 62% defN 20100101.000002 scala/collection/IterableOps$SizeCompareOps$.class -rw---- 2.0 fat 2177 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsIntFunction.class --rw---- 2.0 fat 1797 bl 52% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsIntPredicate$.class --rw---- 2.0 fat 1935 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsIntPredicate.class --rw---- 2.0 fat 1881 bl 55% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsIntToDoubleFunction$.class --rw---- 2.0 fat 2019 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsIntToDoubleFunction.class --rw---- 2.0 fat 1857 bl 54% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsIntToLongFunction$.class --rw---- 2.0 fat 1995 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsIntToLongFunction.class --rw---- 2.0 fat 1845 bl 54% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsIntUnaryOperator$.class --rw---- 2.0 fat 1983 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsIntUnaryOperator.class --rw---- 2.0 fat 1797 bl 53% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsLongConsumer$.class --rw---- 2.0 fat 1956 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsLongConsumer.class --rw---- 2.0 fat 2254 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsLongFunction$.class +-rw---- 2.0 fat 2179 bl 53% defN 20100101.000002 scala/collection/immutable/SortedMap$.class +-rw---- 2.0 fat 2180 bl 58% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamUnboxer$$anon$7.class +-rw---- 2.0 fat 2183 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleSupplier$.class +-rw---- 2.0 fat 21860 bl 63% defN 20100101.000002 scala/runtime/ScalaRunTime$.class +-rw---- 2.0 fat 2186 bl 53% defN 20100101.000002 scala/collection/View$ZipAll.class +-rw---- 2.0 fat 2186 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsBinaryOperator.class +-rw---- 2.0 fat 2188 bl 63% defN 20100101.000002 scala/collection/MapFactory$Delegate.class +-rw---- 2.0 fat 21890 bl 55% defN 20100101.000002 scala/math/BigInt.class +-rw---- 2.0 fat 2189 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToIntFunctionAsFunction1$.class +-rw---- 2.0 fat 2190 bl 59% defN 20100101.000002 scala/collection/convert/StreamExtensions$StepperHasParStream.class +-rw---- 2.0 fat 2190 bl 59% defN 20100101.000002 scala/collection/convert/StreamExtensions$StepperHasSeqStream.class +-rw---- 2.0 fat 2190 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleConsumer$.class +-rw---- 2.0 fat 2190 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleSupplier$.class +-rw---- 2.0 fat 21925 bl 53% defN 20100101.000002 scala/jdk/DoubleAccumulator.class +-rw---- 2.0 fat 2192 bl 54% defN 20100101.000002 scala/collection/LazyZip2$$anon$3$$anon$4.class -rw---- 2.0 fat 2192 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsLongFunction.class --rw---- 2.0 fat 1809 bl 53% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsLongPredicate$.class --rw---- 2.0 fat 1947 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsLongPredicate.class --rw---- 2.0 fat 1893 bl 55% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsLongToDoubleFunction$.class --rw---- 2.0 fat 2031 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsLongToDoubleFunction.class --rw---- 2.0 fat 1857 bl 54% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsLongToIntFunction$.class --rw---- 2.0 fat 1995 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsLongToIntFunction.class --rw---- 2.0 fat 1857 bl 54% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsLongUnaryOperator$.class --rw---- 2.0 fat 1995 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsLongUnaryOperator.class +-rw---- 2.0 fat 2192 bl 65% defN 20100101.000002 scala/math/Ordering$ExtraImplicits.class +-rw---- 2.0 fat 2194 bl 59% defN 20100101.000002 scala/Tuple7$.class +-rw---- 2.0 fat 2194 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaBooleanSupplier$.class +-rw---- 2.0 fat 2195 bl 63% defN 20100101.000002 scala/collection/concurrent/MainNode.class +-rw---- 2.0 fat 21978 bl 50% defN 20100101.000002 scala/Predef.class +-rw---- 2.0 fat 2197 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichBinaryOperatorAsFunction2$.class +-rw---- 2.0 fat 2200 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToDoubleBiFunctionAsFunction2.class +-rw---- 2.0 fat 2203 bl 61% defN 20100101.000002 scala/Tuple2$mcJZ$sp.class +-rw---- 2.0 fat 2203 bl 61% defN 20100101.000002 scala/Tuple2$mcZJ$sp.class +-rw---- 2.0 fat 2203 bl 68% defN 20100101.000002 scala/collection/mutable/CollisionProofHashMap$$anon$2.class +-rw---- 2.0 fat 2205 bl 55% defN 20100101.000002 scala/runtime/ModuleSerializationProxy$$anon$1.class +-rw---- 2.0 fat 2205 bl 57% defN 20100101.000002 scala/collection/generic/SerializeEnd$.class +-rw---- 2.0 fat 2207 bl 56% defN 20100101.000002 scala/jdk/AnyAccumulatorStepper$$anon$1.class +-rw---- 2.0 fat 2207 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsToIntFunction.class +-rw---- 2.0 fat 2207 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaBooleanSupplier$.class +-rw---- 2.0 fat 2207 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoublePredicate$.class +-rw---- 2.0 fat 2207 bl 61% defN 20100101.000002 scala/Tuple2$mcDZ$sp.class +-rw---- 2.0 fat 2207 bl 61% defN 20100101.000002 scala/Tuple2$mcZD$sp.class +-rw---- 2.0 fat 2208 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichBiConsumerAsFunction2$.class +-rw---- 2.0 fat 2209 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichDoubleFunctionAsFunction1$.class +-rw---- 2.0 fat 2209 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsBiPredicate.class +-rw---- 2.0 fat 2209 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToLongFunctionAsFunction1$.class +-rw---- 2.0 fat 2209 bl 62% defN 20100101.000002 scala/Tuple2$mcIZ$sp.class +-rw---- 2.0 fat 2209 bl 62% defN 20100101.000002 scala/Tuple2$mcZI$sp.class -rw---- 2.0 fat 2212 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsPredicate$.class --rw---- 2.0 fat 2147 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsPredicate.class --rw---- 2.0 fat 2310 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsToDoubleFunction$.class +-rw---- 2.0 fat 2213 bl 61% defN 20100101.000002 scala/Tuple2$mcCJ$sp.class +-rw---- 2.0 fat 2213 bl 61% defN 20100101.000002 scala/Tuple2$mcJC$sp.class +-rw---- 2.0 fat 2213 bl 62% defN 20100101.000002 scala/Tuple2$mcCZ$sp.class +-rw---- 2.0 fat 2213 bl 62% defN 20100101.000002 scala/Tuple2$mcZC$sp.class +-rw---- 2.0 fat 2215 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsBiConsumer.class +-rw---- 2.0 fat 2215 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntPredicate$.class +-rw---- 2.0 fat 2216 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsFunction$.class +-rw---- 2.0 fat 2217 bl 61% defN 20100101.000002 scala/Tuple2$mcCD$sp.class +-rw---- 2.0 fat 2217 bl 61% defN 20100101.000002 scala/Tuple2$mcDC$sp.class +-rw---- 2.0 fat 2218 bl 61% defN 20100101.000002 scala/collection/immutable/NumericRange$Inclusive.class +-rw---- 2.0 fat 2219 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsConsumer$.class +-rw---- 2.0 fat 2219 bl 62% defN 20100101.000002 scala/Tuple2$mcCI$sp.class +-rw---- 2.0 fat 2219 bl 62% defN 20100101.000002 scala/Tuple2$mcIC$sp.class +-rw---- 2.0 fat 2221 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichBiPredicateAsFunction2$.class +-rw---- 2.0 fat 2221 bl 67% defN 20100101.000002 scala/collection/generic/IsIterable$.class +-rw---- 2.0 fat 2222 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoubleFunction.class +-rw---- 2.0 fat 2222 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsToLongFunction.class +-rw---- 2.0 fat 2223 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsUnaryOperator$.class +-rw---- 2.0 fat 2224 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntUnaryOperator$.class +-rw---- 2.0 fat 2225 bl 52% defN 20100101.000002 scala/collection/IndexedSeqView$IndexedSeqViewReverseIterator.class +-rw---- 2.0 fat 2225 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntConsumer$.class +-rw---- 2.0 fat 2226 bl 57% defN 20100101.000002 scala/collection/concurrent/TrieMapSerializationEnd$.class +-rw---- 2.0 fat 2226 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongPredicate$.class +-rw---- 2.0 fat 2230 bl 61% defN 20100101.000002 scala/collection/immutable/NumericRange$Exclusive.class +-rw---- 2.0 fat 2231 bl 55% defN 20100101.000002 scala/runtime/AbstractFunction13.class +-rw---- 2.0 fat 2234 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichObjIntConsumerAsFunction2$.class +-rw---- 2.0 fat 2236 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongConsumer$.class +-rw---- 2.0 fat 22371 bl 75% defN 20100101.000002 scala/collection/AbstractSeq.class +-rw---- 2.0 fat 2238 bl 51% defN 20100101.000002 scala/collection/View$LeftPartitionMapped$$anon$2.class +-rw---- 2.0 fat 2238 bl 56% defN 20100101.000002 scala/collection/AbstractView.class +-rw---- 2.0 fat 2240 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsIntFunction$.class +-rw---- 2.0 fat 2241 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntBinaryOperator$.class +-rw---- 2.0 fat 2241 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntToLongFunction$.class +-rw---- 2.0 fat 2241 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongToIntFunction$.class +-rw---- 2.0 fat 2241 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongUnaryOperator$.class +-rw---- 2.0 fat 22427 bl 55% defN 20100101.000002 scala/jdk/AnyAccumulator.class +-rw---- 2.0 fat 2246 bl 51% defN 20100101.000002 scala/collection/View$RightPartitionMapped$$anon$3.class +-rw---- 2.0 fat 2246 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsBinaryOperator$.class +-rw---- 2.0 fat 2247 bl 54% defN 20100101.000002 scala/collection/Map$.class +-rw---- 2.0 fat 2248 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoublePredicate$.class +-rw---- 2.0 fat 2248 bl 63% defN 20100101.000002 scala/collection/IterableOps$SizeCompareOps.class +-rw---- 2.0 fat 2249 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToDoubleFunctionAsFunction1$.class +-rw---- 2.0 fat 2250 bl 36% defN 20100101.000002 scala/concurrent/Channel.class +-rw---- 2.0 fat 2251 bl 59% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JPropertiesWrapper$$anon$6.class -rw---- 2.0 fat 2252 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsToDoubleFunction.class +-rw---- 2.0 fat 2254 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichObjLongConsumerAsFunction2$.class +-rw---- 2.0 fat 2254 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsLongFunction$.class +-rw---- 2.0 fat 2255 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichBiFunctionAsFunction2$.class +-rw---- 2.0 fat 2256 bl 52% defN 20100101.000002 scala/Option$.class +-rw---- 2.0 fat 2256 bl 53% defN 20100101.000002 scala/math/Ordering$OptionOrdering.class +-rw---- 2.0 fat 2258 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleConsumer$.class +-rw---- 2.0 fat 2258 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongBinaryOperator$.class +-rw---- 2.0 fat 2259 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntUnaryOperator$.class +-rw---- 2.0 fat 2261 bl 61% defN 20100101.000002 scala/Tuple2$mcDJ$sp.class +-rw---- 2.0 fat 2261 bl 61% defN 20100101.000002 scala/Tuple2$mcJD$sp.class +-rw---- 2.0 fat 22629 bl 51% defN 20100101.000002 scala/collection/View.class +-rw---- 2.0 fat 2263 bl 59% defN 20100101.000002 scala/util/control/TailCalls$Cont$.class +-rw---- 2.0 fat 2263 bl 61% defN 20100101.000002 scala/Tuple2$mcIJ$sp.class +-rw---- 2.0 fat 2263 bl 61% defN 20100101.000002 scala/Tuple2$mcJI$sp.class +-rw---- 2.0 fat 2267 bl 61% defN 20100101.000002 scala/Tuple2$mcDI$sp.class +-rw---- 2.0 fat 2267 bl 61% defN 20100101.000002 scala/Tuple2$mcID$sp.class +-rw---- 2.0 fat 22683 bl 67% defN 20100101.000002 scala/collection/JavaConverters.class -rw---- 2.0 fat 2268 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsToIntFunction$.class --rw---- 2.0 fat 2207 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsToIntFunction.class +-rw---- 2.0 fat 2268 bl 62% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$PipedBuilder.class +-rw---- 2.0 fat 2269 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsToIntBiFunction.class +-rw---- 2.0 fat 2270 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntToLongFunction$.class +-rw---- 2.0 fat 2270 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongToIntFunction$.class +-rw---- 2.0 fat 2270 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongUnaryOperator$.class +-rw---- 2.0 fat 22755 bl 68% defN 20100101.000002 scala/concurrent/Future$.class +-rw---- 2.0 fat 2275 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleToIntFunction$.class +-rw---- 2.0 fat 2275 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleUnaryOperator$.class +-rw---- 2.0 fat 2275 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntToDoubleFunction$.class +-rw---- 2.0 fat 2276 bl 55% defN 20100101.000002 scala/collection/immutable/Stream$Cons.class +-rw---- 2.0 fat 2277 bl 56% defN 20100101.000002 scala/collection/immutable/Map$Map2$Map2Iterator.class +-rw---- 2.0 fat 2281 bl 55% defN 20100101.000002 scala/collection/View$Patched.class +-rw---- 2.0 fat 2282 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsDoubleFunction$.class -rw---- 2.0 fat 2282 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsToLongFunction$.class --rw---- 2.0 fat 2222 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsToLongFunction.class --rw---- 2.0 fat 2223 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsUnaryOperator$.class --rw---- 2.0 fat 2162 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsUnaryOperator.class --rw---- 2.0 fat 2319 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsBiConsumer$.class --rw---- 2.0 fat 2215 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsBiConsumer.class --rw---- 2.0 fat 2316 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsBiFunction$.class --rw---- 2.0 fat 2172 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsBiFunction.class +-rw---- 2.0 fat 2284 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsToLongBiFunction.class +-rw---- 2.0 fat 2289 bl 55% defN 20100101.000002 scala/collection/immutable/HashSetBuilder$$anon$1.class +-rw---- 2.0 fat 2289 bl 55% defN 20100101.000002 scala/collection/immutable/SortedSet$.class +-rw---- 2.0 fat 2292 bl 58% defN 20100101.000002 scala/collection/IterableOps$Result$1.class +-rw---- 2.0 fat 2292 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleToIntFunction$.class +-rw---- 2.0 fat 2292 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleUnaryOperator$.class +-rw---- 2.0 fat 2292 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntToDoubleFunction$.class +-rw---- 2.0 fat 2292 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleBinaryOperator$.class +-rw---- 2.0 fat 2292 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleToLongFunction$.class +-rw---- 2.0 fat 2292 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongToDoubleFunction$.class +-rw---- 2.0 fat 2293 bl 60% defN 20100101.000002 scala/math/Numeric$NumericOps.class +-rw---- 2.0 fat 2294 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichObjDoubleConsumerAsFunction2$.class +-rw---- 2.0 fat 2297 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsObjIntConsumer.class +-rw---- 2.0 fat 2301 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToIntBiFunctionAsFunction2$.class +-rw---- 2.0 fat 2302 bl 54% defN 20100101.000002 scala/collection/generic/IsIterableLowPriority.class +-rw---- 2.0 fat 23033 bl 67% defN 20100101.000002 scala/Tuple16.class +-rw---- 2.0 fat 2303 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleToLongFunction$.class +-rw---- 2.0 fat 2303 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongToDoubleFunction$.class +-rw---- 2.0 fat 2310 bl 53% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$MapWrapper.class +-rw---- 2.0 fat 2310 bl 55% defN 20100101.000002 scala/runtime/AbstractFunction14.class +-rw---- 2.0 fat 2310 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction1AsToDoubleFunction$.class +-rw---- 2.0 fat 2311 bl 56% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$BasicBuilder.class +-rw---- 2.0 fat 2311 bl 68% defN 20100101.000002 scala/collection/AnyStepper$.class -rw---- 2.0 fat 2312 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsBiPredicate$.class --rw---- 2.0 fat 2209 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsBiPredicate.class --rw---- 2.0 fat 2246 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsBinaryOperator$.class --rw---- 2.0 fat 2186 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsBinaryOperator.class --rw---- 2.0 fat 1893 bl 55% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsDoubleBinaryOperator$.class --rw---- 2.0 fat 2085 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsDoubleBinaryOperator.class --rw---- 2.0 fat 1857 bl 54% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsIntBinaryOperator$.class --rw---- 2.0 fat 2049 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsIntBinaryOperator.class --rw---- 2.0 fat 1869 bl 54% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsLongBinaryOperator$.class --rw---- 2.0 fat 2061 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsLongBinaryOperator.class --rw---- 2.0 fat 2399 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsObjDoubleConsumer$.class +-rw---- 2.0 fat 2312 bl 60% defN 20100101.000002 scala/collection/mutable/LinkedHashSet$Entry.class +-rw---- 2.0 fat 2312 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsObjLongConsumer.class +-rw---- 2.0 fat 2314 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsToDoubleBiFunction.class +-rw---- 2.0 fat 2315 bl 48% defN 20100101.000002 scala/collection/immutable/StrictOptimizedSetOps.class +-rw---- 2.0 fat 2316 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsBiFunction$.class +-rw---- 2.0 fat 2319 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsBiConsumer$.class +-rw---- 2.0 fat 2320 bl 53% defN 20100101.000002 scala/collection/MapView$TapEach.class +-rw---- 2.0 fat 2321 bl 54% defN 20100101.000002 scala/collection/mutable/OpenHashMap$OpenHashMapIterator.class +-rw---- 2.0 fat 2321 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToLongBiFunctionAsFunction2$.class +-rw---- 2.0 fat 2322 bl 56% defN 20100101.000002 scala/collection/AnyStepper$AnyStepperSpliterator.class +-rw---- 2.0 fat 2322 bl 56% defN 20100101.000002 scala/jdk/OptionConverters$RichOptionalInt$.class +-rw---- 2.0 fat 2323 bl 60% defN 20100101.000002 scala/Tuple8$.class +-rw---- 2.0 fat 23242 bl 56% defN 20100101.000002 scala/runtime/Tuple3Zipped.class +-rw---- 2.0 fat 2324 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntBinaryOperator$.class +-rw---- 2.0 fat 2326 bl 55% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$MutableMapWrapper.class +-rw---- 2.0 fat 2328 bl 60% defN 20100101.000002 scala/collection/immutable/TreeSet$sub$1$.class +-rw---- 2.0 fat 2331 bl 66% defN 20100101.000002 scala/collection/EvidenceIterableFactory$EvidenceIterableFactoryToBuildFrom.class +-rw---- 2.0 fat 2334 bl 68% defN 20100101.000002 scala/jdk/OptionShape$.class +-rw---- 2.0 fat 2335 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongBinaryOperator$.class +-rw---- 2.0 fat 2336 bl 62% defN 20100101.000002 scala/collection/BuildFrom$$anon$7.class +-rw---- 2.0 fat 2338 bl 47% defN 20100101.000002 scala/sys/process/ProcessLogger.class +-rw---- 2.0 fat 2338 bl 56% defN 20100101.000002 scala/jdk/OptionConverters$RichOptionalLong$.class +-rw---- 2.0 fat 2342 bl 60% defN 20100101.000002 scala/collection/immutable/TreeMap$TreeMapBuilder$adder$.class -rw---- 2.0 fat 2342 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsObjDoubleConsumer.class +-rw---- 2.0 fat 2343 bl 54% defN 20100101.000002 scala/collection/SetOps$$anon$1.class +-rw---- 2.0 fat 2344 bl 63% defN 20100101.000002 scala/concurrent/duration/Duration$$anon$1.class +-rw---- 2.0 fat 23459 bl 63% defN 20100101.000002 scala/collection/IterableFactory.class +-rw---- 2.0 fat 2347 bl 64% defN 20100101.000002 scala/collection/BuildFrom$$anon$4.class +-rw---- 2.0 fat 2349 bl 26% defN 20100101.000002 scala/collection/mutable/package.class +-rw---- 2.0 fat 2350 bl 52% defN 20100101.000002 scala/collection/MapView$Filter.class +-rw---- 2.0 fat 2350 bl 63% defN 20100101.000002 scala/collection/BuildFrom$$anon$2.class +-rw---- 2.0 fat 23550 bl 67% defN 20100101.000002 scala/collection/mutable/RedBlackTree$.class +-rw---- 2.0 fat 2357 bl 58% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$$anon$1.class -rw---- 2.0 fat 2357 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsObjIntConsumer$.class --rw---- 2.0 fat 2297 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsObjIntConsumer.class --rw---- 2.0 fat 2371 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsObjLongConsumer$.class --rw---- 2.0 fat 2312 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsObjLongConsumer.class --rw---- 2.0 fat 2410 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsToDoubleBiFunction$.class --rw---- 2.0 fat 2314 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsToDoubleBiFunction.class +-rw---- 2.0 fat 2357 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleBinaryOperator$.class +-rw---- 2.0 fat 2359 bl 59% defN 20100101.000002 scala/collection/immutable/IntMap$Bin$.class +-rw---- 2.0 fat 2361 bl 50% defN 20100101.000002 scala/math/LowPriorityOrderingImplicits.class +-rw---- 2.0 fat 2361 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToDoubleBiFunctionAsFunction2$.class +-rw---- 2.0 fat 2363 bl 61% defN 20100101.000002 scala/concurrent/impl/FutureConvertersImpl$P.class +-rw---- 2.0 fat 2365 bl 58% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$OrderBy$Insertion$.class +-rw---- 2.0 fat 2366 bl 55% defN 20100101.000002 scala/collection/immutable/HashMapBuilder$$anon$1.class -rw---- 2.0 fat 2368 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsToIntBiFunction$.class --rw---- 2.0 fat 2269 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsToIntBiFunction.class +-rw---- 2.0 fat 2371 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsObjLongConsumer$.class +-rw---- 2.0 fat 2374 bl 48% defN 20100101.000002 scala/collection/mutable/LongMap$$anon$1.class +-rw---- 2.0 fat 2374 bl 57% defN 20100101.000002 scala/jdk/OptionConverters$RichOptionalDouble$.class +-rw---- 2.0 fat 2374 bl 59% defN 20100101.000002 scala/collection/immutable/LongMap$Bin$.class +-rw---- 2.0 fat 2375 bl 56% defN 20100101.000002 scala/collection/LazyZip3$$anon$11$$anon$12.class +-rw---- 2.0 fat 2377 bl 59% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$OrderBy$Modification$.class +-rw---- 2.0 fat 2380 bl 45% defN 20100101.000002 scala/collection/SeqMap.class +-rw---- 2.0 fat 2380 bl 57% defN 20100101.000002 scala/collection/mutable/HashTable$$anon$1.class +-rw---- 2.0 fat 2381 bl 57% defN 20100101.000002 scala/jdk/OptionConverters$RichOption$.class -rw---- 2.0 fat 2382 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsToLongBiFunction$.class --rw---- 2.0 fat 2284 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsToLongBiFunction.class --rw---- 2.0 fat 2143 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunctionAsFunction1$.class --rw---- 2.0 fat 1992 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunctionAsFunction1.class --rw---- 2.0 fat 2099 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntBinaryOperatorAsFunction2$.class --rw---- 2.0 fat 1964 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntBinaryOperatorAsFunction2.class --rw---- 2.0 fat 1980 bl 54% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntConsumerAsFunction1$.class --rw---- 2.0 fat 1857 bl 55% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntConsumerAsFunction1.class --rw---- 2.0 fat 2149 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntFunctionAsFunction1$.class --rw---- 2.0 fat 2035 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntFunctionAsFunction1.class --rw---- 2.0 fat 1991 bl 55% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntPredicateAsFunction1$.class --rw---- 2.0 fat 1866 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntPredicateAsFunction1.class --rw---- 2.0 fat 1955 bl 55% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntSupplierAsFunction0$.class --rw---- 2.0 fat 1832 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntSupplierAsFunction0.class --rw---- 2.0 fat 2117 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntToDoubleFunctionAsFunction1$.class --rw---- 2.0 fat 1978 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntToDoubleFunctionAsFunction1.class --rw---- 2.0 fat 2081 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntToLongFunctionAsFunction1$.class --rw---- 2.0 fat 1946 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntToLongFunctionAsFunction1.class --rw---- 2.0 fat 2063 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntUnaryOperatorAsFunction1$.class --rw---- 2.0 fat 1930 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichIntUnaryOperatorAsFunction1.class --rw---- 2.0 fat 2117 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongBinaryOperatorAsFunction2$.class --rw---- 2.0 fat 1980 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongBinaryOperatorAsFunction2.class --rw---- 2.0 fat 1998 bl 55% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongConsumerAsFunction1$.class --rw---- 2.0 fat 1873 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongConsumerAsFunction1.class --rw---- 2.0 fat 2169 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongFunctionAsFunction1$.class --rw---- 2.0 fat 2054 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongFunctionAsFunction1.class --rw---- 2.0 fat 2009 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongPredicateAsFunction1$.class --rw---- 2.0 fat 1882 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongPredicateAsFunction1.class --rw---- 2.0 fat 1973 bl 55% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongSupplierAsFunction0$.class --rw---- 2.0 fat 1848 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongSupplierAsFunction0.class --rw---- 2.0 fat 2135 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongToDoubleFunctionAsFunction1$.class --rw---- 2.0 fat 1994 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongToDoubleFunctionAsFunction1.class --rw---- 2.0 fat 2081 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongToIntFunctionAsFunction1$.class --rw---- 2.0 fat 1946 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongToIntFunctionAsFunction1.class --rw---- 2.0 fat 2081 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongUnaryOperatorAsFunction1$.class --rw---- 2.0 fat 1946 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichLongUnaryOperatorAsFunction1.class --rw---- 2.0 fat 2294 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichObjDoubleConsumerAsFunction2$.class --rw---- 2.0 fat 2174 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichObjDoubleConsumerAsFunction2.class --rw---- 2.0 fat 2234 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichObjIntConsumerAsFunction2$.class --rw---- 2.0 fat 2117 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichObjIntConsumerAsFunction2.class --rw---- 2.0 fat 2254 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichObjLongConsumerAsFunction2$.class --rw---- 2.0 fat 2136 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichObjLongConsumerAsFunction2.class --rw---- 2.0 fat 2109 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichPredicateAsFunction1$.class --rw---- 2.0 fat 1997 bl 57% defN 20100101.000002 scala/jdk/FunctionWrappers$RichPredicateAsFunction1.class --rw---- 2.0 fat 2071 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichSupplierAsFunction0$.class --rw---- 2.0 fat 1960 bl 56% defN 20100101.000002 scala/jdk/FunctionWrappers$RichSupplierAsFunction0.class --rw---- 2.0 fat 2361 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToDoubleBiFunctionAsFunction2$.class --rw---- 2.0 fat 2200 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToDoubleBiFunctionAsFunction2.class --rw---- 2.0 fat 2249 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToDoubleFunctionAsFunction1$.class --rw---- 2.0 fat 2130 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToDoubleFunctionAsFunction1.class --rw---- 2.0 fat 2301 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToIntBiFunctionAsFunction2$.class --rw---- 2.0 fat 2143 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToIntBiFunctionAsFunction2.class --rw---- 2.0 fat 2189 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToIntFunctionAsFunction1$.class --rw---- 2.0 fat 2073 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToIntFunctionAsFunction1.class --rw---- 2.0 fat 2321 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToLongBiFunctionAsFunction2$.class --rw---- 2.0 fat 2162 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToLongBiFunctionAsFunction2.class --rw---- 2.0 fat 2209 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToLongFunctionAsFunction1$.class --rw---- 2.0 fat 2092 bl 59% defN 20100101.000002 scala/jdk/FunctionWrappers$RichToLongFunctionAsFunction1.class --rw---- 2.0 fat 2174 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichUnaryOperatorAsFunction1$.class --rw---- 2.0 fat 2058 bl 58% defN 20100101.000002 scala/jdk/FunctionWrappers$RichUnaryOperatorAsFunction1.class --rw---- 2.0 fat 158619 bl 54% defN 20100101.000002 scala/jdk/FunctionWrappers.class --rw---- 2.0 fat 1098 bl 55% defN 20100101.000002 scala/jdk/FutureConverters$.class --rw---- 2.0 fat 1978 bl 58% defN 20100101.000002 scala/jdk/FutureConverters$CompletionStageOps$.class --rw---- 2.0 fat 1897 bl 60% defN 20100101.000002 scala/jdk/FutureConverters$CompletionStageOps.class --rw---- 2.0 fat 1830 bl 55% defN 20100101.000002 scala/jdk/FutureConverters$FutureOps$.class --rw---- 2.0 fat 1765 bl 57% defN 20100101.000002 scala/jdk/FutureConverters$FutureOps.class +-rw---- 2.0 fat 2384 bl 47% defN 20100101.000002 scala/collection/StringOps$$anon$1.class +-rw---- 2.0 fat 2388 bl 64% defN 20100101.000002 scala/collection/BuildFrom$$anon$8.class +-rw---- 2.0 fat 2389 bl 56% defN 20100101.000002 scala/runtime/AbstractFunction15.class +-rw---- 2.0 fat 238 bl 30% defN 20100101.000002 scala/languageFeature$dynamics.class +-rw---- 2.0 fat 2392 bl 60% defN 20100101.000002 scala/collection/immutable/RedBlackTree$SetHelper.class +-rw---- 2.0 fat 23930 bl 50% defN 20100101.000002 scala/math/Equiv.class +-rw---- 2.0 fat 2394 bl 42% defN 20100101.000002 scala/sys/process/FileProcessLogger.class +-rw---- 2.0 fat 2395 bl 64% defN 20100101.000002 scala/collection/BuildFrom$$anon$5.class +-rw---- 2.0 fat 2399 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsObjDoubleConsumer$.class +-rw---- 2.0 fat 2399 bl 66% defN 20100101.000002 scala/collection/immutable/Range$BigDecimal$.class +-rw---- 2.0 fat 2400 bl 38% defN 20100101.000002 scala/jdk/DurationConverters.class +-rw---- 2.0 fat 2404 bl 58% defN 20100101.000002 scala/Array$UnapplySeqWrapper.class +-rw---- 2.0 fat 2406 bl 49% defN 20100101.000002 scala/collection/View$DropRightIterator.class +-rw---- 2.0 fat 2410 bl 37% defN 20100101.000002 scala/annotation/elidable.class +-rw---- 2.0 fat 2410 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$RichFunction2AsToDoubleBiFunction$.class +-rw---- 2.0 fat 2412 bl 57% defN 20100101.000002 scala/util/control/Exception$Catch$.class +-rw---- 2.0 fat 2416 bl 46% defN 20100101.000002 scala/collection/concurrent/FailedNode.class +-rw---- 2.0 fat 2416 bl 48% defN 20100101.000002 scala/collection/Iterator$Partner$1.class +-rw---- 2.0 fat 2417 bl 57% defN 20100101.000002 scala/collection/immutable/Map$Map3$Map3Iterator.class +-rw---- 2.0 fat 2426 bl 57% defN 20100101.000002 scala/jdk/OptionConverters$RichOptional$.class +-rw---- 2.0 fat 2429 bl 50% defN 20100101.000002 scala/collection/generic/DefaultSerializable.class +-rw---- 2.0 fat 242 bl 31% defN 20100101.000002 scala/languageFeature$postfixOps.class +-rw---- 2.0 fat 2433 bl 52% defN 20100101.000002 scala/collection/immutable/LazyList$SlidingIterator.class +-rw---- 2.0 fat 2433 bl 65% defN 20100101.000002 scala/collection/generic/IsIterable$$anon$1.class +-rw---- 2.0 fat 2437 bl 58% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$$anon$3.class +-rw---- 2.0 fat 2440 bl 62% defN 20100101.000002 scala/collection/immutable/RedBlackTree$MapHelper.class +-rw---- 2.0 fat 2441 bl 37% defN 20100101.000002 scala/io/Position.class +-rw---- 2.0 fat 2445 bl 38% defN 20100101.000002 scala/collection/Factory.class +-rw---- 2.0 fat 2447 bl 49% defN 20100101.000002 scala/collection/immutable/VectorMap$$anon$1.class +-rw---- 2.0 fat 2449 bl 56% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$IteratorWrapper.class +-rw---- 2.0 fat 2452 bl 61% defN 20100101.000002 scala/Tuple9$.class +-rw---- 2.0 fat 2457 bl 58% defN 20100101.000002 scala/sys/BooleanProp$ConstantImpl.class +-rw---- 2.0 fat 2462 bl 66% defN 20100101.000002 scala/collection/SortedMapFactory$SortedMapFactoryToBuildFrom.class +-rw---- 2.0 fat 2468 bl 54% defN 20100101.000002 scala/runtime/AbstractFunction0.class +-rw---- 2.0 fat 2468 bl 56% defN 20100101.000002 scala/runtime/AbstractFunction16.class +-rw---- 2.0 fat 2469 bl 65% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$SeqWrapper.class +-rw---- 2.0 fat 246 bl 32% defN 20100101.000002 scala/languageFeature$existentials.class +-rw---- 2.0 fat 2471 bl 51% defN 20100101.000002 scala/collection/mutable/ArrayBuilder$ofInt.class +-rw---- 2.0 fat 2475 bl 50% defN 20100101.000002 scala/collection/mutable/ArrayBuilder$ofBoolean.class +-rw---- 2.0 fat 2475 bl 63% defN 20100101.000002 scala/collection/concurrent/RDCSS_Descriptor$.class +-rw---- 2.0 fat 2476 bl 62% defN 20100101.000002 scala/collection/mutable/CollisionProofHashMap$RBNodesIterator.class +-rw---- 2.0 fat 2476 bl 66% defN 20100101.000002 scala/collection/generic/IsIterable$$anon$2.class +-rw---- 2.0 fat 2477 bl 51% defN 20100101.000002 scala/collection/Iterator$$anon$15.class +-rw---- 2.0 fat 2477 bl 51% defN 20100101.000002 scala/collection/mutable/ArrayBuilder$ofLong.class +-rw---- 2.0 fat 2481 bl 51% defN 20100101.000002 scala/collection/mutable/ArrayBuilder$ofByte.class +-rw---- 2.0 fat 2481 bl 51% defN 20100101.000002 scala/collection/mutable/ArrayBuilder$ofChar.class +-rw---- 2.0 fat 2481 bl 56% defN 20100101.000002 scala/reflect/ManifestFactory$IntManifest.class +-rw---- 2.0 fat 2481 bl 56% defN 20100101.000002 scala/reflect/ManifestFactory$LongManifest.class +-rw---- 2.0 fat 2481 bl 57% defN 20100101.000002 scala/reflect/ManifestFactory$ByteManifest.class +-rw---- 2.0 fat 2482 bl 38% defN 20100101.000002 scala/Symbol.class +-rw---- 2.0 fat 24836 bl 67% defN 20100101.000002 scala/Tuple17.class +-rw---- 2.0 fat 2487 bl 50% defN 20100101.000002 scala/collection/mutable/ArrayBuilder$ofFloat.class +-rw---- 2.0 fat 2487 bl 50% defN 20100101.000002 scala/collection/mutable/ArrayBuilder$ofShort.class +-rw---- 2.0 fat 24898 bl 57% defN 20100101.000002 scala/collection/MapOps.class +-rw---- 2.0 fat 248 bl 30% defN 20100101.000002 scala/collection/Stepper$EfficientSplit.class +-rw---- 2.0 fat 248 bl 32% defN 20100101.000002 scala/Specializable$SpecializedGroup.class +-rw---- 2.0 fat 2493 bl 51% defN 20100101.000002 scala/collection/mutable/ArrayBuilder$ofDouble.class +-rw---- 2.0 fat 2493 bl 57% defN 20100101.000002 scala/reflect/ManifestFactory$FloatManifest.class +-rw---- 2.0 fat 2493 bl 57% defN 20100101.000002 scala/reflect/ManifestFactory$ShortManifest.class +-rw---- 2.0 fat 2494 bl 35% defN 20100101.000002 scala/languageFeature.class +-rw---- 2.0 fat 2496 bl 56% defN 20100101.000002 scala/reflect/ManifestFactory$CharManifest.class +-rw---- 2.0 fat 2499 bl 65% defN 20100101.000002 scala/collection/BuildFromLowPriority2$$anon$11.class +-rw---- 2.0 fat 2505 bl 57% defN 20100101.000002 scala/reflect/ManifestFactory$DoubleManifest.class +-rw---- 2.0 fat 2509 bl 51% defN 20100101.000002 scala/io/Source$LineIterator.class +-rw---- 2.0 fat 2512 bl 47% defN 20100101.000002 scala/collection/mutable/SortedMapOps.class +-rw---- 2.0 fat 2513 bl 64% defN 20100101.000002 scala/collection/convert/StreamExtensions$ByteArrayHasSeqParStream.class +-rw---- 2.0 fat 2513 bl 64% defN 20100101.000002 scala/collection/convert/StreamExtensions$CharArrayHasSeqParStream.class +-rw---- 2.0 fat 2517 bl 57% defN 20100101.000002 scala/reflect/ManifestFactory$BooleanManifest.class +-rw---- 2.0 fat 2518 bl 64% defN 20100101.000002 scala/collection/convert/StreamExtensions$ShortArrayHasSeqParStream.class +-rw---- 2.0 fat 2525 bl 45% defN 20100101.000002 scala/concurrent/BlockContext.class +-rw---- 2.0 fat 252 bl 33% defN 20100101.000002 scala/languageFeature$reflectiveCalls.class +-rw---- 2.0 fat 252 bl 33% defN 20100101.000002 scala/Product1$mcD$sp.class +-rw---- 2.0 fat 252 bl 33% defN 20100101.000002 scala/Product1$mcI$sp.class +-rw---- 2.0 fat 252 bl 33% defN 20100101.000002 scala/Product1$mcJ$sp.class +-rw---- 2.0 fat 2530 bl 64% defN 20100101.000002 scala/collection/convert/StreamExtensions$FloatArrayHasSeqParStream.class +-rw---- 2.0 fat 2531 bl 37% defN 20100101.000002 scala/MatchError.class +-rw---- 2.0 fat 2532 bl 56% defN 20100101.000002 scala/sys/process/package.class +-rw---- 2.0 fat 2537 bl 52% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$Ordering$Iterator.class +-rw---- 2.0 fat 2546 bl 54% defN 20100101.000002 scala/collection/LazyZip2$$anon$5$$anon$6.class +-rw---- 2.0 fat 2547 bl 56% defN 20100101.000002 scala/runtime/AbstractFunction17.class +-rw---- 2.0 fat 2551 bl 58% defN 20100101.000002 scala/collection/LazyZip4$$anon$19$$anon$20.class +-rw---- 2.0 fat 2555 bl 57% defN 20100101.000002 scala/collection/mutable/PriorityQueue$ResizableArrayAccess.class +-rw---- 2.0 fat 2557 bl 58% defN 20100101.000002 scala/collection/immutable/Map$Map4$Map4Iterator.class +-rw---- 2.0 fat 2561 bl 40% defN 20100101.000002 scala/collection/convert/impl/IndexedStepperBase.class +-rw---- 2.0 fat 2568 bl 62% defN 20100101.000002 scala/collection/SeqFactory$UnapplySeqWrapper.class +-rw---- 2.0 fat 25712 bl 62% defN 20100101.000002 scala/collection/immutable/HashCollisionSetNode.class +-rw---- 2.0 fat 2571 bl 46% defN 20100101.000002 scala/ref/ReferenceQueue.class +-rw---- 2.0 fat 2575 bl 58% defN 20100101.000002 scala/concurrent/BlockContext$.class +-rw---- 2.0 fat 25798 bl 62% defN 20100101.000002 scala/collection/immutable/VectorMap.class +-rw---- 2.0 fat 25816 bl 56% defN 20100101.000002 scala/collection/immutable/Vector3.class +-rw---- 2.0 fat 2587 bl 39% defN 20100101.000002 scala/collection/StringParsers.class +-rw---- 2.0 fat 25895 bl 74% defN 20100101.000002 scala/Enumeration$ValueSet.class +-rw---- 2.0 fat 2591 bl 56% defN 20100101.000002 scala/collection/Iterator$$anon$21.class +-rw---- 2.0 fat 2591 bl 57% defN 20100101.000002 scala/collection/IterableOps$Scanner$1.class +-rw---- 2.0 fat 2591 bl 64% defN 20100101.000002 scala/collection/BuildFrom$$anon$3.class +-rw---- 2.0 fat 2593 bl 40% defN 20100101.000002 scala/collection/ClassTagSeqFactory.class +-rw---- 2.0 fat 2595 bl 62% defN 20100101.000002 scala/concurrent/impl/Promise$Link.class +-rw---- 2.0 fat 2597 bl 49% defN 20100101.000002 scala/collection/immutable/StrictOptimizedMapOps.class +-rw---- 2.0 fat 2598 bl 56% defN 20100101.000002 scala/io/Source$Positioner.class +-rw---- 2.0 fat 2599 bl 62% defN 20100101.000002 scala/Tuple10$.class +-rw---- 2.0 fat 2605 bl 57% defN 20100101.000002 scala/collection/mutable/UnrolledBuffer$$anon$1.class +-rw---- 2.0 fat 2605 bl 66% defN 20100101.000002 scala/collection/generic/IsMap$$anon$1.class +-rw---- 2.0 fat 2606 bl 62% defN 20100101.000002 scala/collection/convert/StreamExtensions$IterableNonGenericHasParStream.class +-rw---- 2.0 fat 2608 bl 43% defN 20100101.000002 scala/math/Fractional.class +-rw---- 2.0 fat 260 bl 33% defN 20100101.000002 scala/languageFeature$implicitConversions.class +-rw---- 2.0 fat 2615 bl 68% defN 20100101.000002 scala/collection/BuildFrom$$anon$6.class +-rw---- 2.0 fat 2619 bl 57% defN 20100101.000002 scala/collection/mutable/HashSet$Node.class +-rw---- 2.0 fat 2619 bl 65% defN 20100101.000002 scala/collection/BuildFromLowPriority1$$anon$10.class +-rw---- 2.0 fat 26226 bl 58% defN 20100101.000002 scala/math/BigDecimal.class +-rw---- 2.0 fat 2625 bl 57% defN 20100101.000002 scala/runtime/AbstractFunction18.class +-rw---- 2.0 fat 2625 bl 65% defN 20100101.000002 scala/collection/BuildFromLowPriority2$$anon$12.class +-rw---- 2.0 fat 2627 bl 64% defN 20100101.000002 scala/collection/BuildFromLowPriority1$$anon$9.class +-rw---- 2.0 fat 26296 bl 80% defN 20100101.000002 scala/collection/JavaConverters$.class +-rw---- 2.0 fat 2634 bl 60% defN 20100101.000002 scala/collection/mutable/CollisionProofHashMap$DeserializationFactory.class +-rw---- 2.0 fat 2634 bl 63% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$IterableWrapper.class +-rw---- 2.0 fat 2637 bl 51% defN 20100101.000002 scala/jdk/LongAccumulator$SerializationProxy.class +-rw---- 2.0 fat 2639 bl 60% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$MapWrapper$$anon$2$$anon$3$$anon$4.class +-rw---- 2.0 fat 263 bl 31% defN 20100101.000002 scala/languageFeature$higherKinds.class +-rw---- 2.0 fat 263 bl 32% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$OrderBy.class +-rw---- 2.0 fat 2642 bl 46% defN 20100101.000002 scala/collection/BuildFromLowPriority1.class +-rw---- 2.0 fat 2642 bl 59% defN 20100101.000002 scala/concurrent/impl/ExecutionContextImpl$DefaultThreadFactory$$anon$1.class +-rw---- 2.0 fat 2643 bl 59% defN 20100101.000002 scala/collection/View$Empty$.class +-rw---- 2.0 fat 26448 bl 62% defN 20100101.000002 scala/collection/mutable/OpenHashMap.class +-rw---- 2.0 fat 2645 bl 48% defN 20100101.000002 scala/collection/immutable/MapKeyValueTupleHashIterator.class +-rw---- 2.0 fat 2651 bl 67% defN 20100101.000002 scala/collection/immutable/IntMap$ToBuildFrom$.class +-rw---- 2.0 fat 26566 bl 53% defN 20100101.000002 scala/collection/concurrent/TrieMap.class +-rw---- 2.0 fat 2661 bl 36% defN 20100101.000002 scala/reflect/NameTransformer.class +-rw---- 2.0 fat 2662 bl 54% defN 20100101.000002 scala/collection/immutable/NumericRange$NumericRangeIterator.class +-rw---- 2.0 fat 2664 bl 68% defN 20100101.000002 scala/collection/immutable/LongMap$ToBuildFrom$.class +-rw---- 2.0 fat 2665 bl 58% defN 20100101.000002 scala/collection/mutable/ArrayBuilder$.class +-rw---- 2.0 fat 2667 bl 40% defN 20100101.000002 scala/collection/convert/impl/InOrderStepperBase.class +-rw---- 2.0 fat 26698 bl 67% defN 20100101.000002 scala/Tuple18.class +-rw---- 2.0 fat 2675 bl 55% defN 20100101.000002 scala/math/Equiv$Tuple3Equiv.class -rw---- 2.0 fat 2676 bl 36% defN 20100101.000002 scala/jdk/FutureConverters.class --rw---- 2.0 fat 6314 bl 64% defN 20100101.000002 scala/jdk/IntAccumulator$.class +-rw---- 2.0 fat 2682 bl 41% defN 20100101.000002 scala/util/DynamicVariable.class +-rw---- 2.0 fat 2683 bl 53% defN 20100101.000002 scala/collection/IterableFactoryDefaults.class +-rw---- 2.0 fat 2686 bl 48% defN 20100101.000002 scala/Product.class -rw---- 2.0 fat 2687 bl 51% defN 20100101.000002 scala/jdk/IntAccumulator$SerializationProxy.class --rw---- 2.0 fat 21707 bl 53% defN 20100101.000002 scala/jdk/IntAccumulator.class +-rw---- 2.0 fat 2689 bl 53% defN 20100101.000002 scala/collection/immutable/Stream$SerializationProxy.class +-rw---- 2.0 fat 2698 bl 66% defN 20100101.000002 scala/collection/generic/IsSeq$.class +-rw---- 2.0 fat 2704 bl 58% defN 20100101.000002 scala/runtime/AbstractFunction19.class +-rw---- 2.0 fat 2705 bl 37% defN 20100101.000002 scala/sys/BooleanProp.class +-rw---- 2.0 fat 2707 bl 62% defN 20100101.000002 scala/collection/mutable/LinkedHashMap$LinkedEntry.class +-rw---- 2.0 fat 2708 bl 63% defN 20100101.000002 scala/collection/generic/BitOperations$Int$.class +-rw---- 2.0 fat 2709 bl 66% defN 20100101.000002 scala/collection/SortedMapFactory$Delegate.class +-rw---- 2.0 fat 2713 bl 56% defN 20100101.000002 scala/jdk/javaapi/FutureConverters$.class +-rw---- 2.0 fat 2714 bl 67% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$URLImpl.class +-rw---- 2.0 fat 2717 bl 36% defN 20100101.000002 scala/sys/Prop.class +-rw---- 2.0 fat 2717 bl 58% defN 20100101.000002 scala/collection/immutable/AnyVectorStepper.class +-rw---- 2.0 fat 271 bl 37% defN 20100101.000002 scala/Product2$mcDD$sp.class +-rw---- 2.0 fat 271 bl 37% defN 20100101.000002 scala/Product2$mcDI$sp.class +-rw---- 2.0 fat 271 bl 37% defN 20100101.000002 scala/Product2$mcDJ$sp.class +-rw---- 2.0 fat 271 bl 37% defN 20100101.000002 scala/Product2$mcID$sp.class +-rw---- 2.0 fat 271 bl 37% defN 20100101.000002 scala/Product2$mcII$sp.class +-rw---- 2.0 fat 271 bl 37% defN 20100101.000002 scala/Product2$mcIJ$sp.class +-rw---- 2.0 fat 271 bl 37% defN 20100101.000002 scala/Product2$mcJD$sp.class +-rw---- 2.0 fat 271 bl 37% defN 20100101.000002 scala/Product2$mcJI$sp.class +-rw---- 2.0 fat 271 bl 37% defN 20100101.000002 scala/Product2$mcJJ$sp.class +-rw---- 2.0 fat 2721 bl 63% defN 20100101.000002 scala/collection/generic/BitOperations$Long$.class +-rw---- 2.0 fat 2722 bl 43% defN 20100101.000002 scala/Product3.class +-rw---- 2.0 fat 2723 bl 53% defN 20100101.000002 scala/collection/IndexedSeqView$IndexedSeqViewIterator.class +-rw---- 2.0 fat 2725 bl 52% defN 20100101.000002 scala/jdk/DoubleAccumulator$SerializationProxy.class +-rw---- 2.0 fat 27283 bl 60% defN 20100101.000002 scala/util/PropertiesTrait.class +-rw---- 2.0 fat 2729 bl 60% defN 20100101.000002 scala/runtime/RichByte$.class +-rw---- 2.0 fat 2735 bl 63% defN 20100101.000002 scala/Tuple11$.class +-rw---- 2.0 fat 2741 bl 56% defN 20100101.000002 scala/collection/View$Concat.class +-rw---- 2.0 fat 2741 bl 65% defN 20100101.000002 scala/collection/convert/StreamExtensions$StringHasSeqParStream.class +-rw---- 2.0 fat 2742 bl 61% defN 20100101.000002 scala/util/matching/Regex$MatchIterator$$anon$4.class +-rw---- 2.0 fat 2743 bl 41% defN 20100101.000002 scala/math/Integral.class +-rw---- 2.0 fat 2744 bl 60% defN 20100101.000002 scala/runtime/RichShort$.class +-rw---- 2.0 fat 2745 bl 43% defN 20100101.000002 scala/runtime/Statics.class +-rw---- 2.0 fat 2745 bl 63% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$Ordering$Bin$.class +-rw---- 2.0 fat 2754 bl 55% defN 20100101.000002 scala/sys/process/ProcessImpl$SimpleProcess.class +-rw---- 2.0 fat 2755 bl 45% defN 20100101.000002 scala/collection/immutable/VectorIterator.class +-rw---- 2.0 fat 2755 bl 60% defN 20100101.000002 scala/collection/immutable/ListMap$$anon$1.class +-rw---- 2.0 fat 2761 bl 40% defN 20100101.000002 scala/runtime/ArrayCharSequence.class +-rw---- 2.0 fat 2761 bl 61% defN 20100101.000002 scala/runtime/Tuple2Zipped$Ops.class +-rw---- 2.0 fat 2780 bl 61% defN 20100101.000002 scala/Tuple1$.class +-rw---- 2.0 fat 27819 bl 70% defN 20100101.000002 scala/concurrent/impl/Promise$DefaultPromise.class +-rw---- 2.0 fat 2783 bl 58% defN 20100101.000002 scala/runtime/AbstractFunction20.class +-rw---- 2.0 fat 2784 bl 55% defN 20100101.000002 scala/collection/LazyZip3$$anon$13$$anon$14.class +-rw---- 2.0 fat 27852 bl 68% defN 20100101.000002 scala/collection/immutable/LazyList$.class +-rw---- 2.0 fat 2785 bl 67% defN 20100101.000002 scala/collection/generic/IsMap$$anon$2.class +-rw---- 2.0 fat 2790 bl 56% defN 20100101.000002 scala/Predef$Ensuring.class +-rw---- 2.0 fat 2792 bl 47% defN 20100101.000002 scala/collection/Iterator$Leading$1.class +-rw---- 2.0 fat 2799 bl 52% defN 20100101.000002 scala/collection/immutable/Range$.class +-rw---- 2.0 fat 28019 bl 52% defN 20100101.000002 scala/collection/immutable/Vector4.class +-rw---- 2.0 fat 2809 bl 41% defN 20100101.000002 scala/runtime/PolyMethodCache.class +-rw---- 2.0 fat 281 bl 37% defN 20100101.000002 scala/collection/Stepper$mcD$sp.class +-rw---- 2.0 fat 281 bl 38% defN 20100101.000002 scala/collection/Stepper$mcI$sp.class +-rw---- 2.0 fat 281 bl 38% defN 20100101.000002 scala/collection/Stepper$mcJ$sp.class +-rw---- 2.0 fat 2820 bl 57% defN 20100101.000002 scala/collection/immutable/VectorMap$Tombstone.class +-rw---- 2.0 fat 2821 bl 47% defN 20100101.000002 scala/collection/MapViewFactory.class +-rw---- 2.0 fat 2821 bl 53% defN 20100101.000002 scala/util/matching/Regex$.class +-rw---- 2.0 fat 2828 bl 65% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$MutableSeqWrapper.class +-rw---- 2.0 fat 2831 bl 40% defN 20100101.000002 scala/collection/immutable/BigVector.class +-rw---- 2.0 fat 2834 bl 52% defN 20100101.000002 scala/collection/SpecificIterableFactory.class +-rw---- 2.0 fat 2835 bl 69% defN 20100101.000002 scala/collection/mutable/RedBlackTree$Node$.class +-rw---- 2.0 fat 2843 bl 57% defN 20100101.000002 scala/concurrent/impl/Promise$.class +-rw---- 2.0 fat 2845 bl 60% defN 20100101.000002 scala/collection/IntStepper$IntStepperSpliterator.class +-rw---- 2.0 fat 2847 bl 56% defN 20100101.000002 scala/jdk/javaapi/OptionConverters.class +-rw---- 2.0 fat 2849 bl 60% defN 20100101.000002 scala/collection/LongStepper$LongStepperSpliterator.class +-rw---- 2.0 fat 28570 bl 78% defN 20100101.000002 scala/collection/AbstractIterator.class +-rw---- 2.0 fat 28614 bl 57% defN 20100101.000002 scala/Array.class +-rw---- 2.0 fat 2862 bl 58% defN 20100101.000002 scala/runtime/AbstractFunction21.class +-rw---- 2.0 fat 28640 bl 68% defN 20100101.000002 scala/Tuple19.class +-rw---- 2.0 fat 2865 bl 49% defN 20100101.000002 scala/collection/immutable/MapNodeRemoveAllSetNodeIterator.class +-rw---- 2.0 fat 2868 bl 42% defN 20100101.000002 scala/collection/convert/impl/IteratorStepperBase.class +-rw---- 2.0 fat 2871 bl 64% defN 20100101.000002 scala/Tuple12$.class +-rw---- 2.0 fat 2874 bl 57% defN 20100101.000002 scala/collection/Searching$InsertionPoint.class +-rw---- 2.0 fat 2874 bl 62% defN 20100101.000002 scala/collection/MapOps$KeySet.class +-rw---- 2.0 fat 2883 bl 44% defN 20100101.000002 scala/Product4.class +-rw---- 2.0 fat 2888 bl 45% defN 20100101.000002 scala/jdk/OptionShape.class +-rw---- 2.0 fat 2894 bl 61% defN 20100101.000002 scala/collection/immutable/IntMap$Tip.class +-rw---- 2.0 fat 2895 bl 60% defN 20100101.000002 scala/collection/DoubleStepper$DoubleStepperSpliterator.class +-rw---- 2.0 fat 2907 bl 55% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$SetWrapper$$anon$1.class +-rw---- 2.0 fat 2907 bl 60% defN 20100101.000002 scala/collection/immutable/LongMap$Tip.class +-rw---- 2.0 fat 2907 bl 61% defN 20100101.000002 scala/PartialFunction$OrElse.class +-rw---- 2.0 fat 290 bl 27% defN 20100101.000002 scala/collection/concurrent/Gen.class +-rw---- 2.0 fat 2915 bl 51% defN 20100101.000002 scala/ref/ReferenceWrapper.class +-rw---- 2.0 fat 2915 bl 66% defN 20100101.000002 scala/collection/immutable/AbstractSet.class +-rw---- 2.0 fat 2917 bl 57% defN 20100101.000002 scala/collection/Searching$Found.class +-rw---- 2.0 fat 2918 bl 49% defN 20100101.000002 scala/collection/View$TakeRightIterator.class +-rw---- 2.0 fat 291 bl 36% defN 20100101.000002 scala/Function0$mcB$sp.class +-rw---- 2.0 fat 291 bl 36% defN 20100101.000002 scala/Function0$mcC$sp.class +-rw---- 2.0 fat 291 bl 36% defN 20100101.000002 scala/Function0$mcD$sp.class +-rw---- 2.0 fat 291 bl 36% defN 20100101.000002 scala/Function0$mcF$sp.class +-rw---- 2.0 fat 291 bl 36% defN 20100101.000002 scala/Function0$mcI$sp.class +-rw---- 2.0 fat 291 bl 36% defN 20100101.000002 scala/Function0$mcJ$sp.class +-rw---- 2.0 fat 291 bl 36% defN 20100101.000002 scala/Function0$mcS$sp.class +-rw---- 2.0 fat 291 bl 36% defN 20100101.000002 scala/Function0$mcZ$sp.class +-rw---- 2.0 fat 2924 bl 60% defN 20100101.000002 scala/runtime/LambdaDeserialize$.class +-rw---- 2.0 fat 2932 bl 58% defN 20100101.000002 scala/Predef$Ensuring$.class +-rw---- 2.0 fat 2939 bl 69% defN 20100101.000002 scala/math/Ordering$Float$IeeeOrdering.class +-rw---- 2.0 fat 2941 bl 59% defN 20100101.000002 scala/runtime/AbstractFunction22.class +-rw---- 2.0 fat 29428 bl 61% defN 20100101.000002 scala/collection/mutable/LinkedHashSet.class +-rw---- 2.0 fat 2946 bl 69% defN 20100101.000002 scala/collection/generic/IsSeq$$anon$2.class +-rw---- 2.0 fat 2948 bl 51% defN 20100101.000002 scala/runtime/Statics$VM.class +-rw---- 2.0 fat 2948 bl 70% defN 20100101.000002 scala/math/Ordering$Double$IeeeOrdering.class +-rw---- 2.0 fat 2960 bl 59% defN 20100101.000002 scala/reflect/ManifestFactory$UnitManifest.class +-rw---- 2.0 fat 29770 bl 77% defN 20100101.000002 scala/collection/AbstractIterable.class +-rw---- 2.0 fat 2979 bl 64% defN 20100101.000002 scala/collection/mutable/ListMap$.class +-rw---- 2.0 fat 29854 bl 53% defN 20100101.000002 scala/collection/immutable/VectorBuilder.class +-rw---- 2.0 fat 2987 bl 68% defN 20100101.000002 scala/collection/MapView$$anon$1.class +-rw---- 2.0 fat 298 bl 31% defN 20100101.000002 scala/Function0$mcV$sp.class +-rw---- 2.0 fat 3000 bl 70% defN 20100101.000002 scala/collection/mutable/LongMap$ToBuildFrom$.class +-rw---- 2.0 fat 3001 bl 42% defN 20100101.000002 scala/concurrent/SyncChannel.class +-rw---- 2.0 fat 30040 bl 72% defN 20100101.000002 scala/collection/immutable/Vector0.class +-rw---- 2.0 fat 3004 bl 65% defN 20100101.000002 scala/collection/mutable/WeakHashMap$.class +-rw---- 2.0 fat 3006 bl 57% defN 20100101.000002 scala/collection/View$Filter$.class +-rw---- 2.0 fat 3007 bl 65% defN 20100101.000002 scala/Tuple13$.class +-rw---- 2.0 fat 300 bl 17% defN 20100101.000002 scala/Dynamic.class +-rw---- 2.0 fat 30164 bl 57% defN 20100101.000002 scala/collection/convert/StreamExtensions.class +-rw---- 2.0 fat 30166 bl 58% defN 20100101.000002 scala/collection/immutable/HashCollisionMapNode.class +-rw---- 2.0 fat 3018 bl 56% defN 20100101.000002 scala/collection/LazyZip4$$anon$21$$anon$22.class +-rw---- 2.0 fat 3021 bl 38% defN 20100101.000002 scala/sys/process/processInternal.class +-rw---- 2.0 fat 3021 bl 55% defN 20100101.000002 scala/collection/mutable/ArrayBuilder$ofRef.class +-rw---- 2.0 fat 3022 bl 51% defN 20100101.000002 scala/concurrent/BatchingExecutor$AbstractBatch.class +-rw---- 2.0 fat 3022 bl 60% defN 20100101.000002 scala/concurrent/ExecutionContext$$anon$1.class +-rw---- 2.0 fat 3034 bl 47% defN 20100101.000002 scala/collection/IntStepper.class +-rw---- 2.0 fat 3042 bl 68% defN 20100101.000002 scala/collection/convert/StreamExtensions$MapHasSeqKeyValueStream.class +-rw---- 2.0 fat 3044 bl 69% defN 20100101.000002 scala/sys/process/ProcessBuilder$Sink.class +-rw---- 2.0 fat 3045 bl 44% defN 20100101.000002 scala/Product5.class +-rw---- 2.0 fat 3046 bl 44% defN 20100101.000002 scala/concurrent/DelayedLazyVal.class +-rw---- 2.0 fat 3047 bl 47% defN 20100101.000002 scala/collection/LongStepper.class +-rw---- 2.0 fat 3051 bl 70% defN 20100101.000002 scala/collection/generic/IsMap$$anon$3.class +-rw---- 2.0 fat 3057 bl 68% defN 20100101.000002 scala/collection/generic/IsSeq$$anon$6.class +-rw---- 2.0 fat 3060 bl 70% defN 20100101.000002 scala/collection/generic/IsMap$$anon$6.class +-rw---- 2.0 fat 30627 bl 68% defN 20100101.000002 scala/Tuple20.class +-rw---- 2.0 fat 3065 bl 70% defN 20100101.000002 scala/collection/generic/IsMap$$anon$4.class +-rw---- 2.0 fat 3079 bl 57% defN 20100101.000002 scala/Enumeration$Value.class +-rw---- 2.0 fat 3079 bl 70% defN 20100101.000002 scala/collection/generic/IsMap$$anon$5.class +-rw---- 2.0 fat 3081 bl 57% defN 20100101.000002 scala/math/Equiv$Tuple4Equiv.class +-rw---- 2.0 fat 3084 bl 52% defN 20100101.000002 scala/collection/immutable/StrictOptimizedSortedMapOps.class +-rw---- 2.0 fat 3097 bl 39% defN 20100101.000002 scala/concurrent/SyncVar.class +-rw---- 2.0 fat 3106 bl 64% defN 20100101.000002 scala/collection/BitSet$.class +-rw---- 2.0 fat 3109 bl 48% defN 20100101.000002 scala/collection/Iterator$SliceIterator.class +-rw---- 2.0 fat 3109 bl 62% defN 20100101.000002 scala/Array$UnapplySeqWrapper$.class +-rw---- 2.0 fat 3117 bl 55% defN 20100101.000002 scala/jdk/AnyAccumulator$SerializationProxy.class +-rw---- 2.0 fat 31184 bl 73% defN 20100101.000002 scala/collection/immutable/Nil.class +-rw---- 2.0 fat 3118 bl 47% defN 20100101.000002 scala/collection/DoubleStepper.class +-rw---- 2.0 fat 3119 bl 63% defN 20100101.000002 scala/collection/mutable/OpenHashMap$.class +-rw---- 2.0 fat 311 bl 33% defN 20100101.000002 scala/concurrent/impl/Promise$Callbacks.class +-rw---- 2.0 fat 3122 bl 71% defN 20100101.000002 scala/collection/mutable/AnyRefMap$ToBuildFrom$.class +-rw---- 2.0 fat 312 bl 39% defN 20100101.000002 scala/languageFeature$experimental$macros.class +-rw---- 2.0 fat 3131 bl 54% defN 20100101.000002 scala/math/Ordered.class +-rw---- 2.0 fat 3136 bl 53% defN 20100101.000002 scala/collection/immutable/IntMapUtils.class +-rw---- 2.0 fat 3137 bl 51% defN 20100101.000002 scala/Enumeration$Val.class +-rw---- 2.0 fat 31413 bl 85% defN 20100101.000002 scala/jdk/FunctionConverters$.class +-rw---- 2.0 fat 3143 bl 65% defN 20100101.000002 scala/Tuple14$.class +-rw---- 2.0 fat 3147 bl 70% defN 20100101.000002 scala/collection/generic/IsSeq$$anon$3.class +-rw---- 2.0 fat 3152 bl 50% defN 20100101.000002 scala/runtime/NonLocalReturnControl.class +-rw---- 2.0 fat 3161 bl 53% defN 20100101.000002 scala/collection/immutable/LongMapUtils.class +-rw---- 2.0 fat 3162 bl 42% defN 20100101.000002 scala/runtime/ClassValueCompat.class +-rw---- 2.0 fat 3162 bl 58% defN 20100101.000002 scala/collection/ArrayOps$ReverseIterator.class +-rw---- 2.0 fat 31639 bl 77% defN 20100101.000002 scala/collection/immutable/VectorMap$$anon$2.class +-rw---- 2.0 fat 3167 bl 60% defN 20100101.000002 scala/util/control/TailCalls$Done.class +-rw---- 2.0 fat 3169 bl 71% defN 20100101.000002 scala/collection/generic/IsSeq$$anon$1.class +-rw---- 2.0 fat 3174 bl 67% defN 20100101.000002 scala/collection/mutable/RedBlackTree$Node.class +-rw---- 2.0 fat 3182 bl 57% defN 20100101.000002 scala/sys/process/processInternal$.class +-rw---- 2.0 fat 3192 bl 61% defN 20100101.000002 scala/util/Try$WithFilter.class +-rw---- 2.0 fat 3194 bl 70% defN 20100101.000002 scala/collection/generic/IsSeq$$anon$8.class +-rw---- 2.0 fat 3195 bl 62% defN 20100101.000002 scala/util/control/Exception$Finally.class +-rw---- 2.0 fat 3197 bl 60% defN 20100101.000002 scala/collection/mutable/CollisionProofHashMap$MapIterator.class +-rw---- 2.0 fat 3198 bl 57% defN 20100101.000002 scala/sys/BooleanProp$.class +-rw---- 2.0 fat 3203 bl 58% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$Ordering$Zero$.class +-rw---- 2.0 fat 3207 bl 45% defN 20100101.000002 scala/Product6.class +-rw---- 2.0 fat 3210 bl 42% defN 20100101.000002 scala/collection/mutable/SeqOps.class +-rw---- 2.0 fat 3211 bl 51% defN 20100101.000002 scala/math/PartiallyOrdered.class +-rw---- 2.0 fat 3211 bl 53% defN 20100101.000002 scala/collection/EvidenceIterableFactoryDefaults.class +-rw---- 2.0 fat 3216 bl 65% defN 20100101.000002 scala/concurrent/impl/ExecutionContextImpl$DefaultThreadFactory$$anon$1$$anon$2.class +-rw---- 2.0 fat 3220 bl 72% defN 20100101.000002 scala/collection/generic/IsSeq$$anon$5.class +-rw---- 2.0 fat 3223 bl 74% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamUnboxer$.class +-rw---- 2.0 fat 3224 bl 72% defN 20100101.000002 scala/$less$colon$less$$anon$1.class -rw---- 2.0 fat 3225 bl 59% defN 20100101.000002 scala/jdk/IntAccumulatorStepper$$anon$1.class --rw---- 2.0 fat 8600 bl 57% defN 20100101.000002 scala/jdk/IntAccumulatorStepper.class --rw---- 2.0 fat 6347 bl 64% defN 20100101.000002 scala/jdk/LongAccumulator$.class --rw---- 2.0 fat 2637 bl 51% defN 20100101.000002 scala/jdk/LongAccumulator$SerializationProxy.class --rw---- 2.0 fat 21713 bl 53% defN 20100101.000002 scala/jdk/LongAccumulator.class +-rw---- 2.0 fat 3234 bl 46% defN 20100101.000002 scala/$eq$colon$eq.class -rw---- 2.0 fat 3237 bl 59% defN 20100101.000002 scala/jdk/LongAccumulatorStepper$$anon$1.class --rw---- 2.0 fat 8627 bl 57% defN 20100101.000002 scala/jdk/LongAccumulatorStepper.class --rw---- 2.0 fat 1496 bl 61% defN 20100101.000002 scala/jdk/OptionConverters$.class --rw---- 2.0 fat 2381 bl 57% defN 20100101.000002 scala/jdk/OptionConverters$RichOption$.class --rw---- 2.0 fat 2066 bl 57% defN 20100101.000002 scala/jdk/OptionConverters$RichOption.class --rw---- 2.0 fat 2426 bl 57% defN 20100101.000002 scala/jdk/OptionConverters$RichOptional$.class --rw---- 2.0 fat 2125 bl 58% defN 20100101.000002 scala/jdk/OptionConverters$RichOptional.class --rw---- 2.0 fat 2374 bl 57% defN 20100101.000002 scala/jdk/OptionConverters$RichOptionalDouble$.class --rw---- 2.0 fat 1900 bl 60% defN 20100101.000002 scala/jdk/OptionConverters$RichOptionalDouble.class --rw---- 2.0 fat 2322 bl 56% defN 20100101.000002 scala/jdk/OptionConverters$RichOptionalInt$.class --rw---- 2.0 fat 1858 bl 59% defN 20100101.000002 scala/jdk/OptionConverters$RichOptionalInt.class --rw---- 2.0 fat 2338 bl 56% defN 20100101.000002 scala/jdk/OptionConverters$RichOptionalLong$.class --rw---- 2.0 fat 1872 bl 59% defN 20100101.000002 scala/jdk/OptionConverters$RichOptionalLong.class --rw---- 2.0 fat 6353 bl 41% defN 20100101.000002 scala/jdk/OptionConverters.class --rw---- 2.0 fat 1718 bl 56% defN 20100101.000002 scala/jdk/OptionShape$$anon$1.class --rw---- 2.0 fat 1691 bl 56% defN 20100101.000002 scala/jdk/OptionShape$$anon$2.class --rw---- 2.0 fat 1700 bl 56% defN 20100101.000002 scala/jdk/OptionShape$$anon$3.class --rw---- 2.0 fat 2334 bl 68% defN 20100101.000002 scala/jdk/OptionShape$.class --rw---- 2.0 fat 2888 bl 45% defN 20100101.000002 scala/jdk/OptionShape.class --rw---- 2.0 fat 42785 bl 73% defN 20100101.000002 scala/jdk/Priority0FunctionExtensions.class --rw---- 2.0 fat 8875 bl 62% defN 20100101.000002 scala/jdk/Priority1FunctionExtensions.class --rw---- 2.0 fat 3996 bl 56% defN 20100101.000002 scala/jdk/Priority2FunctionExtensions.class --rw---- 2.0 fat 1457 bl 41% defN 20100101.000002 scala/jdk/Priority3FunctionExtensions.class --rw---- 2.0 fat 10819 bl 82% defN 20100101.000002 scala/jdk/StreamConverters$.class --rw---- 2.0 fat 7427 bl 75% defN 20100101.000002 scala/jdk/StreamConverters.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/jdk/javaapi/ --rw---- 2.0 fat 9398 bl 82% defN 20100101.000002 scala/jdk/javaapi/CollectionConverters$.class --rw---- 2.0 fat 6589 bl 76% defN 20100101.000002 scala/jdk/javaapi/CollectionConverters.class +-rw---- 2.0 fat 3242 bl 33% defN 20100101.000002 scala/compat/Platform.class +-rw---- 2.0 fat 3246 bl 63% defN 20100101.000002 scala/concurrent/duration/package$.class +-rw---- 2.0 fat 3246 bl 69% defN 20100101.000002 scala/io/StdIn$.class +-rw---- 2.0 fat 3251 bl 68% defN 20100101.000002 scala/sys/process/ProcessBuilder$Source.class +-rw---- 2.0 fat 3252 bl 60% defN 20100101.000002 scala/Array$ArrayFactory.class +-rw---- 2.0 fat 32548 bl 50% defN 20100101.000002 scala/collection/immutable/Vector5.class -rw---- 2.0 fat 3257 bl 48% defN 20100101.000002 scala/jdk/javaapi/DurationConverters$.class --rw---- 2.0 fat 1106 bl 38% defN 20100101.000002 scala/jdk/javaapi/DurationConverters.class --rw---- 2.0 fat 41863 bl 81% defN 20100101.000002 scala/jdk/javaapi/FunctionConverters$.class +-rw---- 2.0 fat 3262 bl 65% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$MutableBufferWrapper.class +-rw---- 2.0 fat 32695 bl 69% defN 20100101.000002 scala/Tuple21.class +-rw---- 2.0 fat 32708 bl 67% defN 20100101.000002 scala/collection/mutable/StringBuilder.class +-rw---- 2.0 fat 3278 bl 54% defN 20100101.000002 scala/annotation/elidable$.class +-rw---- 2.0 fat 3279 bl 66% defN 20100101.000002 scala/Tuple15$.class +-rw---- 2.0 fat 327 bl 39% defN 20100101.000002 scala/sys/process/ProcessBuilder$URLBuilder.class +-rw---- 2.0 fat 3287 bl 48% defN 20100101.000002 scala/Product1.class +-rw---- 2.0 fat 3288 bl 65% defN 20100101.000000 rootdoc.txt +-rw---- 2.0 fat 328 bl 41% defN 20100101.000002 scala/Function1$mcZD$sp.class +-rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcDD$sp.class +-rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcDF$sp.class +-rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcDI$sp.class +-rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcDJ$sp.class +-rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcFD$sp.class +-rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcFF$sp.class +-rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcFI$sp.class +-rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcFJ$sp.class +-rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcID$sp.class +-rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcIF$sp.class +-rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcII$sp.class +-rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcIJ$sp.class +-rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcJD$sp.class +-rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcJF$sp.class +-rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcJI$sp.class +-rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcJJ$sp.class +-rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcZF$sp.class +-rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcZI$sp.class +-rw---- 2.0 fat 328 bl 42% defN 20100101.000002 scala/Function1$mcZJ$sp.class +-rw---- 2.0 fat 32905 bl 68% defN 20100101.000002 scala/collection/mutable/TreeSet.class +-rw---- 2.0 fat 3300 bl 37% defN 20100101.000002 scala/collection/immutable/RangeIterator.class +-rw---- 2.0 fat 3300 bl 60% defN 20100101.000002 scala/jdk/DoubleAccumulatorStepper$$anon$1.class +-rw---- 2.0 fat 3302 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntSupplier.class +-rw---- 2.0 fat 3315 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongSupplier.class +-rw---- 2.0 fat 3323 bl 65% defN 20100101.000002 scala/collection/immutable/MapOps$ImmutableKeySet.class +-rw---- 2.0 fat 3329 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleSupplier.class +-rw---- 2.0 fat 33306 bl 51% defN 20100101.000002 scala/collection/immutable/RedBlackTree.class +-rw---- 2.0 fat 3336 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaBooleanSupplier.class +-rw---- 2.0 fat 3341 bl 62% defN 20100101.000002 scala/runtime/Tuple3Zipped$Ops.class +-rw---- 2.0 fat 33452 bl 69% defN 20100101.000002 scala/collection/immutable/BitSet.class +-rw---- 2.0 fat 334 bl 14% defN 20100101.000002 scala/jdk/package.class +-rw---- 2.0 fat 3351 bl 57% defN 20100101.000002 scala/collection/MapView$MapValues.class +-rw---- 2.0 fat 33542 bl 58% defN 20100101.000002 scala/collection/mutable/LinkedHashMap.class +-rw---- 2.0 fat 3354 bl 59% defN 20100101.000002 scala/collection/immutable/RedBlackTree$partitioner$1$.class +-rw---- 2.0 fat 3356 bl 58% defN 20100101.000002 scala/collection/mutable/RedBlackTree$TreeIterator.class +-rw---- 2.0 fat 335 bl 38% defN 20100101.000002 scala/Function1$mcVD$sp.class +-rw---- 2.0 fat 335 bl 38% defN 20100101.000002 scala/Function1$mcVF$sp.class +-rw---- 2.0 fat 335 bl 38% defN 20100101.000002 scala/Function1$mcVI$sp.class +-rw---- 2.0 fat 335 bl 38% defN 20100101.000002 scala/Function1$mcVJ$sp.class +-rw---- 2.0 fat 3361 bl 59% defN 20100101.000002 scala/collection/immutable/ArraySeq$ofUnit.class +-rw---- 2.0 fat 3368 bl 46% defN 20100101.000002 scala/Product7.class +-rw---- 2.0 fat 3370 bl 57% defN 20100101.000002 scala/collection/mutable/ArraySeq$ofBoolean.class +-rw---- 2.0 fat 33818 bl 72% defN 20100101.000002 scala/util/Sorting$.class +-rw---- 2.0 fat 33887 bl 62% defN 20100101.000002 scala/collection/mutable/PriorityQueue.class +-rw---- 2.0 fat 3395 bl 60% defN 20100101.000002 scala/collection/Factory$ArrayFactory.class +-rw---- 2.0 fat 34001 bl 60% defN 20100101.000002 scala/concurrent/Future.class +-rw---- 2.0 fat 3401 bl 60% defN 20100101.000002 scala/collection/mutable/ArrayBuilder$ofUnit.class +-rw---- 2.0 fat 3402 bl 44% defN 20100101.000002 scala/collection/convert/impl/VectorStepperBase.class +-rw---- 2.0 fat 3413 bl 70% defN 20100101.000002 scala/collection/convert/StreamExtensions$MapHasParKeyValueStream.class +-rw---- 2.0 fat 3415 bl 67% defN 20100101.000002 scala/Tuple16$.class +-rw---- 2.0 fat 3418 bl 68% defN 20100101.000002 scala/sys/process/package$.class +-rw---- 2.0 fat 3420 bl 47% defN 20100101.000002 scala/util/ChainingOps.class +-rw---- 2.0 fat 3421 bl 57% defN 20100101.000002 scala/collection/ArrayOps$ArrayIterator.class +-rw---- 2.0 fat 3425 bl 48% defN 20100101.000002 scala/collection/mutable/WeakHashMap.class +-rw---- 2.0 fat 3429 bl 53% defN 20100101.000002 scala/util/Using$Manager.class +-rw---- 2.0 fat 34346 bl 48% defN 20100101.000002 scala/collection/immutable/BitmapIndexedSetNode.class +-rw---- 2.0 fat 3438 bl 60% defN 20100101.000002 scala/collection/mutable/HashMap$Node.class +-rw---- 2.0 fat 3440 bl 50% defN 20100101.000002 scala/collection/concurrent/SNode.class +-rw---- 2.0 fat 3442 bl 60% defN 20100101.000002 scala/collection/convert/StreamExtensions$IntStreamHasToScala.class +-rw---- 2.0 fat 3444 bl 57% defN 20100101.000002 scala/sys/SystemProperties$.class +-rw---- 2.0 fat 3448 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntToLongFunction.class +-rw---- 2.0 fat 3449 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaSupplier.class +-rw---- 2.0 fat 3451 bl 60% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongToIntFunction.class +-rw---- 2.0 fat 34561 bl 66% defN 20100101.000002 scala/collection/immutable/Queue.class +-rw---- 2.0 fat 3456 bl 64% defN 20100101.000002 scala/collection/mutable/LinkedHashMap$.class -rw---- 2.0 fat 34581 bl 71% defN 20100101.000002 scala/jdk/javaapi/FunctionConverters.class --rw---- 2.0 fat 2528 bl 56% defN 20100101.000002 scala/jdk/javaapi/FutureConverters$.class --rw---- 2.0 fat 1410 bl 42% defN 20100101.000002 scala/jdk/javaapi/FutureConverters.class +-rw---- 2.0 fat 3460 bl 60% defN 20100101.000002 scala/collection/convert/StreamExtensions$LongStreamHasToScala.class +-rw---- 2.0 fat 3462 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntToDoubleFunction.class +-rw---- 2.0 fat 3463 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleToIntFunction.class +-rw---- 2.0 fat 3467 bl 59% defN 20100101.000002 scala/collection/mutable/ArraySeq$ofUnit.class +-rw---- 2.0 fat 3470 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleToLongFunction.class +-rw---- 2.0 fat 3472 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongToDoubleFunction.class +-rw---- 2.0 fat 3473 bl 54% defN 20100101.000002 scala/math/PartialOrdering.class +-rw---- 2.0 fat 34834 bl 70% defN 20100101.000002 scala/Tuple22.class +-rw---- 2.0 fat 3484 bl 56% defN 20100101.000002 scala/collection/mutable/ArraySeq$ofRef.class +-rw---- 2.0 fat 3486 bl 62% defN 20100101.000002 scala/util/control/TailCalls$Call.class +-rw---- 2.0 fat 348 bl 29% defN 20100101.000002 scala/math/ScalaNumber.class +-rw---- 2.0 fat 3496 bl 44% defN 20100101.000002 scala/collection/IterableOnce.class +-rw---- 2.0 fat 3496 bl 61% defN 20100101.000002 scala/collection/convert/StreamExtensions$DoubleStreamHasToScala.class +-rw---- 2.0 fat 349 bl 31% defN 20100101.000002 scala/collection/concurrent/BasicNode.class +-rw---- 2.0 fat 3500 bl 59% defN 20100101.000002 scala/math/Equiv$Tuple5Equiv.class +-rw---- 2.0 fat 3517 bl 45% defN 20100101.000002 scala/UniquenessCache.class +-rw---- 2.0 fat 3525 bl 57% defN 20100101.000002 scala/collection/MapView$FilterKeys.class +-rw---- 2.0 fat 3527 bl 66% defN 20100101.000002 scala/collection/immutable/VectorMap$.class +-rw---- 2.0 fat 3539 bl 46% defN 20100101.000002 scala/Product8.class +-rw---- 2.0 fat 3541 bl 52% defN 20100101.000002 scala/collection/StrictOptimizedClassTagSeqFactory.class +-rw---- 2.0 fat 3541 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntBinaryOperator.class +-rw---- 2.0 fat 3541 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaUnaryOperator.class +-rw---- 2.0 fat 3548 bl 62% defN 20100101.000002 scala/collection/mutable/HashMap$.class +-rw---- 2.0 fat 354 bl 43% defN 20100101.000000 library.properties +-rw---- 2.0 fat 3551 bl 68% defN 20100101.000002 scala/Tuple17$.class +-rw---- 2.0 fat 3552 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongBinaryOperator.class +-rw---- 2.0 fat 3560 bl 56% defN 20100101.000002 scala/sys/process/ProcessIO.class +-rw---- 2.0 fat 3563 bl 62% defN 20100101.000002 scala/collection/immutable/LazyList$cons$.class +-rw---- 2.0 fat 3566 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleBinaryOperator.class +-rw---- 2.0 fat 3576 bl 43% defN 20100101.000002 scala/collection/immutable/ChampBaseReverseIterator.class +-rw---- 2.0 fat 3579 bl 44% defN 20100101.000002 scala/collection/immutable/IntMapIterator.class +-rw---- 2.0 fat 3585 bl 66% defN 20100101.000002 scala/collection/Iterable$$anon$1.class +-rw---- 2.0 fat 358 bl 34% defN 20100101.000002 scala/Proxy$Typed.class +-rw---- 2.0 fat 3596 bl 50% defN 20100101.000002 scala/collection/LinearSeqIterator.class +-rw---- 2.0 fat 3596 bl 66% defN 20100101.000002 scala/collection/mutable/TreeMap$.class +-rw---- 2.0 fat 3597 bl 44% defN 20100101.000002 scala/collection/immutable/LongMapIterator.class +-rw---- 2.0 fat 359 bl 19% defN 20100101.000002 scala/annotation/TypeConstraint.class +-rw---- 2.0 fat 3604 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaBinaryOperator.class +-rw---- 2.0 fat 3606 bl 62% defN 20100101.000002 scala/collection/mutable/BitSet$.class +-rw---- 2.0 fat 3610 bl 65% defN 20100101.000002 scala/collection/immutable/SeqMap$.class +-rw---- 2.0 fat 3618 bl 24% defN 20100101.000002 scala/concurrent/impl/FutureConvertersImpl.class +-rw---- 2.0 fat 3620 bl 65% defN 20100101.000002 scala/collection/immutable/HashMap$.class +-rw---- 2.0 fat 3627 bl 59% defN 20100101.000002 scala/runtime/Tuple2Zipped$Ops$.class +-rw---- 2.0 fat 3630 bl 61% defN 20100101.000002 scala/concurrent/Await$.class +-rw---- 2.0 fat 3647 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntConsumer.class +-rw---- 2.0 fat 3654 bl 53% defN 20100101.000002 scala/collection/StrictOptimizedLinearSeqOps.class +-rw---- 2.0 fat 3658 bl 58% defN 20100101.000002 scala/PartialFunction$ElementWiseExtractor$.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcDDD$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcDDI$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcDDJ$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcDID$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcDII$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcDIJ$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcDJD$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcDJI$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcDJJ$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcFDD$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcFDI$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcFDJ$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcFID$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcFII$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcFIJ$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcFJD$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcFJI$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcFJJ$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcIDD$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcIDI$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcIDJ$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcIID$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcIIJ$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcIJD$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcIJI$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcIJJ$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcJDD$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcJDI$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcJDJ$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcJID$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcJII$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcJIJ$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcJJD$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcJJI$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcJJJ$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcZDD$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcZDI$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcZDJ$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcZID$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcZII$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcZIJ$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcZJD$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcZJI$sp.class +-rw---- 2.0 fat 365 bl 46% defN 20100101.000002 scala/Function2$mcZJJ$sp.class +-rw---- 2.0 fat 365 bl 47% defN 20100101.000002 scala/Function2$mcIII$sp.class +-rw---- 2.0 fat 3660 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongConsumer.class +-rw---- 2.0 fat 3664 bl 58% defN 20100101.000002 scala/collection/immutable/RedBlackTree$Helper.class +-rw---- 2.0 fat 3668 bl 66% defN 20100101.000002 scala/collection/convert/ImplicitConversionsToScala.class +-rw---- 2.0 fat 366 bl 15% defN 20100101.000002 scala/annotation/meta/package.class +-rw---- 2.0 fat 366 bl 21% defN 20100101.000002 scala/annotation/StaticAnnotation.class +-rw---- 2.0 fat 3671 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntFunction.class -rw---- 2.0 fat 3674 bl 64% defN 20100101.000002 scala/jdk/javaapi/OptionConverters$.class --rw---- 2.0 fat 2847 bl 56% defN 20100101.000002 scala/jdk/javaapi/OptionConverters.class --rw---- 2.0 fat 11817 bl 80% defN 20100101.000002 scala/jdk/javaapi/StreamConverters$.class --rw---- 2.0 fat 13125 bl 65% defN 20100101.000002 scala/jdk/javaapi/StreamConverters.class --rw---- 2.0 fat 409 bl 30% defN 20100101.000002 scala/jdk/package$.class --rw---- 2.0 fat 334 bl 14% defN 20100101.000002 scala/jdk/package.class +-rw---- 2.0 fat 3678 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleConsumer.class +-rw---- 2.0 fat 36804 bl 52% defN 20100101.000002 scala/math/Ordering.class +-rw---- 2.0 fat 3682 bl 58% defN 20100101.000002 scala/collection/Iterator$ConcatIterator.class +-rw---- 2.0 fat 3687 bl 68% defN 20100101.000002 scala/Tuple18$.class +-rw---- 2.0 fat 36895 bl 62% defN 20100101.000002 scala/collection/mutable/HashSet.class +-rw---- 2.0 fat 3700 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongFunction.class +-rw---- 2.0 fat 3708 bl 57% defN 20100101.000002 scala/concurrent/ExecutionContext$parasitic$.class +-rw---- 2.0 fat 3709 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaToIntFunction.class +-rw---- 2.0 fat 3710 bl 56% defN 20100101.000002 scala/collection/immutable/BitSet$BitSet1.class +-rw---- 2.0 fat 3714 bl 47% defN 20100101.000002 scala/Product9.class +-rw---- 2.0 fat 3714 bl 59% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$DictionaryWrapper.class +-rw---- 2.0 fat 3718 bl 61% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaToLongFunction.class +-rw---- 2.0 fat 3718 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleFunction.class +-rw---- 2.0 fat 3722 bl 55% defN 20100101.000002 scala/Specializable.class +-rw---- 2.0 fat 3722 bl 55% defN 20100101.000002 scala/sys/process/ProcessImpl$PipeThread.class -rw---- 2.0 fat 3724 bl 65% defN 20100101.000002 scala/language$.class --rw---- 2.0 fat 1174 bl 49% defN 20100101.000002 scala/language$experimental$.class --rw---- 2.0 fat 2040 bl 42% defN 20100101.000002 scala/language.class --rw---- 2.0 fat 425 bl 32% defN 20100101.000002 scala/languageFeature$.class --rw---- 2.0 fat 570 bl 40% defN 20100101.000002 scala/languageFeature$dynamics$.class --rw---- 2.0 fat 238 bl 30% defN 20100101.000002 scala/languageFeature$dynamics.class --rw---- 2.0 fat 590 bl 41% defN 20100101.000002 scala/languageFeature$existentials$.class --rw---- 2.0 fat 246 bl 32% defN 20100101.000002 scala/languageFeature$existentials.class --rw---- 2.0 fat 655 bl 44% defN 20100101.000002 scala/languageFeature$experimental$.class --rw---- 2.0 fat 664 bl 44% defN 20100101.000002 scala/languageFeature$experimental$macros$.class --rw---- 2.0 fat 312 bl 39% defN 20100101.000002 scala/languageFeature$experimental$macros.class --rw---- 2.0 fat 604 bl 41% defN 20100101.000002 scala/languageFeature$higherKinds$.class --rw---- 2.0 fat 263 bl 31% defN 20100101.000002 scala/languageFeature$higherKinds.class --rw---- 2.0 fat 625 bl 43% defN 20100101.000002 scala/languageFeature$implicitConversions$.class --rw---- 2.0 fat 260 bl 33% defN 20100101.000002 scala/languageFeature$implicitConversions.class --rw---- 2.0 fat 580 bl 40% defN 20100101.000002 scala/languageFeature$postfixOps$.class --rw---- 2.0 fat 242 bl 31% defN 20100101.000002 scala/languageFeature$postfixOps.class --rw---- 2.0 fat 605 bl 42% defN 20100101.000002 scala/languageFeature$reflectiveCalls$.class --rw---- 2.0 fat 252 bl 33% defN 20100101.000002 scala/languageFeature$reflectiveCalls.class --rw---- 2.0 fat 2494 bl 35% defN 20100101.000002 scala/languageFeature.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/math/ --rw---- 2.0 fat 8340 bl 64% defN 20100101.000002 scala/math/BigDecimal$.class --rw---- 2.0 fat 1910 bl 55% defN 20100101.000002 scala/math/BigDecimal$RoundingMode$.class --rw---- 2.0 fat 26226 bl 58% defN 20100101.000002 scala/math/BigDecimal.class --rw---- 2.0 fat 4671 bl 54% defN 20100101.000002 scala/math/BigInt$.class --rw---- 2.0 fat 21888 bl 55% defN 20100101.000002 scala/math/BigInt.class --rw---- 2.0 fat 11407 bl 74% defN 20100101.000002 scala/math/Equiv$.class --rw---- 2.0 fat 1281 bl 47% defN 20100101.000002 scala/math/Equiv$BigDecimal$.class --rw---- 2.0 fat 1249 bl 46% defN 20100101.000002 scala/math/Equiv$BigInt$.class --rw---- 2.0 fat 1194 bl 44% defN 20100101.000002 scala/math/Equiv$Boolean$.class --rw---- 2.0 fat 1182 bl 44% defN 20100101.000002 scala/math/Equiv$Byte$.class --rw---- 2.0 fat 1182 bl 44% defN 20100101.000002 scala/math/Equiv$Char$.class --rw---- 2.0 fat 1312 bl 47% defN 20100101.000002 scala/math/Equiv$DeprecatedDoubleEquiv$.class --rw---- 2.0 fat 1304 bl 48% defN 20100101.000002 scala/math/Equiv$DeprecatedFloatEquiv$.class --rw---- 2.0 fat 730 bl 46% defN 20100101.000002 scala/math/Equiv$Double$.class --rw---- 2.0 fat 1284 bl 47% defN 20100101.000002 scala/math/Equiv$Double$IeeeEquiv$.class --rw---- 2.0 fat 925 bl 47% defN 20100101.000002 scala/math/Equiv$Double$IeeeEquiv.class --rw---- 2.0 fat 1296 bl 47% defN 20100101.000002 scala/math/Equiv$Double$StrictEquiv$.class --rw---- 2.0 fat 988 bl 48% defN 20100101.000002 scala/math/Equiv$Double$StrictEquiv.class --rw---- 2.0 fat 1430 bl 60% defN 20100101.000002 scala/math/Equiv$ExtraImplicits.class --rw---- 2.0 fat 723 bl 45% defN 20100101.000002 scala/math/Equiv$Float$.class --rw---- 2.0 fat 1277 bl 47% defN 20100101.000002 scala/math/Equiv$Float$IeeeEquiv$.class --rw---- 2.0 fat 919 bl 47% defN 20100101.000002 scala/math/Equiv$Float$IeeeEquiv.class --rw---- 2.0 fat 1289 bl 47% defN 20100101.000002 scala/math/Equiv$Float$StrictEquiv$.class --rw---- 2.0 fat 981 bl 48% defN 20100101.000002 scala/math/Equiv$Float$StrictEquiv.class --rw---- 2.0 fat 1252 bl 54% defN 20100101.000002 scala/math/Equiv$Implicits$.class --rw---- 2.0 fat 1178 bl 44% defN 20100101.000002 scala/math/Equiv$Int$.class --rw---- 2.0 fat 1990 bl 51% defN 20100101.000002 scala/math/Equiv$IterableEquiv.class --rw---- 2.0 fat 1183 bl 43% defN 20100101.000002 scala/math/Equiv$Long$.class --rw---- 2.0 fat 1816 bl 49% defN 20100101.000002 scala/math/Equiv$OptionEquiv.class --rw---- 2.0 fat 1186 bl 44% defN 20100101.000002 scala/math/Equiv$Short$.class --rw---- 2.0 fat 1244 bl 45% defN 20100101.000002 scala/math/Equiv$String$.class --rw---- 2.0 fat 1224 bl 45% defN 20100101.000002 scala/math/Equiv$Symbol$.class --rw---- 2.0 fat 2120 bl 53% defN 20100101.000002 scala/math/Equiv$Tuple2Equiv.class --rw---- 2.0 fat 2675 bl 55% defN 20100101.000002 scala/math/Equiv$Tuple3Equiv.class --rw---- 2.0 fat 3081 bl 57% defN 20100101.000002 scala/math/Equiv$Tuple4Equiv.class --rw---- 2.0 fat 3500 bl 59% defN 20100101.000002 scala/math/Equiv$Tuple5Equiv.class +-rw---- 2.0 fat 372 bl 42% defN 20100101.000002 scala/Function2$mcVDD$sp.class +-rw---- 2.0 fat 372 bl 42% defN 20100101.000002 scala/Function2$mcVDI$sp.class +-rw---- 2.0 fat 372 bl 42% defN 20100101.000002 scala/Function2$mcVDJ$sp.class +-rw---- 2.0 fat 372 bl 42% defN 20100101.000002 scala/Function2$mcVID$sp.class +-rw---- 2.0 fat 372 bl 42% defN 20100101.000002 scala/Function2$mcVII$sp.class +-rw---- 2.0 fat 372 bl 42% defN 20100101.000002 scala/Function2$mcVIJ$sp.class +-rw---- 2.0 fat 372 bl 42% defN 20100101.000002 scala/Function2$mcVJD$sp.class +-rw---- 2.0 fat 372 bl 42% defN 20100101.000002 scala/Function2$mcVJI$sp.class +-rw---- 2.0 fat 372 bl 42% defN 20100101.000002 scala/Function2$mcVJJ$sp.class +-rw---- 2.0 fat 3732 bl 50% defN 20100101.000002 scala/collection/concurrent/TNode.class +-rw---- 2.0 fat 3735 bl 53% defN 20100101.000002 scala/runtime/RichBoolean.class +-rw---- 2.0 fat 3736 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaToDoubleFunction.class +-rw---- 2.0 fat 3744 bl 58% defN 20100101.000002 scala/concurrent/duration/Duration$Infinite.class +-rw---- 2.0 fat 3748 bl 60% defN 20100101.000002 scala/Function0.class +-rw---- 2.0 fat 37568 bl 62% defN 20100101.000002 scala/collection/mutable/ListBuffer.class +-rw---- 2.0 fat 3767 bl 56% defN 20100101.000002 scala/collection/mutable/ArraySeq$ofByte.class +-rw---- 2.0 fat 37718 bl 50% defN 20100101.000002 scala/collection/immutable/BitmapIndexedMapNode.class +-rw---- 2.0 fat 3771 bl 35% defN 20100101.000002 scala/collection/package.class +-rw---- 2.0 fat 3772 bl 68% defN 20100101.000002 scala/collection/SeqFactory$UnapplySeqWrapper$.class +-rw---- 2.0 fat 3776 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntUnaryOperator.class +-rw---- 2.0 fat 3777 bl 65% defN 20100101.000002 scala/runtime/RichLong$.class +-rw---- 2.0 fat 3778 bl 56% defN 20100101.000002 scala/collection/mutable/ArraySeq$ofShort.class +-rw---- 2.0 fat 3783 bl 59% defN 20100101.000002 scala/concurrent/impl/ExecutionContextImpl$DefaultThreadFactory.class +-rw---- 2.0 fat 3790 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongUnaryOperator.class +-rw---- 2.0 fat 3810 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoubleUnaryOperator.class +-rw---- 2.0 fat 3815 bl 57% defN 20100101.000002 scala/collection/mutable/ArraySeq$ofInt.class +-rw---- 2.0 fat 38184 bl 57% defN 20100101.000002 scala/collection/immutable/TreeSeqMap.class +-rw---- 2.0 fat 3818 bl 53% defN 20100101.000002 scala/collection/generic/IsIterableOnce.class +-rw---- 2.0 fat 3823 bl 69% defN 20100101.000002 scala/Tuple19$.class +-rw---- 2.0 fat 38451 bl 63% defN 20100101.000002 scala/collection/IterableOnceExtensionMethods.class +-rw---- 2.0 fat 3848 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaIntPredicate.class +-rw---- 2.0 fat 384 bl 19% defN 20100101.000002 scala/AnyValCompanion.class +-rw---- 2.0 fat 38543 bl 64% defN 20100101.000002 scala/collection/immutable/HashSet.class +-rw---- 2.0 fat 3854 bl 58% defN 20100101.000002 scala/collection/IterableOnceOps$Maximized.class +-rw---- 2.0 fat 3862 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaLongPredicate.class +-rw---- 2.0 fat 3868 bl 57% defN 20100101.000002 scala/collection/mutable/ArraySeq$ofLong.class +-rw---- 2.0 fat 3869 bl 67% defN 20100101.000002 scala/collection/concurrent/TrieMap$.class +-rw---- 2.0 fat 3876 bl 63% defN 20100101.000002 scala/collection/immutable/IntVectorStepper.class +-rw---- 2.0 fat 3882 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaDoublePredicate.class +-rw---- 2.0 fat 3886 bl 63% defN 20100101.000002 scala/collection/immutable/Nil$.class +-rw---- 2.0 fat 3887 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaToIntBiFunction.class +-rw---- 2.0 fat 38893 bl 61% defN 20100101.000002 scala/collection/Iterator.class +-rw---- 2.0 fat 3891 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaObjIntConsumer.class +-rw---- 2.0 fat 38955 bl 59% defN 20100101.000002 scala/collection/mutable/LongMap.class +-rw---- 2.0 fat 3896 bl 57% defN 20100101.000002 scala/collection/mutable/ArraySeq$ofFloat.class +-rw---- 2.0 fat 3896 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaObjLongConsumer.class +-rw---- 2.0 fat 3896 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaToLongBiFunction.class +-rw---- 2.0 fat 3896 bl 63% defN 20100101.000002 scala/collection/immutable/LongVectorStepper.class +-rw---- 2.0 fat 3900 bl 57% defN 20100101.000002 scala/collection/mutable/ArraySeq$ofDouble.class -rw---- 2.0 fat 3906 bl 60% defN 20100101.000002 scala/math/Equiv$Tuple6Equiv.class --rw---- 2.0 fat 4315 bl 61% defN 20100101.000002 scala/math/Equiv$Tuple7Equiv.class --rw---- 2.0 fat 4727 bl 62% defN 20100101.000002 scala/math/Equiv$Tuple8Equiv.class --rw---- 2.0 fat 5142 bl 62% defN 20100101.000002 scala/math/Equiv$Tuple9Equiv.class --rw---- 2.0 fat 1178 bl 48% defN 20100101.000002 scala/math/Equiv$Unit$.class --rw---- 2.0 fat 23930 bl 50% defN 20100101.000002 scala/math/Equiv.class --rw---- 2.0 fat 932 bl 44% defN 20100101.000002 scala/math/Fractional$.class --rw---- 2.0 fat 1270 bl 58% defN 20100101.000002 scala/math/Fractional$ExtraImplicits.class --rw---- 2.0 fat 1232 bl 53% defN 20100101.000002 scala/math/Fractional$FractionalOps.class --rw---- 2.0 fat 1209 bl 54% defN 20100101.000002 scala/math/Fractional$Implicits$.class --rw---- 2.0 fat 2608 bl 43% defN 20100101.000002 scala/math/Fractional.class --rw---- 2.0 fat 915 bl 43% defN 20100101.000002 scala/math/Integral$.class --rw---- 2.0 fat 1226 bl 56% defN 20100101.000002 scala/math/Integral$ExtraImplicits.class --rw---- 2.0 fat 1167 bl 52% defN 20100101.000002 scala/math/Integral$Implicits$.class --rw---- 2.0 fat 1619 bl 57% defN 20100101.000002 scala/math/Integral$IntegralOps.class --rw---- 2.0 fat 2743 bl 41% defN 20100101.000002 scala/math/Integral.class --rw---- 2.0 fat 1407 bl 33% defN 20100101.000002 scala/math/LowPriorityEquiv.class --rw---- 2.0 fat 4825 bl 70% defN 20100101.000002 scala/math/LowPriorityOrderingImplicits$$anon$2.class --rw---- 2.0 fat 4783 bl 71% defN 20100101.000002 scala/math/LowPriorityOrderingImplicits$$anon$3.class --rw---- 2.0 fat 2361 bl 50% defN 20100101.000002 scala/math/LowPriorityOrderingImplicits.class --rw---- 2.0 fat 907 bl 43% defN 20100101.000002 scala/math/Numeric$.class --rw---- 2.0 fat 10431 bl 75% defN 20100101.000002 scala/math/Numeric$BigDecimalAsIfIntegral$.class --rw---- 2.0 fat 1549 bl 62% defN 20100101.000002 scala/math/Numeric$BigDecimalAsIfIntegral.class --rw---- 2.0 fat 1212 bl 50% defN 20100101.000002 scala/math/Numeric$BigDecimalIsConflicted$.class --rw---- 2.0 fat 5408 bl 67% defN 20100101.000002 scala/math/Numeric$BigDecimalIsConflicted.class --rw---- 2.0 fat 10202 bl 75% defN 20100101.000002 scala/math/Numeric$BigDecimalIsFractional$.class --rw---- 2.0 fat 1304 bl 59% defN 20100101.000002 scala/math/Numeric$BigDecimalIsFractional.class --rw---- 2.0 fat 10004 bl 75% defN 20100101.000002 scala/math/Numeric$BigIntIsIntegral$.class --rw---- 2.0 fat 5415 bl 68% defN 20100101.000002 scala/math/Numeric$BigIntIsIntegral.class --rw---- 2.0 fat 9779 bl 74% defN 20100101.000002 scala/math/Numeric$ByteIsIntegral$.class --rw---- 2.0 fat 4413 bl 70% defN 20100101.000002 scala/math/Numeric$ByteIsIntegral.class --rw---- 2.0 fat 9789 bl 74% defN 20100101.000002 scala/math/Numeric$CharIsIntegral$.class --rw---- 2.0 fat 5259 bl 66% defN 20100101.000002 scala/math/Numeric$CharIsIntegral.class --rw---- 2.0 fat 10452 bl 74% defN 20100101.000002 scala/math/Numeric$DoubleIsFractional$.class --rw---- 2.0 fat 4464 bl 68% defN 20100101.000002 scala/math/Numeric$DoubleIsFractional.class --rw---- 2.0 fat 1204 bl 56% defN 20100101.000002 scala/math/Numeric$ExtraImplicits.class --rw---- 2.0 fat 10431 bl 74% defN 20100101.000002 scala/math/Numeric$FloatIsFractional$.class --rw---- 2.0 fat 4450 bl 68% defN 20100101.000002 scala/math/Numeric$FloatIsFractional.class --rw---- 2.0 fat 1146 bl 52% defN 20100101.000002 scala/math/Numeric$Implicits$.class --rw---- 2.0 fat 9636 bl 74% defN 20100101.000002 scala/math/Numeric$IntIsIntegral$.class +-rw---- 2.0 fat 390 bl 36% defN 20100101.000002 scala/util/Using$Releasable.class +-rw---- 2.0 fat 3910 bl 47% defN 20100101.000002 scala/Product10.class +-rw---- 2.0 fat 3914 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaObjDoubleConsumer.class +-rw---- 2.0 fat 3914 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaToDoubleBiFunction.class +-rw---- 2.0 fat 39176 bl 50% defN 20100101.000002 scala/collection/immutable/Vector6.class +-rw---- 2.0 fat 3933 bl 62% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaConsumer.class +-rw---- 2.0 fat 3951 bl 64% defN 20100101.000002 scala/collection/immutable/DoubleVectorStepper.class +-rw---- 2.0 fat 3957 bl 67% defN 20100101.000002 scala/collection/immutable/IntMap$Bin.class +-rw---- 2.0 fat 3958 bl 65% defN 20100101.000002 scala/collection/immutable/LazyList$Deferrer.class +-rw---- 2.0 fat 3959 bl 69% defN 20100101.000002 scala/Tuple20$.class +-rw---- 2.0 fat 3960 bl 62% defN 20100101.000002 scala/collection/immutable/Stream$Deferrer.class +-rw---- 2.0 fat 3966 bl 64% defN 20100101.000002 scala/collection/immutable/Map$.class +-rw---- 2.0 fat 39758 bl 64% defN 20100101.000002 scala/collection/mutable/UnrolledBuffer.class +-rw---- 2.0 fat 3987 bl 62% defN 20100101.000002 scala/collection/immutable/Stream$Deferrer$.class +-rw---- 2.0 fat 3989 bl 66% defN 20100101.000002 scala/collection/immutable/LongMap$Bin.class +-rw---- 2.0 fat 3996 bl 56% defN 20100101.000002 scala/jdk/Priority2FunctionExtensions.class +-rw---- 2.0 fat 3997 bl 54% defN 20100101.000002 scala/collection/SortedSetFactoryDefaults.class +-rw---- 2.0 fat 4008 bl 50% defN 20100101.000002 scala/collection/mutable/Builder.class +-rw---- 2.0 fat 400 bl 12% defN 20100101.000002 scala/concurrent/AwaitPermission.class +-rw---- 2.0 fat 4017 bl 61% defN 20100101.000002 scala/Option$WithFilter.class +-rw---- 2.0 fat 4023 bl 54% defN 20100101.000002 scala/sys/process/ProcessImpl$Future$.class +-rw---- 2.0 fat 4029 bl 52% defN 20100101.000002 scala/Product2.class +-rw---- 2.0 fat 4029 bl 63% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaBiFunction.class +-rw---- 2.0 fat 40340 bl 66% defN 20100101.000002 scala/collection/mutable/BitSet.class +-rw---- 2.0 fat 40518 bl 61% defN 20100101.000002 scala/collection/immutable/NumericRange.class +-rw---- 2.0 fat 40622 bl 58% defN 20100101.000002 scala/collection/mutable/AnyRefMap.class +-rw---- 2.0 fat 4075 bl 34% defN 20100101.000002 scala/collection/SeqFactory.class +-rw---- 2.0 fat 40861 bl 61% defN 20100101.000002 scala/collection/immutable/LongMap.class +-rw---- 2.0 fat 4088 bl 52% defN 20100101.000002 scala/collection/mutable/MultiMap.class +-rw---- 2.0 fat 4093 bl 47% defN 20100101.000002 scala/Product11.class +-rw---- 2.0 fat 4095 bl 69% defN 20100101.000002 scala/Tuple21$.class +-rw---- 2.0 fat 409 bl 30% defN 20100101.000002 scala/jdk/package$.class +-rw---- 2.0 fat 41020 bl 61% defN 20100101.000002 scala/collection/immutable/IntMap.class +-rw---- 2.0 fat 4104 bl 63% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaBiConsumer.class +-rw---- 2.0 fat 4105 bl 63% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaFunction.class +-rw---- 2.0 fat 41142 bl 69% defN 20100101.000002 scala/collection/mutable/TreeMap.class +-rw---- 2.0 fat 411 bl 30% defN 20100101.000002 scala/util/package$.class +-rw---- 2.0 fat 41315 bl 58% defN 20100101.000002 scala/collection/SeqOps.class +-rw---- 2.0 fat 41348 bl 77% defN 20100101.000002 scala/collection/generic/IsSeq$$anon$3$$anon$4.class +-rw---- 2.0 fat 4144 bl 46% defN 20100101.000002 scala/collection/SeqOps$.class +-rw---- 2.0 fat 4145 bl 53% defN 20100101.000002 scala/collection/SortedOps.class +-rw---- 2.0 fat 414 bl 30% defN 20100101.000002 scala/Proxy$.class +-rw---- 2.0 fat 4150 bl 55% defN 20100101.000002 scala/collection/generic/Subtractable.class +-rw---- 2.0 fat 41530 bl 63% defN 20100101.000002 scala/collection/mutable/ArraySeq.class +-rw---- 2.0 fat 4154 bl 62% defN 20100101.000002 scala/reflect/ClassTag$cache$.class +-rw---- 2.0 fat 4155 bl 30% defN 20100101.000002 scala/collection/Searching.class +-rw---- 2.0 fat 4160 bl 64% defN 20100101.000002 scala/Enumeration$ValueSet$.class +-rw---- 2.0 fat 4163 bl 49% defN 20100101.000002 scala/runtime/StructuralCallSite.class +-rw---- 2.0 fat 4170 bl 60% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$MapWrapper$$anon$2$$anon$3.class +-rw---- 2.0 fat 4176 bl 48% defN 20100101.000002 scala/collection/immutable/SetNode.class +-rw---- 2.0 fat 417 bl 30% defN 20100101.000002 scala/collection/MapOps$.class +-rw---- 2.0 fat 41863 bl 81% defN 20100101.000002 scala/jdk/javaapi/FunctionConverters$.class +-rw---- 2.0 fat 4200 bl 61% defN 20100101.000002 scala/runtime/IntegralProxy.class +-rw---- 2.0 fat 42013 bl 67% defN 20100101.000002 scala/collection/immutable/TreeSet.class +-rw---- 2.0 fat 4205 bl 70% defN 20100101.000002 scala/concurrent/impl/ExecutionContextImpl$$anon$4.class +-rw---- 2.0 fat 4207 bl 54% defN 20100101.000002 scala/Function3.class +-rw---- 2.0 fat 4220 bl 63% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaPredicate.class +-rw---- 2.0 fat 422 bl 38% defN 20100101.000002 scala/sys/Prop$Creator.class +-rw---- 2.0 fat 4231 bl 70% defN 20100101.000002 scala/Tuple22$.class +-rw---- 2.0 fat 423 bl 16% defN 20100101.000002 scala/collection/mutable/Clearable.class +-rw---- 2.0 fat 4240 bl 47% defN 20100101.000002 scala/collection/generic/IsMap.class +-rw---- 2.0 fat 4253 bl 61% defN 20100101.000002 scala/runtime/Tuple3Zipped$Ops$.class +-rw---- 2.0 fat 4255 bl 62% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamHasToScala.class +-rw---- 2.0 fat 425 bl 32% defN 20100101.000002 scala/languageFeature$.class +-rw---- 2.0 fat 4275 bl 64% defN 20100101.000002 scala/collection/immutable/IntMapUtils$.class +-rw---- 2.0 fat 42785 bl 73% defN 20100101.000002 scala/jdk/Priority0FunctionExtensions.class +-rw---- 2.0 fat 4279 bl 48% defN 20100101.000002 scala/Product12.class +-rw---- 2.0 fat 4279 bl 59% defN 20100101.000002 scala/collection/mutable/SortedSet.class -rw---- 2.0 fat 4280 bl 71% defN 20100101.000002 scala/math/Numeric$IntIsIntegral.class --rw---- 2.0 fat 9706 bl 74% defN 20100101.000002 scala/math/Numeric$LongIsIntegral$.class +-rw---- 2.0 fat 42887 bl 59% defN 20100101.000002 scala/collection/IterableOps.class +-rw---- 2.0 fat 42888 bl 77% defN 20100101.000002 scala/collection/generic/IsSeq$$anon$6$$anon$7.class +-rw---- 2.0 fat 429 bl 31% defN 20100101.000002 scala/collection/IntStepper$.class +-rw---- 2.0 fat 4300 bl 63% defN 20100101.000002 scala/concurrent/ExecutionContext$.class +-rw---- 2.0 fat 4307 bl 70% defN 20100101.000002 scala/collection/EvidenceIterableFactory$Delegate.class +-rw---- 2.0 fat 4308 bl 65% defN 20100101.000002 scala/util/control/TailCalls$Cont.class +-rw---- 2.0 fat 4312 bl 45% defN 20100101.000002 scala/collection/immutable/ChampBaseIterator.class +-rw---- 2.0 fat 4315 bl 59% defN 20100101.000002 scala/collection/immutable/ArraySeq$ofRef.class +-rw---- 2.0 fat 4315 bl 61% defN 20100101.000002 scala/math/Equiv$Tuple7Equiv.class +-rw---- 2.0 fat 4319 bl 64% defN 20100101.000002 scala/collection/immutable/LongMapUtils$.class +-rw---- 2.0 fat 4319 bl 66% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$ConcurrentMapWrapper.class +-rw---- 2.0 fat 431 bl 32% defN 20100101.000002 scala/collection/LongStepper$.class +-rw---- 2.0 fat 4326 bl 49% defN 20100101.000002 scala/collection/SortedMap.class +-rw---- 2.0 fat 432 bl 31% defN 20100101.000002 scala/collection/IterableOps$.class +-rw---- 2.0 fat 432 bl 39% defN 20100101.000002 scala/reflect/ScalaSignature.class +-rw---- 2.0 fat 4337 bl 63% defN 20100101.000002 scala/collection/IterableOps$WithFilter.class +-rw---- 2.0 fat 433 bl 31% defN 20100101.000002 scala/annotation/meta/package$.class +-rw---- 2.0 fat 433 bl 35% defN 20100101.000002 scala/util/control/Breaks$.class +-rw---- 2.0 fat 4340 bl 42% defN 20100101.000002 scala/collection/convert/impl/TableStepperBase.class -rw---- 2.0 fat 4345 bl 70% defN 20100101.000002 scala/math/Numeric$LongIsIntegral.class --rw---- 2.0 fat 2293 bl 60% defN 20100101.000002 scala/math/Numeric$NumericOps.class --rw---- 2.0 fat 9798 bl 74% defN 20100101.000002 scala/math/Numeric$ShortIsIntegral$.class +-rw---- 2.0 fat 4353 bl 53% defN 20100101.000002 scala/collection/SetOps$SubsetsItr.class +-rw---- 2.0 fat 43572 bl 64% defN 20100101.000002 scala/collection/mutable/ArrayBuffer.class +-rw---- 2.0 fat 435 bl 32% defN 20100101.000002 scala/collection/DoubleStepper$.class +-rw---- 2.0 fat 436 bl 32% defN 20100101.000002 scala/jdk/FunctionWrappers$.class +-rw---- 2.0 fat 4373 bl 56% defN 20100101.000002 scala/io/Codec$.class +-rw---- 2.0 fat 4378 bl 70% defN 20100101.000002 scala/collection/convert/ImplicitConversionsToJava.class +-rw---- 2.0 fat 43796 bl 60% defN 20100101.000002 scala/collection/immutable/Range.class +-rw---- 2.0 fat 43810 bl 64% defN 20100101.000002 scala/collection/immutable/Vector.class +-rw---- 2.0 fat 4381 bl 53% defN 20100101.000002 scala/collection/SortedMapFactoryDefaults.class +-rw---- 2.0 fat 4382 bl 60% defN 20100101.000002 scala/PartialFunction$.class +-rw---- 2.0 fat 4386 bl 55% defN 20100101.000002 scala/collection/MapFactoryDefaults.class +-rw---- 2.0 fat 438 bl 44% defN 20100101.000002 scala/collection/convert/StreamExtensions$AccumulatorFactoryInfo.class +-rw---- 2.0 fat 4392 bl 57% defN 20100101.000002 scala/collection/immutable/BitSet$BitSet2.class +-rw---- 2.0 fat 439 bl 32% defN 20100101.000002 scala/collection/generic/package$.class +-rw---- 2.0 fat 4401 bl 69% defN 20100101.000002 scala/collection/AnyStepper$BoxedIntStepper.class +-rw---- 2.0 fat 4403 bl 65% defN 20100101.000002 scala/collection/SortedSetOps$WithFilter.class +-rw---- 2.0 fat 4403 bl 69% defN 20100101.000002 scala/collection/AnyStepper$BoxedLongStepper.class +-rw---- 2.0 fat 44087 bl 59% defN 20100101.000002 scala/collection/immutable/Stream.class +-rw---- 2.0 fat 4413 bl 70% defN 20100101.000002 scala/math/Numeric$ByteIsIntegral.class +-rw---- 2.0 fat 4419 bl 63% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntSupplier.class +-rw---- 2.0 fat 441 bl 40% defN 20100101.000002 scala/reflect/ScalaLongSignature.class +-rw---- 2.0 fat 4422 bl 64% defN 20100101.000002 scala/jdk/FunctionWrappers$AsJavaBiPredicate.class +-rw---- 2.0 fat 4423 bl 63% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongSupplier.class +-rw---- 2.0 fat 4423 bl 69% defN 20100101.000002 scala/collection/AnyStepper$BoxedDoubleStepper.class +-rw---- 2.0 fat 4426 bl 64% defN 20100101.000002 scala/collection/MapOps$WithFilter.class +-rw---- 2.0 fat 4426 bl 65% defN 20100101.000002 scala/collection/mutable/CollisionProofHashMap$LLNode.class -rw---- 2.0 fat 4426 bl 70% defN 20100101.000002 scala/math/Numeric$ShortIsIntegral.class --rw---- 2.0 fat 13853 bl 45% defN 20100101.000002 scala/math/Numeric.class --rw---- 2.0 fat 1809 bl 61% defN 20100101.000002 scala/math/Ordered$$anon$1.class --rw---- 2.0 fat 894 bl 46% defN 20100101.000002 scala/math/Ordered$.class --rw---- 2.0 fat 3131 bl 54% defN 20100101.000002 scala/math/Ordered.class +-rw---- 2.0 fat 4437 bl 62% defN 20100101.000002 scala/ref/PhantomReference.class +-rw---- 2.0 fat 443 bl 14% defN 20100101.000002 scala/concurrent/Batchable.class +-rw---- 2.0 fat 4447 bl 63% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleSupplier.class +-rw---- 2.0 fat 444 bl 27% defN 20100101.000002 scala/annotation/ConstantAnnotation.class +-rw---- 2.0 fat 444 bl 37% defN 20100101.000002 scala/util/control/Breaks$TryBlock.class +-rw---- 2.0 fat 4450 bl 68% defN 20100101.000002 scala/math/Numeric$FloatIsFractional.class +-rw---- 2.0 fat 4458 bl 66% defN 20100101.000002 scala/runtime/RichInt$.class +-rw---- 2.0 fat 4459 bl 63% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaBooleanSupplier.class +-rw---- 2.0 fat 4462 bl 48% defN 20100101.000002 scala/Product13.class +-rw---- 2.0 fat 4464 bl 68% defN 20100101.000002 scala/math/Numeric$DoubleIsFractional.class +-rw---- 2.0 fat 447 bl 32% defN 20100101.000002 scala/io/AnsiColor$.class +-rw---- 2.0 fat 4480 bl 57% defN 20100101.000002 scala/sys/package$.class +-rw---- 2.0 fat 4493 bl 75% defN 20100101.000002 scala/jdk/Accumulator$AccumulatorFactoryShape$.class +-rw---- 2.0 fat 4496 bl 45% defN 20100101.000002 scala/Some.class +-rw---- 2.0 fat 4517 bl 62% defN 20100101.000002 scala/Console$.class +-rw---- 2.0 fat 4523 bl 79% defN 20100101.000002 scala/Specializable$.class +-rw---- 2.0 fat 4524 bl 55% defN 20100101.000002 scala/Function5.class +-rw---- 2.0 fat 457 bl 34% defN 20100101.000002 scala/collection/generic/BitOperations$.class +-rw---- 2.0 fat 4587 bl 60% defN 20100101.000002 scala/sys/process/ProcessImpl$SequentialProcess.class +-rw---- 2.0 fat 4606 bl 58% defN 20100101.000002 scala/runtime/ScalaNumberProxy.class +-rw---- 2.0 fat 46266 bl 78% defN 20100101.000002 scala/collection/SortedMapOps$KeySortedSet.class +-rw---- 2.0 fat 4644 bl 49% defN 20100101.000002 scala/Product14.class +-rw---- 2.0 fat 46479 bl 77% defN 20100101.000002 scala/collection/SeqView$Sorted$ReverseSorted.class +-rw---- 2.0 fat 4657 bl 59% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$ThreadBuilder.class -rw---- 2.0 fat 4657 bl 70% defN 20100101.000002 scala/math/Ordering$$anon$1.class --rw---- 2.0 fat 4727 bl 69% defN 20100101.000002 scala/math/Ordering$$anon$4.class +-rw---- 2.0 fat 46597 bl 68% defN 20100101.000002 scala/Array$.class +-rw---- 2.0 fat 466 bl 35% defN 20100101.000002 scala/collection/convert/StreamExtensions$.class +-rw---- 2.0 fat 4686 bl 54% defN 20100101.000002 scala/math/BigInt$.class +-rw---- 2.0 fat 4687 bl 56% defN 20100101.000002 scala/Function4.class +-rw---- 2.0 fat 4691 bl 65% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaSupplier.class +-rw---- 2.0 fat 46927 bl 68% defN 20100101.000002 scala/io/Source.class +-rw---- 2.0 fat 47028 bl 59% defN 20100101.000002 scala/collection/mutable/HashMap.class +-rw---- 2.0 fat 4702 bl 68% defN 20100101.000002 scala/collection/mutable/Builder$$anon$1.class +-rw---- 2.0 fat 4706 bl 72% defN 20100101.000002 scala/Enumeration$ValueOrdering$.class -rw---- 2.0 fat 4720 bl 71% defN 20100101.000002 scala/math/Ordering$$anon$5.class +-rw---- 2.0 fat 4722 bl 72% defN 20100101.000002 scala/collection/BuildFrom$.class +-rw---- 2.0 fat 4727 bl 62% defN 20100101.000002 scala/math/Equiv$Tuple8Equiv.class +-rw---- 2.0 fat 4727 bl 69% defN 20100101.000002 scala/math/Ordering$$anon$4.class +-rw---- 2.0 fat 472 bl 33% defN 20100101.000002 scala/concurrent/AwaitPermission$.class +-rw---- 2.0 fat 472 bl 35% defN 20100101.000002 scala/concurrent/impl/FutureConvertersImpl$.class +-rw---- 2.0 fat 4734 bl 55% defN 20100101.000002 scala/Function6.class +-rw---- 2.0 fat 474 bl 37% defN 20100101.000002 scala/collection/Searching$SearchResult.class -rw---- 2.0 fat 4759 bl 70% defN 20100101.000002 scala/math/Ordering$$anonfun$orElse$2.class +-rw---- 2.0 fat 4776 bl 68% defN 20100101.000002 scala/math/Ordering$Reverse.class +-rw---- 2.0 fat 477 bl 36% defN 20100101.000002 scala/concurrent/duration/DurationConversions$.class +-rw---- 2.0 fat 4783 bl 71% defN 20100101.000002 scala/math/LowPriorityOrderingImplicits$$anon$3.class +-rw---- 2.0 fat 47924 bl 76% defN 20100101.000002 scala/collection/SeqView$Sorted.class +-rw---- 2.0 fat 4805 bl 57% defN 20100101.000002 scala/collection/generic/IsIterable.class +-rw---- 2.0 fat 4806 bl 55% defN 20100101.000002 scala/sys/process/ProcessImpl$PipeSink.class +-rw---- 2.0 fat 4816 bl 55% defN 20100101.000002 scala/collection/mutable/ArraySeq$ofChar.class +-rw---- 2.0 fat 4825 bl 70% defN 20100101.000002 scala/math/LowPriorityOrderingImplicits$$anon$2.class +-rw---- 2.0 fat 4826 bl 50% defN 20100101.000002 scala/Product15.class +-rw---- 2.0 fat 4835 bl 58% defN 20100101.000002 scala/collection/immutable/SortedSet.class +-rw---- 2.0 fat 4840 bl 64% defN 20100101.000002 scala/collection/immutable/RedBlackTree$EqualsIterator.class -rw---- 2.0 fat 4844 bl 70% defN 20100101.000002 scala/math/Ordering$$anonfun$orElseBy$2.class --rw---- 2.0 fat 10210 bl 78% defN 20100101.000002 scala/math/Ordering$.class --rw---- 2.0 fat 4994 bl 70% defN 20100101.000002 scala/math/Ordering$BigDecimal$.class --rw---- 2.0 fat 1071 bl 55% defN 20100101.000002 scala/math/Ordering$BigDecimalOrdering.class --rw---- 2.0 fat 4922 bl 70% defN 20100101.000002 scala/math/Ordering$BigInt$.class --rw---- 2.0 fat 1019 bl 53% defN 20100101.000002 scala/math/Ordering$BigIntOrdering.class --rw---- 2.0 fat 4892 bl 69% defN 20100101.000002 scala/math/Ordering$Boolean$.class --rw---- 2.0 fat 903 bl 48% defN 20100101.000002 scala/math/Ordering$BooleanOrdering.class +-rw---- 2.0 fat 4850 bl 65% defN 20100101.000002 scala/collection/immutable/LazyList$Deferrer$.class +-rw---- 2.0 fat 4851 bl 49% defN 20100101.000002 scala/App.class +-rw---- 2.0 fat 4854 bl 53% defN 20100101.000002 scala/collection/mutable/Growable.class +-rw---- 2.0 fat 4858 bl 59% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$Ordering$Tip.class +-rw---- 2.0 fat 4862 bl 70% defN 20100101.000002 scala/math/Ordering$Symbol$.class +-rw---- 2.0 fat 4867 bl 69% defN 20100101.000002 scala/math/Ordering$Long$.class +-rw---- 2.0 fat 486 bl 41% defN 20100101.000002 scala/collection/mutable/CollisionProofHashMap$Node.class -rw---- 2.0 fat 4871 bl 69% defN 20100101.000002 scala/math/Ordering$Byte$.class --rw---- 2.0 fat 885 bl 48% defN 20100101.000002 scala/math/Ordering$ByteOrdering.class --rw---- 2.0 fat 1649 bl 58% defN 20100101.000002 scala/math/Ordering$CachedReverse.class -rw---- 2.0 fat 4871 bl 69% defN 20100101.000002 scala/math/Ordering$Char$.class --rw---- 2.0 fat 890 bl 48% defN 20100101.000002 scala/math/Ordering$CharOrdering.class --rw---- 2.0 fat 5001 bl 69% defN 20100101.000002 scala/math/Ordering$DeprecatedDoubleOrdering$.class --rw---- 2.0 fat 4993 bl 69% defN 20100101.000002 scala/math/Ordering$DeprecatedFloatOrdering$.class --rw---- 2.0 fat 774 bl 50% defN 20100101.000002 scala/math/Ordering$Double$.class --rw---- 2.0 fat 5886 bl 71% defN 20100101.000002 scala/math/Ordering$Double$IeeeOrdering$.class --rw---- 2.0 fat 2948 bl 70% defN 20100101.000002 scala/math/Ordering$Double$IeeeOrdering.class --rw---- 2.0 fat 4982 bl 69% defN 20100101.000002 scala/math/Ordering$Double$TotalOrdering$.class --rw---- 2.0 fat 971 bl 50% defN 20100101.000002 scala/math/Ordering$Double$TotalOrdering.class --rw---- 2.0 fat 2192 bl 65% defN 20100101.000002 scala/math/Ordering$ExtraImplicits.class --rw---- 2.0 fat 767 bl 49% defN 20100101.000002 scala/math/Ordering$Float$.class --rw---- 2.0 fat 5875 bl 71% defN 20100101.000002 scala/math/Ordering$Float$IeeeOrdering$.class --rw---- 2.0 fat 2939 bl 69% defN 20100101.000002 scala/math/Ordering$Float$IeeeOrdering.class --rw---- 2.0 fat 4975 bl 69% defN 20100101.000002 scala/math/Ordering$Float$TotalOrdering$.class --rw---- 2.0 fat 964 bl 50% defN 20100101.000002 scala/math/Ordering$Float$TotalOrdering.class --rw---- 2.0 fat 1837 bl 62% defN 20100101.000002 scala/math/Ordering$Implicits$.class --rw---- 2.0 fat 5771 bl 70% defN 20100101.000002 scala/math/Ordering$Int$.class --rw---- 2.0 fat 883 bl 48% defN 20100101.000002 scala/math/Ordering$IntOrdering.class --rw---- 2.0 fat 5700 bl 67% defN 20100101.000002 scala/math/Ordering$IterableOrdering.class --rw---- 2.0 fat 4867 bl 69% defN 20100101.000002 scala/math/Ordering$Long$.class --rw---- 2.0 fat 885 bl 48% defN 20100101.000002 scala/math/Ordering$LongOrdering.class --rw---- 2.0 fat 5367 bl 71% defN 20100101.000002 scala/math/Ordering$O$1.class --rw---- 2.0 fat 2256 bl 53% defN 20100101.000002 scala/math/Ordering$OptionOrdering.class --rw---- 2.0 fat 1921 bl 62% defN 20100101.000002 scala/math/Ordering$OrderingOps.class --rw---- 2.0 fat 4776 bl 68% defN 20100101.000002 scala/math/Ordering$Reverse.class -rw---- 2.0 fat 4878 bl 69% defN 20100101.000002 scala/math/Ordering$Short$.class --rw---- 2.0 fat 891 bl 48% defN 20100101.000002 scala/math/Ordering$ShortOrdering.class +-rw---- 2.0 fat 487 bl 44% defN 20100101.000002 scala/concurrent/duration/DurationConversions$Classifier.class +-rw---- 2.0 fat 4892 bl 69% defN 20100101.000002 scala/math/Ordering$Boolean$.class +-rw---- 2.0 fat 4899 bl 52% defN 20100101.000002 scala/Console.class +-rw---- 2.0 fat 48 b- 0% stor 20100101.000000 META-INF/MANIFEST.MF +-rw---- 2.0 fat 4902 bl 59% defN 20100101.000002 scala/collection/immutable/SetOps.class +-rw---- 2.0 fat 49050 bl 63% defN 20100101.000002 scala/collection/immutable/List.class +-rw---- 2.0 fat 4905 bl 59% defN 20100101.000002 scala/collection/immutable/VectorStepperBase.class +-rw---- 2.0 fat 4906 bl 70% defN 20100101.000002 scala/collection/Stepper$UnboxingIntStepper.class -rw---- 2.0 fat 4910 bl 70% defN 20100101.000002 scala/math/Ordering$String$.class --rw---- 2.0 fat 1023 bl 53% defN 20100101.000002 scala/math/Ordering$StringOrdering.class --rw---- 2.0 fat 4862 bl 70% defN 20100101.000002 scala/math/Ordering$Symbol$.class --rw---- 2.0 fat 1063 bl 51% defN 20100101.000002 scala/math/Ordering$SymbolOrdering.class --rw---- 2.0 fat 5814 bl 68% defN 20100101.000002 scala/math/Ordering$Tuple2Ordering.class --rw---- 2.0 fat 6442 bl 67% defN 20100101.000002 scala/math/Ordering$Tuple3Ordering.class --rw---- 2.0 fat 6919 bl 68% defN 20100101.000002 scala/math/Ordering$Tuple4Ordering.class --rw---- 2.0 fat 7411 bl 68% defN 20100101.000002 scala/math/Ordering$Tuple5Ordering.class --rw---- 2.0 fat 7826 bl 68% defN 20100101.000002 scala/math/Ordering$Tuple6Ordering.class --rw---- 2.0 fat 8372 bl 68% defN 20100101.000002 scala/math/Ordering$Tuple7Ordering.class --rw---- 2.0 fat 8793 bl 69% defN 20100101.000002 scala/math/Ordering$Tuple8Ordering.class --rw---- 2.0 fat 9281 bl 69% defN 20100101.000002 scala/math/Ordering$Tuple9Ordering.class +-rw---- 2.0 fat 49164 bl 67% defN 20100101.000002 scala/collection/immutable/RedBlackTree$.class +-rw---- 2.0 fat 4917 bl 70% defN 20100101.000002 scala/collection/Stepper$UnboxingLongStepper.class +-rw---- 2.0 fat 4922 bl 70% defN 20100101.000002 scala/math/Ordering$BigInt$.class +-rw---- 2.0 fat 49249 bl 77% defN 20100101.000002 scala/collection/immutable/SeqMap$SeqMap1.class +-rw---- 2.0 fat 4924 bl 56% defN 20100101.000002 scala/sys/process/ProcessImpl$PipeSource.class +-rw---- 2.0 fat 4924 bl 65% defN 20100101.000002 scala/collection/immutable/Map$EmptyMap$.class +-rw---- 2.0 fat 4926 bl 62% defN 20100101.000002 scala/collection/mutable/ImmutableBuilder.class +-rw---- 2.0 fat 4930 bl 64% defN 20100101.000002 scala/collection/immutable/WrappedString$.class +-rw---- 2.0 fat 4932 bl 38% defN 20100101.000002 scala/concurrent/BatchingExecutor.class +-rw---- 2.0 fat 4944 bl 55% defN 20100101.000002 scala/Function7.class +-rw---- 2.0 fat 4947 bl 69% defN 20100101.000002 scala/collection/mutable/AnyRefMap$AnyRefMapBuilder.class +-rw---- 2.0 fat 494 bl 36% defN 20100101.000002 scala/sys/process/ProcessBuilder$.class +-rw---- 2.0 fat 4952 bl 34% defN 20100101.000002 scala/util/control/TailCalls.class +-rw---- 2.0 fat 4955 bl 70% defN 20100101.000002 scala/collection/Stepper$UnboxingDoubleStepper.class +-rw---- 2.0 fat 4963 bl 70% defN 20100101.000002 scala/collection/immutable/Set$EmptySet$.class +-rw---- 2.0 fat 4966 bl 69% defN 20100101.000002 scala/collection/Stepper$UnboxingByteStepper.class +-rw---- 2.0 fat 4966 bl 69% defN 20100101.000002 scala/collection/Stepper$UnboxingCharStepper.class +-rw---- 2.0 fat 49707 bl 62% defN 20100101.000002 scala/collection/IterableOnceOps.class +-rw---- 2.0 fat 4971 bl 69% defN 20100101.000002 scala/collection/Stepper$UnboxingShortStepper.class +-rw---- 2.0 fat 49751 bl 77% defN 20100101.000002 scala/collection/immutable/SeqMap$SeqMap2.class +-rw---- 2.0 fat 4975 bl 69% defN 20100101.000002 scala/math/Ordering$Float$TotalOrdering$.class +-rw---- 2.0 fat 4976 bl 47% defN 20100101.000002 scala/util/Left.class +-rw---- 2.0 fat 4982 bl 69% defN 20100101.000002 scala/math/Ordering$Double$TotalOrdering$.class -rw---- 2.0 fat 4982 bl 70% defN 20100101.000002 scala/math/Ordering$Unit$.class --rw---- 2.0 fat 983 bl 52% defN 20100101.000002 scala/math/Ordering$UnitOrdering.class --rw---- 2.0 fat 36807 bl 53% defN 20100101.000002 scala/math/Ordering.class --rw---- 2.0 fat 1839 bl 61% defN 20100101.000002 scala/math/PartialOrdering$$anon$1.class --rw---- 2.0 fat 970 bl 46% defN 20100101.000002 scala/math/PartialOrdering$.class --rw---- 2.0 fat 3473 bl 54% defN 20100101.000002 scala/math/PartialOrdering.class --rw---- 2.0 fat 3211 bl 51% defN 20100101.000002 scala/math/PartiallyOrdered.class --rw---- 2.0 fat 348 bl 29% defN 20100101.000002 scala/math/ScalaNumber.class --rw---- 2.0 fat 5671 bl 58% defN 20100101.000002 scala/math/ScalaNumericAnyConversions.class --rw---- 2.0 fat 581 bl 26% defN 20100101.000002 scala/math/ScalaNumericConversions.class --rw---- 2.0 fat 9041 bl 73% defN 20100101.000002 scala/math/package$.class --rw---- 2.0 fat 10309 bl 58% defN 20100101.000002 scala/math/package.class --rw---- 2.0 fat 718 bl 25% defN 20100101.000002 scala/native.class --rw---- 2.0 fat 600 bl 28% defN 20100101.000002 scala/noinline.class --rw---- 2.0 fat 545 bl 35% defN 20100101.000002 scala/package$$anon$1.class --rw---- 2.0 fat 1821 bl 56% defN 20100101.000002 scala/package$$hash$colon$colon$.class --rw---- 2.0 fat 6174 bl 66% defN 20100101.000002 scala/package$.class --rw---- 2.0 fat 8600 bl 40% defN 20100101.000002 scala/package.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/ref/ --rw---- 2.0 fat 4437 bl 62% defN 20100101.000002 scala/ref/PhantomReference.class --rw---- 2.0 fat 1854 bl 47% defN 20100101.000002 scala/ref/PhantomReferenceWithWrapper.class --rw---- 2.0 fat 2075 bl 40% defN 20100101.000002 scala/ref/Reference.class --rw---- 2.0 fat 2571 bl 46% defN 20100101.000002 scala/ref/ReferenceQueue.class --rw---- 2.0 fat 625 bl 28% defN 20100101.000002 scala/ref/ReferenceWithWrapper.class --rw---- 2.0 fat 2915 bl 51% defN 20100101.000002 scala/ref/ReferenceWrapper.class --rw---- 2.0 fat 1255 bl 52% defN 20100101.000002 scala/ref/SoftReference$.class --rw---- 2.0 fat 5045 bl 60% defN 20100101.000002 scala/ref/SoftReference.class --rw---- 2.0 fat 1976 bl 47% defN 20100101.000002 scala/ref/SoftReferenceWithWrapper.class --rw---- 2.0 fat 1255 bl 52% defN 20100101.000002 scala/ref/WeakReference$.class --rw---- 2.0 fat 5045 bl 60% defN 20100101.000002 scala/ref/WeakReference.class --rw---- 2.0 fat 1976 bl 47% defN 20100101.000002 scala/ref/WeakReferenceWithWrapper.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/reflect/ --rw---- 2.0 fat 6343 bl 62% defN 20100101.000002 scala/reflect/AnyValManifest.class --rw---- 2.0 fat 14912 bl 57% defN 20100101.000002 scala/reflect/ClassManifestDeprecatedApis.class --rw---- 2.0 fat 9246 bl 69% defN 20100101.000002 scala/reflect/ClassManifestFactory$.class --rw---- 2.0 fat 6298 bl 70% defN 20100101.000002 scala/reflect/ClassManifestFactory$AbstractTypeClassManifest.class --rw---- 2.0 fat 8924 bl 54% defN 20100101.000002 scala/reflect/ClassManifestFactory.class --rw---- 2.0 fat 6159 bl 65% defN 20100101.000002 scala/reflect/ClassTag$.class --rw---- 2.0 fat 5579 bl 71% defN 20100101.000002 scala/reflect/ClassTag$GenericClassTag.class --rw---- 2.0 fat 4154 bl 62% defN 20100101.000002 scala/reflect/ClassTag$cache$.class --rw---- 2.0 fat 9642 bl 49% defN 20100101.000002 scala/reflect/ClassTag.class --rw---- 2.0 fat 7213 bl 63% defN 20100101.000002 scala/reflect/ClassTypeManifest.class --rw---- 2.0 fat 8337 bl 70% defN 20100101.000002 scala/reflect/Manifest$.class --rw---- 2.0 fat 11742 bl 56% defN 20100101.000002 scala/reflect/Manifest.class --rw---- 2.0 fat 10187 bl 69% defN 20100101.000002 scala/reflect/ManifestFactory$.class --rw---- 2.0 fat 6352 bl 70% defN 20100101.000002 scala/reflect/ManifestFactory$AbstractTypeManifest.class --rw---- 2.0 fat 1574 bl 52% defN 20100101.000002 scala/reflect/ManifestFactory$AnyManifest.class --rw---- 2.0 fat 1679 bl 53% defN 20100101.000002 scala/reflect/ManifestFactory$AnyValPhantomManifest.class --rw---- 2.0 fat 2517 bl 57% defN 20100101.000002 scala/reflect/ManifestFactory$BooleanManifest.class --rw---- 2.0 fat 2481 bl 57% defN 20100101.000002 scala/reflect/ManifestFactory$ByteManifest.class --rw---- 2.0 fat 2496 bl 56% defN 20100101.000002 scala/reflect/ManifestFactory$CharManifest.class --rw---- 2.0 fat 6566 bl 69% defN 20100101.000002 scala/reflect/ManifestFactory$ClassTypeManifest.class --rw---- 2.0 fat 2505 bl 57% defN 20100101.000002 scala/reflect/ManifestFactory$DoubleManifest.class --rw---- 2.0 fat 2493 bl 57% defN 20100101.000002 scala/reflect/ManifestFactory$FloatManifest.class --rw---- 2.0 fat 2481 bl 56% defN 20100101.000002 scala/reflect/ManifestFactory$IntManifest.class --rw---- 2.0 fat 6449 bl 70% defN 20100101.000002 scala/reflect/ManifestFactory$IntersectionTypeManifest.class --rw---- 2.0 fat 2481 bl 56% defN 20100101.000002 scala/reflect/ManifestFactory$LongManifest.class --rw---- 2.0 fat 1596 bl 52% defN 20100101.000002 scala/reflect/ManifestFactory$NothingManifest.class --rw---- 2.0 fat 1725 bl 52% defN 20100101.000002 scala/reflect/ManifestFactory$NullManifest.class --rw---- 2.0 fat 1658 bl 53% defN 20100101.000002 scala/reflect/ManifestFactory$ObjectManifest.class --rw---- 2.0 fat 1584 bl 50% defN 20100101.000002 scala/reflect/ManifestFactory$PhantomManifest.class --rw---- 2.0 fat 2493 bl 57% defN 20100101.000002 scala/reflect/ManifestFactory$ShortManifest.class --rw---- 2.0 fat 6280 bl 69% defN 20100101.000002 scala/reflect/ManifestFactory$SingletonTypeManifest.class --rw---- 2.0 fat 2960 bl 59% defN 20100101.000002 scala/reflect/ManifestFactory$UnitManifest.class --rw---- 2.0 fat 6375 bl 69% defN 20100101.000002 scala/reflect/ManifestFactory$WildcardManifest.class --rw---- 2.0 fat 15917 bl 47% defN 20100101.000002 scala/reflect/ManifestFactory.class +-rw---- 2.0 fat 4985 bl 47% defN 20100101.000002 scala/util/Right.class +-rw---- 2.0 fat 4989 bl 76% defN 20100101.000002 scala/collection/convert/ImplicitConversionsToScala$.class +-rw---- 2.0 fat 4992 bl 43% defN 20100101.000002 scala/util/Sorting.class +-rw---- 2.0 fat 4993 bl 69% defN 20100101.000002 scala/math/Ordering$DeprecatedFloatOrdering$.class +-rw---- 2.0 fat 4994 bl 70% defN 20100101.000002 scala/math/Ordering$BigDecimal$.class +-rw---- 2.0 fat 4995 bl 67% defN 20100101.000002 scala/collection/SortedMapOps$WithFilter.class +-rw---- 2.0 fat 5001 bl 66% defN 20100101.000002 scala/runtime/RichDouble$.class +-rw---- 2.0 fat 5001 bl 69% defN 20100101.000002 scala/math/Ordering$DeprecatedDoubleOrdering$.class +-rw---- 2.0 fat 5008 bl 50% defN 20100101.000002 scala/Product16.class +-rw---- 2.0 fat 5009 bl 69% defN 20100101.000002 scala/collection/Stepper$UnboxingFloatStepper.class +-rw---- 2.0 fat 5017 bl 46% defN 20100101.000002 scala/concurrent/ExecutionContext.class +-rw---- 2.0 fat 501 bl 32% defN 20100101.000002 scala/runtime/PStatics$.class +-rw---- 2.0 fat 5022 bl 57% defN 20100101.000002 scala/sys/process/BasicIO$Streamed$.class +-rw---- 2.0 fat 5024 bl 65% defN 20100101.000002 scala/runtime/RichFloat$.class +-rw---- 2.0 fat 50311 bl 77% defN 20100101.000002 scala/collection/immutable/SeqMap$SeqMap3.class +-rw---- 2.0 fat 5032 bl 69% defN 20100101.000002 scala/collection/mutable/PriorityQueue$$anon$2.class +-rw---- 2.0 fat 503 bl 24% defN 20100101.000002 scala/Equals.class +-rw---- 2.0 fat 5042 bl 71% defN 20100101.000002 scala/concurrent/duration/Duration$DurationIsOrdered$.class +-rw---- 2.0 fat 5045 bl 60% defN 20100101.000002 scala/ref/SoftReference.class +-rw---- 2.0 fat 5045 bl 60% defN 20100101.000002 scala/ref/WeakReference.class +-rw---- 2.0 fat 5057 bl 68% defN 20100101.000002 scala/collection/mutable/LongMap$LongMapBuilder.class +-rw---- 2.0 fat 505 bl 18% defN 20100101.000002 scala/util/package.class +-rw---- 2.0 fat 5060 bl 71% defN 20100101.000002 scala/concurrent/duration/Deadline$DeadlineIsOrdered$.class +-rw---- 2.0 fat 50663 bl 61% defN 20100101.000002 scala/collection/immutable/HashMap.class +-rw---- 2.0 fat 506 bl 15% defN 20100101.000002 scala/concurrent/CanAwait.class +-rw---- 2.0 fat 5070 bl 72% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$FileImpl.class +-rw---- 2.0 fat 5080 bl 46% defN 20100101.000002 scala/collection/MapFactory.class +-rw---- 2.0 fat 5088 bl 65% defN 20100101.000002 scala/collection/MapView$.class +-rw---- 2.0 fat 508 bl 44% defN 20100101.000002 scala/jdk/Accumulator$AccumulatorFactoryShape.class +-rw---- 2.0 fat 5092 bl 64% defN 20100101.000002 scala/collection/immutable/TreeMap$.class +-rw---- 2.0 fat 5095 bl 66% defN 20100101.000002 scala/Enumeration$ValueSet$$anon$1.class -rw---- 2.0 fat 5099 bl 48% defN 20100101.000002 scala/reflect/NameTransformer$.class --rw---- 2.0 fat 954 bl 51% defN 20100101.000002 scala/reflect/NameTransformer$OpCodes.class --rw---- 2.0 fat 2661 bl 36% defN 20100101.000002 scala/reflect/NameTransformer.class --rw---- 2.0 fat 846 bl 42% defN 20100101.000002 scala/reflect/NoManifest$.class --rw---- 2.0 fat 731 bl 23% defN 20100101.000002 scala/reflect/NoManifest.class --rw---- 2.0 fat 558 bl 25% defN 20100101.000002 scala/reflect/OptManifest.class --rw---- 2.0 fat 441 bl 40% defN 20100101.000002 scala/reflect/ScalaLongSignature.class --rw---- 2.0 fat 432 bl 39% defN 20100101.000002 scala/reflect/ScalaSignature.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/reflect/macros/ --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/reflect/macros/internal/ --rw---- 2.0 fat 1023 bl 32% defN 20100101.000002 scala/reflect/macros/internal/macroImpl.class --rw---- 2.0 fat 1541 bl 52% defN 20100101.000002 scala/reflect/package$.class --rw---- 2.0 fat 1816 bl 35% defN 20100101.000002 scala/reflect/package.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/runtime/ -rw---- 2.0 fat 511 bl 43% defN 20100101.000002 scala/runtime/AbstractFunction0$mcB$sp.class --rw---- 2.0 fat 511 bl 44% defN 20100101.000002 scala/runtime/AbstractFunction0$mcC$sp.class -rw---- 2.0 fat 511 bl 43% defN 20100101.000002 scala/runtime/AbstractFunction0$mcD$sp.class +-rw---- 2.0 fat 511 bl 43% defN 20100101.000002 scala/runtime/AbstractFunction0$mcJ$sp.class +-rw---- 2.0 fat 511 bl 43% defN 20100101.000002 scala/runtime/AbstractFunction0$mcZ$sp.class +-rw---- 2.0 fat 511 bl 44% defN 20100101.000002 scala/runtime/AbstractFunction0$mcC$sp.class -rw---- 2.0 fat 511 bl 44% defN 20100101.000002 scala/runtime/AbstractFunction0$mcF$sp.class -rw---- 2.0 fat 511 bl 44% defN 20100101.000002 scala/runtime/AbstractFunction0$mcI$sp.class --rw---- 2.0 fat 511 bl 43% defN 20100101.000002 scala/runtime/AbstractFunction0$mcJ$sp.class -rw---- 2.0 fat 511 bl 44% defN 20100101.000002 scala/runtime/AbstractFunction0$mcS$sp.class +-rw---- 2.0 fat 5120 bl 63% defN 20100101.000002 scala/collection/convert/impl/BoxedBooleanArrayStepper.class +-rw---- 2.0 fat 5135 bl 56% defN 20100101.000002 scala/sys/process/BasicIO$LazilyListed$.class +-rw---- 2.0 fat 5136 bl 62% defN 20100101.000002 scala/collection/convert/impl/ObjectArrayStepper.class +-rw---- 2.0 fat 51389 bl 79% defN 20100101.000002 scala/collection/immutable/SeqMap$EmptySeqMap$.class +-rw---- 2.0 fat 5138 bl 56% defN 20100101.000002 scala/collection/mutable/Shrinkable.class +-rw---- 2.0 fat 5140 bl 67% defN 20100101.000002 scala/math/Numeric$CharIsIntegral.class +-rw---- 2.0 fat 5142 bl 61% defN 20100101.000002 scala/collection/immutable/ListMap$.class +-rw---- 2.0 fat 5142 bl 62% defN 20100101.000002 scala/math/Equiv$Tuple9Equiv.class +-rw---- 2.0 fat 514 bl 25% defN 20100101.000002 scala/runtime/Null$.class +-rw---- 2.0 fat 5154 bl 68% defN 20100101.000002 scala/collection/mutable/PriorityQueue$.class +-rw---- 2.0 fat 5156 bl 55% defN 20100101.000002 scala/Function8.class +-rw---- 2.0 fat 5156 bl 72% defN 20100101.000002 scala/concurrent/duration/FiniteDuration$FiniteDurationIsOrdered$.class +-rw---- 2.0 fat 5157 bl 43% defN 20100101.000002 scala/collection/immutable/Node.class +-rw---- 2.0 fat 5185 bl 51% defN 20100101.000002 scala/runtime/LambdaDeserialize.class -rw---- 2.0 fat 518 bl 45% defN 20100101.000002 scala/runtime/AbstractFunction0$mcV$sp.class --rw---- 2.0 fat 511 bl 43% defN 20100101.000002 scala/runtime/AbstractFunction0$mcZ$sp.class --rw---- 2.0 fat 2468 bl 54% defN 20100101.000002 scala/runtime/AbstractFunction0.class +-rw---- 2.0 fat 5192 bl 50% defN 20100101.000002 scala/Product17.class +-rw---- 2.0 fat 521 bl 44% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamUnboxer.class +-rw---- 2.0 fat 52262 bl 67% defN 20100101.000002 scala/collection/immutable/TreeMap.class +-rw---- 2.0 fat 5243 bl 49% defN 20100101.000002 scala/collection/BitSet.class +-rw---- 2.0 fat 52491 bl 77% defN 20100101.000002 scala/collection/immutable/SeqMap$SeqMap4.class +-rw---- 2.0 fat 527 bl 42% defN 20100101.000002 scala/jdk/Accumulator$mcD$sp.class +-rw---- 2.0 fat 527 bl 42% defN 20100101.000002 scala/jdk/Accumulator$mcI$sp.class +-rw---- 2.0 fat 527 bl 42% defN 20100101.000002 scala/jdk/Accumulator$mcJ$sp.class +-rw---- 2.0 fat 5281 bl 68% defN 20100101.000002 scala/math/Numeric$BigDecimalIsConflicted.class +-rw---- 2.0 fat 5288 bl 68% defN 20100101.000002 scala/math/Numeric$BigIntIsIntegral.class +-rw---- 2.0 fat 529 bl 37% defN 20100101.000002 scala/concurrent/duration/package$span$.class +-rw---- 2.0 fat 5318 bl 63% defN 20100101.000002 scala/collection/immutable/ListSet$Node.class +-rw---- 2.0 fat 531 bl 39% defN 20100101.000002 scala/sys/process/Parser$ParseException.class +-rw---- 2.0 fat 533 bl 26% defN 20100101.000002 scala/unchecked.class -rw---- 2.0 fat 533 bl 45% defN 20100101.000002 scala/runtime/AbstractFunction1$mcDD$sp.class -rw---- 2.0 fat 533 bl 45% defN 20100101.000002 scala/runtime/AbstractFunction1$mcDF$sp.class -rw---- 2.0 fat 533 bl 45% defN 20100101.000002 scala/runtime/AbstractFunction1$mcDI$sp.class @@ -2391,31 +2294,54 @@ -rw---- 2.0 fat 533 bl 45% defN 20100101.000002 scala/runtime/AbstractFunction1$mcFJ$sp.class -rw---- 2.0 fat 533 bl 45% defN 20100101.000002 scala/runtime/AbstractFunction1$mcID$sp.class -rw---- 2.0 fat 533 bl 45% defN 20100101.000002 scala/runtime/AbstractFunction1$mcIF$sp.class --rw---- 2.0 fat 533 bl 46% defN 20100101.000002 scala/runtime/AbstractFunction1$mcII$sp.class -rw---- 2.0 fat 533 bl 45% defN 20100101.000002 scala/runtime/AbstractFunction1$mcIJ$sp.class -rw---- 2.0 fat 533 bl 45% defN 20100101.000002 scala/runtime/AbstractFunction1$mcJD$sp.class -rw---- 2.0 fat 533 bl 45% defN 20100101.000002 scala/runtime/AbstractFunction1$mcJF$sp.class -rw---- 2.0 fat 533 bl 45% defN 20100101.000002 scala/runtime/AbstractFunction1$mcJI$sp.class -rw---- 2.0 fat 533 bl 45% defN 20100101.000002 scala/runtime/AbstractFunction1$mcJJ$sp.class --rw---- 2.0 fat 540 bl 44% defN 20100101.000002 scala/runtime/AbstractFunction1$mcVD$sp.class --rw---- 2.0 fat 540 bl 45% defN 20100101.000002 scala/runtime/AbstractFunction1$mcVF$sp.class --rw---- 2.0 fat 540 bl 45% defN 20100101.000002 scala/runtime/AbstractFunction1$mcVI$sp.class --rw---- 2.0 fat 540 bl 44% defN 20100101.000002 scala/runtime/AbstractFunction1$mcVJ$sp.class -rw---- 2.0 fat 533 bl 45% defN 20100101.000002 scala/runtime/AbstractFunction1$mcZD$sp.class -rw---- 2.0 fat 533 bl 45% defN 20100101.000002 scala/runtime/AbstractFunction1$mcZF$sp.class -rw---- 2.0 fat 533 bl 45% defN 20100101.000002 scala/runtime/AbstractFunction1$mcZI$sp.class -rw---- 2.0 fat 533 bl 45% defN 20100101.000002 scala/runtime/AbstractFunction1$mcZJ$sp.class --rw---- 2.0 fat 5773 bl 68% defN 20100101.000002 scala/runtime/AbstractFunction1.class --rw---- 2.0 fat 1995 bl 52% defN 20100101.000002 scala/runtime/AbstractFunction10.class --rw---- 2.0 fat 2073 bl 53% defN 20100101.000002 scala/runtime/AbstractFunction11.class --rw---- 2.0 fat 2152 bl 54% defN 20100101.000002 scala/runtime/AbstractFunction12.class --rw---- 2.0 fat 2231 bl 55% defN 20100101.000002 scala/runtime/AbstractFunction13.class --rw---- 2.0 fat 2310 bl 55% defN 20100101.000002 scala/runtime/AbstractFunction14.class --rw---- 2.0 fat 2389 bl 56% defN 20100101.000002 scala/runtime/AbstractFunction15.class --rw---- 2.0 fat 2468 bl 56% defN 20100101.000002 scala/runtime/AbstractFunction16.class --rw---- 2.0 fat 2547 bl 56% defN 20100101.000002 scala/runtime/AbstractFunction17.class --rw---- 2.0 fat 2625 bl 57% defN 20100101.000002 scala/runtime/AbstractFunction18.class --rw---- 2.0 fat 2704 bl 58% defN 20100101.000002 scala/runtime/AbstractFunction19.class +-rw---- 2.0 fat 533 bl 46% defN 20100101.000002 scala/runtime/AbstractFunction1$mcII$sp.class +-rw---- 2.0 fat 5344 bl 60% defN 20100101.000002 scala/collection/immutable/ArraySeq$ofFloat.class +-rw---- 2.0 fat 5349 bl 61% defN 20100101.000002 scala/collection/immutable/ArraySeq$ofDouble.class +-rw---- 2.0 fat 534 bl 36% defN 20100101.000002 scala/annotation/showAsInfix$.class +-rw---- 2.0 fat 5356 bl 50% defN 20100101.000002 scala/collection/immutable/$colon$colon.class +-rw---- 2.0 fat 5360 bl 63% defN 20100101.000002 scala/collection/convert/impl/AnyNumericRangeStepper.class +-rw---- 2.0 fat 5366 bl 56% defN 20100101.000002 scala/Function9.class +-rw---- 2.0 fat 5367 bl 71% defN 20100101.000002 scala/math/Ordering$O$1.class +-rw---- 2.0 fat 5376 bl 51% defN 20100101.000002 scala/Product18.class +-rw---- 2.0 fat 5377 bl 61% defN 20100101.000002 scala/collection/convert/impl/AnyVectorStepper.class +-rw---- 2.0 fat 537 bl 43% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$$anon$7.class +-rw---- 2.0 fat 538 bl 37% defN 20100101.000002 scala/concurrent/duration/package$fromNow$.class +-rw---- 2.0 fat 540 bl 44% defN 20100101.000002 scala/runtime/AbstractFunction1$mcVD$sp.class +-rw---- 2.0 fat 540 bl 44% defN 20100101.000002 scala/runtime/AbstractFunction1$mcVJ$sp.class +-rw---- 2.0 fat 540 bl 45% defN 20100101.000002 scala/runtime/AbstractFunction1$mcVF$sp.class +-rw---- 2.0 fat 540 bl 45% defN 20100101.000002 scala/runtime/AbstractFunction1$mcVI$sp.class +-rw---- 2.0 fat 5412 bl 75% defN 20100101.000002 scala/collection/immutable/List$$anon$1.class +-rw---- 2.0 fat 5425 bl 62% defN 20100101.000002 scala/collection/immutable/BitSet$.class +-rw---- 2.0 fat 542 bl 25% defN 20100101.000002 scala/concurrent/ExecutionContextExecutor.class +-rw---- 2.0 fat 542 bl 46% defN 20100101.000002 scala/collection/immutable/LazyList$State.class +-rw---- 2.0 fat 5439 bl 51% defN 20100101.000002 scala/collection/AnyStepper.class +-rw---- 2.0 fat 543 bl 35% defN 20100101.000002 scala/annotation/nowarn$.class +-rw---- 2.0 fat 5444 bl 70% defN 20100101.000002 scala/collection/mutable/TreeSet$$anon$1.class +-rw---- 2.0 fat 5447 bl 65% defN 20100101.000002 scala/collection/immutable/LazyList$WithFilter.class +-rw---- 2.0 fat 5449 bl 63% defN 20100101.000002 scala/collection/immutable/RedBlackTree$TreeIterator.class +-rw---- 2.0 fat 544 bl 26% defN 20100101.000002 scala/annotation/Annotation.class +-rw---- 2.0 fat 5450 bl 63% defN 20100101.000002 scala/collection/mutable/GrowableBuilder.class +-rw---- 2.0 fat 54514 bl 67% defN 20100101.000002 scala/collection/StringOps$.class +-rw---- 2.0 fat 54532 bl 64% defN 20100101.000002 scala/collection/mutable/ArrayDeque.class +-rw---- 2.0 fat 545 bl 35% defN 20100101.000002 scala/package$$anon$1.class +-rw---- 2.0 fat 5461 bl 62% defN 20100101.000002 scala/collection/convert/impl/AnyIndexedSeqStepper.class +-rw---- 2.0 fat 5470 bl 52% defN 20100101.000002 scala/collection/immutable/VectorStatics.class +-rw---- 2.0 fat 5490 bl 61% defN 20100101.000002 scala/util/Properties.class +-rw---- 2.0 fat 5506 bl 68% defN 20100101.000002 scala/collection/immutable/IntMap$.class +-rw---- 2.0 fat 5508 bl 78% defN 20100101.000002 scala/collection/convert/StreamExtensions$AccumulatorFactoryInfo$.class +-rw---- 2.0 fat 5530 bl 65% defN 20100101.000002 scala/collection/immutable/Vector0$.class +-rw---- 2.0 fat 5540 bl 68% defN 20100101.000002 scala/collection/immutable/LongMap$.class +-rw---- 2.0 fat 5551 bl 61% defN 20100101.000002 scala/io/AnsiColor.class +-rw---- 2.0 fat 5557 bl 51% defN 20100101.000002 scala/Product19.class -rw---- 2.0 fat 555 bl 47% defN 20100101.000002 scala/runtime/AbstractFunction2$mcDDD$sp.class -rw---- 2.0 fat 555 bl 47% defN 20100101.000002 scala/runtime/AbstractFunction2$mcDDI$sp.class -rw---- 2.0 fat 555 bl 47% defN 20100101.000002 scala/runtime/AbstractFunction2$mcDDJ$sp.class @@ -2452,15 +2378,6 @@ -rw---- 2.0 fat 555 bl 47% defN 20100101.000002 scala/runtime/AbstractFunction2$mcJJD$sp.class -rw---- 2.0 fat 555 bl 47% defN 20100101.000002 scala/runtime/AbstractFunction2$mcJJI$sp.class -rw---- 2.0 fat 555 bl 47% defN 20100101.000002 scala/runtime/AbstractFunction2$mcJJJ$sp.class --rw---- 2.0 fat 562 bl 46% defN 20100101.000002 scala/runtime/AbstractFunction2$mcVDD$sp.class --rw---- 2.0 fat 562 bl 46% defN 20100101.000002 scala/runtime/AbstractFunction2$mcVDI$sp.class --rw---- 2.0 fat 562 bl 46% defN 20100101.000002 scala/runtime/AbstractFunction2$mcVDJ$sp.class --rw---- 2.0 fat 562 bl 46% defN 20100101.000002 scala/runtime/AbstractFunction2$mcVID$sp.class --rw---- 2.0 fat 562 bl 46% defN 20100101.000002 scala/runtime/AbstractFunction2$mcVII$sp.class --rw---- 2.0 fat 562 bl 46% defN 20100101.000002 scala/runtime/AbstractFunction2$mcVIJ$sp.class --rw---- 2.0 fat 562 bl 46% defN 20100101.000002 scala/runtime/AbstractFunction2$mcVJD$sp.class --rw---- 2.0 fat 562 bl 46% defN 20100101.000002 scala/runtime/AbstractFunction2$mcVJI$sp.class --rw---- 2.0 fat 562 bl 46% defN 20100101.000002 scala/runtime/AbstractFunction2$mcVJJ$sp.class -rw---- 2.0 fat 555 bl 47% defN 20100101.000002 scala/runtime/AbstractFunction2$mcZDD$sp.class -rw---- 2.0 fat 555 bl 47% defN 20100101.000002 scala/runtime/AbstractFunction2$mcZDI$sp.class -rw---- 2.0 fat 555 bl 47% defN 20100101.000002 scala/runtime/AbstractFunction2$mcZDJ$sp.class @@ -2470,462 +2387,545 @@ -rw---- 2.0 fat 555 bl 47% defN 20100101.000002 scala/runtime/AbstractFunction2$mcZJD$sp.class -rw---- 2.0 fat 555 bl 47% defN 20100101.000002 scala/runtime/AbstractFunction2$mcZJI$sp.class -rw---- 2.0 fat 555 bl 47% defN 20100101.000002 scala/runtime/AbstractFunction2$mcZJJ$sp.class --rw---- 2.0 fat 11578 bl 76% defN 20100101.000002 scala/runtime/AbstractFunction2.class --rw---- 2.0 fat 2783 bl 58% defN 20100101.000002 scala/runtime/AbstractFunction20.class --rw---- 2.0 fat 2862 bl 58% defN 20100101.000002 scala/runtime/AbstractFunction21.class --rw---- 2.0 fat 2941 bl 59% defN 20100101.000002 scala/runtime/AbstractFunction22.class --rw---- 2.0 fat 1463 bl 47% defN 20100101.000002 scala/runtime/AbstractFunction3.class --rw---- 2.0 fat 1537 bl 48% defN 20100101.000002 scala/runtime/AbstractFunction4.class --rw---- 2.0 fat 1611 bl 49% defN 20100101.000002 scala/runtime/AbstractFunction5.class --rw---- 2.0 fat 1684 bl 49% defN 20100101.000002 scala/runtime/AbstractFunction6.class --rw---- 2.0 fat 1758 bl 50% defN 20100101.000002 scala/runtime/AbstractFunction7.class --rw---- 2.0 fat 1832 bl 51% defN 20100101.000002 scala/runtime/AbstractFunction8.class --rw---- 2.0 fat 1905 bl 52% defN 20100101.000002 scala/runtime/AbstractFunction9.class --rw---- 2.0 fat 1360 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcDD$sp.class --rw---- 2.0 fat 1431 bl 54% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcDF$sp.class --rw---- 2.0 fat 1433 bl 54% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcDI$sp.class --rw---- 2.0 fat 1428 bl 54% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcDJ$sp.class --rw---- 2.0 fat 1431 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcFD$sp.class --rw---- 2.0 fat 1356 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcFF$sp.class --rw---- 2.0 fat 1430 bl 54% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcFI$sp.class --rw---- 2.0 fat 1425 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcFJ$sp.class --rw---- 2.0 fat 1433 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcID$sp.class --rw---- 2.0 fat 1430 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcIF$sp.class --rw---- 2.0 fat 1360 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcII$sp.class --rw---- 2.0 fat 1427 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcIJ$sp.class --rw---- 2.0 fat 1428 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcJD$sp.class --rw---- 2.0 fat 1425 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcJF$sp.class --rw---- 2.0 fat 1427 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcJI$sp.class --rw---- 2.0 fat 1352 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcJJ$sp.class --rw---- 2.0 fat 1415 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcVD$sp.class --rw---- 2.0 fat 1412 bl 54% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcVF$sp.class --rw---- 2.0 fat 1414 bl 54% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcVI$sp.class --rw---- 2.0 fat 1409 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcVJ$sp.class --rw---- 2.0 fat 1437 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcZD$sp.class --rw---- 2.0 fat 1434 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcZF$sp.class --rw---- 2.0 fat 1436 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcZI$sp.class --rw---- 2.0 fat 1431 bl 53% defN 20100101.000002 scala/runtime/AbstractPartialFunction$mcZJ$sp.class --rw---- 2.0 fat 7879 bl 68% defN 20100101.000002 scala/runtime/AbstractPartialFunction.class --rw---- 2.0 fat 2761 bl 40% defN 20100101.000002 scala/runtime/ArrayCharSequence.class --rw---- 2.0 fat 795 bl 42% defN 20100101.000002 scala/runtime/BooleanRef.class --rw---- 2.0 fat 1039 bl 43% defN 20100101.000002 scala/runtime/BoxedUnit.class --rw---- 2.0 fat 14953 bl 65% defN 20100101.000002 scala/runtime/BoxesRunTime.class --rw---- 2.0 fat 768 bl 41% defN 20100101.000002 scala/runtime/ByteRef.class --rw---- 2.0 fat 773 bl 41% defN 20100101.000002 scala/runtime/CharRef.class --rw---- 2.0 fat 959 bl 42% defN 20100101.000002 scala/runtime/ClassValueCompat$.class +-rw---- 2.0 fat 5561 bl 67% defN 20100101.000002 scala/collection/mutable/CollisionProofHashMap$RBNode.class +-rw---- 2.0 fat 5566 bl 54% defN 20100101.000002 scala/collection/SortedSet.class +-rw---- 2.0 fat 5579 bl 71% defN 20100101.000002 scala/reflect/ClassTag$GenericClassTag.class +-rw---- 2.0 fat 557 bl 23% defN 20100101.000002 scala/runtime/Nothing$.class +-rw---- 2.0 fat 5584 bl 49% defN 20100101.000002 scala/collection/mutable/Map.class +-rw---- 2.0 fat 55879 bl 61% defN 20100101.000002 scala/collection/immutable/ArraySeq.class +-rw---- 2.0 fat 558 bl 25% defN 20100101.000002 scala/reflect/OptManifest.class +-rw---- 2.0 fat 5604 bl 56% defN 20100101.000002 scala/Function10.class +-rw---- 2.0 fat 5607 bl 62% defN 20100101.000002 scala/concurrent/impl/ExecutionContextImpl$.class +-rw---- 2.0 fat 5611 bl 64% defN 20100101.000002 scala/collection/convert/impl/IntArrayStepper.class +-rw---- 2.0 fat 5613 bl 50% defN 20100101.000002 scala/collection/generic/IsSeq.class +-rw---- 2.0 fat 5626 bl 62% defN 20100101.000002 scala/collection/StringOps$WithFilter.class +-rw---- 2.0 fat 562 bl 46% defN 20100101.000002 scala/runtime/AbstractFunction2$mcVDD$sp.class +-rw---- 2.0 fat 562 bl 46% defN 20100101.000002 scala/runtime/AbstractFunction2$mcVDI$sp.class +-rw---- 2.0 fat 562 bl 46% defN 20100101.000002 scala/runtime/AbstractFunction2$mcVDJ$sp.class +-rw---- 2.0 fat 562 bl 46% defN 20100101.000002 scala/runtime/AbstractFunction2$mcVID$sp.class +-rw---- 2.0 fat 562 bl 46% defN 20100101.000002 scala/runtime/AbstractFunction2$mcVII$sp.class +-rw---- 2.0 fat 562 bl 46% defN 20100101.000002 scala/runtime/AbstractFunction2$mcVIJ$sp.class +-rw---- 2.0 fat 562 bl 46% defN 20100101.000002 scala/runtime/AbstractFunction2$mcVJD$sp.class +-rw---- 2.0 fat 562 bl 46% defN 20100101.000002 scala/runtime/AbstractFunction2$mcVJI$sp.class +-rw---- 2.0 fat 562 bl 46% defN 20100101.000002 scala/runtime/AbstractFunction2$mcVJJ$sp.class -rw---- 2.0 fat 563 bl 47% defN 20100101.000002 scala/runtime/ClassValueCompat$ClassValueInterface.class --rw---- 2.0 fat 1383 bl 55% defN 20100101.000002 scala/runtime/ClassValueCompat$FallbackClassValue.class --rw---- 2.0 fat 1225 bl 54% defN 20100101.000002 scala/runtime/ClassValueCompat$JavaClassValue.class --rw---- 2.0 fat 3162 bl 42% defN 20100101.000002 scala/runtime/ClassValueCompat.class --rw---- 2.0 fat 780 bl 41% defN 20100101.000002 scala/runtime/DoubleRef.class --rw---- 2.0 fat 1543 bl 43% defN 20100101.000002 scala/runtime/EmptyMethodCache.class --rw---- 2.0 fat 774 bl 40% defN 20100101.000002 scala/runtime/FloatRef.class --rw---- 2.0 fat 1247 bl 40% defN 20100101.000002 scala/runtime/FractionalProxy.class --rw---- 2.0 fat 766 bl 41% defN 20100101.000002 scala/runtime/IntRef.class --rw---- 2.0 fat 4200 bl 61% defN 20100101.000002 scala/runtime/IntegralProxy.class --rw---- 2.0 fat 2924 bl 60% defN 20100101.000002 scala/runtime/LambdaDeserialize$.class --rw---- 2.0 fat 5181 bl 51% defN 20100101.000002 scala/runtime/LambdaDeserialize.class +-rw---- 2.0 fat 5643 bl 63% defN 20100101.000002 scala/collection/convert/impl/LongArrayStepper.class +-rw---- 2.0 fat 5671 bl 58% defN 20100101.000002 scala/math/ScalaNumericAnyConversions.class +-rw---- 2.0 fat 5676 bl 63% defN 20100101.000002 scala/collection/convert/impl/WidenedByteArrayStepper.class +-rw---- 2.0 fat 5676 bl 63% defN 20100101.000002 scala/collection/convert/impl/WidenedCharArrayStepper.class +-rw---- 2.0 fat 5680 bl 61% defN 20100101.000002 scala/collection/immutable/ArraySeq$ofBoolean.class +-rw---- 2.0 fat 5683 bl 64% defN 20100101.000002 scala/collection/convert/impl/WidenedShortArrayStepper.class +-rw---- 2.0 fat 5694 bl 64% defN 20100101.000002 scala/collection/convert/impl/DoubleArrayStepper.class +-rw---- 2.0 fat 5700 bl 67% defN 20100101.000002 scala/math/Ordering$IterableOrdering.class +-rw---- 2.0 fat 570 bl 40% defN 20100101.000002 scala/languageFeature$dynamics$.class +-rw---- 2.0 fat 5712 bl 64% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$Ordering$.class +-rw---- 2.0 fat 5713 bl 66% defN 20100101.000002 scala/util/matching/Regex$Match.class +-rw---- 2.0 fat 5718 bl 51% defN 20100101.000002 scala/ScalaReflectionException.class +-rw---- 2.0 fat 5739 bl 51% defN 20100101.000002 scala/Product20.class +-rw---- 2.0 fat 5749 bl 63% defN 20100101.000002 scala/collection/convert/impl/WidenedFloatArrayStepper.class +-rw---- 2.0 fat 5755 bl 63% defN 20100101.000002 scala/collection/convert/impl/CharStringStepper.class +-rw---- 2.0 fat 576 bl 20% defN 20100101.000002 scala/runtime/PStatics.class +-rw---- 2.0 fat 5771 bl 70% defN 20100101.000002 scala/math/Ordering$Int$.class +-rw---- 2.0 fat 5773 bl 68% defN 20100101.000002 scala/runtime/AbstractFunction1.class +-rw---- 2.0 fat 5793 bl 49% defN 20100101.000002 scala/sys/PropImpl.class +-rw---- 2.0 fat 580 bl 40% defN 20100101.000002 scala/languageFeature$postfixOps$.class +-rw---- 2.0 fat 5814 bl 68% defN 20100101.000002 scala/math/Ordering$Tuple2Ordering.class +-rw---- 2.0 fat 581 bl 26% defN 20100101.000002 scala/math/ScalaNumericConversions.class +-rw---- 2.0 fat 5830 bl 57% defN 20100101.000002 scala/Function11.class +-rw---- 2.0 fat 5847 bl 73% defN 20100101.000002 scala/collection/mutable/AnyRefMap$ExceptionDefault.class +-rw---- 2.0 fat 5859 bl 62% defN 20100101.000002 scala/collection/immutable/LazyList$SerializationProxy.class +-rw---- 2.0 fat 585 bl 26% defN 20100101.000002 scala/util/control/BreakControl.class +-rw---- 2.0 fat 5875 bl 71% defN 20100101.000002 scala/math/Ordering$Float$IeeeOrdering$.class +-rw---- 2.0 fat 5884 bl 61% defN 20100101.000002 scala/collection/convert/impl/AnyTableStepper.class +-rw---- 2.0 fat 5886 bl 53% defN 20100101.000002 scala/concurrent/impl/Promise$Transformation.class +-rw---- 2.0 fat 5886 bl 71% defN 20100101.000002 scala/math/Ordering$Double$IeeeOrdering$.class +-rw---- 2.0 fat 5896 bl 60% defN 20100101.000002 scala/collection/immutable/ArraySeq$ofByte.class +-rw---- 2.0 fat 589 bl 24% defN 20100101.000002 scala/concurrent/ExecutionContextExecutorService.class +-rw---- 2.0 fat 589 bl 37% defN 20100101.000002 scala/throws$.class +-rw---- 2.0 fat 5900 bl 59% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$Simple.class +-rw---- 2.0 fat 590 bl 41% defN 20100101.000002 scala/languageFeature$existentials$.class +-rw---- 2.0 fat 5911 bl 60% defN 20100101.000002 scala/collection/immutable/ArraySeq$ofShort.class +-rw---- 2.0 fat 591 bl 40% defN 20100101.000002 scala/util/Using$Releasable$.class +-rw---- 2.0 fat 5921 bl 52% defN 20100101.000002 scala/Product21.class +-rw---- 2.0 fat 5923 bl 61% defN 20100101.000002 scala/sys/process/ProcessImplicits.class +-rw---- 2.0 fat 59272 bl 58% defN 20100101.000002 scala/collection/mutable/CollisionProofHashMap.class +-rw---- 2.0 fat 5931 bl 51% defN 20100101.000002 scala/UninitializedFieldError.class +-rw---- 2.0 fat 5957 bl 62% defN 20100101.000002 scala/collection/convert/impl/IntVectorStepper.class +-rw---- 2.0 fat 5958 bl 60% defN 20100101.000002 scala/collection/immutable/ArraySeq$ofInt.class +-rw---- 2.0 fat 5964 bl 49% defN 20100101.000002 scala/collection/generic/DefaultSerializationProxy.class +-rw---- 2.0 fat 5974 bl 35% defN 20100101.000002 scala/sys/process/ProcessImpl.class +-rw---- 2.0 fat 5990 bl 62% defN 20100101.000002 scala/collection/convert/impl/LongVectorStepper.class +-rw---- 2.0 fat 600 bl 28% defN 20100101.000002 scala/noinline.class +-rw---- 2.0 fat 6011 bl 61% defN 20100101.000002 scala/collection/immutable/ArraySeq$ofLong.class +-rw---- 2.0 fat 6031 bl 64% defN 20100101.000002 scala/collection/convert/impl/IntNumericRangeStepper.class +-rw---- 2.0 fat 6038 bl 69% defN 20100101.000002 scala/runtime/RichChar$.class +-rw---- 2.0 fat 6041 bl 62% defN 20100101.000002 scala/collection/convert/impl/DoubleVectorStepper.class +-rw---- 2.0 fat 6041 bl 62% defN 20100101.000002 scala/collection/generic/BitOperations$Long.class +-rw---- 2.0 fat 6045 bl 61% defN 20100101.000002 scala/collection/convert/impl/AnyIteratorStepper.class +-rw---- 2.0 fat 604 bl 41% defN 20100101.000002 scala/languageFeature$higherKinds$.class +-rw---- 2.0 fat 6055 bl 52% defN 20100101.000002 scala/collection/mutable/SortedMap.class +-rw---- 2.0 fat 6058 bl 57% defN 20100101.000002 scala/Function12.class +-rw---- 2.0 fat 605 bl 42% defN 20100101.000002 scala/languageFeature$reflectiveCalls$.class +-rw---- 2.0 fat 6064 bl 64% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JDictionaryWrapper.class +-rw---- 2.0 fat 6065 bl 64% defN 20100101.000002 scala/collection/convert/impl/LongNumericRangeStepper.class +-rw---- 2.0 fat 6065 bl 78% defN 20100101.000002 scala/collection/convert/ImplicitConversionsToJava$.class +-rw---- 2.0 fat 6105 bl 52% defN 20100101.000002 scala/Product22.class +-rw---- 2.0 fat 6118 bl 57% defN 20100101.000002 scala/collection/mutable/IndexedSeqOps.class +-rw---- 2.0 fat 611 bl 29% defN 20100101.000002 scala/annotation/switch.class +-rw---- 2.0 fat 6138 bl 49% defN 20100101.000002 scala/concurrent/impl/ExecutionContextImpl.class +-rw---- 2.0 fat 6141 bl 71% defN 20100101.000002 scala/collection/immutable/AbstractMap.class +-rw---- 2.0 fat 6143 bl 62% defN 20100101.000002 scala/collection/convert/impl/RangeStepper.class +-rw---- 2.0 fat 6159 bl 65% defN 20100101.000002 scala/reflect/ClassTag$.class +-rw---- 2.0 fat 615 bl 29% defN 20100101.000002 scala/annotation/tailrec.class +-rw---- 2.0 fat 615 bl 29% defN 20100101.000002 scala/annotation/varargs.class +-rw---- 2.0 fat 6160 bl 51% defN 20100101.000002 scala/sys/process/ProcessBuilder.class +-rw---- 2.0 fat 616 bl 41% defN 20100101.000002 scala/DummyImplicit$.class +-rw---- 2.0 fat 6174 bl 66% defN 20100101.000002 scala/package$.class +-rw---- 2.0 fat 6175 bl 72% defN 20100101.000002 scala/concurrent/Future$$anon$5.class +-rw---- 2.0 fat 6192 bl 63% defN 20100101.000002 scala/collection/convert/impl/IntIndexedSeqStepper.class +-rw---- 2.0 fat 6202 bl 45% defN 20100101.000002 scala/collection/convert/impl/BinaryTreeStepperBase.class +-rw---- 2.0 fat 6205 bl 68% defN 20100101.000002 scala/collection/immutable/SeqMap$SeqMapBuilderImpl.class +-rw---- 2.0 fat 6217 bl 69% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$.class +-rw---- 2.0 fat 6226 bl 62% defN 20100101.000002 scala/collection/convert/impl/LongIndexedSeqStepper.class +-rw---- 2.0 fat 6234 bl 50% defN 20100101.000002 scala/util/Using.class +-rw---- 2.0 fat 625 bl 28% defN 20100101.000002 scala/ref/ReferenceWithWrapper.class +-rw---- 2.0 fat 625 bl 43% defN 20100101.000002 scala/languageFeature$implicitConversions$.class +-rw---- 2.0 fat 626 bl 34% defN 20100101.000002 scala/collection/Stepper$.class +-rw---- 2.0 fat 627 bl 43% defN 20100101.000002 scala/deprecated$.class +-rw---- 2.0 fat 6280 bl 69% defN 20100101.000002 scala/reflect/ManifestFactory$SingletonTypeManifest.class +-rw---- 2.0 fat 6281 bl 63% defN 20100101.000002 scala/collection/convert/impl/DoubleIndexedSeqStepper.class +-rw---- 2.0 fat 6282 bl 78% defN 20100101.000002 scala/collection/ClassTagIterableFactory$Delegate.class +-rw---- 2.0 fat 6283 bl 57% defN 20100101.000002 scala/Function13.class +-rw---- 2.0 fat 628 bl 22% defN 20100101.000002 scala/AnyVal.class +-rw---- 2.0 fat 628 bl 38% defN 20100101.000002 scala/collection/concurrent/TrieMapIterator$.class +-rw---- 2.0 fat 6298 bl 70% defN 20100101.000002 scala/reflect/ClassManifestFactory$AbstractTypeClassManifest.class +-rw---- 2.0 fat 6314 bl 64% defN 20100101.000002 scala/jdk/IntAccumulator$.class +-rw---- 2.0 fat 631 bl 29% defN 20100101.000002 scala/annotation/meta/field.class +-rw---- 2.0 fat 631 bl 29% defN 20100101.000002 scala/annotation/meta/param.class +-rw---- 2.0 fat 6343 bl 62% defN 20100101.000002 scala/reflect/AnyValManifest.class +-rw---- 2.0 fat 6345 bl 56% defN 20100101.000002 scala/collection/StrictOptimizedSeqFactory.class +-rw---- 2.0 fat 6347 bl 64% defN 20100101.000002 scala/jdk/LongAccumulator$.class +-rw---- 2.0 fat 6352 bl 50% defN 20100101.000002 scala/collection/immutable/StrictOptimizedSeqOps.class +-rw---- 2.0 fat 6352 bl 70% defN 20100101.000002 scala/reflect/ManifestFactory$AbstractTypeManifest.class +-rw---- 2.0 fat 6353 bl 41% defN 20100101.000002 scala/jdk/OptionConverters.class +-rw---- 2.0 fat 636 bl 29% defN 20100101.000002 scala/annotation/meta/getter.class +-rw---- 2.0 fat 636 bl 29% defN 20100101.000002 scala/annotation/meta/setter.class +-rw---- 2.0 fat 636 bl 40% defN 20100101.000002 scala/collection/convert/impl/BinaryTreeStepper$.class +-rw---- 2.0 fat 6375 bl 69% defN 20100101.000002 scala/reflect/ManifestFactory$WildcardManifest.class +-rw---- 2.0 fat 637 bl 28% defN 20100101.000002 scala/volatile.class +-rw---- 2.0 fat 637 bl 37% defN 20100101.000002 scala/collection/SeqView$.class +-rw---- 2.0 fat 637 bl 42% defN 20100101.000002 scala/collection/immutable/ListMap$EmptyListMap$.class +-rw---- 2.0 fat 6403 bl 61% defN 20100101.000002 scala/collection/immutable/ArraySeq$ofChar.class +-rw---- 2.0 fat 640 bl 25% defN 20100101.000002 scala/collection/concurrent/KVNode.class +-rw---- 2.0 fat 641 bl 28% defN 20100101.000002 scala/transient.class +-rw---- 2.0 fat 6421 bl 64% defN 20100101.000002 scala/jdk/DoubleAccumulator$.class +-rw---- 2.0 fat 643 bl 36% defN 20100101.000002 scala/collection/SeqFactory$.class +-rw---- 2.0 fat 6442 bl 67% defN 20100101.000002 scala/math/Ordering$Tuple3Ordering.class +-rw---- 2.0 fat 6449 bl 70% defN 20100101.000002 scala/reflect/ManifestFactory$IntersectionTypeManifest.class +-rw---- 2.0 fat 6455 bl 49% defN 20100101.000002 scala/Tuple3.class +-rw---- 2.0 fat 645 bl 16% defN 20100101.000002 scala/concurrent/OnCompleteRunnable.class +-rw---- 2.0 fat 645 bl 29% defN 20100101.000002 scala/collection/immutable/SeqOps.class +-rw---- 2.0 fat 645 bl 41% defN 20100101.000002 scala/io/Source$RelaxedPosition$.class +-rw---- 2.0 fat 6465 bl 61% defN 20100101.000002 scala/collection/mutable/TreeSet$TreeSetProjection.class +-rw---- 2.0 fat 646 bl 39% defN 20100101.000000 NOTICE +-rw---- 2.0 fat 6482 bl 62% defN 20100101.000002 scala/collection/convert/impl/IntIteratorStepper.class +-rw---- 2.0 fat 648 bl 44% defN 20100101.000002 scala/collection/immutable/LazyList$LazyBuilder$.class +-rw---- 2.0 fat 6503 bl 62% defN 20100101.000002 scala/collection/convert/impl/LongIteratorStepper.class +-rw---- 2.0 fat 6509 bl 57% defN 20100101.000002 scala/Function14.class +-rw---- 2.0 fat 6510 bl 69% defN 20100101.000002 scala/collection/Iterator$$anon$7.class +-rw---- 2.0 fat 651 bl 43% defN 20100101.000002 scala/deprecatedName$.class +-rw---- 2.0 fat 652 bl 29% defN 20100101.000002 scala/annotation/meta/beanGetter.class +-rw---- 2.0 fat 652 bl 29% defN 20100101.000002 scala/annotation/meta/beanSetter.class +-rw---- 2.0 fat 6549 bl 51% defN 20100101.000002 scala/collection/immutable/SortedMap.class +-rw---- 2.0 fat 654 bl 36% defN 20100101.000002 scala/sys/Prop$IntProp$.class +-rw---- 2.0 fat 654 bl 37% defN 20100101.000002 scala/sys/Prop$FileProp$.class +-rw---- 2.0 fat 655 bl 44% defN 20100101.000002 scala/languageFeature$experimental$.class +-rw---- 2.0 fat 6562 bl 63% defN 20100101.000002 scala/collection/convert/impl/DoubleIteratorStepper.class +-rw---- 2.0 fat 6566 bl 69% defN 20100101.000002 scala/reflect/ManifestFactory$ClassTypeManifest.class +-rw---- 2.0 fat 6577 bl 69% defN 20100101.000002 scala/collection/immutable/TreeSet$TreeSetBuilder.class +-rw---- 2.0 fat 657 bl 44% defN 20100101.000002 scala/deprecatedOverriding$.class +-rw---- 2.0 fat 6582 bl 76% defN 20100101.000002 scala/concurrent/duration/package$DurationDouble.class +-rw---- 2.0 fat 6589 bl 76% defN 20100101.000002 scala/jdk/javaapi/CollectionConverters.class +-rw---- 2.0 fat 658 bl 38% defN 20100101.000002 scala/collection/IndexedSeqView$.class +-rw---- 2.0 fat 6595 bl 62% defN 20100101.000002 scala/collection/convert/impl/AnyChampStepper.class +-rw---- 2.0 fat 659 bl 37% defN 20100101.000002 scala/collection/ClassTagSeqFactory$.class +-rw---- 2.0 fat 6605 bl 51% defN 20100101.000002 scala/collection/Map.class +-rw---- 2.0 fat 660 bl 44% defN 20100101.000002 scala/deprecatedInheritance$.class +-rw---- 2.0 fat 6623 bl 68% defN 20100101.000002 scala/collection/mutable/Map$WithDefault.class +-rw---- 2.0 fat 6628 bl 64% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$Ordering$Bin.class +-rw---- 2.0 fat 6629 bl 66% defN 20100101.000002 scala/util/matching/Regex$MatchIterator.class +-rw---- 2.0 fat 6638 bl 61% defN 20100101.000002 scala/collection/immutable/VectorInline$.class +-rw---- 2.0 fat 664 bl 44% defN 20100101.000002 scala/languageFeature$experimental$macros$.class +-rw---- 2.0 fat 665 bl 37% defN 20100101.000002 scala/collection/SortedIterableFactory$.class +-rw---- 2.0 fat 666 bl 37% defN 20100101.000002 scala/sys/Prop$DoubleProp$.class +-rw---- 2.0 fat 666 bl 37% defN 20100101.000002 scala/sys/Prop$StringProp$.class +-rw---- 2.0 fat 6676 bl 63% defN 20100101.000002 scala/collection/convert/impl/IntTableStepper.class +-rw---- 2.0 fat 667 bl 23% defN 20100101.000002 scala/annotation/ClassfileAnnotation.class +-rw---- 2.0 fat 667 bl 33% defN 20100101.000002 scala/collection/SortedMapOps$.class +-rw---- 2.0 fat 667 bl 39% defN 20100101.000002 scala/collection/immutable/Range$Exclusive.class +-rw---- 2.0 fat 667 bl 39% defN 20100101.000002 scala/collection/immutable/Range$Inclusive.class +-rw---- 2.0 fat 6687 bl 51% defN 20100101.000002 scala/Tuple1.class +-rw---- 2.0 fat 6693 bl 75% defN 20100101.000002 scala/concurrent/duration/package$DurationLong.class +-rw---- 2.0 fat 669 bl 30% defN 20100101.000002 scala/annotation/meta/companionClass.class +-rw---- 2.0 fat 669 bl 37% defN 20100101.000002 scala/collection/ClassTagIterableFactory$.class +-rw---- 2.0 fat 6703 bl 63% defN 20100101.000002 scala/util/Either$LeftProjection.class +-rw---- 2.0 fat 6715 bl 63% defN 20100101.000002 scala/collection/convert/impl/LongTableStepper.class +-rw---- 2.0 fat 6718 bl 63% defN 20100101.000002 scala/util/Either$RightProjection.class +-rw---- 2.0 fat 6736 bl 58% defN 20100101.000002 scala/Function15.class +-rw---- 2.0 fat 6736 bl 75% defN 20100101.000002 scala/concurrent/duration/package$DurationInt.class +-rw---- 2.0 fat 673 bl 30% defN 20100101.000002 scala/annotation/meta/companionMethod.class +-rw---- 2.0 fat 673 bl 30% defN 20100101.000002 scala/annotation/meta/companionObject.class +-rw---- 2.0 fat 6745 bl 60% defN 20100101.000002 scala/collection/convert/impl/CodePointStringStepper.class +-rw---- 2.0 fat 6772 bl 54% defN 20100101.000002 scala/collection/StepperShape.class +-rw---- 2.0 fat 6772 bl 63% defN 20100101.000002 scala/collection/convert/impl/DoubleTableStepper.class +-rw---- 2.0 fat 6773 bl 50% defN 20100101.000002 scala/collection/StringView.class +-rw---- 2.0 fat 6775 bl 53% defN 20100101.000002 scala/collection/concurrent/Map.class -rw---- 2.0 fat 6777 bl 56% defN 20100101.000002 scala/runtime/LambdaDeserializer$.class --rw---- 2.0 fat 1899 bl 46% defN 20100101.000002 scala/runtime/LambdaDeserializer.class --rw---- 2.0 fat 1833 bl 37% defN 20100101.000002 scala/runtime/LazyBoolean.class --rw---- 2.0 fat 1850 bl 36% defN 20100101.000002 scala/runtime/LazyByte.class --rw---- 2.0 fat 1850 bl 36% defN 20100101.000002 scala/runtime/LazyChar.class --rw---- 2.0 fat 1861 bl 36% defN 20100101.000002 scala/runtime/LazyDouble.class --rw---- 2.0 fat 1855 bl 36% defN 20100101.000002 scala/runtime/LazyFloat.class --rw---- 2.0 fat 1845 bl 37% defN 20100101.000002 scala/runtime/LazyInt.class --rw---- 2.0 fat 1846 bl 36% defN 20100101.000002 scala/runtime/LazyLong.class --rw---- 2.0 fat 2054 bl 39% defN 20100101.000002 scala/runtime/LazyRef.class --rw---- 2.0 fat 1855 bl 37% defN 20100101.000002 scala/runtime/LazyShort.class --rw---- 2.0 fat 1564 bl 34% defN 20100101.000002 scala/runtime/LazyUnit.class +-rw---- 2.0 fat 6779 bl 62% defN 20100101.000002 scala/collection/immutable/SetBuilderImpl.class +-rw---- 2.0 fat 6792 bl 48% defN 20100101.000002 scala/collection/SortedMapFactory.class +-rw---- 2.0 fat 6811 bl 68% defN 20100101.000002 scala/collection/immutable/Map$WithDefault.class +-rw---- 2.0 fat 6814 bl 51% defN 20100101.000002 scala/collection/immutable/MapNode.class +-rw---- 2.0 fat 6816 bl 65% defN 20100101.000002 scala/collection/immutable/TreeSet$.class +-rw---- 2.0 fat 682 bl 45% defN 20100101.000002 scala/Specializable$Group.class +-rw---- 2.0 fat 6832 bl 51% defN 20100101.000002 scala/util/Try.class +-rw---- 2.0 fat 6837 bl 49% defN 20100101.000002 scala/Double.class +-rw---- 2.0 fat 6853 bl 74% defN 20100101.000002 scala/collection/StepperShape$.class +-rw---- 2.0 fat 6862 bl 76% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$Id.class +-rw---- 2.0 fat 6871 bl 55% defN 20100101.000002 scala/collection/immutable/BitSet$BitSetN.class +-rw---- 2.0 fat 6890 bl 76% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$Drop.class +-rw---- 2.0 fat 6890 bl 76% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$Take.class +-rw---- 2.0 fat 6904 bl 49% defN 20100101.000002 scala/collection/immutable/VectorInline.class +-rw---- 2.0 fat 6908 bl 66% defN 20100101.000002 scala/concurrent/impl/CompletionLatch.class +-rw---- 2.0 fat 690 bl 47% defN 20100101.000002 scala/sys/process/BasicIO$Uncloseable.class +-rw---- 2.0 fat 6913 bl 65% defN 20100101.000002 scala/collection/mutable/TreeSet$.class +-rw---- 2.0 fat 6915 bl 76% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$DropRight.class +-rw---- 2.0 fat 6915 bl 76% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$TakeRight.class +-rw---- 2.0 fat 6919 bl 68% defN 20100101.000002 scala/math/Ordering$Tuple4Ordering.class +-rw---- 2.0 fat 6924 bl 48% defN 20100101.000002 scala/Float.class +-rw---- 2.0 fat 6946 bl 76% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$Appended.class +-rw---- 2.0 fat 694 bl 43% defN 20100101.000002 scala/collection/immutable/ListSet$EmptyListSet$.class +-rw---- 2.0 fat 6951 bl 76% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$Prepended.class +-rw---- 2.0 fat 695 bl 38% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$.class +-rw---- 2.0 fat 6963 bl 58% defN 20100101.000002 scala/Function16.class +-rw---- 2.0 fat 6969 bl 62% defN 20100101.000002 scala/collection/immutable/VectorMapBuilder.class +-rw---- 2.0 fat 6970 bl 76% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$Map.class +-rw---- 2.0 fat 6971 bl 62% defN 20100101.000002 scala/collection/generic/BitOperations$Int.class +-rw---- 2.0 fat 697 bl 32% defN 20100101.000002 scala/annotation/unchecked/uncheckedVariance.class +-rw---- 2.0 fat 7004 bl 77% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$Concat.class +-rw---- 2.0 fat 7061 bl 61% defN 20100101.000002 scala/util/control/TailCalls$TailRec.class +-rw---- 2.0 fat 7068 bl 76% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$Reverse.class +-rw---- 2.0 fat 7116 bl 47% defN 20100101.000002 scala/sys/process/BasicIO.class +-rw---- 2.0 fat 713 b- 23% defN 20100101.000002 foo/TestBinary.class +-rw---- 2.0 fat 716 bl 49% defN 20100101.000002 scala/io/Source$RelaxedPositioner$.class +-rw---- 2.0 fat 717 bl 27% defN 20100101.000002 scala/collection/convert/impl/BinaryTreeStepper.class +-rw---- 2.0 fat 7189 bl 58% defN 20100101.000002 scala/Function17.class +-rw---- 2.0 fat 718 bl 25% defN 20100101.000002 scala/inline.class +-rw---- 2.0 fat 718 bl 25% defN 20100101.000002 scala/native.class +-rw---- 2.0 fat 72042 bl 72% defN 20100101.000002 scala/jdk/Accumulator.class +-rw---- 2.0 fat 7208 bl 54% defN 20100101.000002 scala/LowPriorityImplicits.class +-rw---- 2.0 fat 7213 bl 63% defN 20100101.000002 scala/reflect/ClassTypeManifest.class +-rw---- 2.0 fat 7229 bl 74% defN 20100101.000002 scala/collection/convert/ImplicitConversions.class +-rw---- 2.0 fat 7235 bl 57% defN 20100101.000002 scala/collection/mutable/SetOps.class +-rw---- 2.0 fat 723 bl 45% defN 20100101.000002 scala/math/Equiv$Float$.class +-rw---- 2.0 fat 7240 bl 63% defN 20100101.000002 scala/collection/convert/impl/IntChampStepper.class +-rw---- 2.0 fat 7242 bl 62% defN 20100101.000002 scala/Function.class +-rw---- 2.0 fat 7243 bl 55% defN 20100101.000002 scala/collection/Stepper.class +-rw---- 2.0 fat 7251 bl 55% defN 20100101.000002 scala/collection/SeqOps$PermutationsItr.class +-rw---- 2.0 fat 725 bl 47% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$OrderBy$.class +-rw---- 2.0 fat 7272 bl 53% defN 20100101.000002 scala/concurrent/duration/Deadline.class +-rw---- 2.0 fat 7301 bl 61% defN 20100101.000002 scala/util/matching/Regex$MatchData.class +-rw---- 2.0 fat 7307 bl 63% defN 20100101.000002 scala/collection/convert/impl/LongChampStepper.class +-rw---- 2.0 fat 730 bl 46% defN 20100101.000002 scala/math/Equiv$Double$.class +-rw---- 2.0 fat 7314 bl 37% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl.class +-rw---- 2.0 fat 7318 bl 51% defN 20100101.000002 scala/Tuple4.class +-rw---- 2.0 fat 731 bl 23% defN 20100101.000002 scala/reflect/NoManifest.class +-rw---- 2.0 fat 7324 bl 64% defN 20100101.000002 scala/None.class +-rw---- 2.0 fat 7332 bl 45% defN 20100101.000002 scala/collection/convert/impl/ChampStepperBase.class +-rw---- 2.0 fat 733 bl 26% defN 20100101.000002 scala/collection/immutable/IndexedSeqDefaults.class +-rw---- 2.0 fat 734 bl 26% defN 20100101.000002 scala/collection/DefaultMap.class +-rw---- 2.0 fat 734 bl 43% defN 20100101.000002 scala/Function1$.class +-rw---- 2.0 fat 7370 bl 63% defN 20100101.000002 scala/collection/convert/impl/DoubleChampStepper.class +-rw---- 2.0 fat 7376 bl 36% defN 20100101.000002 scala/collection/immutable/SeqMap.class +-rw---- 2.0 fat 740 bl 40% defN 20100101.000002 scala/Product1$.class +-rw---- 2.0 fat 7411 bl 68% defN 20100101.000002 scala/math/Ordering$Tuple5Ordering.class +-rw---- 2.0 fat 7414 bl 57% defN 20100101.000002 scala/collection/StrictOptimizedSortedSetOps.class +-rw---- 2.0 fat 7415 bl 58% defN 20100101.000002 scala/Function18.class +-rw---- 2.0 fat 7427 bl 75% defN 20100101.000002 scala/jdk/StreamConverters.class +-rw---- 2.0 fat 7431 bl 58% defN 20100101.000002 scala/concurrent/Promise.class +-rw---- 2.0 fat 745 bl 43% defN 20100101.000002 scala/util/hashing/Hashing$Default.class +-rw---- 2.0 fat 7467 bl 31% defN 20100101.000002 scala/concurrent/impl/Promise.class +-rw---- 2.0 fat 7479 bl 54% defN 20100101.000002 scala/collection/LazyZip2.class +-rw---- 2.0 fat 748 bl 26% defN 20100101.000002 scala/annotation/strictfp.class +-rw---- 2.0 fat 748 bl 31% defN 20100101.000002 scala/annotation/unchecked/uncheckedStable.class +-rw---- 2.0 fat 7509 bl 74% defN 20100101.000002 scala/collection/SeqFactory$Delegate.class +-rw---- 2.0 fat 7534 bl 53% defN 20100101.000002 scala/collection/immutable/Vector1.class +-rw---- 2.0 fat 753 bl 43% defN 20100101.000002 scala/collection/mutable/UnrolledBuffer$Unrolled$.class +-rw---- 2.0 fat 7559 bl 61% defN 20100101.000002 scala/collection/convert/impl/AnyBinaryTreeStepper.class +-rw---- 2.0 fat 757 bl 24% defN 20100101.000002 scala/UninitializedError.class +-rw---- 2.0 fat 7591 bl 72% defN 20100101.000002 scala/collection/immutable/ListSet$.class +-rw---- 2.0 fat 7592 bl 73% defN 20100101.000002 scala/sys/process/Process.class +-rw---- 2.0 fat 7649 bl 47% defN 20100101.000002 scala/concurrent/duration/package.class -rw---- 2.0 fat 764 bl 40% defN 20100101.000002 scala/runtime/LongRef.class --rw---- 2.0 fat 2041 bl 43% defN 20100101.000002 scala/runtime/MegaMethodCache.class --rw---- 2.0 fat 1282 bl 36% defN 20100101.000002 scala/runtime/MethodCache.class --rw---- 2.0 fat 1575 bl 53% defN 20100101.000002 scala/runtime/MethodHandleConstants.class --rw---- 2.0 fat 2205 bl 55% defN 20100101.000002 scala/runtime/ModuleSerializationProxy$$anon$1.class --rw---- 2.0 fat 1484 bl 53% defN 20100101.000002 scala/runtime/ModuleSerializationProxy$.class --rw---- 2.0 fat 2019 bl 34% defN 20100101.000002 scala/runtime/ModuleSerializationProxy.class --rw---- 2.0 fat 1070 bl 50% defN 20100101.000002 scala/runtime/NonLocalReturnControl$mcB$sp.class --rw---- 2.0 fat 1080 bl 51% defN 20100101.000002 scala/runtime/NonLocalReturnControl$mcC$sp.class --rw---- 2.0 fat 1074 bl 50% defN 20100101.000002 scala/runtime/NonLocalReturnControl$mcD$sp.class --rw---- 2.0 fat 1072 bl 51% defN 20100101.000002 scala/runtime/NonLocalReturnControl$mcF$sp.class --rw---- 2.0 fat 1076 bl 51% defN 20100101.000002 scala/runtime/NonLocalReturnControl$mcI$sp.class --rw---- 2.0 fat 1070 bl 50% defN 20100101.000002 scala/runtime/NonLocalReturnControl$mcJ$sp.class --rw---- 2.0 fat 1072 bl 51% defN 20100101.000002 scala/runtime/NonLocalReturnControl$mcS$sp.class --rw---- 2.0 fat 1079 bl 52% defN 20100101.000002 scala/runtime/NonLocalReturnControl$mcV$sp.class --rw---- 2.0 fat 1070 bl 51% defN 20100101.000002 scala/runtime/NonLocalReturnControl$mcZ$sp.class --rw---- 2.0 fat 3152 bl 50% defN 20100101.000002 scala/runtime/NonLocalReturnControl.class --rw---- 2.0 fat 557 bl 23% defN 20100101.000002 scala/runtime/Nothing$.class --rw---- 2.0 fat 514 bl 25% defN 20100101.000002 scala/runtime/Null$.class --rw---- 2.0 fat 1228 bl 54% defN 20100101.000002 scala/runtime/ObjectRef.class --rw---- 2.0 fat 1600 bl 42% defN 20100101.000002 scala/runtime/OrderedProxy.class --rw---- 2.0 fat 501 bl 32% defN 20100101.000002 scala/runtime/PStatics$.class --rw---- 2.0 fat 576 bl 20% defN 20100101.000002 scala/runtime/PStatics.class --rw---- 2.0 fat 2809 bl 41% defN 20100101.000002 scala/runtime/PolyMethodCache.class --rw---- 2.0 fat 1206 bl 37% defN 20100101.000002 scala/runtime/RangedProxy.class --rw---- 2.0 fat 1182 bl 45% defN 20100101.000002 scala/runtime/RichBoolean$.class --rw---- 2.0 fat 3735 bl 53% defN 20100101.000002 scala/runtime/RichBoolean.class --rw---- 2.0 fat 2729 bl 60% defN 20100101.000002 scala/runtime/RichByte$.class --rw---- 2.0 fat 10222 bl 61% defN 20100101.000002 scala/runtime/RichByte.class --rw---- 2.0 fat 6038 bl 69% defN 20100101.000002 scala/runtime/RichChar$.class --rw---- 2.0 fat 19272 bl 65% defN 20100101.000002 scala/runtime/RichChar.class --rw---- 2.0 fat 5001 bl 66% defN 20100101.000002 scala/runtime/RichDouble$.class --rw---- 2.0 fat 14078 bl 62% defN 20100101.000002 scala/runtime/RichDouble.class --rw---- 2.0 fat 5024 bl 65% defN 20100101.000002 scala/runtime/RichFloat$.class --rw---- 2.0 fat 14096 bl 62% defN 20100101.000002 scala/runtime/RichFloat.class --rw---- 2.0 fat 4458 bl 66% defN 20100101.000002 scala/runtime/RichInt$.class --rw---- 2.0 fat 15053 bl 61% defN 20100101.000002 scala/runtime/RichInt.class --rw---- 2.0 fat 3777 bl 65% defN 20100101.000002 scala/runtime/RichLong$.class --rw---- 2.0 fat 14392 bl 63% defN 20100101.000002 scala/runtime/RichLong.class --rw---- 2.0 fat 2744 bl 60% defN 20100101.000002 scala/runtime/RichShort$.class --rw---- 2.0 fat 10254 bl 61% defN 20100101.000002 scala/runtime/RichShort.class --rw---- 2.0 fat 4606 bl 58% defN 20100101.000002 scala/runtime/ScalaNumberProxy.class --rw---- 2.0 fat 1189 bl 43% defN 20100101.000002 scala/runtime/ScalaRunTime$$anon$1.class --rw---- 2.0 fat 21860 bl 63% defN 20100101.000002 scala/runtime/ScalaRunTime$.class --rw---- 2.0 fat 8760 bl 54% defN 20100101.000002 scala/runtime/ScalaRunTime.class --rw---- 2.0 fat 1260 bl 38% defN 20100101.000002 scala/runtime/ScalaWholeNumberProxy.class --rw---- 2.0 fat 774 bl 41% defN 20100101.000002 scala/runtime/ShortRef.class --rw---- 2.0 fat 1355 bl 55% defN 20100101.000002 scala/runtime/Static.class --rw---- 2.0 fat 2948 bl 51% defN 20100101.000002 scala/runtime/Statics$VM.class --rw---- 2.0 fat 2745 bl 43% defN 20100101.000002 scala/runtime/Statics.class --rw---- 2.0 fat 1383 bl 53% defN 20100101.000002 scala/runtime/StructuralCallSite$.class --rw---- 2.0 fat 4163 bl 49% defN 20100101.000002 scala/runtime/StructuralCallSite.class --rw---- 2.0 fat 2041 bl 56% defN 20100101.000002 scala/runtime/SymbolLiteral.class --rw---- 2.0 fat 8937 bl 68% defN 20100101.000002 scala/runtime/Tuple2Zipped$.class --rw---- 2.0 fat 3627 bl 59% defN 20100101.000002 scala/runtime/Tuple2Zipped$Ops$.class --rw---- 2.0 fat 2761 bl 61% defN 20100101.000002 scala/runtime/Tuple2Zipped$Ops.class --rw---- 2.0 fat 18697 bl 54% defN 20100101.000002 scala/runtime/Tuple2Zipped.class --rw---- 2.0 fat 12201 bl 69% defN 20100101.000002 scala/runtime/Tuple3Zipped$.class --rw---- 2.0 fat 4253 bl 61% defN 20100101.000002 scala/runtime/Tuple3Zipped$Ops$.class --rw---- 2.0 fat 3341 bl 62% defN 20100101.000002 scala/runtime/Tuple3Zipped$Ops.class --rw---- 2.0 fat 23239 bl 56% defN 20100101.000002 scala/runtime/Tuple3Zipped.class --rw---- 2.0 fat 835 bl 44% defN 20100101.000002 scala/runtime/VolatileBooleanRef.class +-rw---- 2.0 fat 7656 bl 72% defN 20100101.000002 scala/collection/immutable/TreeMap$Adder.class +-rw---- 2.0 fat 7663 bl 59% defN 20100101.000002 scala/Function19.class +-rw---- 2.0 fat 766 bl 41% defN 20100101.000002 scala/runtime/IntRef.class +-rw---- 2.0 fat 7673 bl 65% defN 20100101.000002 scala/collection/ArrayOps$WithFilter.class +-rw---- 2.0 fat 767 bl 49% defN 20100101.000002 scala/math/Ordering$Float$.class +-rw---- 2.0 fat 768 bl 41% defN 20100101.000002 scala/runtime/ByteRef.class +-rw---- 2.0 fat 7698 bl 57% defN 20100101.000002 scala/collection/StrictOptimizedMapOps.class +-rw---- 2.0 fat 769 bl 27% defN 20100101.000002 scala/annotation/unspecialized.class +-rw---- 2.0 fat 769 bl 42% defN 20100101.000002 scala/Product2$.class +-rw---- 2.0 fat 769 bl 49% defN 20100101.000002 scala/collection/immutable/Queue$EmptyQueue$.class +-rw---- 2.0 fat 7703 bl 54% defN 20100101.000002 scala/collection/concurrent/RDCSS_Descriptor.class +-rw---- 2.0 fat 7710 bl 72% defN 20100101.000002 scala/collection/mutable/LinkedHashSet$.class +-rw---- 2.0 fat 773 bl 41% defN 20100101.000002 scala/runtime/CharRef.class +-rw---- 2.0 fat 774 bl 40% defN 20100101.000002 scala/runtime/FloatRef.class +-rw---- 2.0 fat 774 bl 41% defN 20100101.000002 scala/runtime/ShortRef.class +-rw---- 2.0 fat 774 bl 50% defN 20100101.000002 scala/math/Ordering$Double$.class +-rw---- 2.0 fat 7757 bl 54% defN 20100101.000002 scala/collection/immutable/SortedMapOps.class +-rw---- 2.0 fat 7764 bl 71% defN 20100101.000002 scala/collection/mutable/HashSet$.class +-rw---- 2.0 fat 7770 bl 69% defN 20100101.000002 scala/collection/immutable/TreeMap$TreeMapBuilder.class +-rw---- 2.0 fat 780 bl 31% defN 20100101.000002 scala/DummyImplicit.class +-rw---- 2.0 fat 780 bl 41% defN 20100101.000002 scala/runtime/DoubleRef.class +-rw---- 2.0 fat 7826 bl 68% defN 20100101.000002 scala/math/Ordering$Tuple6Ordering.class +-rw---- 2.0 fat 7826 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntPredicate.class +-rw---- 2.0 fat 7829 bl 68% defN 20100101.000002 scala/collection/mutable/CollisionProofHashMap$.class +-rw---- 2.0 fat 78317 bl 63% defN 20100101.000002 scala/collection/immutable/LazyList.class +-rw---- 2.0 fat 7836 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongPredicate.class +-rw---- 2.0 fat 7856 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoublePredicate.class +-rw---- 2.0 fat 7857 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntConsumer.class +-rw---- 2.0 fat 7867 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongConsumer.class +-rw---- 2.0 fat 7868 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntUnaryOperator.class +-rw---- 2.0 fat 7872 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntToLongFunction.class +-rw---- 2.0 fat 7873 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongUnaryOperator.class +-rw---- 2.0 fat 7878 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongToIntFunction.class +-rw---- 2.0 fat 7879 bl 68% defN 20100101.000002 scala/runtime/AbstractPartialFunction.class +-rw---- 2.0 fat 7883 bl 75% defN 20100101.000002 scala/collection/IterableFactory$Delegate.class +-rw---- 2.0 fat 7887 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleConsumer.class +-rw---- 2.0 fat 7894 bl 59% defN 20100101.000002 scala/Function20.class +-rw---- 2.0 fat 7896 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntToDoubleFunction.class +-rw---- 2.0 fat 7898 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleToIntFunction.class +-rw---- 2.0 fat 7899 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleUnaryOperator.class +-rw---- 2.0 fat 7899 bl 72% defN 20100101.000002 scala/collection/immutable/HashSet$.class +-rw---- 2.0 fat 7902 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleToLongFunction.class +-rw---- 2.0 fat 7906 bl 70% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongToDoubleFunction.class +-rw---- 2.0 fat 7908 bl 56% defN 20100101.000002 scala/collection/Iterator$GroupedIterator.class +-rw---- 2.0 fat 792 bl 27% defN 20100101.000002 scala/util/hashing/package.class +-rw---- 2.0 fat 794 bl 36% defN 20100101.000002 scala/util/hashing/package$.class +-rw---- 2.0 fat 795 bl 42% defN 20100101.000002 scala/runtime/BooleanRef.class +-rw---- 2.0 fat 796 bl 42% defN 20100101.000002 scala/concurrent/BatchingExecutorStatics$.class +-rw---- 2.0 fat 7978 bl 73% defN 20100101.000002 scala/collection/mutable/CheckedIndexedSeqView$Slice.class +-rw---- 2.0 fat 7989 bl 78% defN 20100101.000002 scala/sys/process/Process$.class +-rw---- 2.0 fat 798 bl 42% defN 20100101.000002 scala/Product3$.class +-rw---- 2.0 fat 798 bl 43% defN 20100101.000002 scala/collection/mutable/ArrayBufferView$$anon$2.class +-rw---- 2.0 fat 7996 bl 49% defN 20100101.000002 scala/io/BufferedSource.class +-rw---- 2.0 fat 7998 bl 62% defN 20100101.000002 scala/collection/immutable/Stream$WithFilter.class +-rw---- 2.0 fat 8018 bl 72% defN 20100101.000002 scala/collection/mutable/AbstractSet.class +-rw---- 2.0 fat 8037 bl 71% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaUnaryOperator.class +-rw---- 2.0 fat 8040 bl 71% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaFunction.class +-rw---- 2.0 fat 804 bl 42% defN 20100101.000002 scala/runtime/VolatileLongRef.class +-rw---- 2.0 fat 8063 bl 54% defN 20100101.000002 scala/collection/BuildFrom.class +-rw---- 2.0 fat 806 bl 42% defN 20100101.000002 scala/runtime/VolatileIntRef.class +-rw---- 2.0 fat 806 bl 48% defN 20100101.000002 scala/concurrent/Future$$anon$4.class -rw---- 2.0 fat 808 bl 42% defN 20100101.000002 scala/runtime/VolatileByteRef.class +-rw---- 2.0 fat 8092 bl 62% defN 20100101.000002 scala/$less$colon$less.class +-rw---- 2.0 fat 8094 bl 73% defN 20100101.000002 scala/collection/mutable/ListBuffer$.class +-rw---- 2.0 fat 811 b- 32% defN 20100101.000002 foo/TestClass.class +-rw---- 2.0 fat 811 bl 31% defN 20100101.000002 scala/collection/mutable/ReusableBuilder.class +-rw---- 2.0 fat 8126 bl 59% defN 20100101.000002 scala/Function21.class +-rw---- 2.0 fat 8137 bl 71% defN 20100101.000002 scala/collection/immutable/Set$.class -rw---- 2.0 fat 813 bl 42% defN 20100101.000002 scala/runtime/VolatileCharRef.class --rw---- 2.0 fat 820 bl 43% defN 20100101.000002 scala/runtime/VolatileDoubleRef.class -rw---- 2.0 fat 814 bl 42% defN 20100101.000002 scala/runtime/VolatileFloatRef.class --rw---- 2.0 fat 806 bl 42% defN 20100101.000002 scala/runtime/VolatileIntRef.class --rw---- 2.0 fat 804 bl 42% defN 20100101.000002 scala/runtime/VolatileLongRef.class --rw---- 2.0 fat 1292 bl 55% defN 20100101.000002 scala/runtime/VolatileObjectRef.class -rw---- 2.0 fat 814 bl 43% defN 20100101.000002 scala/runtime/VolatileShortRef.class --rw---- 2.0 fat 1122 bl 52% defN 20100101.000002 scala/runtime/ZippedIterable2$$anon$1.class --rw---- 2.0 fat 987 bl 48% defN 20100101.000002 scala/runtime/ZippedIterable2$.class --rw---- 2.0 fat 1788 bl 39% defN 20100101.000002 scala/runtime/ZippedIterable2.class --rw---- 2.0 fat 1132 bl 52% defN 20100101.000002 scala/runtime/ZippedIterable3$$anon$1.class --rw---- 2.0 fat 1019 bl 49% defN 20100101.000002 scala/runtime/ZippedIterable3$.class --rw---- 2.0 fat 1885 bl 40% defN 20100101.000002 scala/runtime/ZippedIterable3.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/runtime/java8/ --rw---- 2.0 fat 1461 bl 39% defN 20100101.000002 scala/runtime/java8/JFunction0$mcB$sp.class --rw---- 2.0 fat 1471 bl 39% defN 20100101.000002 scala/runtime/java8/JFunction0$mcC$sp.class --rw---- 2.0 fat 1467 bl 39% defN 20100101.000002 scala/runtime/java8/JFunction0$mcD$sp.class --rw---- 2.0 fat 1464 bl 39% defN 20100101.000002 scala/runtime/java8/JFunction0$mcF$sp.class --rw---- 2.0 fat 1466 bl 39% defN 20100101.000002 scala/runtime/java8/JFunction0$mcI$sp.class --rw---- 2.0 fat 1461 bl 39% defN 20100101.000002 scala/runtime/java8/JFunction0$mcJ$sp.class --rw---- 2.0 fat 1464 bl 39% defN 20100101.000002 scala/runtime/java8/JFunction0$mcS$sp.class --rw---- 2.0 fat 1457 bl 40% defN 20100101.000002 scala/runtime/java8/JFunction0$mcV$sp.class --rw---- 2.0 fat 1470 bl 39% defN 20100101.000002 scala/runtime/java8/JFunction0$mcZ$sp.class --rw---- 2.0 fat 1721 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcDD$sp.class --rw---- 2.0 fat 1737 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcDF$sp.class --rw---- 2.0 fat 1733 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcDI$sp.class --rw---- 2.0 fat 1735 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcDJ$sp.class --rw---- 2.0 fat 1736 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcFD$sp.class --rw---- 2.0 fat 1717 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcFF$sp.class --rw---- 2.0 fat 1730 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcFI$sp.class --rw---- 2.0 fat 1732 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcFJ$sp.class --rw---- 2.0 fat 1738 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcID$sp.class --rw---- 2.0 fat 1736 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcIF$sp.class --rw---- 2.0 fat 1716 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcII$sp.class --rw---- 2.0 fat 1733 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcIJ$sp.class --rw---- 2.0 fat 1733 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcJD$sp.class --rw---- 2.0 fat 1731 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcJF$sp.class --rw---- 2.0 fat 1726 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcJI$sp.class --rw---- 2.0 fat 1713 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcJJ$sp.class --rw---- 2.0 fat 1733 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcVD$sp.class --rw---- 2.0 fat 1731 bl 42% defN 20100101.000002 scala/runtime/java8/JFunction1$mcVF$sp.class --rw---- 2.0 fat 1726 bl 42% defN 20100101.000002 scala/runtime/java8/JFunction1$mcVI$sp.class --rw---- 2.0 fat 1729 bl 42% defN 20100101.000002 scala/runtime/java8/JFunction1$mcVJ$sp.class --rw---- 2.0 fat 1742 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcZD$sp.class --rw---- 2.0 fat 1740 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcZF$sp.class --rw---- 2.0 fat 1736 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcZI$sp.class --rw---- 2.0 fat 1738 bl 41% defN 20100101.000002 scala/runtime/java8/JFunction1$mcZJ$sp.class --rw---- 2.0 fat 1843 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcDDD$sp.class --rw---- 2.0 fat 1905 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcDDI$sp.class --rw---- 2.0 fat 1907 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcDDJ$sp.class --rw---- 2.0 fat 1905 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcDID$sp.class --rw---- 2.0 fat 1855 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcDII$sp.class --rw---- 2.0 fat 1919 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcDIJ$sp.class --rw---- 2.0 fat 1907 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcDJD$sp.class --rw---- 2.0 fat 1919 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcDJI$sp.class --rw---- 2.0 fat 1857 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcDJJ$sp.class --rw---- 2.0 fat 1858 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcFDD$sp.class --rw---- 2.0 fat 1920 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcFDI$sp.class --rw---- 2.0 fat 1922 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcFDJ$sp.class --rw---- 2.0 fat 1920 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcFID$sp.class --rw---- 2.0 fat 1851 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcFII$sp.class --rw---- 2.0 fat 1915 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcFIJ$sp.class --rw---- 2.0 fat 1922 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcFJD$sp.class --rw---- 2.0 fat 1915 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcFJI$sp.class --rw---- 2.0 fat 1854 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcFJJ$sp.class --rw---- 2.0 fat 1860 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcIDD$sp.class --rw---- 2.0 fat 1907 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcIDI$sp.class --rw---- 2.0 fat 1924 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcIDJ$sp.class --rw---- 2.0 fat 1907 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcIID$sp.class --rw---- 2.0 fat 1838 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcIII$sp.class --rw---- 2.0 fat 1902 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcIIJ$sp.class --rw---- 2.0 fat 1924 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcIJD$sp.class --rw---- 2.0 fat 1902 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcIJI$sp.class --rw---- 2.0 fat 1855 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcIJJ$sp.class --rw---- 2.0 fat 1855 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcJDD$sp.class --rw---- 2.0 fat 1917 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcJDI$sp.class --rw---- 2.0 fat 1903 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcJDJ$sp.class --rw---- 2.0 fat 1917 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcJID$sp.class --rw---- 2.0 fat 1848 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcJII$sp.class --rw---- 2.0 fat 1896 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcJIJ$sp.class --rw---- 2.0 fat 1903 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcJJD$sp.class --rw---- 2.0 fat 1896 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcJJI$sp.class --rw---- 2.0 fat 1834 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcJJJ$sp.class --rw---- 2.0 fat 1855 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcVDD$sp.class --rw---- 2.0 fat 1917 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcVDI$sp.class --rw---- 2.0 fat 1919 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcVDJ$sp.class --rw---- 2.0 fat 1917 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcVID$sp.class --rw---- 2.0 fat 1848 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcVII$sp.class --rw---- 2.0 fat 1912 bl 45% defN 20100101.000002 scala/runtime/java8/JFunction2$mcVIJ$sp.class --rw---- 2.0 fat 1919 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcVJD$sp.class --rw---- 2.0 fat 1912 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcVJI$sp.class --rw---- 2.0 fat 1850 bl 44% defN 20100101.000002 scala/runtime/java8/JFunction2$mcVJJ$sp.class --rw---- 2.0 fat 1864 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcZDD$sp.class --rw---- 2.0 fat 1926 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcZDI$sp.class --rw---- 2.0 fat 1928 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcZDJ$sp.class --rw---- 2.0 fat 1926 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcZID$sp.class --rw---- 2.0 fat 1858 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcZII$sp.class --rw---- 2.0 fat 1922 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcZIJ$sp.class --rw---- 2.0 fat 1928 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcZJD$sp.class --rw---- 2.0 fat 1922 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcZJI$sp.class --rw---- 2.0 fat 1860 bl 43% defN 20100101.000002 scala/runtime/java8/JFunction2$mcZJJ$sp.class --rw---- 2.0 fat 1686 bl 44% defN 20100101.000002 scala/specialized.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/sys/ --rw---- 2.0 fat 3198 bl 57% defN 20100101.000002 scala/sys/BooleanProp$.class --rw---- 2.0 fat 1754 bl 52% defN 20100101.000002 scala/sys/BooleanProp$BooleanPropImpl.class --rw---- 2.0 fat 2457 bl 58% defN 20100101.000002 scala/sys/BooleanProp$ConstantImpl.class --rw---- 2.0 fat 2705 bl 37% defN 20100101.000002 scala/sys/BooleanProp.class --rw---- 2.0 fat 1487 bl 39% defN 20100101.000002 scala/sys/CreatorImpl.class --rw---- 2.0 fat 914 bl 45% defN 20100101.000002 scala/sys/Prop$.class --rw---- 2.0 fat 422 bl 38% defN 20100101.000002 scala/sys/Prop$Creator.class --rw---- 2.0 fat 1225 bl 47% defN 20100101.000002 scala/sys/Prop$DoubleProp$$anonfun$$lessinit$greater$4.class --rw---- 2.0 fat 666 bl 37% defN 20100101.000002 scala/sys/Prop$DoubleProp$.class --rw---- 2.0 fat 1151 bl 48% defN 20100101.000002 scala/sys/Prop$FileProp$$anonfun$$lessinit$greater$1.class --rw---- 2.0 fat 654 bl 37% defN 20100101.000002 scala/sys/Prop$FileProp$.class --rw---- 2.0 fat 1213 bl 46% defN 20100101.000002 scala/sys/Prop$IntProp$$anonfun$$lessinit$greater$3.class --rw---- 2.0 fat 654 bl 36% defN 20100101.000002 scala/sys/Prop$IntProp$.class --rw---- 2.0 fat 1108 bl 48% defN 20100101.000002 scala/sys/Prop$StringProp$$anonfun$$lessinit$greater$2.class --rw---- 2.0 fat 666 bl 37% defN 20100101.000002 scala/sys/Prop$StringProp$.class --rw---- 2.0 fat 2717 bl 36% defN 20100101.000002 scala/sys/Prop.class --rw---- 2.0 fat 5793 bl 49% defN 20100101.000002 scala/sys/PropImpl.class --rw---- 2.0 fat 2032 bl 50% defN 20100101.000002 scala/sys/ShutdownHookThread$.class --rw---- 2.0 fat 1691 bl 37% defN 20100101.000002 scala/sys/ShutdownHookThread.class --rw---- 2.0 fat 3444 bl 57% defN 20100101.000002 scala/sys/SystemProperties$.class --rw---- 2.0 fat 11848 bl 56% defN 20100101.000002 scala/sys/SystemProperties.class --rw---- 2.0 fat 4480 bl 57% defN 20100101.000002 scala/sys/package$.class --rw---- 2.0 fat 2106 bl 41% defN 20100101.000002 scala/sys/package.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/sys/process/ --rw---- 2.0 fat 13358 bl 63% defN 20100101.000002 scala/sys/process/BasicIO$.class --rw---- 2.0 fat 5304 bl 56% defN 20100101.000002 scala/sys/process/BasicIO$LazilyListed$.class --rw---- 2.0 fat 1611 bl 61% defN 20100101.000002 scala/sys/process/BasicIO$LazilyListed.class --rw---- 2.0 fat 5191 bl 57% defN 20100101.000002 scala/sys/process/BasicIO$Streamed$.class --rw---- 2.0 fat 1607 bl 60% defN 20100101.000002 scala/sys/process/BasicIO$Streamed.class +-rw---- 2.0 fat 8156 bl 49% defN 20100101.000002 scala/Long.class +-rw---- 2.0 fat 817 bl 48% defN 20100101.000002 scala/concurrent/ExecutionContext$Implicits$.class +-rw---- 2.0 fat 820 bl 43% defN 20100101.000002 scala/runtime/VolatileDoubleRef.class +-rw---- 2.0 fat 8210 bl 71% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaPredicate.class +-rw---- 2.0 fat 8210 bl 80% defN 20100101.000002 scala/collection/convert/StreamExtensions$StreamShape$.class +-rw---- 2.0 fat 8225 bl 71% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaIntFunction.class +-rw---- 2.0 fat 8234 bl 71% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaConsumer.class +-rw---- 2.0 fat 823 bl 46% defN 20100101.000002 scala/sys/process/ProcessImpl$BasicProcess.class +-rw---- 2.0 fat 8250 bl 62% defN 20100101.000002 scala/collection/convert/impl/IntBinaryTreeStepper.class +-rw---- 2.0 fat 8254 bl 53% defN 20100101.000002 scala/Tuple5.class +-rw---- 2.0 fat 825 bl 21% defN 20100101.000002 scala/DelayedInit.class +-rw---- 2.0 fat 8265 bl 71% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaLongFunction.class +-rw---- 2.0 fat 826 bl 49% defN 20100101.000002 scala/collection/AnyStepper$$anon$4.class +-rw---- 2.0 fat 827 bl 41% defN 20100101.000002 scala/util/Random$.class +-rw---- 2.0 fat 827 bl 44% defN 20100101.000002 scala/Product4$.class +-rw---- 2.0 fat 8285 bl 73% defN 20100101.000002 scala/collection/mutable/Queue$.class +-rw---- 2.0 fat 8285 bl 73% defN 20100101.000002 scala/collection/mutable/Stack$.class +-rw---- 2.0 fat 8289 bl 55% defN 20100101.000002 scala/collection/LazyZip3.class +-rw---- 2.0 fat 8293 bl 62% defN 20100101.000002 scala/collection/convert/impl/LongBinaryTreeStepper.class +-rw---- 2.0 fat 8297 bl 71% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaDoubleFunction.class +-rw---- 2.0 fat 8300 bl 71% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaToIntFunction.class +-rw---- 2.0 fat 8310 bl 71% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaToLongFunction.class +-rw---- 2.0 fat 8329 bl 75% defN 20100101.000002 scala/collection/ClassTagIterableFactory$AnyIterableDelegate.class +-rw---- 2.0 fat 832 bl 50% defN 20100101.000002 scala/collection/AnyStepper$$anon$5.class +-rw---- 2.0 fat 8337 bl 70% defN 20100101.000002 scala/reflect/Manifest$.class +-rw---- 2.0 fat 8340 bl 64% defN 20100101.000002 scala/math/BigDecimal$.class +-rw---- 2.0 fat 8346 bl 71% defN 20100101.000002 scala/jdk/FunctionWrappers$FromJavaToDoubleFunction.class +-rw---- 2.0 fat 8356 bl 59% defN 20100101.000002 scala/Function22.class +-rw---- 2.0 fat 8356 bl 62% defN 20100101.000002 scala/collection/convert/impl/DoubleBinaryTreeStepper.class +-rw---- 2.0 fat 835 bl 44% defN 20100101.000002 scala/runtime/VolatileBooleanRef.class +-rw---- 2.0 fat 8361 bl 73% defN 20100101.000002 scala/PartialFunction$AndThen.class +-rw---- 2.0 fat 8372 bl 68% defN 20100101.000002 scala/math/Ordering$Tuple7Ordering.class +-rw---- 2.0 fat 8372 bl 69% defN 20100101.000002 scala/collection/immutable/HashMap$accum$1.class +-rw---- 2.0 fat 8373 bl 67% defN 20100101.000002 scala/collection/immutable/TreeSeqMap$Builder.class +-rw---- 2.0 fat 837 bl 30% defN 20100101.000002 scala/annotation/implicitNotFound.class +-rw---- 2.0 fat 8380 bl 66% defN 20100101.000002 scala/collection/mutable/Iterable.class +-rw---- 2.0 fat 8383 bl 66% defN 20100101.000002 scala/collection/mutable/Set.class +-rw---- 2.0 fat 8385 bl 50% defN 20100101.000002 scala/Short.class +-rw---- 2.0 fat 8391 bl 49% defN 20100101.000002 scala/Char.class +-rw---- 2.0 fat 841 bl 45% defN 20100101.000002 scala/collection/JavaConverters$AsJava.class +-rw---- 2.0 fat 8420 bl 49% defN 20100101.000002 scala/Int.class +-rw---- 2.0 fat 844 bl 50% defN 20100101.000002 scala/collection/AnyStepper$$anon$3.class +-rw---- 2.0 fat 845 bl 45% defN 20100101.000002 scala/collection/JavaConverters$AsScala.class +-rw---- 2.0 fat 8468 bl 65% defN 20100101.000002 scala/collection/mutable/AnyRefMap$.class +-rw---- 2.0 fat 846 b- 38% defN 20100101.000002 foo/TestBinary$.class +-rw---- 2.0 fat 846 bl 42% defN 20100101.000002 scala/reflect/NoManifest$.class +-rw---- 2.0 fat 8474 bl 59% defN 20100101.000002 scala/collection/immutable/ListMapBuilder.class +-rw---- 2.0 fat 8481 bl 55% defN 20100101.000002 scala/collection/LazyZip4.class +-rw---- 2.0 fat 8519 bl 50% defN 20100101.000002 scala/Byte.class +-rw---- 2.0 fat 8529 bl 65% defN 20100101.000002 scala/collection/mutable/TreeMap$TreeMapProjection.class +-rw---- 2.0 fat 8566 bl 56% defN 20100101.000002 scala/jdk/AnyAccumulatorStepper.class +-rw---- 2.0 fat 856 bl 45% defN 20100101.000002 scala/Product5$.class +-rw---- 2.0 fat 8574 bl 62% defN 20100101.000002 scala/collection/immutable/MapBuilderImpl.class +-rw---- 2.0 fat 85753 bl 69% defN 20100101.000002 scala/collection/ArrayOps$.class +-rw---- 2.0 fat 8577 bl 56% defN 20100101.000002 scala/collection/StrictOptimizedSortedMapOps.class +-rw---- 2.0 fat 8578 bl 66% defN 20100101.000002 scala/collection/mutable/Seq.class +-rw---- 2.0 fat 857 bl 45% defN 20100101.000002 scala/collection/SortedSetOps$.class +-rw---- 2.0 fat 858 bl 30% defN 20100101.000002 scala/NotImplementedError.class +-rw---- 2.0 fat 8591 bl 49% defN 20100101.000002 scala/io/Codec.class +-rw---- 2.0 fat 8600 bl 40% defN 20100101.000002 scala/package.class +-rw---- 2.0 fat 8600 bl 57% defN 20100101.000002 scala/jdk/IntAccumulatorStepper.class +-rw---- 2.0 fat 8615 bl 73% defN 20100101.000002 scala/util/control/Exception$Catch$$anon$2.class +-rw---- 2.0 fat 8627 bl 57% defN 20100101.000002 scala/jdk/LongAccumulatorStepper.class +-rw---- 2.0 fat 862 bl 25% defN 20100101.000002 scala/beans/BeanProperty.class +-rw---- 2.0 fat 8634 bl 75% defN 20100101.000002 scala/collection/mutable/AbstractBuffer.class +-rw---- 2.0 fat 866 bl 44% defN 20100101.000002 scala/collection/mutable/StringBuilder$.class +-rw---- 2.0 fat 8675 bl 62% defN 20100101.000002 scala/collection/immutable/ListMap$Node.class +-rw---- 2.0 fat 867 bl 26% defN 20100101.000002 scala/SerialVersionUID.class +-rw---- 2.0 fat 8691 bl 66% defN 20100101.000002 scala/collection/mutable/IndexedSeq.class +-rw---- 2.0 fat 8724 bl 57% defN 20100101.000002 scala/jdk/DoubleAccumulatorStepper.class +-rw---- 2.0 fat 872 bl 57% defN 20100101.000002 scala/sys/process/ProcessBuilder$FileBuilder.class +-rw---- 2.0 fat 8734 bl 64% defN 20100101.000002 scala/collection/mutable/LongMap$.class +-rw---- 2.0 fat 8744 bl 51% defN 20100101.000002 scala/collection/mutable/ArrayDequeOps.class +-rw---- 2.0 fat 874 bl 45% defN 20100101.000002 scala/util/DynamicVariable$$anon$1.class +-rw---- 2.0 fat 8760 bl 54% defN 20100101.000002 scala/runtime/ScalaRunTime.class +-rw---- 2.0 fat 8767 bl 67% defN 20100101.000002 scala/collection/convert/ToScalaImplicits.class +-rw---- 2.0 fat 8782 bl 73% defN 20100101.000002 scala/collection/immutable/List$.class +-rw---- 2.0 fat 878 bl 30% defN 20100101.000002 scala/annotation/implicitAmbiguous.class +-rw---- 2.0 fat 8793 bl 69% defN 20100101.000002 scala/math/Ordering$Tuple8Ordering.class +-rw---- 2.0 fat 879 bl 50% defN 20100101.000002 scala/jdk/DurationConverters$.class +-rw---- 2.0 fat 881 bl 43% defN 20100101.000002 scala/Boolean$.class +-rw---- 2.0 fat 8828 bl 65% defN 20100101.000002 scala/collection/LinearSeq.class +-rw---- 2.0 fat 8837 bl 65% defN 20100101.000002 scala/collection/immutable/Iterable.class +-rw---- 2.0 fat 883 bl 48% defN 20100101.000002 scala/math/Ordering$IntOrdering.class +-rw---- 2.0 fat 8846 bl 65% defN 20100101.000002 scala/collection/IndexedSeq.class +-rw---- 2.0 fat 884 bl 45% defN 20100101.000002 scala/util/package$chaining$.class +-rw---- 2.0 fat 885 bl 46% defN 20100101.000002 scala/Product6$.class +-rw---- 2.0 fat 885 bl 48% defN 20100101.000002 scala/math/Ordering$ByteOrdering.class +-rw---- 2.0 fat 885 bl 48% defN 20100101.000002 scala/math/Ordering$LongOrdering.class +-rw---- 2.0 fat 8869 bl 48% defN 20100101.000002 scala/StringContext.class +-rw---- 2.0 fat 8875 bl 62% defN 20100101.000002 scala/jdk/Priority1FunctionExtensions.class +-rw---- 2.0 fat 8884 bl 57% defN 20100101.000002 scala/io/StdIn.class +-rw---- 2.0 fat 890 bl 48% defN 20100101.000002 scala/math/Ordering$CharOrdering.class +-rw---- 2.0 fat 891 bl 26% defN 20100101.000002 scala/beans/BooleanBeanProperty.class +-rw---- 2.0 fat 891 bl 45% defN 20100101.000002 scala/collection/immutable/LazyList$State$.class +-rw---- 2.0 fat 891 bl 48% defN 20100101.000002 scala/math/Ordering$ShortOrdering.class +-rw---- 2.0 fat 8924 bl 54% defN 20100101.000002 scala/reflect/ClassManifestFactory.class +-rw---- 2.0 fat 8940 bl 68% defN 20100101.000002 scala/runtime/Tuple2Zipped$.class +-rw---- 2.0 fat 894 bl 30% defN 20100101.000002 scala/annotation/migration.class +-rw---- 2.0 fat 894 bl 46% defN 20100101.000002 scala/math/Ordered$.class +-rw---- 2.0 fat 8974 bl 45% defN 20100101.000002 scala/collection/immutable/NewVectorIterator.class +-rw---- 2.0 fat 9027 bl 66% defN 20100101.000002 scala/collection/immutable/LinearSeq.class +-rw---- 2.0 fat 903 bl 48% defN 20100101.000002 scala/math/Ordering$BooleanOrdering.class +-rw---- 2.0 fat 9041 bl 73% defN 20100101.000002 scala/math/package$.class +-rw---- 2.0 fat 904 bl 46% defN 20100101.000002 scala/util/control/Exception$By.class -rw---- 2.0 fat 904 bl 49% defN 20100101.000002 scala/sys/process/BasicIO$Uncloseable$$anon$1.class +-rw---- 2.0 fat 907 bl 43% defN 20100101.000002 scala/math/Numeric$.class -rw---- 2.0 fat 910 bl 49% defN 20100101.000002 scala/sys/process/BasicIO$Uncloseable$$anon$2.class --rw---- 2.0 fat 1519 bl 53% defN 20100101.000002 scala/sys/process/BasicIO$Uncloseable$.class --rw---- 2.0 fat 690 bl 47% defN 20100101.000002 scala/sys/process/BasicIO$Uncloseable.class --rw---- 2.0 fat 7116 bl 47% defN 20100101.000002 scala/sys/process/BasicIO.class --rw---- 2.0 fat 2394 bl 42% defN 20100101.000002 scala/sys/process/FileProcessLogger.class --rw---- 2.0 fat 14219 bl 60% defN 20100101.000002 scala/sys/process/Parser$.class --rw---- 2.0 fat 531 bl 39% defN 20100101.000002 scala/sys/process/Parser$ParseException.class --rw---- 2.0 fat 1635 bl 37% defN 20100101.000002 scala/sys/process/Parser.class --rw---- 2.0 fat 7989 bl 78% defN 20100101.000002 scala/sys/process/Process$.class --rw---- 2.0 fat 7592 bl 73% defN 20100101.000002 scala/sys/process/Process.class --rw---- 2.0 fat 494 bl 36% defN 20100101.000002 scala/sys/process/ProcessBuilder$.class --rw---- 2.0 fat 872 bl 57% defN 20100101.000002 scala/sys/process/ProcessBuilder$FileBuilder.class --rw---- 2.0 fat 3044 bl 69% defN 20100101.000002 scala/sys/process/ProcessBuilder$Sink.class --rw---- 2.0 fat 3251 bl 68% defN 20100101.000002 scala/sys/process/ProcessBuilder$Source.class --rw---- 2.0 fat 327 bl 39% defN 20100101.000002 scala/sys/process/ProcessBuilder$URLBuilder.class --rw---- 2.0 fat 6160 bl 51% defN 20100101.000002 scala/sys/process/ProcessBuilder.class --rw---- 2.0 fat 17228 bl 70% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$AbstractBuilder.class --rw---- 2.0 fat 1986 bl 63% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$AndBuilder.class --rw---- 2.0 fat 2311 bl 56% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$BasicBuilder.class --rw---- 2.0 fat 1342 bl 59% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$DaemonBuilder.class --rw---- 2.0 fat 1774 bl 59% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$Dummy.class --rw---- 2.0 fat 5070 bl 72% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$FileImpl.class --rw---- 2.0 fat 1305 bl 51% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$FileInput$$anonfun$$lessinit$greater$2.class --rw---- 2.0 fat 1133 bl 53% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$FileInput.class --rw---- 2.0 fat 1370 bl 51% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$FileOutput$$anonfun$$lessinit$greater$3.class --rw---- 2.0 fat 1167 bl 53% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$FileOutput.class --rw---- 2.0 fat 2029 bl 55% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$IStreamBuilder$$anonfun$$lessinit$greater$5.class --rw---- 2.0 fat 1383 bl 57% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$IStreamBuilder.class --rw---- 2.0 fat 2029 bl 55% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$OStreamBuilder$$anonfun$$lessinit$greater$4.class --rw---- 2.0 fat 1384 bl 57% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$OStreamBuilder.class --rw---- 2.0 fat 1979 bl 63% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$OrBuilder.class --rw---- 2.0 fat 2268 bl 62% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$PipedBuilder.class --rw---- 2.0 fat 2021 bl 64% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$SequenceBuilder.class --rw---- 2.0 fat 1633 bl 56% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$SequentialBuilder.class --rw---- 2.0 fat 5900 bl 59% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$Simple.class --rw---- 2.0 fat 4657 bl 59% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$ThreadBuilder.class --rw---- 2.0 fat 2714 bl 67% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$URLImpl.class --rw---- 2.0 fat 1270 bl 49% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$URLInput$$anonfun$$lessinit$greater$1.class --rw---- 2.0 fat 1120 bl 53% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl$URLInput.class --rw---- 2.0 fat 7314 bl 37% defN 20100101.000002 scala/sys/process/ProcessBuilderImpl.class --rw---- 2.0 fat 14736 bl 67% defN 20100101.000002 scala/sys/process/ProcessCreation.class --rw---- 2.0 fat 3560 bl 56% defN 20100101.000002 scala/sys/process/ProcessIO.class --rw---- 2.0 fat 1503 bl 52% defN 20100101.000002 scala/sys/process/ProcessImpl$AndProcess$$anonfun$$lessinit$greater$1.class --rw---- 2.0 fat 1283 bl 59% defN 20100101.000002 scala/sys/process/ProcessImpl$AndProcess.class --rw---- 2.0 fat 823 bl 46% defN 20100101.000002 scala/sys/process/ProcessImpl$BasicProcess.class +-rw---- 2.0 fat 913 bl 50% defN 20100101.000002 scala/io/Codec$$anon$1.class +-rw---- 2.0 fat 9142 bl 78% defN 20100101.000002 scala/jdk/CollectionConverters.class +-rw---- 2.0 fat 914 bl 45% defN 20100101.000002 scala/sys/Prop$.class +-rw---- 2.0 fat 914 bl 47% defN 20100101.000002 scala/Product7$.class +-rw---- 2.0 fat 915 bl 43% defN 20100101.000002 scala/math/Integral$.class +-rw---- 2.0 fat 916 bl 46% defN 20100101.000002 scala/concurrent/Future$$anon$2.class +-rw---- 2.0 fat 9183 bl 73% defN 20100101.000002 scala/PartialFunction$$anon$1.class +-rw---- 2.0 fat 91865 bl 63% defN 20100101.000002 scala/collection/StringOps.class +-rw---- 2.0 fat 9199 bl 62% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JConcurrentMapWrapper.class +-rw---- 2.0 fat 919 bl 47% defN 20100101.000002 scala/math/Equiv$Float$IeeeEquiv.class +-rw---- 2.0 fat 9214 bl 68% defN 20100101.000002 scala/concurrent/BatchingExecutor$AsyncBatch.class +-rw---- 2.0 fat 921 bl 46% defN 20100101.000002 scala/concurrent/Future$$anon$3.class +-rw---- 2.0 fat 9246 bl 69% defN 20100101.000002 scala/reflect/ClassManifestFactory$.class +-rw---- 2.0 fat 9258 bl 55% defN 20100101.000002 scala/Tuple6.class +-rw---- 2.0 fat 925 bl 47% defN 20100101.000002 scala/math/Equiv$Double$IeeeEquiv.class +-rw---- 2.0 fat 9271 bl 52% defN 20100101.000002 scala/concurrent/duration/Duration.class +-rw---- 2.0 fat 9272 bl 66% defN 20100101.000002 scala/collection/immutable/Seq.class +-rw---- 2.0 fat 927 bl 45% defN 20100101.000002 scala/Unit$.class +-rw---- 2.0 fat 9281 bl 69% defN 20100101.000002 scala/math/Ordering$Tuple9Ordering.class +-rw---- 2.0 fat 931 bl 46% defN 20100101.000002 scala/collection/SeqMap$.class +-rw---- 2.0 fat 932 bl 44% defN 20100101.000002 scala/math/Fractional$.class -rw---- 2.0 fat 9338 bl 59% defN 20100101.000002 scala/sys/process/ProcessImpl$CompoundProcess.class --rw---- 2.0 fat 1968 bl 51% defN 20100101.000002 scala/sys/process/ProcessImpl$DummyProcess.class --rw---- 2.0 fat 4277 bl 54% defN 20100101.000002 scala/sys/process/ProcessImpl$Future$.class --rw---- 2.0 fat 1499 bl 51% defN 20100101.000002 scala/sys/process/ProcessImpl$OrProcess$$anonfun$$lessinit$greater$2.class --rw---- 2.0 fat 1278 bl 59% defN 20100101.000002 scala/sys/process/ProcessImpl$OrProcess.class --rw---- 2.0 fat 4806 bl 55% defN 20100101.000002 scala/sys/process/ProcessImpl$PipeSink.class --rw---- 2.0 fat 4924 bl 56% defN 20100101.000002 scala/sys/process/ProcessImpl$PipeSource.class --rw---- 2.0 fat 3722 bl 55% defN 20100101.000002 scala/sys/process/ProcessImpl$PipeThread.class --rw---- 2.0 fat 10503 bl 65% defN 20100101.000002 scala/sys/process/ProcessImpl$PipedProcesses.class --rw---- 2.0 fat 1589 bl 54% defN 20100101.000002 scala/sys/process/ProcessImpl$ProcessSequence$$anonfun$$lessinit$greater$3.class --rw---- 2.0 fat 1308 bl 60% defN 20100101.000002 scala/sys/process/ProcessImpl$ProcessSequence.class --rw---- 2.0 fat 4587 bl 60% defN 20100101.000002 scala/sys/process/ProcessImpl$SequentialProcess.class --rw---- 2.0 fat 2754 bl 55% defN 20100101.000002 scala/sys/process/ProcessImpl$SimpleProcess.class +-rw---- 2.0 fat 935 bl 46% defN 20100101.000002 scala/collection/View$$anon$1.class +-rw---- 2.0 fat 9367 bl 68% defN 20100101.000002 scala/collection/convert/AsScalaConverters.class -rw---- 2.0 fat 936 bl 47% defN 20100101.000002 scala/sys/process/ProcessImpl$Spawn$$anon$1.class --rw---- 2.0 fat 1533 bl 49% defN 20100101.000002 scala/sys/process/ProcessImpl$Spawn$.class --rw---- 2.0 fat 1505 bl 53% defN 20100101.000002 scala/sys/process/ProcessImpl$ThreadProcess.class --rw---- 2.0 fat 5974 bl 35% defN 20100101.000002 scala/sys/process/ProcessImpl.class --rw---- 2.0 fat 5923 bl 61% defN 20100101.000002 scala/sys/process/ProcessImplicits.class --rw---- 2.0 fat 1423 bl 55% defN 20100101.000002 scala/sys/process/ProcessLogger$$anon$1.class --rw---- 2.0 fat 1496 bl 57% defN 20100101.000002 scala/sys/process/ProcessLogger$.class --rw---- 2.0 fat 2338 bl 47% defN 20100101.000002 scala/sys/process/ProcessLogger.class --rw---- 2.0 fat 3418 bl 68% defN 20100101.000002 scala/sys/process/package$.class --rw---- 2.0 fat 2532 bl 56% defN 20100101.000002 scala/sys/process/package.class --rw---- 2.0 fat 1856 bl 52% defN 20100101.000002 scala/sys/process/processInternal$$anonfun$ioFailure$1.class --rw---- 2.0 fat 1754 bl 53% defN 20100101.000002 scala/sys/process/processInternal$$anonfun$onError$1.class --rw---- 2.0 fat 1947 bl 53% defN 20100101.000002 scala/sys/process/processInternal$$anonfun$onIOInterrupt$1.class --rw---- 2.0 fat 1941 bl 53% defN 20100101.000002 scala/sys/process/processInternal$$anonfun$onInterrupt$1.class --rw---- 2.0 fat 3186 bl 57% defN 20100101.000002 scala/sys/process/processInternal$.class --rw---- 2.0 fat 3021 bl 38% defN 20100101.000002 scala/sys/process/processInternal.class --rw---- 2.0 fat 589 bl 37% defN 20100101.000002 scala/throws$.class --rw---- 2.0 fat 1622 bl 35% defN 20100101.000002 scala/throws.class --rw---- 2.0 fat 641 bl 28% defN 20100101.000002 scala/transient.class --rw---- 2.0 fat 533 bl 26% defN 20100101.000002 scala/unchecked.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/util/ --rw---- 2.0 fat 1697 bl 53% defN 20100101.000002 scala/util/ChainingOps$.class --rw---- 2.0 fat 3420 bl 47% defN 20100101.000002 scala/util/ChainingOps.class --rw---- 2.0 fat 1183 bl 40% defN 20100101.000002 scala/util/ChainingSyntax.class --rw---- 2.0 fat 874 bl 45% defN 20100101.000002 scala/util/DynamicVariable$$anon$1.class --rw---- 2.0 fat 2682 bl 41% defN 20100101.000002 scala/util/DynamicVariable.class --rw---- 2.0 fat 1440 bl 49% defN 20100101.000002 scala/util/Either$.class --rw---- 2.0 fat 1761 bl 55% defN 20100101.000002 scala/util/Either$LeftProjection$.class --rw---- 2.0 fat 6703 bl 63% defN 20100101.000002 scala/util/Either$LeftProjection.class --rw---- 2.0 fat 1766 bl 52% defN 20100101.000002 scala/util/Either$MergeableEither$.class --rw---- 2.0 fat 1501 bl 55% defN 20100101.000002 scala/util/Either$MergeableEither.class --rw---- 2.0 fat 1771 bl 55% defN 20100101.000002 scala/util/Either$RightProjection$.class --rw---- 2.0 fat 6718 bl 63% defN 20100101.000002 scala/util/Either$RightProjection.class --rw---- 2.0 fat 15143 bl 47% defN 20100101.000002 scala/util/Either.class --rw---- 2.0 fat 1517 bl 51% defN 20100101.000002 scala/util/Failure$.class --rw---- 2.0 fat 11548 bl 54% defN 20100101.000002 scala/util/Failure.class --rw---- 2.0 fat 1435 bl 49% defN 20100101.000002 scala/util/Left$.class --rw---- 2.0 fat 4976 bl 47% defN 20100101.000002 scala/util/Left.class --rw---- 2.0 fat 10235 bl 73% defN 20100101.000002 scala/util/Properties$.class --rw---- 2.0 fat 5463 bl 61% defN 20100101.000002 scala/util/Properties.class --rw---- 2.0 fat 25379 bl 61% defN 20100101.000002 scala/util/PropertiesTrait.class --rw---- 2.0 fat 827 bl 41% defN 20100101.000002 scala/util/Random$.class --rw---- 2.0 fat 11510 bl 48% defN 20100101.000002 scala/util/Random.class --rw---- 2.0 fat 1444 bl 49% defN 20100101.000002 scala/util/Right$.class --rw---- 2.0 fat 4985 bl 47% defN 20100101.000002 scala/util/Right.class --rw---- 2.0 fat 33858 bl 72% defN 20100101.000002 scala/util/Sorting$.class --rw---- 2.0 fat 4992 bl 43% defN 20100101.000002 scala/util/Sorting.class --rw---- 2.0 fat 1413 bl 49% defN 20100101.000002 scala/util/Success$.class --rw---- 2.0 fat 12177 bl 53% defN 20100101.000002 scala/util/Success.class --rw---- 2.0 fat 1389 bl 43% defN 20100101.000002 scala/util/Try$.class --rw---- 2.0 fat 3192 bl 61% defN 20100101.000002 scala/util/Try$WithFilter.class --rw---- 2.0 fat 6915 bl 51% defN 20100101.000002 scala/util/Try.class --rw---- 2.0 fat 20685 bl 68% defN 20100101.000002 scala/util/Using$.class --rw---- 2.0 fat 1652 bl 47% defN 20100101.000002 scala/util/Using$Manager$.class --rw---- 2.0 fat 1034 bl 50% defN 20100101.000002 scala/util/Using$Manager$Resource.class --rw---- 2.0 fat 3429 bl 53% defN 20100101.000002 scala/util/Using$Manager.class --rw---- 2.0 fat 591 bl 40% defN 20100101.000002 scala/util/Using$Releasable$.class --rw---- 2.0 fat 1151 bl 51% defN 20100101.000002 scala/util/Using$Releasable$AutoCloseableIsReleasable$.class --rw---- 2.0 fat 390 bl 36% defN 20100101.000002 scala/util/Using$Releasable.class --rw---- 2.0 fat 6229 bl 50% defN 20100101.000002 scala/util/Using.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/util/control/ --rw---- 2.0 fat 585 bl 26% defN 20100101.000002 scala/util/control/BreakControl.class --rw---- 2.0 fat 1375 bl 48% defN 20100101.000002 scala/util/control/Breaks$$anon$1.class --rw---- 2.0 fat 433 bl 35% defN 20100101.000002 scala/util/control/Breaks$.class --rw---- 2.0 fat 444 bl 37% defN 20100101.000002 scala/util/control/Breaks$TryBlock.class --rw---- 2.0 fat 2113 bl 39% defN 20100101.000002 scala/util/control/Breaks.class --rw---- 2.0 fat 952 bl 32% defN 20100101.000002 scala/util/control/ControlThrowable.class +-rw---- 2.0 fat 9373 bl 73% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JIterableWrapper.class +-rw---- 2.0 fat 938 bl 45% defN 20100101.000002 scala/collection/Iterator$$anon$27.class +-rw---- 2.0 fat 9398 bl 82% defN 20100101.000002 scala/jdk/javaapi/CollectionConverters$.class +-rw---- 2.0 fat 9409 bl 57% defN 20100101.000002 scala/collection/StrictOptimizedSeqOps.class +-rw---- 2.0 fat 943 bl 48% defN 20100101.000002 scala/Product8$.class +-rw---- 2.0 fat 943 bl 49% defN 20100101.000002 scala/io/Source$$anon$1.class -rw---- 2.0 fat 9445 bl 71% defN 20100101.000002 scala/util/control/Exception$$anon$1.class --rw---- 2.0 fat 2080 bl 54% defN 20100101.000002 scala/util/control/Exception$$anonfun$pfFromExceptions$1.class --rw---- 2.0 fat 15031 bl 68% defN 20100101.000002 scala/util/control/Exception$.class --rw---- 2.0 fat 904 bl 46% defN 20100101.000002 scala/util/control/Exception$By.class --rw---- 2.0 fat 8615 bl 73% defN 20100101.000002 scala/util/control/Exception$Catch$$anon$2.class --rw---- 2.0 fat 2412 bl 57% defN 20100101.000002 scala/util/control/Exception$Catch$.class --rw---- 2.0 fat 9808 bl 66% defN 20100101.000002 scala/util/control/Exception$Catch.class --rw---- 2.0 fat 1759 bl 58% defN 20100101.000002 scala/util/control/Exception$Described.class --rw---- 2.0 fat 3195 bl 62% defN 20100101.000002 scala/util/control/Exception$Finally.class +-rw---- 2.0 fat 9479 bl 72% defN 20100101.000002 scala/PartialFunction$Combined.class +-rw---- 2.0 fat 9525 bl 73% defN 20100101.000002 scala/collection/convert/JavaCollectionWrappers$JCollectionWrapper.class +-rw---- 2.0 fat 9529 bl 56% defN 20100101.000002 scala/collection/convert/impl/BitSetStepper.class +-rw---- 2.0 fat 952 bl 32% defN 20100101.000002 scala/util/control/ControlThrowable.class +-rw---- 2.0 fat 954 bl 51% defN 20100101.000002 scala/reflect/NameTransformer$OpCodes.class +-rw---- 2.0 fat 9552 bl 71% defN 20100101.000002 scala/concurrent/Future$never$.class +-rw---- 2.0 fat 955 bl 31% defN 20100101.000002 scala/annotation/unused.class +-rw---- 2.0 fat 955 bl 46% defN 20100101.000002 scala/collection/mutable/SeqMap$.class +-rw---- 2.0 fat 955 bl 46% defN 20100101.000002 scala/util/matching/Regex$Match$.class +-rw---- 2.0 fat 959 bl 29% defN 20100101.000002 scala/annotation/meta/languageFeature.class +-rw---- 2.0 fat 959 bl 42% defN 20100101.000002 scala/runtime/ClassValueCompat$.class +-rw---- 2.0 fat 9636 bl 74% defN 20100101.000002 scala/math/Numeric$IntIsIntegral$.class +-rw---- 2.0 fat 9642 bl 49% defN 20100101.000002 scala/reflect/ClassTag.class +-rw---- 2.0 fat 964 bl 50% defN 20100101.000002 scala/math/Ordering$Float$TotalOrdering.class +-rw---- 2.0 fat 967 bl 44% defN 20100101.000002 scala/collection/Seq$.class +-rw---- 2.0 fat 968 bl 45% defN 20100101.000002 scala/collection/LazyZip2$.class +-rw---- 2.0 fat 9706 bl 74% defN 20100101.000002 scala/math/Numeric$LongIsIntegral$.class +-rw---- 2.0 fat 970 bl 45% defN 20100101.000002 scala/collection/Stepper$$anon$1.class +-rw---- 2.0 fat 970 bl 46% defN 20100101.000002 scala/math/PartialOrdering$.class +-rw---- 2.0 fat 970 bl 53% defN 20100101.000002 scala/collection/StepperShape$$anon$1$$anon$2.class +-rw---- 2.0 fat 9713 bl 70% defN 20100101.000002 scala/collection/immutable/LazyList$LazyBuilder.class +-rw---- 2.0 fat 971 bl 50% defN 20100101.000002 scala/math/Ordering$Double$TotalOrdering.class +-rw---- 2.0 fat 9720 bl 59% defN 20100101.000002 scala/collection/immutable/NumericRange$.class +-rw---- 2.0 fat 972 bl 49% defN 20100101.000002 scala/Product9$.class +-rw---- 2.0 fat 972 bl 53% defN 20100101.000002 scala/collection/StepperShape$$anon$7$$anon$8.class +-rw---- 2.0 fat 9730 bl 56% defN 20100101.000002 scala/collection/immutable/MapOps.class +-rw---- 2.0 fat 973 bl 54% defN 20100101.000002 scala/collection/StepperShape$$anon$3$$anon$4.class +-rw---- 2.0 fat 9760 bl 73% defN 20100101.000002 scala/collection/AbstractSet.class +-rw---- 2.0 fat 976 bl 53% defN 20100101.000002 scala/collection/StepperShape$$anon$9$$anon$10.class +-rw---- 2.0 fat 9779 bl 74% defN 20100101.000002 scala/math/Numeric$ByteIsIntegral$.class +-rw---- 2.0 fat 9789 bl 74% defN 20100101.000002 scala/math/Numeric$CharIsIntegral$.class +-rw---- 2.0 fat 9793 bl 53% defN 20100101.000002 scala/collection/EvidenceIterableFactory.class +-rw---- 2.0 fat 9798 bl 74% defN 20100101.000002 scala/math/Numeric$ShortIsIntegral$.class +-rw---- 2.0 fat 979 bl 54% defN 20100101.000002 scala/collection/StepperShape$$anon$11$$anon$12.class +-rw---- 2.0 fat 979 bl 54% defN 20100101.000002 scala/collection/StepperShape$$anon$5$$anon$6.class -rw---- 2.0 fat 9806 bl 49% defN 20100101.000002 scala/util/control/Exception.class --rw---- 2.0 fat 1047 bl 42% defN 20100101.000002 scala/util/control/NoStackTrace$.class --rw---- 2.0 fat 1610 bl 36% defN 20100101.000002 scala/util/control/NoStackTrace.class --rw---- 2.0 fat 1208 bl 44% defN 20100101.000002 scala/util/control/NonFatal$.class --rw---- 2.0 fat 987 bl 35% defN 20100101.000002 scala/util/control/NonFatal.class --rw---- 2.0 fat 1355 bl 56% defN 20100101.000002 scala/util/control/TailCalls$.class --rw---- 2.0 fat 1842 bl 55% defN 20100101.000002 scala/util/control/TailCalls$Call$.class --rw---- 2.0 fat 3486 bl 62% defN 20100101.000002 scala/util/control/TailCalls$Call.class --rw---- 2.0 fat 2263 bl 59% defN 20100101.000002 scala/util/control/TailCalls$Cont$.class --rw---- 2.0 fat 4308 bl 65% defN 20100101.000002 scala/util/control/TailCalls$Cont.class --rw---- 2.0 fat 1617 bl 53% defN 20100101.000002 scala/util/control/TailCalls$Done$.class --rw---- 2.0 fat 3167 bl 60% defN 20100101.000002 scala/util/control/TailCalls$Done.class --rw---- 2.0 fat 7336 bl 61% defN 20100101.000002 scala/util/control/TailCalls$TailRec.class --rw---- 2.0 fat 4952 bl 34% defN 20100101.000002 scala/util/control/TailCalls.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/util/hashing/ --rw---- 2.0 fat 1165 bl 50% defN 20100101.000002 scala/util/hashing/ByteswapHashing$.class --rw---- 2.0 fat 1140 bl 50% defN 20100101.000002 scala/util/hashing/ByteswapHashing$Chained.class --rw---- 2.0 fat 2060 bl 42% defN 20100101.000002 scala/util/hashing/ByteswapHashing.class --rw---- 2.0 fat 1034 bl 47% defN 20100101.000002 scala/util/hashing/Hashing$$anon$1.class --rw---- 2.0 fat 1355 bl 52% defN 20100101.000002 scala/util/hashing/Hashing$.class --rw---- 2.0 fat 745 bl 43% defN 20100101.000002 scala/util/hashing/Hashing$Default.class --rw---- 2.0 fat 1995 bl 37% defN 20100101.000002 scala/util/hashing/Hashing.class --rw---- 2.0 fat 1007 bl 45% defN 20100101.000002 scala/util/hashing/MurmurHash3$$anon$1.class --rw---- 2.0 fat 1242 bl 52% defN 20100101.000002 scala/util/hashing/MurmurHash3$$anon$2.class --rw---- 2.0 fat 1035 bl 49% defN 20100101.000002 scala/util/hashing/MurmurHash3$$anon$3.class --rw---- 2.0 fat 1085 bl 48% defN 20100101.000002 scala/util/hashing/MurmurHash3$$anon$4.class --rw---- 2.0 fat 1246 bl 52% defN 20100101.000002 scala/util/hashing/MurmurHash3$$anon$5.class +-rw---- 2.0 fat 9808 bl 66% defN 20100101.000002 scala/util/control/Exception$Catch.class +-rw---- 2.0 fat 980 bl 41% defN 20100101.000002 scala/collection/immutable/LinearSeqOps.class +-rw---- 2.0 fat 980 bl 51% defN 20100101.000002 scala/collection/mutable/RedBlackTree$Tree$.class +-rw---- 2.0 fat 981 bl 48% defN 20100101.000002 scala/math/Equiv$Float$StrictEquiv.class +-rw---- 2.0 fat 983 bl 44% defN 20100101.000002 scala/collection/concurrent/TrieMap$MangledHashing.class +-rw---- 2.0 fat 983 bl 52% defN 20100101.000002 scala/math/Ordering$UnitOrdering.class -rw---- 2.0 fat 9845 bl 69% defN 20100101.000002 scala/util/hashing/MurmurHash3$.class --rw---- 2.0 fat 1121 bl 51% defN 20100101.000002 scala/util/hashing/MurmurHash3$ArrayHashing$mcB$sp.class --rw---- 2.0 fat 1121 bl 51% defN 20100101.000002 scala/util/hashing/MurmurHash3$ArrayHashing$mcC$sp.class --rw---- 2.0 fat 1121 bl 51% defN 20100101.000002 scala/util/hashing/MurmurHash3$ArrayHashing$mcD$sp.class --rw---- 2.0 fat 1121 bl 51% defN 20100101.000002 scala/util/hashing/MurmurHash3$ArrayHashing$mcF$sp.class --rw---- 2.0 fat 1121 bl 51% defN 20100101.000002 scala/util/hashing/MurmurHash3$ArrayHashing$mcI$sp.class --rw---- 2.0 fat 1121 bl 51% defN 20100101.000002 scala/util/hashing/MurmurHash3$ArrayHashing$mcJ$sp.class --rw---- 2.0 fat 1121 bl 51% defN 20100101.000002 scala/util/hashing/MurmurHash3$ArrayHashing$mcS$sp.class --rw---- 2.0 fat 1200 bl 53% defN 20100101.000002 scala/util/hashing/MurmurHash3$ArrayHashing$mcV$sp.class --rw---- 2.0 fat 1121 bl 51% defN 20100101.000002 scala/util/hashing/MurmurHash3$ArrayHashing$mcZ$sp.class --rw---- 2.0 fat 2018 bl 65% defN 20100101.000002 scala/util/hashing/MurmurHash3$ArrayHashing.class --rw---- 2.0 fat 12598 bl 78% defN 20100101.000002 scala/util/hashing/MurmurHash3$accum$1.class --rw---- 2.0 fat 18550 bl 55% defN 20100101.000002 scala/util/hashing/MurmurHash3.class --rw---- 2.0 fat 794 bl 36% defN 20100101.000002 scala/util/hashing/package$.class --rw---- 2.0 fat 792 bl 27% defN 20100101.000002 scala/util/hashing/package.class --rw---- 2.0 fat 0 bl 0% defN 20100101.000000 scala/util/matching/ --rw---- 2.0 fat 1651 bl 53% defN 20100101.000002 scala/util/matching/Regex$$anon$1.class --rw---- 2.0 fat 1419 bl 55% defN 20100101.000002 scala/util/matching/Regex$$anon$2.class --rw---- 2.0 fat 2821 bl 53% defN 20100101.000002 scala/util/matching/Regex$.class --rw---- 2.0 fat 1968 bl 48% defN 20100101.000002 scala/util/matching/Regex$Groups$.class --rw---- 2.0 fat 955 bl 46% defN 20100101.000002 scala/util/matching/Regex$Match$.class --rw---- 2.0 fat 5713 bl 66% defN 20100101.000002 scala/util/matching/Regex$Match.class --rw---- 2.0 fat 7301 bl 61% defN 20100101.000002 scala/util/matching/Regex$MatchData.class --rw---- 2.0 fat 1584 bl 53% defN 20100101.000002 scala/util/matching/Regex$MatchIterator$$anon$3.class --rw---- 2.0 fat 2742 bl 61% defN 20100101.000002 scala/util/matching/Regex$MatchIterator$$anon$4.class --rw---- 2.0 fat 6629 bl 66% defN 20100101.000002 scala/util/matching/Regex$MatchIterator.class --rw---- 2.0 fat 1875 bl 58% defN 20100101.000002 scala/util/matching/Regex$Replacement.class --rw---- 2.0 fat 16442 bl 53% defN 20100101.000002 scala/util/matching/Regex.class --rw---- 2.0 fat 1478 bl 46% defN 20100101.000002 scala/util/matching/UnanchoredRegex.class --rw---- 2.0 fat 411 bl 30% defN 20100101.000002 scala/util/package$.class --rw---- 2.0 fat 884 bl 45% defN 20100101.000002 scala/util/package$chaining$.class --rw---- 2.0 fat 505 bl 18% defN 20100101.000002 scala/util/package.class --rw---- 2.0 fat 637 bl 28% defN 20100101.000002 scala/volatile.class --rw---- 2.0 fat 811 b- 32% defN 20100101.000002 foo/TestClass.class --rw---- 2.0 fat 48 b- 0% stor 20100101.000000 META-INF/MANIFEST.MF +-rw---- 2.0 fat 984 bl 53% defN 20100101.000002 scala/collection/StepperShape$$anon$13$$anon$14.class +-rw---- 2.0 fat 9861 bl 58% defN 20100101.000002 scala/collection/immutable/VectorStatics$.class +-rw---- 2.0 fat 987 bl 35% defN 20100101.000002 scala/util/control/NonFatal.class +-rw---- 2.0 fat 987 bl 45% defN 20100101.000002 scala/collection/Set$.class +-rw---- 2.0 fat 987 bl 48% defN 20100101.000002 scala/runtime/ZippedIterable2$.class +-rw---- 2.0 fat 988 bl 48% defN 20100101.000002 scala/math/Equiv$Double$StrictEquiv.class +-rw---- 2.0 fat 995 bl 45% defN 20100101.000002 scala/collection/mutable/Map$.class +-rw---- 2.0 fat 9977 bl 72% defN 20100101.000002 scala/collection/immutable/Queue$.class +-rw---- 2.0 fat 9989 bl 64% defN 20100101.000002 scala/collection/Set.class From d9c2854e67d491cc26ab10a088613ce84bd7e764 Mon Sep 17 00:00:00 2001 From: James Judd Date: Wed, 19 Jun 2024 18:38:24 -0600 Subject: [PATCH 03/21] Upgrade scalafmt and protobuf --- .scalafmt.conf | 5 +- WORKSPACE | 36 +- annex_2_12_install.json | 502 +- annex_3_install.json | 866 +- annex_install.json | 11116 ++++++++++------ annex_proto_install.json | 481 +- annex_scalafmt_install.json | 1898 +-- rules/scala/workspace.bzl | 4 +- .../private/ScalaProtoWorker.scala | 4 +- rules/scala_proto/workspace.bzl | 4 +- rules/scalafmt/scalafmt/ScalafmtRunner.scala | 4 +- rules/scalafmt/workspace.bzl | 6 +- .../common/sbt-testing/JUnitXmlReporter.scala | 82 +- .../workers/zinc/compile/ZincRunner.scala | 7 +- tests/WORKSPACE | 38 +- tests/annex_test_2_12_install.json | 1901 ++- tests/annex_test_install.json | 2616 ++-- 17 files changed, 12350 insertions(+), 7220 deletions(-) diff --git a/.scalafmt.conf b/.scalafmt.conf index c92aea993..dde1d6595 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = 3.1.0 +version = 3.8.2 runner.dialect = scala213source3 align.openParenCallSite = false align.openParenDefnSite = false @@ -7,11 +7,10 @@ danglingParentheses.preset = true docstrings.style = Asterisk importSelectors = singleLine maxColumn = 120 -verticalMultiline.newlineBeforeImplicitKW = true +newlines.implicitParamListModifierPrefer = after rewrite.redundantBraces.stringInterpolation = true rewrite.rules = [ RedundantParens, PreferCurlyFors, SortImports ] -unindentTopLevelOperators = false diff --git a/WORKSPACE b/WORKSPACE index d62855b4f..78f30c53c 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -57,9 +57,9 @@ go_register_toolchains(version = "1.17") # protobuf -protobuf_tag = "3.15.8" +protobuf_tag = "3.19.6" -protobuf_sha256 = "dd513a79c7d7e45cbaeaf7655289f78fd6b806e52dbbd7018ef4e3cf5cff697a" +protobuf_sha256 = "387e2c559bb2c7c1bc3798c4e6cff015381a79b2758696afcbf8e88730b47389" http_archive( name = "com_google_protobuf", @@ -76,26 +76,38 @@ protobuf_deps() # rules_java http_archive( name = "rules_java", + sha256 = "80e61f508ff79a3fde4a549b8b1f6ec7f8a82c259e51240a4403e5be36f88142", urls = [ "https://github.com/bazelbuild/rules_java/releases/download/7.6.4/rules_java-7.6.4.tar.gz", ], - sha256 = "80e61f508ff79a3fde4a549b8b1f6ec7f8a82c259e51240a4403e5be36f88142", ) + load("@rules_java//java:repositories.bzl", "rules_java_dependencies", "rules_java_toolchains") + rules_java_dependencies() + rules_java_toolchains() register_toolchains("//:repository_default_toolchain_21_definition") -rules_jvm_external_tag = "5.3" +# rules_jvm_external +rules_jvm_external_tag = "6.1" http_archive( name = "rules_jvm_external", - sha256 = "6cc8444b20307113a62b676846c29ff018402fd4c7097fcd6d0a0fd5f2e86429", + sha256 = "42a6d48eb2c08089961c715a813304f30dc434df48e371ebdd868fc3636f0e82", strip_prefix = "rules_jvm_external-{}".format(rules_jvm_external_tag), url = "https://github.com/bazelbuild/rules_jvm_external/archive/{}.zip".format(rules_jvm_external_tag), ) +load("@rules_jvm_external//:repositories.bzl", "rules_jvm_external_deps") + +rules_jvm_external_deps() + +load("@rules_jvm_external//:setup.bzl", "rules_jvm_external_setup") + +rules_jvm_external_setup() + # Scala load("//rules/scala:workspace.bzl", "scala_register_toolchains", "scala_repositories") @@ -171,3 +183,17 @@ http_archive( load("@rules_pkg//:deps.bzl", "rules_pkg_dependencies") rules_pkg_dependencies() + +# rules_python - this is needed by rules_jvm_external for some reason +rules_python_tag = "0.33.2" + +http_archive( + name = "rules_python", + sha256 = "e3f1cc7a04d9b09635afb3130731ed82b5f58eadc8233d4efb59944d92ffc06f", + strip_prefix = "rules_python-{}".format(rules_python_tag), + url = "https://github.com/bazelbuild/rules_python/releases/download/{}/rules_python-{}.tar.gz".format(rules_python_tag, rules_python_tag), +) + +load("@rules_python//python:repositories.bzl", "py_repositories") + +py_repositories() diff --git a/annex_2_12_install.json b/annex_2_12_install.json index 6c503c9b5..87904c502 100644 --- a/annex_2_12_install.json +++ b/annex_2_12_install.json @@ -1,267 +1,241 @@ { - "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": -39935131, - "__RESOLVED_ARTIFACTS_HASH": 1773281105, - "artifacts": { - "org.scala-lang.modules:scala-xml_2.12": { - "shasums": { - "jar": "fd92f78b7acfea72999aceba5b377a000f42f9296d3d98224c9b1c471815582f", - "sources": "975a70a8cc0eff1ad1a495a60b60b51a973607cf362efb00f0c1e4565b77ff7c" - }, - "version": "2.2.0" - }, - "org.scala-lang:scala-compiler": { - "shasums": { - "jar": "d12975f4cf9a450ea12870243648a851f92165448fdda5a292747cb3bdaecc4f", - "sources": "71c64235c39490e7865f7ab9aa04a16c99ac720105f6da2d3a873b8a40082c23" - }, - "version": "2.12.19" - }, - "org.scala-lang:scala-library": { - "shasums": { - "jar": "81e32f8e31236ef84c21287f1fbaa916fc6525b2e63220d4a0f2396e91871d50", - "sources": "8bfc1530510a87686ef1081f60714c594d752fcf025b92acfd0ff6c09a7efa76" - }, - "version": "2.12.19" - }, - "org.scala-lang:scala-reflect": { - "shasums": { - "jar": "ff6eaa5548779d61d35b98cb25e931951c5a9f1abc48741e9df95324ee2ae66c", - "sources": "391ef7b6927dfa1f187f4749ac98996d38bae1f2e1f40addb0e22bdacedcf254" - }, - "version": "2.12.19" - }, - "org.scala-sbt:compiler-bridge_2.12": { - "shasums": { - "jar": "221b22e51225c96b3720a87d26470bfefbd512e5c5241bbd26e6d59c37d11068", - "sources": "a3fb54dff8431e6654606dc39ae739afa070c1951eca7d67a3f81de893ea5964" - }, - "version": "1.9.3" - }, - "org.scala-sbt:compiler-interface": { - "shasums": { - "jar": "fa586b4b1bdb61c48821cf9568507c1e4d57de3763d27ac2214523b00a173115", - "sources": "22200c6be450ea4651088f1d43670d14ee7808aa0c1b07a1ff6bc1104a3d7488" - }, - "version": "1.9.3" - }, - "org.scala-sbt:util-interface": { - "shasums": { - "jar": "cbf6c0db09223e4c6c41afc4c5d831c47e3564e83361df4ba3cb04e439f83675", - "sources": "bed4331c842f3c8b1c198ec25ead990fd064e1a0672ae2856aafc2a7593ec1fe" - }, - "version": "1.9.2" + "dependency_tree": { + "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", + "__INPUT_ARTIFACTS_HASH": -498276511, + "__RESOLVED_ARTIFACTS_HASH": -839032726, + "conflict_resolution": {}, + "dependencies": [ + { + "coord": "org.scala-lang.modules:scala-xml_2.12:2.2.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "org.scala-lang:*" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.2.0/scala-xml_2.12-2.2.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.2.0/scala-xml_2.12-2.2.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.12/2.2.0/scala-xml_2.12-2.2.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.2.0/scala-xml_2.12-2.2.0.jar" + ], + "sha256": "fd92f78b7acfea72999aceba5b377a000f42f9296d3d98224c9b1c471815582f", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.2.0/scala-xml_2.12-2.2.0.jar" + }, + { + "coord": "org.scala-lang.modules:scala-xml_2.12:jar:sources:2.2.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "org.scala-lang:*" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.2.0/scala-xml_2.12-2.2.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.2.0/scala-xml_2.12-2.2.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.12/2.2.0/scala-xml_2.12-2.2.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.2.0/scala-xml_2.12-2.2.0-sources.jar" + ], + "sha256": "975a70a8cc0eff1ad1a495a60b60b51a973607cf362efb00f0c1e4565b77ff7c", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.2.0/scala-xml_2.12-2.2.0-sources.jar" + }, + { + "coord": "org.scala-lang:scala-compiler:2.12.19", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:2.2.0", + "org.scala-lang:scala-library:2.12.19", + "org.scala-lang:scala-reflect:2.12.19" + ], + "directDependencies": [ + "org.scala-lang.modules:scala-xml_2.12:2.2.0", + "org.scala-lang:scala-library:2.12.19", + "org.scala-lang:scala-reflect:2.12.19" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.12.19/scala-compiler-2.12.19.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.12.19/scala-compiler-2.12.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-compiler/2.12.19/scala-compiler-2.12.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.19/scala-compiler-2.12.19.jar" + ], + "sha256": "d12975f4cf9a450ea12870243648a851f92165448fdda5a292747cb3bdaecc4f", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.12.19/scala-compiler-2.12.19.jar" + }, + { + "coord": "org.scala-lang:scala-compiler:jar:sources:2.12.19", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:jar:sources:2.2.0", + "org.scala-lang:scala-library:jar:sources:2.12.19", + "org.scala-lang:scala-reflect:jar:sources:2.12.19" + ], + "directDependencies": [ + "org.scala-lang.modules:scala-xml_2.12:jar:sources:2.2.0", + "org.scala-lang:scala-library:jar:sources:2.12.19", + "org.scala-lang:scala-reflect:jar:sources:2.12.19" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.12.19/scala-compiler-2.12.19-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.12.19/scala-compiler-2.12.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-compiler/2.12.19/scala-compiler-2.12.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.19/scala-compiler-2.12.19-sources.jar" + ], + "sha256": "71c64235c39490e7865f7ab9aa04a16c99ac720105f6da2d3a873b8a40082c23", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.12.19/scala-compiler-2.12.19-sources.jar" + }, + { + "coord": "org.scala-lang:scala-library:2.12.19", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.19/scala-library-2.12.19.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.19/scala-library-2.12.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.12.19/scala-library-2.12.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.19/scala-library-2.12.19.jar" + ], + "sha256": "81e32f8e31236ef84c21287f1fbaa916fc6525b2e63220d4a0f2396e91871d50", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.19/scala-library-2.12.19.jar" + }, + { + "coord": "org.scala-lang:scala-library:jar:sources:2.12.19", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.19/scala-library-2.12.19-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.19/scala-library-2.12.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.12.19/scala-library-2.12.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.19/scala-library-2.12.19-sources.jar" + ], + "sha256": "8bfc1530510a87686ef1081f60714c594d752fcf025b92acfd0ff6c09a7efa76", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.19/scala-library-2.12.19-sources.jar" + }, + { + "coord": "org.scala-lang:scala-reflect:2.12.19", + "dependencies": [ + "org.scala-lang:scala-library:2.12.19" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.12.19" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.19/scala-reflect-2.12.19.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.19/scala-reflect-2.12.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.12.19/scala-reflect-2.12.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.19/scala-reflect-2.12.19.jar" + ], + "sha256": "ff6eaa5548779d61d35b98cb25e931951c5a9f1abc48741e9df95324ee2ae66c", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.19/scala-reflect-2.12.19.jar" + }, + { + "coord": "org.scala-lang:scala-reflect:jar:sources:2.12.19", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.19" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.19" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.19/scala-reflect-2.12.19-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.19/scala-reflect-2.12.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.12.19/scala-reflect-2.12.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.19/scala-reflect-2.12.19-sources.jar" + ], + "sha256": "391ef7b6927dfa1f187f4749ac98996d38bae1f2e1f40addb0e22bdacedcf254", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.19/scala-reflect-2.12.19-sources.jar" + }, + { + "coord": "org.scala-sbt:compiler-bridge_2.12:1.9.3", + "dependencies": [ + "org.scala-sbt:compiler-interface:1.9.3", + "org.scala-sbt:util-interface:1.9.2" + ], + "directDependencies": [ + "org.scala-sbt:compiler-interface:1.9.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.9.3/compiler-bridge_2.12-1.9.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.9.3/compiler-bridge_2.12-1.9.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-bridge_2.12/1.9.3/compiler-bridge_2.12-1.9.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.9.3/compiler-bridge_2.12-1.9.3.jar" + ], + "sha256": "221b22e51225c96b3720a87d26470bfefbd512e5c5241bbd26e6d59c37d11068", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.9.3/compiler-bridge_2.12-1.9.3.jar" + }, + { + "coord": "org.scala-sbt:compiler-bridge_2.12:jar:sources:1.9.3", + "dependencies": [ + "org.scala-sbt:compiler-interface:jar:sources:1.9.3", + "org.scala-sbt:util-interface:jar:sources:1.9.2" + ], + "directDependencies": [ + "org.scala-sbt:compiler-interface:jar:sources:1.9.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.9.3/compiler-bridge_2.12-1.9.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.9.3/compiler-bridge_2.12-1.9.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-bridge_2.12/1.9.3/compiler-bridge_2.12-1.9.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.9.3/compiler-bridge_2.12-1.9.3-sources.jar" + ], + "sha256": "a3fb54dff8431e6654606dc39ae739afa070c1951eca7d67a3f81de893ea5964", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.9.3/compiler-bridge_2.12-1.9.3-sources.jar" + }, + { + "coord": "org.scala-sbt:compiler-interface:1.9.3", + "dependencies": [ + "org.scala-sbt:util-interface:1.9.2" + ], + "directDependencies": [ + "org.scala-sbt:util-interface:1.9.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar" + ], + "sha256": "fa586b4b1bdb61c48821cf9568507c1e4d57de3763d27ac2214523b00a173115", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar" + }, + { + "coord": "org.scala-sbt:compiler-interface:jar:sources:1.9.3", + "dependencies": [ + "org.scala-sbt:util-interface:jar:sources:1.9.2" + ], + "directDependencies": [ + "org.scala-sbt:util-interface:jar:sources:1.9.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar" + ], + "sha256": "22200c6be450ea4651088f1d43670d14ee7808aa0c1b07a1ff6bc1104a3d7488", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar" + }, + { + "coord": "org.scala-sbt:util-interface:1.9.2", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar" + ], + "sha256": "cbf6c0db09223e4c6c41afc4c5d831c47e3564e83361df4ba3cb04e439f83675", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar" + }, + { + "coord": "org.scala-sbt:util-interface:jar:sources:1.9.2", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar" + ], + "sha256": "bed4331c842f3c8b1c198ec25ead990fd064e1a0672ae2856aafc2a7593ec1fe", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar" + } + ], + "version": "0.1.0" } - }, - "dependencies": { - "org.scala-lang:scala-compiler": [ - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect" - ], - "org.scala-lang:scala-reflect": [ - "org.scala-lang:scala-library" - ], - "org.scala-sbt:compiler-bridge_2.12": [ - "org.scala-sbt:compiler-interface" - ], - "org.scala-sbt:compiler-interface": [ - "org.scala-sbt:util-interface" - ] - }, - "packages": { - "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.transform" - ], - "org.scala-lang:scala-compiler": [ - "scala.reflect.macros.compiler", - "scala.reflect.macros.contexts", - "scala.reflect.macros.runtime", - "scala.reflect.macros.util", - "scala.reflect.quasiquotes", - "scala.reflect.reify", - "scala.reflect.reify.codegen", - "scala.reflect.reify.phases", - "scala.reflect.reify.utils", - "scala.tools.ant", - "scala.tools.ant.sabbus", - "scala.tools.asm", - "scala.tools.asm.commons", - "scala.tools.asm.signature", - "scala.tools.asm.tree", - "scala.tools.asm.tree.analysis", - "scala.tools.asm.util", - "scala.tools.cmd", - "scala.tools.fusesource_embedded.hawtjni.runtime", - "scala.tools.fusesource_embedded.jansi", - "scala.tools.fusesource_embedded.jansi.internal", - "scala.tools.jline_embedded", - "scala.tools.jline_embedded.console", - "scala.tools.jline_embedded.console.completer", - "scala.tools.jline_embedded.console.history", - "scala.tools.jline_embedded.internal", - "scala.tools.nsc", - "scala.tools.nsc.ast", - "scala.tools.nsc.ast.parser", - "scala.tools.nsc.ast.parser.xml", - "scala.tools.nsc.backend", - "scala.tools.nsc.backend.jvm", - "scala.tools.nsc.backend.jvm.analysis", - "scala.tools.nsc.backend.jvm.opt", - "scala.tools.nsc.classpath", - "scala.tools.nsc.doc", - "scala.tools.nsc.doc.base", - "scala.tools.nsc.doc.base.comment", - "scala.tools.nsc.doc.doclet", - "scala.tools.nsc.doc.html", - "scala.tools.nsc.doc.html.page", - "scala.tools.nsc.doc.html.page.diagram", - "scala.tools.nsc.doc.model", - "scala.tools.nsc.doc.model.diagram", - "scala.tools.nsc.interactive", - "scala.tools.nsc.interactive.tests", - "scala.tools.nsc.interactive.tests.core", - "scala.tools.nsc.interpreter", - "scala.tools.nsc.interpreter.jline", - "scala.tools.nsc.interpreter.jline_embedded", - "scala.tools.nsc.interpreter.session", - "scala.tools.nsc.io", - "scala.tools.nsc.javac", - "scala.tools.nsc.plugins", - "scala.tools.nsc.profile", - "scala.tools.nsc.reporters", - "scala.tools.nsc.settings", - "scala.tools.nsc.symtab", - "scala.tools.nsc.symtab.classfile", - "scala.tools.nsc.transform", - "scala.tools.nsc.transform.async", - "scala.tools.nsc.transform.patmat", - "scala.tools.nsc.typechecker", - "scala.tools.nsc.util", - "scala.tools.reflect", - "scala.tools.util" - ], - "org.scala-lang:scala-library": [ - "scala", - "scala.annotation", - "scala.annotation.meta", - "scala.annotation.unchecked", - "scala.beans", - "scala.collection", - "scala.collection.concurrent", - "scala.collection.convert", - "scala.collection.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:compiler-bridge_2.12": [ - "scala", - "xsbt" - ], - "org.scala-sbt:compiler-interface": [ - "xsbti", - "xsbti.api", - "xsbti.compile", - "xsbti.compile.analysis" - ], - "org.scala-sbt:util-interface": [ - "xsbti" - ] - }, - "repositories": { - "https://repo.maven.apache.org/maven2/": [ - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang.modules:scala-xml_2.12:jar:sources", - "org.scala-lang:scala-compiler", - "org.scala-lang:scala-compiler:jar:sources", - "org.scala-lang:scala-library", - "org.scala-lang:scala-library:jar:sources", - "org.scala-lang:scala-reflect", - "org.scala-lang:scala-reflect:jar:sources", - "org.scala-sbt:compiler-bridge_2.12", - "org.scala-sbt:compiler-bridge_2.12:jar:sources", - "org.scala-sbt:compiler-interface", - "org.scala-sbt:compiler-interface:jar:sources", - "org.scala-sbt:util-interface", - "org.scala-sbt:util-interface:jar:sources" - ], - "https://maven-central.storage-download.googleapis.com/maven2/": [ - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang.modules:scala-xml_2.12:jar:sources", - "org.scala-lang:scala-compiler", - "org.scala-lang:scala-compiler:jar:sources", - "org.scala-lang:scala-library", - "org.scala-lang:scala-library:jar:sources", - "org.scala-lang:scala-reflect", - "org.scala-lang:scala-reflect:jar:sources", - "org.scala-sbt:compiler-bridge_2.12", - "org.scala-sbt:compiler-bridge_2.12:jar:sources", - "org.scala-sbt:compiler-interface", - "org.scala-sbt:compiler-interface:jar:sources", - "org.scala-sbt:util-interface", - "org.scala-sbt:util-interface:jar:sources" - ], - "https://mirror.bazel.build/repo1.maven.org/maven2/": [ - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang.modules:scala-xml_2.12:jar:sources", - "org.scala-lang:scala-compiler", - "org.scala-lang:scala-compiler:jar:sources", - "org.scala-lang:scala-library", - "org.scala-lang:scala-library:jar:sources", - "org.scala-lang:scala-reflect", - "org.scala-lang:scala-reflect:jar:sources", - "org.scala-sbt:compiler-bridge_2.12", - "org.scala-sbt:compiler-bridge_2.12:jar:sources", - "org.scala-sbt:compiler-interface", - "org.scala-sbt:compiler-interface:jar:sources", - "org.scala-sbt:util-interface", - "org.scala-sbt:util-interface:jar:sources" - ] - }, - "version": "2" } diff --git a/annex_3_install.json b/annex_3_install.json index fd14c4765..bb792c3b5 100644 --- a/annex_3_install.json +++ b/annex_3_install.json @@ -1,393 +1,479 @@ { - "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": -1260333558, - "__RESOLVED_ARTIFACTS_HASH": -723133851, - "conflict_resolution": { - "org.scala-sbt:compiler-interface:1.9.3": "org.scala-sbt:compiler-interface:1.9.6" - }, - "artifacts": { - "net.java.dev.jna:jna": { - "shasums": { - "jar": "34ed1e1f27fa896bca50dbc4e99cf3732967cec387a7a0d5e3486c09673fe8c6", - "sources": "ebd774c761215676cda059fd68240628ef99f4aafa6d355ae00d184855aef134" - }, - "version": "5.14.0" - }, - "org.jline:jline-native": { - "shasums": { - "jar": "42d5bbe1f546dea248b8c901da7deb9943f76290379552923c9763495bb9f172", - "sources": "a3026f0bfe678502ac7f37dba48563d18f1640d585c164f921adbe01fa3152fb" - }, - "version": "3.25.1" - }, - "org.jline:jline-reader": { - "shasums": { - "jar": "26333a275de502adf1dd9e6ea50aa0b4021412c71490df9ed5e88a648886ee89", - "sources": "b5164bad15bb8d29566566b12cf4be95b252e18d3056ef96e70b934dbc3872cd" - }, - "version": "3.25.1" - }, - "org.jline:jline-terminal": { - "shasums": { - "jar": "c0f5d70901255da66a94e59778b265d19f9308342578e34c88fc92d1b0c65fef", - "sources": "bee7c4d6b7c19365719d56f380c0fe96e0ddc584fa059104afe919e5b3be1d90" - }, - "version": "3.25.1" - }, - "org.jline:jline-terminal-jna": { - "shasums": { - "jar": "58ca9d719c373206af15775ee3cd5f268136ea0d0c4e009c3e96a6d4612d5c66", - "sources": "fe03ffce7be95b6e1aa7e46ddc65b57c4fa4931b04ed65f64e590043c6eabfc5" - }, - "version": "3.25.1" - }, - "org.scala-lang.modules:scala-asm": { - "shasums": { - "jar": "bf16f8b69e89cadab550bce266a052780af7f1eb29dd1c04c3bd014113752c12", - "sources": "6a58718b53a6bd8f1b1e22b2bf7ef9b88eccbbe5e0fc223847b0343100d4a45a" - }, - "version": "9.6.0-scala-1" - }, - "org.scala-lang:scala-library": { - "shasums": { - "jar": "c6a879e4973a60f6162668542a33eaccc2bb565d1c934fb061c5844259131dd1", - "sources": "df3f19e71b4d2dd6bb882a6deafb31c7dceaad4f26489b9fd9ca56b493229174" - }, - "version": "2.13.12" - }, - "org.scala-lang:scala3-compiler_3": { - "shasums": { - "jar": "c50f6089b1d55b0b7f9fbb2ef9d69f966b07c734d9b96e2b45b5b41b2d1bdd45", - "sources": "e887ce463f9fe65b732bc26af1462b8ab7097e8dfbc582ca89823a8cc5bf383e" - }, - "version": "3.4.2" - }, - "org.scala-lang:scala3-interfaces": { - "shasums": { - "jar": "3907de290b0e38070f5b5e5598d08d5f302ad0ef9014f7a690ca8e90946ddda3", - "sources": "d0bc8086b14a247ed50f56c6e09f9563b907b10a7b2d90b493eed5eb7a5df1c4" - }, - "version": "3.4.2" - }, - "org.scala-lang:scala3-library_3": { - "shasums": { - "jar": "5d8a8535e11d9dc52400cca0bc1d0edfe9385f15af5710c454ce8ab0e62783a0", - "sources": "9780c029947dfb9d8473d9e184185d83e11fe3a7da4578d937decd56b8818987" - }, - "version": "3.4.2" - }, - "org.scala-lang:scala3-sbt-bridge": { - "shasums": { - "jar": "76ae65d99f14e131bd271ac22f805fbb8a39338a95e3fb38fd480fbca01964fe", - "sources": "32e4085415e70046fb70b9e05492dc551ea32e47d2df1890611298f91bacec5e" - }, - "version": "3.4.2" - }, - "org.scala-lang:tasty-core_3": { - "shasums": { - "jar": "3697f3a858c594c5022f2f7751504c069a384b92b4e093e9742bbaa627e0c10f", - "sources": "24541ecf51853f3226acd3bfa9a3deaf4d3604fc19f1a1945febcc73f82ca800" - }, - "version": "3.4.2" - }, - "org.scala-sbt:compiler-interface": { - "shasums": { - "jar": "b986ad1cfcef14c8abeaa3e788df28be9150acfbf587b5f7aa92c1b043c4fa8d", - "sources": "a31ff0dcd76779a3ce36c161a5fb2c9849929ee2b91a9baee4570c0641f5cfca" - }, - "version": "1.9.6" - }, - "org.scala-sbt:util-interface": { - "shasums": { - "jar": "1302b1a265688b7bc31796d41f93fbe548e5daf36ea4dc848ee0a6b15fc53904", - "sources": "e904a8c2f498a14b48ebc5e0e35b6c8844846b5ab9a4244042da4ec02811e561" - }, - "version": "1.9.8" + "dependency_tree": { + "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", + "__INPUT_ARTIFACTS_HASH": -1422749170, + "__RESOLVED_ARTIFACTS_HASH": 708268627, + "conflict_resolution": { + "org.scala-sbt:compiler-interface:1.9.3": "org.scala-sbt:compiler-interface:1.9.6" + }, + "dependencies": [ + { + "coord": "net.java.dev.jna:jna:5.14.0", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0.jar" + ], + "sha256": "34ed1e1f27fa896bca50dbc4e99cf3732967cec387a7a0d5e3486c09673fe8c6", + "url": "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0.jar" + }, + { + "coord": "net.java.dev.jna:jna:jar:sources:5.14.0", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0-sources.jar" + ], + "sha256": "ebd774c761215676cda059fd68240628ef99f4aafa6d355ae00d184855aef134", + "url": "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0-sources.jar" + }, + { + "coord": "org.jline:jline-native:3.25.1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-native/3.25.1/jline-native-3.25.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline-native/3.25.1/jline-native-3.25.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-native/3.25.1/jline-native-3.25.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-native/3.25.1/jline-native-3.25.1.jar" + ], + "sha256": "42d5bbe1f546dea248b8c901da7deb9943f76290379552923c9763495bb9f172", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-native/3.25.1/jline-native-3.25.1.jar" + }, + { + "coord": "org.jline:jline-native:jar:sources:3.25.1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-native/3.25.1/jline-native-3.25.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline-native/3.25.1/jline-native-3.25.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-native/3.25.1/jline-native-3.25.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-native/3.25.1/jline-native-3.25.1-sources.jar" + ], + "sha256": "a3026f0bfe678502ac7f37dba48563d18f1640d585c164f921adbe01fa3152fb", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-native/3.25.1/jline-native-3.25.1-sources.jar" + }, + { + "coord": "org.jline:jline-reader:3.25.1", + "dependencies": [ + "org.jline:jline-native:3.25.1", + "org.jline:jline-terminal:3.25.1" + ], + "directDependencies": [ + "org.jline:jline-terminal:3.25.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-reader/3.25.1/jline-reader-3.25.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline-reader/3.25.1/jline-reader-3.25.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-reader/3.25.1/jline-reader-3.25.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-reader/3.25.1/jline-reader-3.25.1.jar" + ], + "sha256": "26333a275de502adf1dd9e6ea50aa0b4021412c71490df9ed5e88a648886ee89", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-reader/3.25.1/jline-reader-3.25.1.jar" + }, + { + "coord": "org.jline:jline-reader:jar:sources:3.25.1", + "dependencies": [ + "org.jline:jline-native:jar:sources:3.25.1", + "org.jline:jline-terminal:jar:sources:3.25.1" + ], + "directDependencies": [ + "org.jline:jline-terminal:jar:sources:3.25.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-reader/3.25.1/jline-reader-3.25.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline-reader/3.25.1/jline-reader-3.25.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-reader/3.25.1/jline-reader-3.25.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-reader/3.25.1/jline-reader-3.25.1-sources.jar" + ], + "sha256": "b5164bad15bb8d29566566b12cf4be95b252e18d3056ef96e70b934dbc3872cd", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-reader/3.25.1/jline-reader-3.25.1-sources.jar" + }, + { + "coord": "org.jline:jline-terminal-jna:3.25.1", + "dependencies": [ + "net.java.dev.jna:jna:5.14.0", + "org.jline:jline-native:3.25.1", + "org.jline:jline-terminal:3.25.1" + ], + "directDependencies": [ + "net.java.dev.jna:jna:5.14.0", + "org.jline:jline-terminal:3.25.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.25.1/jline-terminal-jna-3.25.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.25.1/jline-terminal-jna-3.25.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal-jna/3.25.1/jline-terminal-jna-3.25.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.25.1/jline-terminal-jna-3.25.1.jar" + ], + "sha256": "58ca9d719c373206af15775ee3cd5f268136ea0d0c4e009c3e96a6d4612d5c66", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.25.1/jline-terminal-jna-3.25.1.jar" + }, + { + "coord": "org.jline:jline-terminal-jna:jar:sources:3.25.1", + "dependencies": [ + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.jline:jline-native:jar:sources:3.25.1", + "org.jline:jline-terminal:jar:sources:3.25.1" + ], + "directDependencies": [ + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.jline:jline-terminal:jar:sources:3.25.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.25.1/jline-terminal-jna-3.25.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.25.1/jline-terminal-jna-3.25.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal-jna/3.25.1/jline-terminal-jna-3.25.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.25.1/jline-terminal-jna-3.25.1-sources.jar" + ], + "sha256": "fe03ffce7be95b6e1aa7e46ddc65b57c4fa4931b04ed65f64e590043c6eabfc5", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.25.1/jline-terminal-jna-3.25.1-sources.jar" + }, + { + "coord": "org.jline:jline-terminal:3.25.1", + "dependencies": [ + "org.jline:jline-native:3.25.1" + ], + "directDependencies": [ + "org.jline:jline-native:3.25.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal/3.25.1/jline-terminal-3.25.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.25.1/jline-terminal-3.25.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal/3.25.1/jline-terminal-3.25.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal/3.25.1/jline-terminal-3.25.1.jar" + ], + "sha256": "c0f5d70901255da66a94e59778b265d19f9308342578e34c88fc92d1b0c65fef", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.25.1/jline-terminal-3.25.1.jar" + }, + { + "coord": "org.jline:jline-terminal:jar:sources:3.25.1", + "dependencies": [ + "org.jline:jline-native:jar:sources:3.25.1" + ], + "directDependencies": [ + "org.jline:jline-native:jar:sources:3.25.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal/3.25.1/jline-terminal-3.25.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.25.1/jline-terminal-3.25.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal/3.25.1/jline-terminal-3.25.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal/3.25.1/jline-terminal-3.25.1-sources.jar" + ], + "sha256": "bee7c4d6b7c19365719d56f380c0fe96e0ddc584fa059104afe919e5b3be1d90", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.25.1/jline-terminal-3.25.1-sources.jar" + }, + { + "coord": "org.scala-lang.modules:scala-asm:9.6.0-scala-1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-asm/9.6.0-scala-1/scala-asm-9.6.0-scala-1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-asm/9.6.0-scala-1/scala-asm-9.6.0-scala-1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-asm/9.6.0-scala-1/scala-asm-9.6.0-scala-1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-asm/9.6.0-scala-1/scala-asm-9.6.0-scala-1.jar" + ], + "sha256": "bf16f8b69e89cadab550bce266a052780af7f1eb29dd1c04c3bd014113752c12", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-asm/9.6.0-scala-1/scala-asm-9.6.0-scala-1.jar" + }, + { + "coord": "org.scala-lang.modules:scala-asm:jar:sources:9.6.0-scala-1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-asm/9.6.0-scala-1/scala-asm-9.6.0-scala-1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-asm/9.6.0-scala-1/scala-asm-9.6.0-scala-1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-asm/9.6.0-scala-1/scala-asm-9.6.0-scala-1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-asm/9.6.0-scala-1/scala-asm-9.6.0-scala-1-sources.jar" + ], + "sha256": "6a58718b53a6bd8f1b1e22b2bf7ef9b88eccbbe5e0fc223847b0343100d4a45a", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-asm/9.6.0-scala-1/scala-asm-9.6.0-scala-1-sources.jar" + }, + { + "coord": "org.scala-lang:scala-library:2.13.12", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.12/scala-library-2.13.12.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.12/scala-library-2.13.12.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.13.12/scala-library-2.13.12.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.13.12/scala-library-2.13.12.jar" + ], + "sha256": "c6a879e4973a60f6162668542a33eaccc2bb565d1c934fb061c5844259131dd1", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.12/scala-library-2.13.12.jar" + }, + { + "coord": "org.scala-lang:scala-library:jar:sources:2.13.12", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.12/scala-library-2.13.12-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.12/scala-library-2.13.12-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.13.12/scala-library-2.13.12-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.13.12/scala-library-2.13.12-sources.jar" + ], + "sha256": "df3f19e71b4d2dd6bb882a6deafb31c7dceaad4f26489b9fd9ca56b493229174", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.12/scala-library-2.13.12-sources.jar" + }, + { + "coord": "org.scala-lang:scala3-compiler_3:3.4.2", + "dependencies": [ + "net.java.dev.jna:jna:5.14.0", + "org.jline:jline-native:3.25.1", + "org.jline:jline-reader:3.25.1", + "org.jline:jline-terminal-jna:3.25.1", + "org.jline:jline-terminal:3.25.1", + "org.scala-lang.modules:scala-asm:9.6.0-scala-1", + "org.scala-lang:scala-library:2.13.12", + "org.scala-lang:scala3-interfaces:3.4.2", + "org.scala-lang:scala3-library_3:3.4.2", + "org.scala-lang:tasty-core_3:3.4.2", + "org.scala-sbt:compiler-interface:1.9.6", + "org.scala-sbt:util-interface:1.9.8" + ], + "directDependencies": [ + "org.jline:jline-reader:3.25.1", + "org.jline:jline-terminal-jna:3.25.1", + "org.jline:jline-terminal:3.25.1", + "org.scala-lang.modules:scala-asm:9.6.0-scala-1", + "org.scala-lang:scala3-interfaces:3.4.2", + "org.scala-lang:scala3-library_3:3.4.2", + "org.scala-lang:tasty-core_3:3.4.2", + "org.scala-sbt:compiler-interface:1.9.6" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala3-compiler_3/3.4.2/scala3-compiler_3-3.4.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-compiler_3/3.4.2/scala3-compiler_3-3.4.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala3-compiler_3/3.4.2/scala3-compiler_3-3.4.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.4.2/scala3-compiler_3-3.4.2.jar" + ], + "sha256": "c50f6089b1d55b0b7f9fbb2ef9d69f966b07c734d9b96e2b45b5b41b2d1bdd45", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-compiler_3/3.4.2/scala3-compiler_3-3.4.2.jar" + }, + { + "coord": "org.scala-lang:scala3-compiler_3:jar:sources:3.4.2", + "dependencies": [ + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.jline:jline-native:jar:sources:3.25.1", + "org.jline:jline-reader:jar:sources:3.25.1", + "org.jline:jline-terminal-jna:jar:sources:3.25.1", + "org.jline:jline-terminal:jar:sources:3.25.1", + "org.scala-lang.modules:scala-asm:jar:sources:9.6.0-scala-1", + "org.scala-lang:scala-library:jar:sources:2.13.12", + "org.scala-lang:scala3-interfaces:jar:sources:3.4.2", + "org.scala-lang:scala3-library_3:jar:sources:3.4.2", + "org.scala-lang:tasty-core_3:jar:sources:3.4.2", + "org.scala-sbt:compiler-interface:jar:sources:1.9.6", + "org.scala-sbt:util-interface:jar:sources:1.9.8" + ], + "directDependencies": [ + "org.jline:jline-reader:jar:sources:3.25.1", + "org.jline:jline-terminal-jna:jar:sources:3.25.1", + "org.jline:jline-terminal:jar:sources:3.25.1", + "org.scala-lang.modules:scala-asm:jar:sources:9.6.0-scala-1", + "org.scala-lang:scala3-interfaces:jar:sources:3.4.2", + "org.scala-lang:scala3-library_3:jar:sources:3.4.2", + "org.scala-lang:tasty-core_3:jar:sources:3.4.2", + "org.scala-sbt:compiler-interface:jar:sources:1.9.6" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala3-compiler_3/3.4.2/scala3-compiler_3-3.4.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-compiler_3/3.4.2/scala3-compiler_3-3.4.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala3-compiler_3/3.4.2/scala3-compiler_3-3.4.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.4.2/scala3-compiler_3-3.4.2-sources.jar" + ], + "sha256": "e887ce463f9fe65b732bc26af1462b8ab7097e8dfbc582ca89823a8cc5bf383e", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-compiler_3/3.4.2/scala3-compiler_3-3.4.2-sources.jar" + }, + { + "coord": "org.scala-lang:scala3-interfaces:3.4.2", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala3-interfaces/3.4.2/scala3-interfaces-3.4.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-interfaces/3.4.2/scala3-interfaces-3.4.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala3-interfaces/3.4.2/scala3-interfaces-3.4.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala3-interfaces/3.4.2/scala3-interfaces-3.4.2.jar" + ], + "sha256": "3907de290b0e38070f5b5e5598d08d5f302ad0ef9014f7a690ca8e90946ddda3", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-interfaces/3.4.2/scala3-interfaces-3.4.2.jar" + }, + { + "coord": "org.scala-lang:scala3-interfaces:jar:sources:3.4.2", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala3-interfaces/3.4.2/scala3-interfaces-3.4.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-interfaces/3.4.2/scala3-interfaces-3.4.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala3-interfaces/3.4.2/scala3-interfaces-3.4.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala3-interfaces/3.4.2/scala3-interfaces-3.4.2-sources.jar" + ], + "sha256": "d0bc8086b14a247ed50f56c6e09f9563b907b10a7b2d90b493eed5eb7a5df1c4", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-interfaces/3.4.2/scala3-interfaces-3.4.2-sources.jar" + }, + { + "coord": "org.scala-lang:scala3-library_3:3.4.2", + "dependencies": [ + "org.scala-lang:scala-library:2.13.12" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.12" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala3-library_3/3.4.2/scala3-library_3-3.4.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-library_3/3.4.2/scala3-library_3-3.4.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala3-library_3/3.4.2/scala3-library_3-3.4.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala3-library_3/3.4.2/scala3-library_3-3.4.2.jar" + ], + "sha256": "5d8a8535e11d9dc52400cca0bc1d0edfe9385f15af5710c454ce8ab0e62783a0", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-library_3/3.4.2/scala3-library_3-3.4.2.jar" + }, + { + "coord": "org.scala-lang:scala3-library_3:jar:sources:3.4.2", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.12" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.12" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala3-library_3/3.4.2/scala3-library_3-3.4.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-library_3/3.4.2/scala3-library_3-3.4.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala3-library_3/3.4.2/scala3-library_3-3.4.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala3-library_3/3.4.2/scala3-library_3-3.4.2-sources.jar" + ], + "sha256": "9780c029947dfb9d8473d9e184185d83e11fe3a7da4578d937decd56b8818987", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-library_3/3.4.2/scala3-library_3-3.4.2-sources.jar" + }, + { + "coord": "org.scala-lang:scala3-sbt-bridge:3.4.2", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala3-sbt-bridge/3.4.2/scala3-sbt-bridge-3.4.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-sbt-bridge/3.4.2/scala3-sbt-bridge-3.4.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala3-sbt-bridge/3.4.2/scala3-sbt-bridge-3.4.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala3-sbt-bridge/3.4.2/scala3-sbt-bridge-3.4.2.jar" + ], + "sha256": "76ae65d99f14e131bd271ac22f805fbb8a39338a95e3fb38fd480fbca01964fe", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-sbt-bridge/3.4.2/scala3-sbt-bridge-3.4.2.jar" + }, + { + "coord": "org.scala-lang:scala3-sbt-bridge:jar:sources:3.4.2", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala3-sbt-bridge/3.4.2/scala3-sbt-bridge-3.4.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-sbt-bridge/3.4.2/scala3-sbt-bridge-3.4.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala3-sbt-bridge/3.4.2/scala3-sbt-bridge-3.4.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala3-sbt-bridge/3.4.2/scala3-sbt-bridge-3.4.2-sources.jar" + ], + "sha256": "32e4085415e70046fb70b9e05492dc551ea32e47d2df1890611298f91bacec5e", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-sbt-bridge/3.4.2/scala3-sbt-bridge-3.4.2-sources.jar" + }, + { + "coord": "org.scala-lang:tasty-core_3:3.4.2", + "dependencies": [ + "org.scala-lang:scala-library:2.13.12", + "org.scala-lang:scala3-library_3:3.4.2" + ], + "directDependencies": [ + "org.scala-lang:scala3-library_3:3.4.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/tasty-core_3/3.4.2/tasty-core_3-3.4.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/tasty-core_3/3.4.2/tasty-core_3-3.4.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/tasty-core_3/3.4.2/tasty-core_3-3.4.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/tasty-core_3/3.4.2/tasty-core_3-3.4.2.jar" + ], + "sha256": "3697f3a858c594c5022f2f7751504c069a384b92b4e093e9742bbaa627e0c10f", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/tasty-core_3/3.4.2/tasty-core_3-3.4.2.jar" + }, + { + "coord": "org.scala-lang:tasty-core_3:jar:sources:3.4.2", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.12", + "org.scala-lang:scala3-library_3:jar:sources:3.4.2" + ], + "directDependencies": [ + "org.scala-lang:scala3-library_3:jar:sources:3.4.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/tasty-core_3/3.4.2/tasty-core_3-3.4.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/tasty-core_3/3.4.2/tasty-core_3-3.4.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/tasty-core_3/3.4.2/tasty-core_3-3.4.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/tasty-core_3/3.4.2/tasty-core_3-3.4.2-sources.jar" + ], + "sha256": "24541ecf51853f3226acd3bfa9a3deaf4d3604fc19f1a1945febcc73f82ca800", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/tasty-core_3/3.4.2/tasty-core_3-3.4.2-sources.jar" + }, + { + "coord": "org.scala-sbt:compiler-interface:1.9.6", + "dependencies": [ + "org.scala-sbt:util-interface:1.9.8" + ], + "directDependencies": [ + "org.scala-sbt:util-interface:1.9.8" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.6/compiler-interface-1.9.6.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.6/compiler-interface-1.9.6.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.9.6/compiler-interface-1.9.6.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.9.6/compiler-interface-1.9.6.jar" + ], + "sha256": "b986ad1cfcef14c8abeaa3e788df28be9150acfbf587b5f7aa92c1b043c4fa8d", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.6/compiler-interface-1.9.6.jar" + }, + { + "coord": "org.scala-sbt:compiler-interface:jar:sources:1.9.6", + "dependencies": [ + "org.scala-sbt:util-interface:jar:sources:1.9.8" + ], + "directDependencies": [ + "org.scala-sbt:util-interface:jar:sources:1.9.8" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.6/compiler-interface-1.9.6-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.6/compiler-interface-1.9.6-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.9.6/compiler-interface-1.9.6-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.9.6/compiler-interface-1.9.6-sources.jar" + ], + "sha256": "a31ff0dcd76779a3ce36c161a5fb2c9849929ee2b91a9baee4570c0641f5cfca", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.6/compiler-interface-1.9.6-sources.jar" + }, + { + "coord": "org.scala-sbt:util-interface:1.9.8", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.8/util-interface-1.9.8.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.8/util-interface-1.9.8.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.9.8/util-interface-1.9.8.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.9.8/util-interface-1.9.8.jar" + ], + "sha256": "1302b1a265688b7bc31796d41f93fbe548e5daf36ea4dc848ee0a6b15fc53904", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.8/util-interface-1.9.8.jar" + }, + { + "coord": "org.scala-sbt:util-interface:jar:sources:1.9.8", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.8/util-interface-1.9.8-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.8/util-interface-1.9.8-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.9.8/util-interface-1.9.8-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.9.8/util-interface-1.9.8-sources.jar" + ], + "sha256": "e904a8c2f498a14b48ebc5e0e35b6c8844846b5ab9a4244042da4ec02811e561", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.8/util-interface-1.9.8-sources.jar" + } + ], + "version": "0.1.0" } - }, - "dependencies": { - "org.jline:jline-reader": [ - "org.jline:jline-terminal" - ], - "org.jline:jline-terminal": [ - "org.jline:jline-native" - ], - "org.jline:jline-terminal-jna": [ - "net.java.dev.jna:jna", - "org.jline:jline-terminal" - ], - "org.scala-lang:scala3-compiler_3": [ - "org.jline:jline-reader", - "org.jline:jline-terminal", - "org.jline:jline-terminal-jna", - "org.scala-lang.modules:scala-asm", - "org.scala-lang:scala3-interfaces", - "org.scala-lang:scala3-library_3", - "org.scala-lang:tasty-core_3", - "org.scala-sbt:compiler-interface" - ], - "org.scala-lang:scala3-library_3": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang:tasty-core_3": [ - "org.scala-lang:scala3-library_3" - ], - "org.scala-sbt:compiler-interface": [ - "org.scala-sbt:util-interface" - ] - }, - "packages": { - "net.java.dev.jna:jna": [ - "com.sun.jna", - "com.sun.jna.internal", - "com.sun.jna.ptr", - "com.sun.jna.win32" - ], - "org.jline:jline-native": [ - "org.jline.nativ" - ], - "org.jline:jline-reader": [ - "org.jline.keymap", - "org.jline.reader", - "org.jline.reader.impl", - "org.jline.reader.impl.completer", - "org.jline.reader.impl.history" - ], - "org.jline:jline-terminal": [ - "org.jline.terminal", - "org.jline.terminal.impl", - "org.jline.terminal.impl.exec", - "org.jline.terminal.spi", - "org.jline.utils" - ], - "org.jline:jline-terminal-jna": [ - "org.jline.terminal.impl.jna", - "org.jline.terminal.impl.jna.freebsd", - "org.jline.terminal.impl.jna.linux", - "org.jline.terminal.impl.jna.osx", - "org.jline.terminal.impl.jna.solaris", - "org.jline.terminal.impl.jna.win" - ], - "org.scala-lang.modules:scala-asm": [ - "scala.tools.asm", - "scala.tools.asm.commons", - "scala.tools.asm.signature", - "scala.tools.asm.tree", - "scala.tools.asm.tree.analysis", - "scala.tools.asm.util" - ], - "org.scala-lang:scala-library": [ - "scala", - "scala.annotation", - "scala.annotation.meta", - "scala.annotation.unchecked", - "scala.beans", - "scala.collection", - "scala.collection.concurrent", - "scala.collection.convert", - "scala.collection.convert.impl", - "scala.collection.generic", - "scala.collection.immutable", - "scala.collection.mutable", - "scala.compat", - "scala.concurrent", - "scala.concurrent.duration", - "scala.concurrent.impl", - "scala.io", - "scala.jdk", - "scala.jdk.javaapi", - "scala.math", - "scala.ref", - "scala.reflect", - "scala.reflect.macros.internal", - "scala.runtime", - "scala.runtime.java8", - "scala.sys", - "scala.sys.process", - "scala.util", - "scala.util.control", - "scala.util.hashing", - "scala.util.matching" - ], - "org.scala-lang:scala3-compiler_3": [ - "dotty.tools", - "dotty.tools.backend", - "dotty.tools.backend.jvm", - "dotty.tools.backend.sjs", - "dotty.tools.dotc", - "dotty.tools.dotc.ast", - "dotty.tools.dotc.cc", - "dotty.tools.dotc.classpath", - "dotty.tools.dotc.config", - "dotty.tools.dotc.core", - "dotty.tools.dotc.core.classfile", - "dotty.tools.dotc.core.tasty", - "dotty.tools.dotc.core.unpickleScala2", - "dotty.tools.dotc.coverage", - "dotty.tools.dotc.decompiler", - "dotty.tools.dotc.fromtasty", - "dotty.tools.dotc.inlines", - "dotty.tools.dotc.interactive", - "dotty.tools.dotc.parsing", - "dotty.tools.dotc.parsing.xml", - "dotty.tools.dotc.plugins", - "dotty.tools.dotc.printing", - "dotty.tools.dotc.profile", - "dotty.tools.dotc.quoted", - "dotty.tools.dotc.quoted.reflect", - "dotty.tools.dotc.reporting", - "dotty.tools.dotc.rewrites", - "dotty.tools.dotc.sbt", - "dotty.tools.dotc.sbt.interfaces", - "dotty.tools.dotc.semanticdb", - "dotty.tools.dotc.semanticdb.internal", - "dotty.tools.dotc.staging", - "dotty.tools.dotc.transform", - "dotty.tools.dotc.transform.init", - "dotty.tools.dotc.transform.localopt", - "dotty.tools.dotc.transform.patmat", - "dotty.tools.dotc.transform.sjs", - "dotty.tools.dotc.typer", - "dotty.tools.dotc.util", - "dotty.tools.io", - "dotty.tools.repl", - "dotty.tools.runner", - "dotty.tools.scripting", - "org.scalajs.ir", - "scala.quoted.runtime.impl", - "scala.quoted.runtime.impl.printers" - ], - "org.scala-lang:scala3-interfaces": [ - "dotty.tools.dotc.interfaces" - ], - "org.scala-lang:scala3-library_3": [ - "scala", - "scala.annotation", - "scala.annotation.internal", - "scala.annotation.unchecked", - "scala.compiletime", - "scala.compiletime.ops", - "scala.compiletime.testing", - "scala.deriving", - "scala.quoted", - "scala.quoted.runtime", - "scala.reflect", - "scala.runtime", - "scala.runtime.coverage", - "scala.runtime.function", - "scala.runtime.stdLibPatches", - "scala.util", - "scala.util.control" - ], - "org.scala-lang:scala3-sbt-bridge": [ - "dotty.tools.xsbt", - "xsbt" - ], - "org.scala-lang:tasty-core_3": [ - "dotty.tools.tasty", - "dotty.tools.tasty.util" - ], - "org.scala-sbt:compiler-interface": [ - "xsbti", - "xsbti.api", - "xsbti.compile", - "xsbti.compile.analysis" - ], - "org.scala-sbt:util-interface": [ - "xsbti" - ] - }, - "repositories": { - "https://repo.maven.apache.org/maven2/": [ - "net.java.dev.jna:jna", - "net.java.dev.jna:jna:jar:sources", - "org.jline:jline-native", - "org.jline:jline-native:jar:sources", - "org.jline:jline-reader", - "org.jline:jline-reader:jar:sources", - "org.jline:jline-terminal", - "org.jline:jline-terminal-jna", - "org.jline:jline-terminal-jna:jar:sources", - "org.jline:jline-terminal:jar:sources", - "org.scala-lang.modules:scala-asm", - "org.scala-lang.modules:scala-asm:jar:sources", - "org.scala-lang:scala-library", - "org.scala-lang:scala-library:jar:sources", - "org.scala-lang:scala3-compiler_3", - "org.scala-lang:scala3-compiler_3:jar:sources", - "org.scala-lang:scala3-interfaces", - "org.scala-lang:scala3-interfaces:jar:sources", - "org.scala-lang:scala3-library_3", - "org.scala-lang:scala3-library_3:jar:sources", - "org.scala-lang:scala3-sbt-bridge", - "org.scala-lang:scala3-sbt-bridge:jar:sources", - "org.scala-lang:tasty-core_3", - "org.scala-lang:tasty-core_3:jar:sources", - "org.scala-sbt:compiler-interface", - "org.scala-sbt:compiler-interface:jar:sources", - "org.scala-sbt:util-interface", - "org.scala-sbt:util-interface:jar:sources" - ], - "https://maven-central.storage-download.googleapis.com/maven2/": [ - "net.java.dev.jna:jna", - "net.java.dev.jna:jna:jar:sources", - "org.jline:jline-native", - "org.jline:jline-native:jar:sources", - "org.jline:jline-reader", - "org.jline:jline-reader:jar:sources", - "org.jline:jline-terminal", - "org.jline:jline-terminal-jna", - "org.jline:jline-terminal-jna:jar:sources", - "org.jline:jline-terminal:jar:sources", - "org.scala-lang.modules:scala-asm", - "org.scala-lang.modules:scala-asm:jar:sources", - "org.scala-lang:scala-library", - "org.scala-lang:scala-library:jar:sources", - "org.scala-lang:scala3-compiler_3", - "org.scala-lang:scala3-compiler_3:jar:sources", - "org.scala-lang:scala3-interfaces", - "org.scala-lang:scala3-interfaces:jar:sources", - "org.scala-lang:scala3-library_3", - "org.scala-lang:scala3-library_3:jar:sources", - "org.scala-lang:scala3-sbt-bridge", - "org.scala-lang:scala3-sbt-bridge:jar:sources", - "org.scala-lang:tasty-core_3", - "org.scala-lang:tasty-core_3:jar:sources", - "org.scala-sbt:compiler-interface", - "org.scala-sbt:compiler-interface:jar:sources", - "org.scala-sbt:util-interface", - "org.scala-sbt:util-interface:jar:sources" - ], - "https://mirror.bazel.build/repo1.maven.org/maven2/": [ - "net.java.dev.jna:jna", - "net.java.dev.jna:jna:jar:sources", - "org.jline:jline-native", - "org.jline:jline-native:jar:sources", - "org.jline:jline-reader", - "org.jline:jline-reader:jar:sources", - "org.jline:jline-terminal", - "org.jline:jline-terminal-jna", - "org.jline:jline-terminal-jna:jar:sources", - "org.jline:jline-terminal:jar:sources", - "org.scala-lang.modules:scala-asm", - "org.scala-lang.modules:scala-asm:jar:sources", - "org.scala-lang:scala-library", - "org.scala-lang:scala-library:jar:sources", - "org.scala-lang:scala3-compiler_3", - "org.scala-lang:scala3-compiler_3:jar:sources", - "org.scala-lang:scala3-interfaces", - "org.scala-lang:scala3-interfaces:jar:sources", - "org.scala-lang:scala3-library_3", - "org.scala-lang:scala3-library_3:jar:sources", - "org.scala-lang:scala3-sbt-bridge", - "org.scala-lang:scala3-sbt-bridge:jar:sources", - "org.scala-lang:tasty-core_3", - "org.scala-lang:tasty-core_3:jar:sources", - "org.scala-sbt:compiler-interface", - "org.scala-sbt:compiler-interface:jar:sources", - "org.scala-sbt:util-interface", - "org.scala-sbt:util-interface:jar:sources" - ] - }, - "version": "2" } diff --git a/annex_install.json b/annex_install.json index aacb384ce..70bd2fc83 100644 --- a/annex_install.json +++ b/annex_install.json @@ -1,3848 +1,7274 @@ { - "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": -1072929893, - "__RESOLVED_ARTIFACTS_HASH": -1699692112, - "artifacts": { - "ch.epfl.scala:bloop-backend_2.12": { - "shasums": { - "jar": "62778a25e6d62ccb9efde50621d0469810dc957a01715a988c1da5939a2c6fe5", - "sources": "456446e45fec886ca848fc1ef0e36a0d9bf1260464d1ed98369df9bfcf6c4bbe" - }, - "version": "1.0.0" - }, - "ch.epfl.scala:bloop-config_2.12": { - "shasums": { - "jar": "1f9b0639dd36e74bc18cdeac3d6a1e815a7919d2f025d2729fe6ffca4a137bd0", - "sources": "1252c13b68159ac36d643bc3f7a7e0f4bce9dea7871975eaeac706df37b52491" - }, - "version": "1.0.0" - }, - "ch.epfl.scala:bloop-frontend_2.12": { - "shasums": { - "jar": "8dccc92d2d0eb772cb78bec87578aeccc41da9b1d8289431a895d7e77d3daa29", - "sources": "c713a426b6213aa947c869269d77be2e20e415ed85021251e02274899a2d7ea7" - }, - "version": "1.0.0" - }, - "ch.epfl.scala:bsp_2.12": { - "shasums": { - "jar": "37d4fc75c72b7fabaf6fca8f1dc43e5fe1953f95f6631a0f34159fc75f2615a1", - "sources": "e9ca095842a243bd880f2396dbb852b1f06eda081c36afc31e2839832a2c19c7" - }, - "version": "1.0.0-M4" - }, - "ch.epfl.scala:case-app-annotations_2.12": { - "shasums": { - "jar": "6918a8e756486c4ab6d8fd037898c9b727e03ab16cc36edf95f3fd97519a6403", - "sources": "d9d3da4572c4278663212b34833629ba8616b887eb55477a4a71ea540258a610" - }, - "version": "1.2.0-faster-compile-time" - }, - "ch.epfl.scala:case-app-util_2.12": { - "shasums": { - "jar": "17cab6c45c702e01af1ebefe8415117eb4ca0813be76d08e1cc18f85fe5d7c5b", - "sources": "2e4e1cead6a42006d661dd3bf7dbbd19468d427f04a93e6517c6900dc4ce69ed" - }, - "version": "1.2.0-faster-compile-time" - }, - "ch.epfl.scala:case-app_2.12": { - "shasums": { - "jar": "316631204e37ba90c6e5457bd31a54e1497f00ceaa5d70cc9a902096dd663e2e", - "sources": "9fc615f1bd1419db048e7de32f6631c3373f3a421538e983334cd6b2f19a9885" - }, - "version": "1.2.0-faster-compile-time" - }, - "ch.epfl.scala:compiler-interface": { - "shasums": { - "jar": "468d515a1a23d2ffb5635d38addac8f0da7937e54f91ed278a9b1884947bc284", - "sources": "779b0dba1398d8fe90b8f89a4702929eb240e3677b50ba9751519e353277235a" - }, - "version": "1.1.7+62-0f4ad9d5" - }, - "ch.epfl.scala:nailgun-server": { - "shasums": { - "jar": "b5fbb84441e55c7e91540ee00d0808c8b656b0bfc2fc67907e754d3518ea66ea", - "sources": "c4bb657ec224b8ea19def64627ab8c9c76c9b6cc9dddc2572e8fc767055ebb2c" - }, - "version": "0c8b937b" - }, - "ch.epfl.scala:zinc-apiinfo_2.12": { - "shasums": { - "jar": "1b041dd66c3d50ec17a80a1e1b8c0e3dc16ca8308495661a0b48abe84f09f327", - "sources": "54e686ca61511cdcbb46b6b45cbf4804588ad6cfbf2c4f31c80ffacb47676436" - }, - "version": "1.1.7+62-0f4ad9d5" - }, - "ch.epfl.scala:zinc-classfile_2.12": { - "shasums": { - "jar": "298716ee438261d00757821e69d6849ece59f14d11a78c0c13d8ebce4ef74411", - "sources": "6514d2aa547d31b2f52a0398e4471b5978d585f91edcb9bca48e2ba1eebbdcf2" - }, - "version": "1.1.7+62-0f4ad9d5" - }, - "ch.epfl.scala:zinc-classpath_2.12": { - "shasums": { - "jar": "ef6b0fa2b0e84b17f31775afc032e1e6fe79248dbb2b63e81e72e416ae6baee1", - "sources": "facbecb4a0f2a87ef15881fcb3f98884b31c29a3a03440ebf102b38eb5e2bc1c" - }, - "version": "1.1.7+62-0f4ad9d5" - }, - "ch.epfl.scala:zinc-compile-core_2.12": { - "shasums": { - "jar": "28364add18a0602b87321d5fb41b2d1c62539369cb897a57261013fa9be07022", - "sources": "de3ce5cabd5c2e85a0859c98a7b3cb1b91d09bcd74b5142afc83629f0240a5b8" - }, - "version": "1.1.7+62-0f4ad9d5" - }, - "ch.epfl.scala:zinc-core_2.12": { - "shasums": { - "jar": "cb9d022abc169847c3a383f2e804b6f4452eaedac8771e4601863cc4da564006", - "sources": "144e22ce486a6b540a59ebb33525de795eb1150353c02a54597cc0ac8bb5301d" - }, - "version": "1.1.7+62-0f4ad9d5" - }, - "ch.epfl.scala:zinc-ivy-integration_2.12": { - "shasums": { - "jar": "90925274b812fcbdc703f335cbeba0341579d1569894e32fccdaa921e73e2329", - "sources": "16c4c2b77eeaea0e9bb6f2c3b9008ba9e6415e38ed991fb43e9e461ea63fa046" - }, - "version": "1.1.7+62-0f4ad9d5" - }, - "ch.epfl.scala:zinc-persist_2.12": { - "shasums": { - "jar": "e0a98ad11934b56c4357c11b866dbd6ba79c18deaeb7e38ed8ff9cd8ee52abde", - "sources": "4d84c7442a724b7eb0f53deba8fbbd6e614a3688402d1f1f8c3030320892ceb8" - }, - "version": "1.1.7+62-0f4ad9d5" - }, - "ch.epfl.scala:zinc_2.12": { - "shasums": { - "jar": "7d39dcd05773e4c61e5498cf38385e18479a9031a5052410bdbf6414c637ca18", - "sources": "d2e4de73c039433c9ebb35e0c05bb835ba84fada8acd1b47a47f5bb116b10bb4" - }, - "version": "1.1.7+62-0f4ad9d5" - }, - "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.beachape:enumeratum-circe_2.12": { - "shasums": { - "jar": "3f9379c7881d7ba6fc69b947f1761211819010880f5d833a99f2b266b2aa13ef", - "sources": "70edbb264a2c53d9b43bc02fc4a18c4b39b1f56c8c756e0aa020210db5deb6b9" - }, - "version": "1.5.15" - }, - "com.beachape:enumeratum-macros_2.12": { - "shasums": { - "jar": "e7ef82aa1ab73d52cccfe78fa09d8491d021df153415cae6f5e60295a90ee187", - "sources": "8ce1a95fffb8d0a5eff3d4f30ec4cd653a4ad43ecbc28fa0caac9ab30ec47f61" - }, - "version": "1.5.9" - }, - "com.beachape:enumeratum_2.12": { - "shasums": { - "jar": "5f71174cf860e4b5f832371084859e074bc318fd59110adb05e6c8fcafb3f7fc", - "sources": "b268236a8dcebddf109f24e825a98e2bc75742c48693e16f482618bdb3b29ed7" - }, - "version": "1.5.12" - }, - "com.chuusai:shapeless_2.12": { - "shasums": { - "jar": "312e301432375132ab49592bd8d22b9cd42a338a6300c6157fb4eafd1e3d5033", - "sources": "2d53fea1b1ab224a4a731d99245747a640deaa6ef3912c253666aa61287f3d63" - }, - "version": "2.3.3" - }, - "com.eed3si9n:gigahorse-core_2.12": { - "shasums": { - "jar": "9f198e77608a915797e9d4b5c91eedae621cecc3f25f2a551a3fa5d6bc678aa4", - "sources": "31a6c5d8599e7bd4a9c1d38e56764c80695970ba045d2e9040dc98929b22f52a" - }, - "version": "0.3.0" - }, - "com.eed3si9n:gigahorse-okhttp_2.12": { - "shasums": { - "jar": "5cf8e8bb9d90a08aa851ac066f378f83710af7823d788f837dc64f22cebcbbdf", - "sources": "e991af1bb7150ee6341d4fbf0305b173cf6e0af81076cbccb010a6581019ea09" - }, - "version": "0.3.0" - }, - "com.eed3si9n:shaded-jawn-parser_2.13": { - "shasums": { - "jar": "0fcb635e2ea79f252a83b15cafd74d9bbce05d693c43cd3ffe055abae2c6e293", - "sources": "52a356a9721461f2d40a334c39ceae5c67cd5074eba631f3aee44031a1c4ac18" - }, - "version": "0.9.1" - }, - "com.eed3si9n:shaded-scalajson_2.12": { - "shasums": { - "jar": "264051c330fca00fe57d4b4cb767c1f6b359a5603f79f63562832125c7055a40", - "sources": "73400e3c769019b0ea5f5f5f94e61a1ebbc3d9b6667c455524b15967a0f4e550" - }, - "version": "1.0.0-M4" - }, - "com.eed3si9n:shaded-scalajson_2.13": { - "shasums": { - "jar": "7b6b6d85727bd8abab940b559de8e32aa5081add29f7531c855bb0761ae8de67", - "sources": "33ab92febadd7def753691bcb981c9a01aa9a6bfcdbd0768495af630d19690fc" - }, - "version": "1.0.0-M4" - }, - "com.eed3si9n:sjson-new-core_2.12": { - "shasums": { - "jar": "0c67aa883ff2e703559d723dbab04e6510f0f541f5629426bf199c4719295830", - "sources": "985acefd13801f50d51e3d45c999c8eab4e4cc32a371deb733e884da20ff9225" - }, - "version": "0.8.2" - }, - "com.eed3si9n:sjson-new-core_2.13": { - "shasums": { - "jar": "253c5082b8c7933ceb8aa9c872828037669fd0bc51c01fc985940f2bd4193400", - "sources": "71d3f475660ae6a56a63cf6adaf7b28606065bee215163269f23e26a5c0b9c34" - }, - "version": "0.9.1" - }, - "com.eed3si9n:sjson-new-murmurhash_2.12": { - "shasums": { - "jar": "c8e622c56b1c48b384d95e8ebabaff80e1bed48aef50251a4abe613238593b93", - "sources": "19adc4fb08a1a59151a928eea65e4417f222618f33248295eaacb1677a906295" - }, - "version": "0.8.2" - }, - "com.eed3si9n:sjson-new-scalajson_2.12": { - "shasums": { - "jar": "a72ea3b3331d689e5aff14edab9b33319d3d0140e9512b87568e6311786c849d", - "sources": "820565cc1911a8e1d88789344229f92fe3dcfd747793f18fcf6e120fbe15dfd3" - }, - "version": "0.8.2" - }, - "com.eed3si9n:sjson-new-scalajson_2.13": { - "shasums": { - "jar": "c0bae93e48180549d7358c6e5c809568a20aeb4342661da0b61507af0a9fa5be", - "sources": "e67210c10845f54f5af1fdfa942f0751529c35f974e3dc3ad3298aee5f707d6d" - }, - "version": "0.9.1" - }, - "com.github.pathikrit:better-files_2.12": { - "shasums": { - "jar": "79b49bc134f06a6a091a962ec10ce3f1810403bccec7d99bf9928b7eb02e85c4", - "sources": "819911f7306162bdf9617f3ec0c218ebf7eec855e7120585e44f1b2a8d4852ec" - }, - "version": "3.4.0" - }, - "com.google.code.findbugs:jsr305": { - "shasums": { - "jar": "905721a0eea90a81534abb7ee6ef4ea2e5e645fa1def0a5cd88402df1b46c9ed", - "sources": null - }, - "version": "1.3.9" - }, - "com.google.errorprone:error_prone_annotations": { - "shasums": { - "jar": "cb4cfad870bf563a07199f3ebea5763f0dec440fcda0b318640b1feaa788656b", - "sources": "dbe7b49dd0584704d5c306b4ac7273556353ea3c0c6c3e50adeeca8df47047be" - }, - "version": "2.0.18" - }, - "com.google.guava:guava": { - "shasums": { - "jar": "7baa80df284117e5b945b19b98d367a85ea7b7801bd358ff657946c3bd1b6596", - "sources": "37fe8ba804fb3898c3c8f0cbac319cc9daa58400e5f0226a380ac94fb2c3ca14" - }, - "version": "23.0" - }, - "com.google.j2objc:j2objc-annotations": { - "shasums": { - "jar": "2994a7eb78f2710bd3d3bfb639b2c94e219cedac0d4d084d516e78c16dddecf6", - "sources": "2cd9022a77151d0b574887635cdfcdf3b78155b602abc89d7f8e62aba55cfb4f" - }, - "version": "1.1" - }, - "com.google.protobuf:protobuf-java": { - "shasums": { - "jar": "8d0e2f9834f4fc1a083a65239adc507ca83682c754a27f4c80e4f21990eff686", - "sources": "5490e99493ade0f34719dd2943832bc4f8455231e9bf69993de20ca1e09e53f0" - }, - "version": "3.15.8" - }, - "com.jcraft:jsch": { - "shasums": { - "jar": "92eb273a3316762478fdd4fe03a0ce1842c56f496c9c12fe1235db80450e1fdb", - "sources": "49d021dd58f6b455046a07331a68a5e647df354d7f6961b73df298203c43f44a" - }, - "version": "0.1.54" - }, - "com.lihaoyi:fansi_2.12": { - "shasums": { - "jar": "7d752240ec724e7370903c25b69088922fa3fb6831365db845cd72498f826eca", - "sources": "15ba86e9c7bb83bddab0470a48a349c0f1b90bb2cd1c7d16f09cee6ba40ca95f" - }, - "version": "0.2.5" - }, - "com.lihaoyi:fastparse-utils_2.12": { - "shasums": { - "jar": "0da40d3c89d3f7009ac2f6e32b11d8cdd379b40a2f09ce08669b4695f558e101", - "sources": "1eb227bc9659ce84b40d2d258c9ea3e8b8246f362241f43422266e05cabc902d" - }, - "version": "0.4.2" - }, - "com.lihaoyi:fastparse_2.12": { - "shasums": { - "jar": "43f57787179e902137167ba107e665272a0764f1addb3f452136f15bad5b21a8", - "sources": "8e242feb1704b8483969c726056c46e5ba2bb659c943d336ae3948b3a507707d" - }, - "version": "0.4.2" - }, - "com.lihaoyi:pprint_2.12": { - "shasums": { - "jar": "2e18aa0884870537bf5c562255fc759d4ebe360882b5cb2141b30eda4034c71d", - "sources": "41898c25987f7023fe1dafed7639eebd1653f1bf82ba4f4381bc7ef6c50e6084" - }, - "version": "0.5.3" - }, - "com.lihaoyi:sourcecode_2.12": { - "shasums": { - "jar": "9a3134484e596205d0acdcccd260e0854346f266cb4d24e1b8a31be54fbaf6d9", - "sources": "c5c53ba31a9f891988f9e21595e8728956be22d9ab9442e140840d0a73be8261" - }, - "version": "0.1.4" - }, - "com.lihaoyi:sourcecode_2.13": { - "shasums": { - "jar": "a639a90e2d21bbafd8a5e213c65442aad200ee086951605cbda8835bc6ef11d3", - "sources": "e4cae365cd26b19ffb1491472cbc91ed853bb2a1cbbcc8176d0187affebd8bbe" - }, - "version": "0.2.7" - }, - "com.lmax:disruptor": { - "shasums": { - "jar": "f412ecbb235c2460b45e63584109723dea8d94b819c78c9bfc38f50cba8546c0", - "sources": "ed3a5401dbfd2c6a6d914db221b7728acd17cfc8fdb7520c26879938a30132b4" - }, - "version": "3.4.2" - }, - "com.squareup.okhttp3:okhttp": { - "shasums": { - "jar": "f55abda036da75e1af45bd43b9dfa79b2a3d90905be9cb38687c6621597a8165", - "sources": "a05aec7722b6b96354a49b8a225be6bb7c86609ff3c358c45d3a5a8e4805c544" - }, - "version": "3.7.0" - }, - "com.squareup.okhttp3:okhttp-urlconnection": { - "shasums": { - "jar": "4631582b6818b6c8bdb0bca13b3ba126d2787969d33693d0f3912f1225fde3ec", - "sources": "f9526df9ab982e83fd184ad55d3c1b46a027d840108de9c55811d973c33013dc" - }, - "version": "3.7.0" - }, - "com.squareup.okio:okio": { - "shasums": { - "jar": "bfe7dfe483c37137966a1690f0c7d0b448ba217902c1fed202aaffdbba3291ae", - "sources": "6b7aca5e64927cea1a51b7200b1b5378b15fb1067330b628f987febef25c21c9" - }, - "version": "1.12.0" - }, - "com.swoval:file-tree-views": { - "shasums": { - "jar": "3eccd3cff2d7694aa3969d3a2f3a390dd8ec75243f9b672b2237f77308839273", - "sources": "d0802d4038e9693d8f06d76f441a2f899fea4ff5b9155fb03f10c02b5782c0f9" - }, - "version": "2.1.10" - }, - "com.thesamet.scalapb:lenses_2.13": { - "shasums": { - "jar": "18943a007752b150ae45f27e901c34f0e92009304f2f804ef156ab3056d79874", - "sources": "b03c01b1cf500431073b1ac82b0736c0b5689734318bcbe909d8df2767eda9a9" - }, - "version": "0.11.4" - }, - "com.thesamet.scalapb:scalapb-runtime_2.13": { - "shasums": { - "jar": "3be88effcb57ea136a2e5c377cdda3924d61b024afc2169f892c46662e266288", - "sources": "169a8d68b376b8fc34e6812315c714408894b5c92eea1f0672d68f8479be9719" - }, - "version": "0.11.4" - }, - "com.trueaccord.lenses:lenses_2.12": { - "shasums": { - "jar": "7cedcbc3125ad3f156466d6f3aec24b7fe6954cdc54a426ea089b4a46cd84c1c", - "sources": "2eed83e6a00d9dbfdcb367a28ca4a7d2080b0adb1dbabfe4892bef79e8b39aef" - }, - "version": "0.4.12" - }, - "com.trueaccord.scalapb:scalapb-runtime_2.12": { - "shasums": { - "jar": "7921c157a5d0c4852d6ee99c728cf77c148ce6d36280dfcb6b58d1fa90d17f8d", - "sources": "ed9b75d56698da090ead2ee1f464157225a4c6117d4adb31d2947809fb1f4da8" - }, - "version": "0.6.0" - }, - "com.typesafe.scala-logging:scala-logging_2.12": { - "shasums": { - "jar": "8baac084969b1421a54880147abe79265eba76b06a75afe0aa05781efc7bedf4", - "sources": "4096fc9a85ddc1dc556f34c22100d24b032408776140f8ec70bb359dc6f7579b" - }, - "version": "3.7.2" - }, - "com.typesafe:config": { - "shasums": { - "jar": "56f2c2e8acb95fb1e358b1e3faef2d565782c2a528747b01af8dd8e8bd87bd60", - "sources": "1acf655899a53e9acc577cb9d47e466095d83532cdfd1b17dd8e6f5c1c02642c" - }, - "version": "1.2.0" - }, - "com.typesafe:ssl-config-core_2.12": { - "shasums": { - "jar": "cf144ec0adeb7f97da59542910ef18471f03fde2e174148e711b7f071155c7e4", - "sources": "6b8b6f4135e7bcce10a8507b7b9f8a70982e71f34926b9f2118706f82793b410" - }, - "version": "0.2.2" - }, - "com.zaxxer:nuprocess": { - "shasums": { - "jar": "1e56122ff6dba06f58dc97829fd1cbd2c5e82c99e0e1bc66214bfc3159838dd9", - "sources": "e9d60ef0f35ea1fde6f19d57679ea8a82306ccfa07cde23c7de1fac986d5a4e0" - }, - "version": "1.2.4" - }, - "io.circe:circe-core_2.12": { - "shasums": { - "jar": "256527a2ce81b91db1d3cc27f44dc920a8cb33ff32c1d6e6d9813799df774e20", - "sources": "a84c0f7651d1a1ef2c4fb7df802965b572680f88e6128f09f137be19759e9e78" - }, - "version": "0.9.3" - }, - "io.circe:circe-derivation_2.12": { - "shasums": { - "jar": "055edaacc4f4b4e8e3c49523b23cb313a24f11db64d7ab7bd210e14c6fc5d89f", - "sources": "a144bf1b9ab92965db68d53f4020c001961989a79f98e05db47fdfd8afc1061b" - }, - "version": "0.9.0-M3" - }, - "io.circe:circe-generic-extras_2.12": { - "shasums": { - "jar": "710782ae44245c9f6bc79bd4038d7c2ec4f44222852ad9dfd7811b121316c1a4", - "sources": "309c311ddb3b2f022df9c46faef4487fdf85c12497d300dfc416ecc9c001ed7c" - }, - "version": "0.9.0" - }, - "io.circe:circe-generic_2.12": { - "shasums": { - "jar": "c9edca65268e37c08253a0a458d25356eab4c438cd283f73b0d8c7539d79dd95", - "sources": "fd52e3bf0c2f1a7f3e9319fefe71ef4dacacee6eed78dab26d55503352522f29" - }, - "version": "0.9.0" - }, - "io.circe:circe-jawn_2.12": { - "shasums": { - "jar": "0f3b99235b0180482a1a00dcfc2fe7604a42c027923dc4c1b5e99f7ffc507d9d", - "sources": "a2f0e0fb26bb000426af13fa0e6389642f06feb9f1b4e9620aa8c6e584ccdfd8" - }, - "version": "0.9.3" - }, - "io.circe:circe-numbers_2.12": { - "shasums": { - "jar": "49cd74886f74659b239b6a85f3ba8e24f212a9e6b299fb9a793e092905bc8fa3", - "sources": "562f7bc8dab9917b5e903cd8931a52cfce22d6a2fa53df1919ad5088580b8eb2" - }, - "version": "0.9.3" - }, - "io.circe:circe-parser_2.12": { - "shasums": { - "jar": "35613794c8881186487beaf5a620cd0f6f128cffd4e7a2c777ef034cb4bd1f75", - "sources": "08e1cdf76c77951b8771f2485756f6e9137de6473bfbaaabd86c9f568827b0a1" - }, - "version": "0.9.3" - }, - "io.get-coursier:coursier-cache_2.12": { - "shasums": { - "jar": "aaa00acfe8b99f986c42d6efcef5d67ff3b562a5c24da008c2348562127bff73", - "sources": "ce5baf5872f2ede7f4cd6698c0e36f5bd4a40025b69f879706ec3a03dc9bb45f" - }, - "version": "1.1.0-M3" - }, - "io.get-coursier:coursier-scalaz-interop_2.12": { - "shasums": { - "jar": "108365bbad931ad21d858ac252256c1ee789761e15706647f624881b32b6832a", - "sources": "aca9bedbd3eb226e5318aa9a90993dcc4f801e751cc6db2de01779d52d310be0" - }, - "version": "1.1.0-M3" - }, - "io.get-coursier:coursier_2.12": { - "shasums": { - "jar": "a4fc2994a83779d92413057128498620f99baf9772cc161ebdb865fc637ae370", - "sources": "6ddc5d5050751617b1f4d6279b3adf71d4cc7083a431fae0344839aaa5a08dc5" - }, - "version": "1.1.0-M3" - }, - "io.github.java-diff-utils:java-diff-utils": { - "shasums": { - "jar": "9990a2039778f6b4cc94790141c2868864eacee0620c6c459451121a901cd5b5", - "sources": "fa24217b6eaa115a05d4a8f0003fe913c62716ca2184d2e4f17de4a7d42a8822" - }, - "version": "4.12" - }, - "io.github.soc:directories": { - "shasums": { - "jar": "28bed4b1f8cc99a2fbf078213e52f7778a231a59614aab5ba2b9ca9c12617bf2", - "sources": "2bc1c4f7d3b6e96468dbb3bc542cd70155fb573a0ab1e51210a7e616b5fe9fbc" - }, - "version": "10" - }, - "io.monix:monix-eval_2.12": { - "shasums": { - "jar": "19f5a7e9e715783fc258b4eb995849baf59e67d4381a448b552fba08df0ea99f", - "sources": "0d2059f4496f6b0aae5d39a312eab35ef0289e9bcef4cd2d31f195d647576602" - }, - "version": "2.3.3" - }, - "io.monix:monix-execution_2.12": { - "shasums": { - "jar": "6ecbe76c795c70d6b4815522ff9101ece055a57ea854eadf5a4628e398182bf2", - "sources": "570e213e6d934a9cfcde2c650aa7abf25f66af943820e531706b8cb671800faf" - }, - "version": "2.3.3" - }, - "io.monix:monix-reactive_2.12": { - "shasums": { - "jar": "eadbfaaa79c9e6660f06b639159160f97db69d59ccd220002c1b7e71d32dc030", - "sources": "e3f67876d11218f9bf6e623bcc5e057c29845867d053e91457bed2d96f862e8f" - }, - "version": "2.3.3" - }, - "io.monix:monix-types_2.12": { - "shasums": { - "jar": "619624432339bc30999a5faef08eecbd0bb85759bd4971451d587e667e0b7a0b", - "sources": "d9b362d3860fa5c8ce2ba76ce6228a7ec950616c61fab32191003c10362ff602" - }, - "version": "2.3.3" - }, - "io.monix:monix_2.12": { - "shasums": { - "jar": "0c335a9728ca46899c2efbde95660ad12d726b012a3b0a2965368197cc297fc0", - "sources": "d0d501ae72f5241e5c84e0ed9ed860646d38966666bf8bd39e619cd3ad2355ef" - }, - "version": "2.3.3" - }, - "jline:jline": { - "shasums": { - "jar": "cb489eb7caf57811f01b7ac9d1fb8175ee1d2086627cc69f524e7d68f5f67982", - "sources": "521af91089abf9f6b154b42f32e99dca3d824fb8e22a844f78309f0fab5d1343" - }, - "version": "2.14.4" - }, - "me.vican.jorge:directory-watcher": { - "shasums": { - "jar": "011474987f98c35cf0344fd9151f5141aaf1d1f3bbc2995ee8c26ec53fbe95d5", - "sources": "1bda4438176b5674488fd752fc12178653e26993a57d33b70206ef6bbb0a3e08" - }, - "version": "0.5.2-a1c0e21c" - }, - "me.vican.jorge:directory-watcher-better-files_2.12": { - "shasums": { - "jar": "985576364f8c341592d1b24dabe1385d225df0480b6949cf1e12c13692912af3", - "sources": "29379d5c34e8d577fed2664b13eacec20ed92418ef1c3e074941dddab21fabf3" - }, - "version": "0.5.2-a1c0e21c" - }, - "net.java.dev.jna:jna": { - "shasums": { - "jar": "34ed1e1f27fa896bca50dbc4e99cf3732967cec387a7a0d5e3486c09673fe8c6", - "sources": "ebd774c761215676cda059fd68240628ef99f4aafa6d355ae00d184855aef134" - }, - "version": "5.14.0" - }, - "net.java.dev.jna:jna-platform": { - "shasums": { - "jar": "474d7b88f6e97009b6ec1d98c3024dd95c23187c65dabfbc35331bcac3d173dd", - "sources": "2f39937649df7e74f36f2b56ee2f15c15d4f9218fde43369c48a6b51e3cc087e" - }, - "version": "5.13.0" - }, - "net.openhft:zero-allocation-hashing": { - "shasums": { - "jar": "83636838b75e001a061414f6737141e6200d5e21293842a7a08201ada8988d32", - "sources": "d402059ea626c31ccd7006bfa1c39ae934b468e6166aa314178e85eebb0481dd" - }, - "version": "0.10.1" - }, - "net.sourceforge.argparse4j:argparse4j": { - "shasums": { - "jar": "98cb5468cac609f3bc07856f2e34088f50dc114181237c48d20ca69c3265d044", - "sources": "6baf8893d69bf3b8cac582de8b6407ebfeac992b1694b11897a9a614fb4b892f" - }, - "version": "0.8.1" - }, - "org.apache.logging.log4j:log4j-api": { - "shasums": { - "jar": "b0d8a4c8ab4fb8b1888d0095822703b0e6d4793c419550203da9e69196161de4", - "sources": "198c1e77d61a46fc08d323e1931cd20b430d8a4114a17658b64d15ddb2d902b0" - }, - "version": "2.17.1" - }, - "org.apache.logging.log4j:log4j-core": { - "shasums": { - "jar": "c967f223487980b9364e94a7c7f9a8a01fd3ee7c19bdbf0b0f9f8cb8511f3d41", - "sources": "51cc2d5e9eedb7eca77f4fb19d38d2c97084c818013e14a1b2c8d38aea627792" - }, - "version": "2.17.1" - }, - "org.codehaus.groovy:groovy": { - "shasums": { - "jar": "81689da0b150893d509d17c523c5becba97e3d7667e98f965d735505e25ad294", - "sources": "0a8193f9bdc5bf579275677afe00fcabf62fda96341a289dac592f140cd5d229" - }, - "version": "2.4.0" - }, - "org.codehaus.mojo:animal-sniffer-annotations": { - "shasums": { - "jar": "2068320bd6bad744c3673ab048f67e30bef8f518996fa380033556600669905d", - "sources": "d821ae1f706db2c1b9c88d4b7b0746b01039dac63762745ef3fe5579967dd16b" - }, - "version": "1.14" - }, - "org.fusesource.jansi:jansi": { - "shasums": { - "jar": "d207c1114741e7544a8f17c07b53d91689c0716c54eaf8f3b7149e73b0ec1b09", - "sources": "c5f4a5fb41546f9c7b0dd0d5d8ff6dfa396e8cc11049f64f7a96fe24436c59eb" - }, - "version": "2.1.0" - }, - "org.jacoco:org.jacoco.core": { - "shasums": { - "jar": "ecf1ad8192926438d0748bfcc3f09bebc7387d2a4184bb3a171a26084677e808", - "sources": "4a5ce92a3f3264d74033f43fecb6f644be6342ffe58b1cd322808c84cb47eb26" - }, - "version": "0.7.5.201505241946" - }, - "org.jctools:jctools-core": { - "shasums": { - "jar": "5fba472768fcff372783fad4f8a0b4ffec6a9b632b95885e26f509ba00093b07", - "sources": "2865cf812ec2bff6fba558034de0d419475096c1884f3be59a87b2f03277ed6a" - }, - "version": "2.0.1" - }, - "org.jline:jline": { - "shasums": { - "jar": "421efcde9db04c34b9c03cd66e0460e75e5cdd4a3cafde54ef370049ac092e7c", - "sources": "fc452b72d16b34773168a8e5e6aa9d5a54e4bd85fc099e397fe34e4133ab5efd" - }, - "version": "3.25.1" - }, - "org.jline:jline-terminal": { - "shasums": { - "jar": "abdbeafa38c4ccd82578c1f3d08ea48af439eff194d23aa3bae18fbe93b4dcf0", - "sources": "249e29e67e300d978491fcfbdbced5c9ecabec8aeaaf36145edfd5e890f34ac6" - }, - "version": "3.19.0" - }, - "org.jline:jline-terminal-jansi": { - "shasums": { - "jar": "09566aa3af952a83e2fc2582865b9afe20ad2c6afcafd78c52ae7eacdeb736c9", - "sources": "1c68b6d3c2cbb44e7fd04232ff81d5ea760bdb8005ae0f76a803608a88ddaa26" - }, - "version": "3.19.0" - }, - "org.jline:jline-terminal-jna": { - "shasums": { - "jar": "4a86975ba94756eaf70dea642d8d4c32535b65479050b56c476dc8c6b0519331", - "sources": "8bb10c163466591935b8accdf3b1793cc83478a56fa2a767f11810f110c2de30" - }, - "version": "3.19.0" - }, - "org.ow2.asm:asm-debug-all": { - "shasums": { - "jar": "4734de5b515a454b0096db6971fb068e5f70e6f10bbee2b3bd2fdfe5d978ed57", - "sources": "4caf5914ce1fc912779bd15f1ab6ce89e2df102cb81230a6a5adaacc047e7e55" - }, - "version": "5.0.1" - }, - "org.reactivestreams:reactive-streams": { - "shasums": { - "jar": "ef867702a614b96eb6c64fb65a8f5e14bdfcabbc1ae056f78a1643f7b79ca0eb", - "sources": "7e673b0c8b0ac51bdef8655cacf7804fb9791c47e71161a36c94738d55eefea8" - }, - "version": "1.0.0" - }, - "org.scala-lang.modules:scala-collection-compat_2.13": { - "shasums": { - "jar": "f17aec79f7588c60c028d879affe1bbbb92b3d2475cf8fa44b0afb9d3da2861f", - "sources": "8b7780ec47a0b6153c11810446eaab594ab3c2a9889da1ffd79a658fcc314bd8" - }, - "version": "2.4.4" - }, - "org.scala-lang.modules:scala-parallel-collections_2.13": { - "shasums": { - "jar": "d15f22f1308b98e9ac52a3d1ac8d582d548d6d852b1116cbdf5a50f431246ed1", - "sources": "c513b9f3f72d843c106376fb06c16eded909e7a6f16abbe58f880e18c1299bb9" - }, - "version": "0.2.0" - }, - "org.scala-lang.modules:scala-parser-combinators_2.12": { - "shasums": { - "jar": "f1f2f43cfd8042eb8a5d3021dc7ac3fff08ed6565311b6c145f8efe882a58a75", - "sources": "3c13525e5b80f12cd3def37c2edf1d3ade43d42af0aac59495fbe24339450475" - }, - "version": "1.0.5" - }, - "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.12": { - "shasums": { - "jar": "7cc3b6ceb56e879cb977e8e043f4bfe2e062f78795efd7efa09f85003cb3230a", - "sources": "a7e8aac79394df396afda98b35537791809d815ce15ab2224f7d31e50c753922" - }, - "version": "1.0.6" - }, - "org.scala-lang.modules:scala-xml_2.13": { - "shasums": { - "jar": "d122cbf93115ee714570de6a9c18e53001fedb474911d4cb5091758ee51f053a", - "sources": "b2f5f01c669f29dc03a8127f7a8ca2cdb40dff3e29ba416e3de4f6bef0480aca" - }, - "version": "2.1.0" - }, - "org.scala-lang:scala-compiler": { - "shasums": { - "jar": "17b7e1dd95900420816a3bc2788c8c7358c2a3c42899765a5c463a46bfa569a6", - "sources": "d6fc2c62cb90e32d5c08a1fbd312e2c5995d2a128f89ce34a5181e52cbff0809" - }, - "version": "2.13.14" - }, - "org.scala-lang:scala-library": { - "shasums": { - "jar": "43e0ca1583df1966eaf02f0fbddcfb3784b995dd06bfc907209347758ce4b7e3", - "sources": "4be0650f427ebf6ff8a462fe634fdc02665d59ec3962c4d98dbf5ac766f1dd4f" - }, - "version": "2.13.14" - }, - "org.scala-lang:scala-reflect": { - "shasums": { - "jar": "8846baaa8cf43b1b19725ab737abff145ca58d14a4d02e75d71ca8f7ca5f2926", - "sources": "94bf451e612d9460dbc7cee4beed84a7e5dd7b86bcb901ee8c78f7cf5e035e01" - }, - "version": "2.13.14" - }, - "org.scala-sbt.ivy:ivy": { - "shasums": { - "jar": "c48309f41f30b322704984dd851346bd1717568c4ff2a15bba164939764be4d1", - "sources": "00253bb52115873f4fb51dc44af396222f8648378632206abfd69cf1fb03564b" - }, - "version": "2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd" - }, - "org.scala-sbt.jline:jline": { - "shasums": { - "jar": "6d725b356cbfc1131ef2ae3c3555fa4952bf273f245b174a45413f03372f7239", - "sources": "e2d0fffa3f8ee802a1bcb043f24f1c9026107d055e58910cefc2ed6dcf567a82" - }, - "version": "2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493" - }, - "org.scala-sbt:collections_2.13": { - "shasums": { - "jar": "fff72dd495411fcb8a3a83452f47a8971f0c6aa1afddfd954a6c487858dc15b4", - "sources": "e1920052f99a02f2c7c0c62721aed79ebc4664512b8b46351037a9e741fd70e8" - }, - "version": "1.9.2" - }, - "org.scala-sbt:compiler-bridge_2.13": { - "shasums": { - "jar": "706b9c2dd76437521475506e250317fa6aa22d88bbfc7435a6cfcba45961a8b1", - "sources": "4e7414d70e3567acf78002fa99fc9bf3ef3e68543c481d8a7b292f7bc9d0f542" - }, - "version": "1.9.3" - }, - "org.scala-sbt:compiler-interface": { - "shasums": { - "jar": "fa586b4b1bdb61c48821cf9568507c1e4d57de3763d27ac2214523b00a173115", - "sources": "22200c6be450ea4651088f1d43670d14ee7808aa0c1b07a1ff6bc1104a3d7488" - }, - "version": "1.9.3" - }, - "org.scala-sbt:core-macros_2.13": { - "shasums": { - "jar": "1de3a6b6b7bb51b7c576c4d3cadd000d91ec871c16532dac57a1812800f4e1e3", - "sources": "6041b933faf51796d06a44b7b77a5511d526b974117b4037c30917070d1d6207" - }, - "version": "1.9.2" - }, - "org.scala-sbt:io_2.12": { - "shasums": { - "jar": "f1f514b54b4126ad9d4a1b14769128c06e1e0e7d18643f457a499af171b7a87e", - "sources": "f7a5811cdf568a46952e29385493a90ff3d812661ebe0498b5e4be02c112d887" - }, - "version": "1.1.4" - }, - "org.scala-sbt:io_2.13": { - "shasums": { - "jar": "e3df340735a8fac686355bddf0175deb2819a7f79776f2c82d322e236b3389e8", - "sources": "7d418af86861c74a0225f667e0aa6a2dbc577a5577da42a7329017b91e311d00" - }, - "version": "1.9.1" - }, - "org.scala-sbt:launcher-interface": { - "shasums": { - "jar": "f107c9a8ad70cef20232ef1651d564755c086f59e7bdb805307f5709d5bb22a7", - "sources": "17649418c47a1320f1bae741607d84f5c72328390559c2ed67656210ceb5901b" - }, - "version": "1.4.2" - }, - "org.scala-sbt:librarymanagement-core_2.12": { - "shasums": { - "jar": "6e00c7670de3403eb0c5382d67e123ddbaf8fd1619a340ef97f6fd702ad32cb6", - "sources": "a7250bc2d145cf143499d8ec9e4e1eb5b17570e08d88a80d88ac6b1dc6473fab" - }, - "version": "1.1.4" - }, - "org.scala-sbt:librarymanagement-ivy_2.12": { - "shasums": { - "jar": "0e37e9a4b695b07aacad9e4dcabe725a2511962901dd15b8fa68184af11fab3f", - "sources": "16179441e8ca6d0f25ede41c872b795dc7b74616f0da4d0c04225053e2f20d92" - }, - "version": "1.0.0" - }, - "org.scala-sbt:sbinary_2.12": { - "shasums": { - "jar": "24a7a488a6992b6ab4d8e78b170f5fbc02ef13eadada88851fd41cb2ccfa802a", - "sources": "1bace3a75fa2d5d73c0ea7d3be8107eec76fddeedba301af91fc6c99c6a774c9" - }, - "version": "0.4.4" - }, - "org.scala-sbt:sbinary_2.13": { - "shasums": { - "jar": "29ffddb55471910f2c5f82a954683ce1fab3b094900b97adb1f777c44b1afccc", - "sources": "2c0514613825d0120b3a4a2c6afbff575d0d32c9e4173e0d6c8776391654cdf2" - }, - "version": "0.5.1" - }, - "org.scala-sbt:test-agent": { - "shasums": { - "jar": "3c2685c110db34c5611222b62a4e33e039803e8f9a126513616bab62a7cc0041", - "sources": "b5bcaef40972e6aead9dba0b3a6ffa4a22259f7297e300091802bfa0b4763ed2" - }, - "version": "1.0.4" - }, - "org.scala-sbt:test-interface": { - "shasums": { - "jar": "15f70b38bb95f3002fec9aea54030f19bb4ecfbad64c67424b5e5fea09cd749e", - "sources": "c314491c9df4f0bd9dd125ef1d51228d70bd466ee57848df1cd1b96aea18a5ad" - }, - "version": "1.0" - }, - "org.scala-sbt:util-cache_2.12": { - "shasums": { - "jar": "3f69c0056db6a2bedd6b48fb5b5c69fa8260826bb2ec1fb0ffd4dfd7c2c7c66f", - "sources": "8c9e9cfaa958e01bc6c4db5eb174003cd0983bcf7a6825fe2d47d4845d7b1995" - }, - "version": "1.1.3" - }, - "org.scala-sbt:util-control_2.12": { - "shasums": { - "jar": "7a291f8a3080d7843620b087ab5c797c0ee5f43460a1e4f3ce4422afb73ae799", - "sources": "988b1faeaa4fcb1d3ac3c7e8647b67f9325828021246b516a0eec3d3d9abcd53" - }, - "version": "1.1.3" - }, - "org.scala-sbt:util-control_2.13": { - "shasums": { - "jar": "d435d93a26c7024944299d0e263181a4de19220f7bbd850844a5e7f849119321", - "sources": "ae2fa7ad077142e5b31af61756957d5483934e5c59b8e714e7a7c84cec4d34ec" - }, - "version": "1.9.2" - }, - "org.scala-sbt:util-interface": { - "shasums": { - "jar": "cbf6c0db09223e4c6c41afc4c5d831c47e3564e83361df4ba3cb04e439f83675", - "sources": "bed4331c842f3c8b1c198ec25ead990fd064e1a0672ae2856aafc2a7593ec1fe" - }, - "version": "1.9.2" - }, - "org.scala-sbt:util-logging_2.12": { - "shasums": { - "jar": "14ec8942b844658a7da7e04f60555751661ab1273f8b31b57cfd86b473be2653", - "sources": "d0315dec95a9da6a2faefaf785f3d53953cda084e1e4b8e6bdc030c7d3f9917d" - }, - "version": "1.1.3" - }, - "org.scala-sbt:util-logging_2.13": { - "shasums": { - "jar": "8f798079c7aed6d9f282493a75b6b1e82c48834f1d03b58d5fc82c2d59ca83a3", - "sources": "1f9cb26c90beb88bdc7106b44f5f94ece40ab7ed75920845ee48e19da5b73f7e" - }, - "version": "1.9.2" - }, - "org.scala-sbt:util-position_2.12": { - "shasums": { - "jar": "20fd912315e925f7f122aced8ae9aca3f099ae1ce6f1b00a201e1fcff1cdd360", - "sources": "7b0a5c848212de1ccda400d242074666423ddb47534af8100c0d4b474b6cf6be" - }, - "version": "1.1.3" - }, - "org.scala-sbt:util-position_2.13": { - "shasums": { - "jar": "43f4c6ec9371d8f7d888e90379bcf9d7ee08f5b7ac1fb25aaef2693d25d53c78", - "sources": "c3db60905dea3716cb0796219c901419fddaeb7540c8a1cc41a0663b8a417fda" - }, - "version": "1.9.2" - }, - "org.scala-sbt:util-relation_2.12": { - "shasums": { - "jar": "dff98263c5fd5fc374ac241221cb83619a6bcce328c060482589d810617c2287", - "sources": "8a14088c870199b828ec3e87da6d9cbe39b0b766ce51c9cbf6ba294fe9fed3c0" - }, - "version": "1.1.3" - }, - "org.scala-sbt:util-relation_2.13": { - "shasums": { - "jar": "96bae2ea13946da72059ad1e5658b869d1982b85558f42cfddc9c21e5b04a2fe", - "sources": "02acfad7f6f521e22c9237c6f845c63567a279d3930c5515b797b6f617a3281a" - }, - "version": "1.9.2" - }, - "org.scala-sbt:zinc-apiinfo_2.13": { - "shasums": { - "jar": "a9ac1985193d0b1581b6b8a64bda22b84c30290f0304d0de07d050b90eda9982", - "sources": "86d98a01c56ffb56834218104dfe1d8f18c17d6f55822983c313878f60c728e7" - }, - "version": "1.9.3" - }, - "org.scala-sbt:zinc-classfile_2.13": { - "shasums": { - "jar": "80ae2c88dbf55540ecdf692efccd7af5e9bc945f2245cbb580fae3a5eba19a4f", - "sources": "5d5fdd033650562a4c93d2e3a7f7ef126b98a477e3503898969ecb5725bc0971" - }, - "version": "1.9.3" - }, - "org.scala-sbt:zinc-classpath_2.13": { - "shasums": { - "jar": "a93e75690525b5489c5de3d06d83a5b16b85f138011161751b25e448513e3d49", - "sources": "b19c9fa3a9eb25aa0f169499704c680cd9b10bc04132988f2458aaa5ff495cab" - }, - "version": "1.9.3" - }, - "org.scala-sbt:zinc-compile-core_2.13": { - "shasums": { - "jar": "7153b283aa6d351b9628ed909e35492cd301a51bd42abd2f60657083d085f752", - "sources": "8a9878016e95f93b2f09b539da34a0992675e3563db5811485ebd4fea3073204" - }, - "version": "1.9.3" - }, - "org.scala-sbt:zinc-core_2.13": { - "shasums": { - "jar": "dfe60b5d52336ca16ee7df42dea0fc056cce97db643773e941c515cfb2ee783d", - "sources": "95b328e46e3ed197d76ce6205829c35bfb4f637bc79f955a92459671a0874a36" - }, - "version": "1.9.3" - }, - "org.scala-sbt:zinc-persist-core-assembly": { - "shasums": { - "jar": "a039032dd2ddd6c82ec76012a9972fda0a9e35c2481ec791b82a60c8fef54807", - "sources": "bd69ac85da555f56edab763c13500563d278f7d80f45aed6f3e39a55c7ed9e1b" - }, - "version": "1.9.3" - }, - "org.scala-sbt:zinc-persist_2.13": { - "shasums": { - "jar": "1d9df73c7b40247f13db6325e417c1d062ba98e7689a10f57d1d1d9a7904cd59", - "sources": "2f9d7a4d67ff05da8dfec9de9497fac794ec82e596c36747ba82f7271845183f" - }, - "version": "1.9.3" - }, - "org.scala-sbt:zinc_2.13": { - "shasums": { - "jar": "41eee1dae30599627287303ddb7b3ab5de1147aba20867fb4419dfee605d8a92", - "sources": "d20c3cf6861a43b1cda0f1ea452ed79aa4a92b49e67eb974e4e2c2e7b40e0fa1" - }, - "version": "1.9.3" - }, - "org.scalameta:jsonrpc_2.12": { - "shasums": { - "jar": "50c9aba9db630e174ccb522700cb163da5f96d8eb430d9776bf7bdcbe59a1879", - "sources": "69e82914de579a9c67a9fa2f41a9c4f5dd8c152fc14b18fe40be17d03f46d4cc" - }, - "version": "0.1.0" - }, - "org.scalameta:lsp4s_2.12": { - "shasums": { - "jar": "51244a5ba585f438ba6cca0336e87faa7e4d85ff68725edba06cee780ed01b8e", - "sources": "50eec572818c2644a1c5d953ec1dcb9bbb61df678755eae1c39404206188a5c1" - }, - "version": "0.1.0" - }, - "org.scalaz:scalaz-concurrent_2.12": { - "shasums": { - "jar": "d046209a58e42b74f2545473671ecc71c14c874615c7bd2f816ea3d5e91564a6", - "sources": "282d22a104a9b82b91d0f4a3307192a773574472125728d7806f3e79b4e579d9" - }, - "version": "7.2.20" - }, - "org.scalaz:scalaz-core_2.12": { - "shasums": { - "jar": "5e69ee5c989b26c176534168c4beba1f0c9c0f0e7469c86bc9ef771245fc6867", - "sources": "d5fb01a52285a96f437461bd8ffbaa37bbcec45ac954032e0aeba5900191d12e" - }, - "version": "7.2.20" - }, - "org.scalaz:scalaz-effect_2.12": { - "shasums": { - "jar": "c74e7ff8228125566fd6080a8abbda49ca50d40d15773a93a9ab973a07f2d4a4", - "sources": "26df8bb9234332a334178096338ed09d8522e2246380f9170a34fbb65f99fc1b" - }, - "version": "7.2.20" - }, - "org.slf4j:slf4j-api": { - "shasums": { - "jar": "18c4a0095d5c1da6b817592e767bb23d29dd2f560ad74df75ff3961dbde25b79", - "sources": "c4bc93180a4f0aceec3b057a2514abe04a79f06c174bbed910a2afb227b79366" - }, - "version": "1.7.25" - }, - "org.spire-math:jawn-parser_2.12": { - "shasums": { - "jar": "a442dc3a1f399a0c1d5245e5b09ac292b01c5794ee303443efa3c8a625cbd6c4", - "sources": "7541d3cbde1c37f0bc75971608d717a9223bb8dd879c96fc0256718eed4220dd" - }, - "version": "0.11.1" - }, - "org.typelevel:cats-core_2.12": { - "shasums": { - "jar": "9e1d264f3366f6090b17ebdf4fab7488c9491a7c82bc400b1f6ec05f39755b63", - "sources": "343630226130389da2a040c1ee16fc1e0c4be625b19b2591763e0d20236a3b9f" - }, - "version": "1.0.1" - }, - "org.typelevel:cats-kernel_2.12": { - "shasums": { - "jar": "d87025b6fb7f403d767f6fa726c1626c9c713927bdc6b2a58ac07a32fec7490d", - "sources": "4cfb3519fc4c7c6da339c614704cee1a9fa89357821ad9626b662dc7b5b963b9" - }, - "version": "1.0.1" - }, - "org.typelevel:cats-macros_2.12": { - "shasums": { - "jar": "c17a5625d9a203fa4676cb80ba22f65e68d18497945d24370bac9123ddc3da28", - "sources": "456b745024e4836a78967f9edb9e5db09a7af352ad161b44188960be90d22702" - }, - "version": "1.0.1" - }, - "org.typelevel:machinist_2.12": { - "shasums": { - "jar": "b7e97638fa25ba02414b9b8387e9ecc2ea2fce4c9d9068ac3108ee5718b477a9", - "sources": "739d6899f54e3c958d853622aec7e5198a719a2906faa50199189b0289ebef83" - }, - "version": "0.6.2" - }, - "org.typelevel:macro-compat_2.12": { - "shasums": { - "jar": "8b1514ec99ac9c7eded284367b6c9f8f17a097198a44e6f24488706d66bbd2b8", - "sources": "c748cbcda2e8828dd25e788617a4c559abf92960ef0f92f9f5d3ea67774c34c8" - }, - "version": "1.1.1" + "dependency_tree": { + "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", + "__INPUT_ARTIFACTS_HASH": -1529123589, + "__RESOLVED_ARTIFACTS_HASH": -1672915743, + "conflict_resolution": {}, + "dependencies": [ + { + "coord": "ch.epfl.scala:bloop-backend_2.12:1.0.0", + "dependencies": [ + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:nailgun-server:0c8b937b", + "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-compile-core_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-core_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-ivy-integration_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-persist_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc_2.12:1.1.7+62-0f4ad9d5", + "com.eed3si9n:gigahorse-core_2.12:0.3.0", + "com.eed3si9n:gigahorse-okhttp_2.12:0.3.0", + "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "com.github.pathikrit:better-files_2.12:3.4.0", + "com.google.code.findbugs:jsr305:1.3.9", + "com.google.errorprone:error_prone_annotations:2.0.18", + "com.google.guava:guava:23.0", + "com.google.j2objc:j2objc-annotations:1.1", + "com.google.protobuf:protobuf-java:3.19.6", + "com.jcraft:jsch:0.1.54", + "com.lihaoyi:fastparse-utils_2.12:0.4.2", + "com.lihaoyi:fastparse_2.12:0.4.2", + "com.lihaoyi:sourcecode_2.12:0.1.4", + "com.lmax:disruptor:3.4.2", + "com.squareup.okhttp3:okhttp-urlconnection:3.7.0", + "com.squareup.okhttp3:okhttp:3.7.0", + "com.squareup.okio:okio:1.12.0", + "com.trueaccord.lenses:lenses_2.12:0.4.12", + "com.trueaccord.scalapb:scalapb-runtime_2.12:0.6.0", + "com.typesafe:config:1.2.0", + "com.typesafe:ssl-config-core_2.12:0.2.2", + "io.get-coursier:coursier-cache_2.12:1.1.0-M3", + "io.get-coursier:coursier-scalaz-interop_2.12:1.1.0-M3", + "io.get-coursier:coursier_2.12:1.1.0-M3", + "io.github.soc:directories:10", + "io.monix:monix-eval_2.12:2.3.3", + "io.monix:monix-execution_2.12:2.3.3", + "io.monix:monix-reactive_2.12:2.3.3", + "io.monix:monix-types_2.12:2.3.3", + "io.monix:monix_2.12:2.3.3", + "jline:jline:2.14.4", + "me.vican.jorge:directory-watcher-better-files_2.12:0.5.2-a1c0e21c", + "me.vican.jorge:directory-watcher:0.5.2-a1c0e21c", + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "org.apache.logging.log4j:log4j-api:2.17.1", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.codehaus.mojo:animal-sniffer-annotations:1.14", + "org.jctools:jctools-core:2.0.1", + "org.reactivestreams:reactive-streams:1.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "org.scala-lang.modules:scala-xml_2.12:1.0.6", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt.ivy:ivy:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd", + "org.scala-sbt:io_2.12:1.1.4", + "org.scala-sbt:launcher-interface:1.4.2", + "org.scala-sbt:librarymanagement-core_2.12:1.1.4", + "org.scala-sbt:librarymanagement-ivy_2.12:1.0.0", + "org.scala-sbt:sbinary_2.12:0.4.4", + "org.scala-sbt:test-agent:1.0.4", + "org.scala-sbt:test-interface:1.0", + "org.scala-sbt:util-cache_2.12:1.1.3", + "org.scala-sbt:util-control_2.12:1.1.3", + "org.scala-sbt:util-interface:1.9.2", + "org.scala-sbt:util-logging_2.12:1.1.3", + "org.scala-sbt:util-position_2.12:1.1.3", + "org.scala-sbt:util-relation_2.12:1.1.3", + "org.scalaz:scalaz-concurrent_2.12:7.2.20", + "org.scalaz:scalaz-core_2.12:7.2.20", + "org.scalaz:scalaz-effect_2.12:7.2.20", + "org.slf4j:slf4j-api:1.7.25", + "org.spire-math:jawn-parser_2.12:0.11.1" + ], + "directDependencies": [ + "ch.epfl.scala:nailgun-server:0c8b937b", + "ch.epfl.scala:zinc_2.12:1.1.7+62-0f4ad9d5", + "com.lihaoyi:sourcecode_2.12:0.1.4", + "io.get-coursier:coursier-cache_2.12:1.1.0-M3", + "io.get-coursier:coursier-scalaz-interop_2.12:1.1.0-M3", + "io.get-coursier:coursier_2.12:1.1.0-M3", + "io.github.soc:directories:10", + "io.monix:monix_2.12:2.3.3", + "me.vican.jorge:directory-watcher-better-files_2.12:0.5.2-a1c0e21c", + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:librarymanagement-ivy_2.12:1.0.0", + "org.scala-sbt:test-agent:1.0.4", + "org.scala-sbt:test-interface:1.0", + "org.scalaz:scalaz-concurrent_2.12:7.2.20", + "org.scalaz:scalaz-core_2.12:7.2.20" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/bloop-backend_2.12/1.0.0/bloop-backend_2.12-1.0.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-backend_2.12/1.0.0/bloop-backend_2.12-1.0.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/bloop-backend_2.12/1.0.0/bloop-backend_2.12-1.0.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/bloop-backend_2.12/1.0.0/bloop-backend_2.12-1.0.0.jar" + ], + "sha256": "62778a25e6d62ccb9efde50621d0469810dc957a01715a988c1da5939a2c6fe5", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-backend_2.12/1.0.0/bloop-backend_2.12-1.0.0.jar" + }, + { + "coord": "ch.epfl.scala:bloop-backend_2.12:jar:sources:1.0.0", + "dependencies": [ + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:nailgun-server:jar:sources:0c8b937b", + "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-compile-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-ivy-integration_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-persist_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0", + "com.eed3si9n:gigahorse-okhttp_2.12:jar:sources:0.3.0", + "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "com.github.pathikrit:better-files_2.12:jar:sources:3.4.0", + "com.google.code.findbugs:jsr305:jar:sources:1.3.9", + "com.google.errorprone:error_prone_annotations:jar:sources:2.0.18", + "com.google.guava:guava:jar:sources:23.0", + "com.google.j2objc:j2objc-annotations:jar:sources:1.1", + "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "com.jcraft:jsch:jar:sources:0.1.54", + "com.lihaoyi:fastparse-utils_2.12:jar:sources:0.4.2", + "com.lihaoyi:fastparse_2.12:jar:sources:0.4.2", + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "com.lmax:disruptor:jar:sources:3.4.2", + "com.squareup.okhttp3:okhttp-urlconnection:jar:sources:3.7.0", + "com.squareup.okhttp3:okhttp:jar:sources:3.7.0", + "com.squareup.okio:okio:jar:sources:1.12.0", + "com.trueaccord.lenses:lenses_2.12:jar:sources:0.4.12", + "com.trueaccord.scalapb:scalapb-runtime_2.12:jar:sources:0.6.0", + "com.typesafe:config:jar:sources:1.2.0", + "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", + "io.get-coursier:coursier-cache_2.12:jar:sources:1.1.0-M3", + "io.get-coursier:coursier-scalaz-interop_2.12:jar:sources:1.1.0-M3", + "io.get-coursier:coursier_2.12:jar:sources:1.1.0-M3", + "io.github.soc:directories:jar:sources:10", + "io.monix:monix-eval_2.12:jar:sources:2.3.3", + "io.monix:monix-execution_2.12:jar:sources:2.3.3", + "io.monix:monix-reactive_2.12:jar:sources:2.3.3", + "io.monix:monix-types_2.12:jar:sources:2.3.3", + "io.monix:monix_2.12:jar:sources:2.3.3", + "jline:jline:jar:sources:2.14.4", + "me.vican.jorge:directory-watcher-better-files_2.12:jar:sources:0.5.2-a1c0e21c", + "me.vican.jorge:directory-watcher:jar:sources:0.5.2-a1c0e21c", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.14", + "org.jctools:jctools-core:jar:sources:2.0.1", + "org.reactivestreams:reactive-streams:jar:sources:1.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt.ivy:ivy:jar:sources:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "org.scala-sbt:librarymanagement-core_2.12:jar:sources:1.1.4", + "org.scala-sbt:librarymanagement-ivy_2.12:jar:sources:1.0.0", + "org.scala-sbt:sbinary_2.12:jar:sources:0.4.4", + "org.scala-sbt:test-agent:jar:sources:1.0.4", + "org.scala-sbt:test-interface:jar:sources:1.0", + "org.scala-sbt:util-cache_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-control_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-interface:jar:sources:1.9.2", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-position_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-relation_2.12:jar:sources:1.1.3", + "org.scalaz:scalaz-concurrent_2.12:jar:sources:7.2.20", + "org.scalaz:scalaz-core_2.12:jar:sources:7.2.20", + "org.scalaz:scalaz-effect_2.12:jar:sources:7.2.20", + "org.slf4j:slf4j-api:jar:sources:1.7.25", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + ], + "directDependencies": [ + "ch.epfl.scala:nailgun-server:jar:sources:0c8b937b", + "ch.epfl.scala:zinc_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "io.get-coursier:coursier-cache_2.12:jar:sources:1.1.0-M3", + "io.get-coursier:coursier-scalaz-interop_2.12:jar:sources:1.1.0-M3", + "io.get-coursier:coursier_2.12:jar:sources:1.1.0-M3", + "io.github.soc:directories:jar:sources:10", + "io.monix:monix_2.12:jar:sources:2.3.3", + "me.vican.jorge:directory-watcher-better-files_2.12:jar:sources:0.5.2-a1c0e21c", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:librarymanagement-ivy_2.12:jar:sources:1.0.0", + "org.scala-sbt:test-agent:jar:sources:1.0.4", + "org.scala-sbt:test-interface:jar:sources:1.0", + "org.scalaz:scalaz-concurrent_2.12:jar:sources:7.2.20", + "org.scalaz:scalaz-core_2.12:jar:sources:7.2.20" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/bloop-backend_2.12/1.0.0/bloop-backend_2.12-1.0.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-backend_2.12/1.0.0/bloop-backend_2.12-1.0.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/bloop-backend_2.12/1.0.0/bloop-backend_2.12-1.0.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/bloop-backend_2.12/1.0.0/bloop-backend_2.12-1.0.0-sources.jar" + ], + "sha256": "456446e45fec886ca848fc1ef0e36a0d9bf1260464d1ed98369df9bfcf6c4bbe", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-backend_2.12/1.0.0/bloop-backend_2.12-1.0.0-sources.jar" + }, + { + "coord": "ch.epfl.scala:bloop-config_2.12:1.0.0", + "dependencies": [ + "io.circe:circe-core_2.12:0.9.3", + "io.circe:circe-derivation_2.12:0.9.0-M3", + "io.circe:circe-jawn_2.12:0.9.3", + "io.circe:circe-numbers_2.12:0.9.3", + "io.circe:circe-parser_2.12:0.9.3", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.spire-math:jawn-parser_2.12:0.11.1", + "org.typelevel:cats-core_2.12:1.0.1", + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.typelevel:cats-macros_2.12:1.0.1", + "org.typelevel:machinist_2.12:0.6.2" + ], + "directDependencies": [ + "io.circe:circe-derivation_2.12:0.9.0-M3", + "io.circe:circe-parser_2.12:0.9.3", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/bloop-config_2.12/1.0.0/bloop-config_2.12-1.0.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-config_2.12/1.0.0/bloop-config_2.12-1.0.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/bloop-config_2.12/1.0.0/bloop-config_2.12-1.0.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/bloop-config_2.12/1.0.0/bloop-config_2.12-1.0.0.jar" + ], + "sha256": "1f9b0639dd36e74bc18cdeac3d6a1e815a7919d2f025d2729fe6ffca4a137bd0", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-config_2.12/1.0.0/bloop-config_2.12-1.0.0.jar" + }, + { + "coord": "ch.epfl.scala:bloop-config_2.12:jar:sources:1.0.0", + "dependencies": [ + "io.circe:circe-core_2.12:jar:sources:0.9.3", + "io.circe:circe-derivation_2.12:jar:sources:0.9.0-M3", + "io.circe:circe-jawn_2.12:jar:sources:0.9.3", + "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "io.circe:circe-parser_2.12:jar:sources:0.9.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", + "org.typelevel:cats-core_2.12:jar:sources:1.0.1", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "org.typelevel:machinist_2.12:jar:sources:0.6.2" + ], + "directDependencies": [ + "io.circe:circe-derivation_2.12:jar:sources:0.9.0-M3", + "io.circe:circe-parser_2.12:jar:sources:0.9.3", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/bloop-config_2.12/1.0.0/bloop-config_2.12-1.0.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-config_2.12/1.0.0/bloop-config_2.12-1.0.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/bloop-config_2.12/1.0.0/bloop-config_2.12-1.0.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/bloop-config_2.12/1.0.0/bloop-config_2.12-1.0.0-sources.jar" + ], + "sha256": "1252c13b68159ac36d643bc3f7a7e0f4bce9dea7871975eaeac706df37b52491", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-config_2.12/1.0.0/bloop-config_2.12-1.0.0-sources.jar" + }, + { + "coord": "ch.epfl.scala:bloop-frontend_2.12:1.0.0", + "dependencies": [ + "ch.epfl.scala:bloop-backend_2.12:1.0.0", + "ch.epfl.scala:bloop-config_2.12:1.0.0", + "ch.epfl.scala:bsp_2.12:1.0.0-M4", + "ch.epfl.scala:case-app-annotations_2.12:1.2.0-faster-compile-time", + "ch.epfl.scala:case-app-util_2.12:1.2.0-faster-compile-time", + "ch.epfl.scala:case-app_2.12:1.2.0-faster-compile-time", + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:nailgun-server:0c8b937b", + "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-compile-core_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-core_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-ivy-integration_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-persist_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc_2.12:1.1.7+62-0f4ad9d5", + "ch.qos.logback:logback-classic:1.2.3", + "ch.qos.logback:logback-core:1.2.3", + "com.beachape:enumeratum-circe_2.12:1.5.15", + "com.beachape:enumeratum-macros_2.12:1.5.9", + "com.beachape:enumeratum_2.12:1.5.12", + "com.chuusai:shapeless_2.12:2.3.3", + "com.eed3si9n:gigahorse-core_2.12:0.3.0", + "com.eed3si9n:gigahorse-okhttp_2.12:0.3.0", + "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "com.github.pathikrit:better-files_2.12:3.4.0", + "com.google.code.findbugs:jsr305:1.3.9", + "com.google.errorprone:error_prone_annotations:2.0.18", + "com.google.guava:guava:23.0", + "com.google.j2objc:j2objc-annotations:1.1", + "com.google.protobuf:protobuf-java:3.19.6", + "com.jcraft:jsch:0.1.54", + "com.lihaoyi:fansi_2.12:0.2.5", + "com.lihaoyi:fastparse-utils_2.12:0.4.2", + "com.lihaoyi:fastparse_2.12:0.4.2", + "com.lihaoyi:pprint_2.12:0.5.3", + "com.lihaoyi:sourcecode_2.12:0.1.4", + "com.lmax:disruptor:3.4.2", + "com.squareup.okhttp3:okhttp-urlconnection:3.7.0", + "com.squareup.okhttp3:okhttp:3.7.0", + "com.squareup.okio:okio:1.12.0", + "com.trueaccord.lenses:lenses_2.12:0.4.12", + "com.trueaccord.scalapb:scalapb-runtime_2.12:0.6.0", + "com.typesafe.scala-logging:scala-logging_2.12:3.7.2", + "com.typesafe:config:1.2.0", + "com.typesafe:ssl-config-core_2.12:0.2.2", + "com.zaxxer:nuprocess:1.2.4", + "io.circe:circe-core_2.12:0.9.3", + "io.circe:circe-derivation_2.12:0.9.0-M3", + "io.circe:circe-generic-extras_2.12:0.9.0", + "io.circe:circe-generic_2.12:0.9.0", + "io.circe:circe-jawn_2.12:0.9.3", + "io.circe:circe-numbers_2.12:0.9.3", + "io.circe:circe-parser_2.12:0.9.3", + "io.get-coursier:coursier-cache_2.12:1.1.0-M3", + "io.get-coursier:coursier-scalaz-interop_2.12:1.1.0-M3", + "io.get-coursier:coursier_2.12:1.1.0-M3", + "io.github.soc:directories:10", + "io.monix:monix-eval_2.12:2.3.3", + "io.monix:monix-execution_2.12:2.3.3", + "io.monix:monix-reactive_2.12:2.3.3", + "io.monix:monix-types_2.12:2.3.3", + "io.monix:monix_2.12:2.3.3", + "jline:jline:2.14.4", + "me.vican.jorge:directory-watcher-better-files_2.12:0.5.2-a1c0e21c", + "me.vican.jorge:directory-watcher:0.5.2-a1c0e21c", + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "org.apache.logging.log4j:log4j-api:2.17.1", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.codehaus.groovy:groovy:2.4.0", + "org.codehaus.mojo:animal-sniffer-annotations:1.14", + "org.jctools:jctools-core:2.0.1", + "org.reactivestreams:reactive-streams:1.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "org.scala-lang.modules:scala-xml_2.12:1.0.6", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt.ivy:ivy:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd", + "org.scala-sbt:io_2.12:1.1.4", + "org.scala-sbt:launcher-interface:1.4.2", + "org.scala-sbt:librarymanagement-core_2.12:1.1.4", + "org.scala-sbt:librarymanagement-ivy_2.12:1.0.0", + "org.scala-sbt:sbinary_2.12:0.4.4", + "org.scala-sbt:test-agent:1.0.4", + "org.scala-sbt:test-interface:1.0", + "org.scala-sbt:util-cache_2.12:1.1.3", + "org.scala-sbt:util-control_2.12:1.1.3", + "org.scala-sbt:util-interface:1.9.2", + "org.scala-sbt:util-logging_2.12:1.1.3", + "org.scala-sbt:util-position_2.12:1.1.3", + "org.scala-sbt:util-relation_2.12:1.1.3", + "org.scalameta:jsonrpc_2.12:0.1.0", + "org.scalameta:lsp4s_2.12:0.1.0", + "org.scalaz:scalaz-concurrent_2.12:7.2.20", + "org.scalaz:scalaz-core_2.12:7.2.20", + "org.scalaz:scalaz-effect_2.12:7.2.20", + "org.slf4j:slf4j-api:1.7.25", + "org.spire-math:jawn-parser_2.12:0.11.1", + "org.typelevel:cats-core_2.12:1.0.1", + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.typelevel:cats-macros_2.12:1.0.1", + "org.typelevel:machinist_2.12:0.6.2", + "org.typelevel:macro-compat_2.12:1.1.1" + ], + "directDependencies": [ + "ch.epfl.scala:bloop-backend_2.12:1.0.0", + "ch.epfl.scala:bloop-config_2.12:1.0.0", + "ch.epfl.scala:bsp_2.12:1.0.0-M4", + "ch.epfl.scala:case-app_2.12:1.2.0-faster-compile-time", + "com.zaxxer:nuprocess:1.2.4", + "io.monix:monix_2.12:2.3.3", + "org.scala-lang:scala-library:2.13.14", + "org.scalaz:scalaz-core_2.12:7.2.20" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/bloop-frontend_2.12/1.0.0/bloop-frontend_2.12-1.0.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-frontend_2.12/1.0.0/bloop-frontend_2.12-1.0.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/bloop-frontend_2.12/1.0.0/bloop-frontend_2.12-1.0.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/bloop-frontend_2.12/1.0.0/bloop-frontend_2.12-1.0.0.jar" + ], + "sha256": "8dccc92d2d0eb772cb78bec87578aeccc41da9b1d8289431a895d7e77d3daa29", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-frontend_2.12/1.0.0/bloop-frontend_2.12-1.0.0.jar" + }, + { + "coord": "ch.epfl.scala:bloop-frontend_2.12:jar:sources:1.0.0", + "dependencies": [ + "ch.epfl.scala:bloop-backend_2.12:jar:sources:1.0.0", + "ch.epfl.scala:bloop-config_2.12:jar:sources:1.0.0", + "ch.epfl.scala:bsp_2.12:jar:sources:1.0.0-M4", + "ch.epfl.scala:case-app-annotations_2.12:jar:sources:1.2.0-faster-compile-time", + "ch.epfl.scala:case-app-util_2.12:jar:sources:1.2.0-faster-compile-time", + "ch.epfl.scala:case-app_2.12:jar:sources:1.2.0-faster-compile-time", + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:nailgun-server:jar:sources:0c8b937b", + "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-compile-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-ivy-integration_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-persist_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.qos.logback:logback-classic:jar:sources:1.2.3", + "ch.qos.logback:logback-core:jar:sources:1.2.3", + "com.beachape:enumeratum-circe_2.12:jar:sources:1.5.15", + "com.beachape:enumeratum-macros_2.12:jar:sources:1.5.9", + "com.beachape:enumeratum_2.12:jar:sources:1.5.12", + "com.chuusai:shapeless_2.12:jar:sources:2.3.3", + "com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0", + "com.eed3si9n:gigahorse-okhttp_2.12:jar:sources:0.3.0", + "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "com.github.pathikrit:better-files_2.12:jar:sources:3.4.0", + "com.google.code.findbugs:jsr305:jar:sources:1.3.9", + "com.google.errorprone:error_prone_annotations:jar:sources:2.0.18", + "com.google.guava:guava:jar:sources:23.0", + "com.google.j2objc:j2objc-annotations:jar:sources:1.1", + "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "com.jcraft:jsch:jar:sources:0.1.54", + "com.lihaoyi:fansi_2.12:jar:sources:0.2.5", + "com.lihaoyi:fastparse-utils_2.12:jar:sources:0.4.2", + "com.lihaoyi:fastparse_2.12:jar:sources:0.4.2", + "com.lihaoyi:pprint_2.12:jar:sources:0.5.3", + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "com.lmax:disruptor:jar:sources:3.4.2", + "com.squareup.okhttp3:okhttp-urlconnection:jar:sources:3.7.0", + "com.squareup.okhttp3:okhttp:jar:sources:3.7.0", + "com.squareup.okio:okio:jar:sources:1.12.0", + "com.trueaccord.lenses:lenses_2.12:jar:sources:0.4.12", + "com.trueaccord.scalapb:scalapb-runtime_2.12:jar:sources:0.6.0", + "com.typesafe.scala-logging:scala-logging_2.12:jar:sources:3.7.2", + "com.typesafe:config:jar:sources:1.2.0", + "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", + "com.zaxxer:nuprocess:jar:sources:1.2.4", + "io.circe:circe-core_2.12:jar:sources:0.9.3", + "io.circe:circe-derivation_2.12:jar:sources:0.9.0-M3", + "io.circe:circe-generic-extras_2.12:jar:sources:0.9.0", + "io.circe:circe-generic_2.12:jar:sources:0.9.0", + "io.circe:circe-jawn_2.12:jar:sources:0.9.3", + "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "io.circe:circe-parser_2.12:jar:sources:0.9.3", + "io.get-coursier:coursier-cache_2.12:jar:sources:1.1.0-M3", + "io.get-coursier:coursier-scalaz-interop_2.12:jar:sources:1.1.0-M3", + "io.get-coursier:coursier_2.12:jar:sources:1.1.0-M3", + "io.github.soc:directories:jar:sources:10", + "io.monix:monix-eval_2.12:jar:sources:2.3.3", + "io.monix:monix-execution_2.12:jar:sources:2.3.3", + "io.monix:monix-reactive_2.12:jar:sources:2.3.3", + "io.monix:monix-types_2.12:jar:sources:2.3.3", + "io.monix:monix_2.12:jar:sources:2.3.3", + "jline:jline:jar:sources:2.14.4", + "me.vican.jorge:directory-watcher-better-files_2.12:jar:sources:0.5.2-a1c0e21c", + "me.vican.jorge:directory-watcher:jar:sources:0.5.2-a1c0e21c", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.codehaus.groovy:groovy:jar:sources:2.4.0", + "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.14", + "org.jctools:jctools-core:jar:sources:2.0.1", + "org.reactivestreams:reactive-streams:jar:sources:1.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt.ivy:ivy:jar:sources:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "org.scala-sbt:librarymanagement-core_2.12:jar:sources:1.1.4", + "org.scala-sbt:librarymanagement-ivy_2.12:jar:sources:1.0.0", + "org.scala-sbt:sbinary_2.12:jar:sources:0.4.4", + "org.scala-sbt:test-agent:jar:sources:1.0.4", + "org.scala-sbt:test-interface:jar:sources:1.0", + "org.scala-sbt:util-cache_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-control_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-interface:jar:sources:1.9.2", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-position_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-relation_2.12:jar:sources:1.1.3", + "org.scalameta:jsonrpc_2.12:jar:sources:0.1.0", + "org.scalameta:lsp4s_2.12:jar:sources:0.1.0", + "org.scalaz:scalaz-concurrent_2.12:jar:sources:7.2.20", + "org.scalaz:scalaz-core_2.12:jar:sources:7.2.20", + "org.scalaz:scalaz-effect_2.12:jar:sources:7.2.20", + "org.slf4j:slf4j-api:jar:sources:1.7.25", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", + "org.typelevel:cats-core_2.12:jar:sources:1.0.1", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "org.typelevel:machinist_2.12:jar:sources:0.6.2", + "org.typelevel:macro-compat_2.12:jar:sources:1.1.1" + ], + "directDependencies": [ + "ch.epfl.scala:bloop-backend_2.12:jar:sources:1.0.0", + "ch.epfl.scala:bloop-config_2.12:jar:sources:1.0.0", + "ch.epfl.scala:bsp_2.12:jar:sources:1.0.0-M4", + "ch.epfl.scala:case-app_2.12:jar:sources:1.2.0-faster-compile-time", + "com.zaxxer:nuprocess:jar:sources:1.2.4", + "io.monix:monix_2.12:jar:sources:2.3.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scalaz:scalaz-core_2.12:jar:sources:7.2.20" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/bloop-frontend_2.12/1.0.0/bloop-frontend_2.12-1.0.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-frontend_2.12/1.0.0/bloop-frontend_2.12-1.0.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/bloop-frontend_2.12/1.0.0/bloop-frontend_2.12-1.0.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/bloop-frontend_2.12/1.0.0/bloop-frontend_2.12-1.0.0-sources.jar" + ], + "sha256": "c713a426b6213aa947c869269d77be2e20e415ed85021251e02274899a2d7ea7", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-frontend_2.12/1.0.0/bloop-frontend_2.12-1.0.0-sources.jar" + }, + { + "coord": "ch.epfl.scala:bsp_2.12:1.0.0-M4", + "dependencies": [ + "ch.qos.logback:logback-classic:1.2.3", + "ch.qos.logback:logback-core:1.2.3", + "com.beachape:enumeratum-circe_2.12:1.5.15", + "com.beachape:enumeratum-macros_2.12:1.5.9", + "com.beachape:enumeratum_2.12:1.5.12", + "com.chuusai:shapeless_2.12:2.3.3", + "com.lihaoyi:fansi_2.12:0.2.5", + "com.lihaoyi:pprint_2.12:0.5.3", + "com.lihaoyi:sourcecode_2.12:0.1.4", + "com.typesafe.scala-logging:scala-logging_2.12:3.7.2", + "io.circe:circe-core_2.12:0.9.3", + "io.circe:circe-generic-extras_2.12:0.9.0", + "io.circe:circe-generic_2.12:0.9.0", + "io.circe:circe-numbers_2.12:0.9.3", + "io.circe:circe-parser_2.12:0.9.3", + "io.monix:monix_2.12:2.3.3", + "org.codehaus.groovy:groovy:2.4.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalameta:jsonrpc_2.12:0.1.0", + "org.scalameta:lsp4s_2.12:0.1.0", + "org.slf4j:slf4j-api:1.7.25", + "org.typelevel:cats-core_2.12:1.0.1", + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.typelevel:cats-macros_2.12:1.0.1", + "org.typelevel:machinist_2.12:0.6.2", + "org.typelevel:macro-compat_2.12:1.1.1" + ], + "directDependencies": [ + "io.circe:circe-core_2.12:0.9.3", + "org.scala-lang:scala-library:2.13.14", + "org.scalameta:lsp4s_2.12:0.1.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/bsp_2.12/1.0.0-M4/bsp_2.12-1.0.0-M4.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/bsp_2.12/1.0.0-M4/bsp_2.12-1.0.0-M4.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/bsp_2.12/1.0.0-M4/bsp_2.12-1.0.0-M4.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/bsp_2.12/1.0.0-M4/bsp_2.12-1.0.0-M4.jar" + ], + "sha256": "37d4fc75c72b7fabaf6fca8f1dc43e5fe1953f95f6631a0f34159fc75f2615a1", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/bsp_2.12/1.0.0-M4/bsp_2.12-1.0.0-M4.jar" + }, + { + "coord": "ch.epfl.scala:bsp_2.12:jar:sources:1.0.0-M4", + "dependencies": [ + "ch.qos.logback:logback-classic:jar:sources:1.2.3", + "ch.qos.logback:logback-core:jar:sources:1.2.3", + "com.beachape:enumeratum-circe_2.12:jar:sources:1.5.15", + "com.beachape:enumeratum-macros_2.12:jar:sources:1.5.9", + "com.beachape:enumeratum_2.12:jar:sources:1.5.12", + "com.chuusai:shapeless_2.12:jar:sources:2.3.3", + "com.lihaoyi:fansi_2.12:jar:sources:0.2.5", + "com.lihaoyi:pprint_2.12:jar:sources:0.5.3", + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "com.typesafe.scala-logging:scala-logging_2.12:jar:sources:3.7.2", + "io.circe:circe-core_2.12:jar:sources:0.9.3", + "io.circe:circe-generic-extras_2.12:jar:sources:0.9.0", + "io.circe:circe-generic_2.12:jar:sources:0.9.0", + "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "io.circe:circe-parser_2.12:jar:sources:0.9.3", + "io.monix:monix_2.12:jar:sources:2.3.3", + "org.codehaus.groovy:groovy:jar:sources:2.4.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalameta:jsonrpc_2.12:jar:sources:0.1.0", + "org.scalameta:lsp4s_2.12:jar:sources:0.1.0", + "org.slf4j:slf4j-api:jar:sources:1.7.25", + "org.typelevel:cats-core_2.12:jar:sources:1.0.1", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "org.typelevel:machinist_2.12:jar:sources:0.6.2", + "org.typelevel:macro-compat_2.12:jar:sources:1.1.1" + ], + "directDependencies": [ + "io.circe:circe-core_2.12:jar:sources:0.9.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scalameta:lsp4s_2.12:jar:sources:0.1.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/bsp_2.12/1.0.0-M4/bsp_2.12-1.0.0-M4-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/bsp_2.12/1.0.0-M4/bsp_2.12-1.0.0-M4-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/bsp_2.12/1.0.0-M4/bsp_2.12-1.0.0-M4-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/bsp_2.12/1.0.0-M4/bsp_2.12-1.0.0-M4-sources.jar" + ], + "sha256": "e9ca095842a243bd880f2396dbb852b1f06eda081c36afc31e2839832a2c19c7", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/bsp_2.12/1.0.0-M4/bsp_2.12-1.0.0-M4-sources.jar" + }, + { + "coord": "ch.epfl.scala:case-app-annotations_2.12:1.2.0-faster-compile-time", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/case-app-annotations_2.12/1.2.0-faster-compile-time/case-app-annotations_2.12-1.2.0-faster-compile-time.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app-annotations_2.12/1.2.0-faster-compile-time/case-app-annotations_2.12-1.2.0-faster-compile-time.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/case-app-annotations_2.12/1.2.0-faster-compile-time/case-app-annotations_2.12-1.2.0-faster-compile-time.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/case-app-annotations_2.12/1.2.0-faster-compile-time/case-app-annotations_2.12-1.2.0-faster-compile-time.jar" + ], + "sha256": "6918a8e756486c4ab6d8fd037898c9b727e03ab16cc36edf95f3fd97519a6403", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app-annotations_2.12/1.2.0-faster-compile-time/case-app-annotations_2.12-1.2.0-faster-compile-time.jar" + }, + { + "coord": "ch.epfl.scala:case-app-annotations_2.12:jar:sources:1.2.0-faster-compile-time", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/case-app-annotations_2.12/1.2.0-faster-compile-time/case-app-annotations_2.12-1.2.0-faster-compile-time-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app-annotations_2.12/1.2.0-faster-compile-time/case-app-annotations_2.12-1.2.0-faster-compile-time-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/case-app-annotations_2.12/1.2.0-faster-compile-time/case-app-annotations_2.12-1.2.0-faster-compile-time-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/case-app-annotations_2.12/1.2.0-faster-compile-time/case-app-annotations_2.12-1.2.0-faster-compile-time-sources.jar" + ], + "sha256": "d9d3da4572c4278663212b34833629ba8616b887eb55477a4a71ea540258a610", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app-annotations_2.12/1.2.0-faster-compile-time/case-app-annotations_2.12-1.2.0-faster-compile-time-sources.jar" + }, + { + "coord": "ch.epfl.scala:case-app-util_2.12:1.2.0-faster-compile-time", + "dependencies": [ + "com.chuusai:shapeless_2.12:2.3.3", + "org.scala-lang:scala-library:2.13.14", + "org.typelevel:macro-compat_2.12:1.1.1" + ], + "directDependencies": [ + "com.chuusai:shapeless_2.12:2.3.3", + "org.scala-lang:scala-library:2.13.14", + "org.typelevel:macro-compat_2.12:1.1.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/case-app-util_2.12/1.2.0-faster-compile-time/case-app-util_2.12-1.2.0-faster-compile-time.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app-util_2.12/1.2.0-faster-compile-time/case-app-util_2.12-1.2.0-faster-compile-time.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/case-app-util_2.12/1.2.0-faster-compile-time/case-app-util_2.12-1.2.0-faster-compile-time.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/case-app-util_2.12/1.2.0-faster-compile-time/case-app-util_2.12-1.2.0-faster-compile-time.jar" + ], + "sha256": "17cab6c45c702e01af1ebefe8415117eb4ca0813be76d08e1cc18f85fe5d7c5b", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app-util_2.12/1.2.0-faster-compile-time/case-app-util_2.12-1.2.0-faster-compile-time.jar" + }, + { + "coord": "ch.epfl.scala:case-app-util_2.12:jar:sources:1.2.0-faster-compile-time", + "dependencies": [ + "com.chuusai:shapeless_2.12:jar:sources:2.3.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.typelevel:macro-compat_2.12:jar:sources:1.1.1" + ], + "directDependencies": [ + "com.chuusai:shapeless_2.12:jar:sources:2.3.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.typelevel:macro-compat_2.12:jar:sources:1.1.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/case-app-util_2.12/1.2.0-faster-compile-time/case-app-util_2.12-1.2.0-faster-compile-time-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app-util_2.12/1.2.0-faster-compile-time/case-app-util_2.12-1.2.0-faster-compile-time-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/case-app-util_2.12/1.2.0-faster-compile-time/case-app-util_2.12-1.2.0-faster-compile-time-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/case-app-util_2.12/1.2.0-faster-compile-time/case-app-util_2.12-1.2.0-faster-compile-time-sources.jar" + ], + "sha256": "2e4e1cead6a42006d661dd3bf7dbbd19468d427f04a93e6517c6900dc4ce69ed", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app-util_2.12/1.2.0-faster-compile-time/case-app-util_2.12-1.2.0-faster-compile-time-sources.jar" + }, + { + "coord": "ch.epfl.scala:case-app_2.12:1.2.0-faster-compile-time", + "dependencies": [ + "ch.epfl.scala:case-app-annotations_2.12:1.2.0-faster-compile-time", + "ch.epfl.scala:case-app-util_2.12:1.2.0-faster-compile-time", + "com.chuusai:shapeless_2.12:2.3.3", + "org.scala-lang:scala-library:2.13.14", + "org.typelevel:macro-compat_2.12:1.1.1" + ], + "directDependencies": [ + "ch.epfl.scala:case-app-annotations_2.12:1.2.0-faster-compile-time", + "ch.epfl.scala:case-app-util_2.12:1.2.0-faster-compile-time", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/case-app_2.12/1.2.0-faster-compile-time/case-app_2.12-1.2.0-faster-compile-time.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app_2.12/1.2.0-faster-compile-time/case-app_2.12-1.2.0-faster-compile-time.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/case-app_2.12/1.2.0-faster-compile-time/case-app_2.12-1.2.0-faster-compile-time.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/case-app_2.12/1.2.0-faster-compile-time/case-app_2.12-1.2.0-faster-compile-time.jar" + ], + "sha256": "316631204e37ba90c6e5457bd31a54e1497f00ceaa5d70cc9a902096dd663e2e", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app_2.12/1.2.0-faster-compile-time/case-app_2.12-1.2.0-faster-compile-time.jar" + }, + { + "coord": "ch.epfl.scala:case-app_2.12:jar:sources:1.2.0-faster-compile-time", + "dependencies": [ + "ch.epfl.scala:case-app-annotations_2.12:jar:sources:1.2.0-faster-compile-time", + "ch.epfl.scala:case-app-util_2.12:jar:sources:1.2.0-faster-compile-time", + "com.chuusai:shapeless_2.12:jar:sources:2.3.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.typelevel:macro-compat_2.12:jar:sources:1.1.1" + ], + "directDependencies": [ + "ch.epfl.scala:case-app-annotations_2.12:jar:sources:1.2.0-faster-compile-time", + "ch.epfl.scala:case-app-util_2.12:jar:sources:1.2.0-faster-compile-time", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/case-app_2.12/1.2.0-faster-compile-time/case-app_2.12-1.2.0-faster-compile-time-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app_2.12/1.2.0-faster-compile-time/case-app_2.12-1.2.0-faster-compile-time-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/case-app_2.12/1.2.0-faster-compile-time/case-app_2.12-1.2.0-faster-compile-time-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/case-app_2.12/1.2.0-faster-compile-time/case-app_2.12-1.2.0-faster-compile-time-sources.jar" + ], + "sha256": "9fc615f1bd1419db048e7de32f6631c3373f3a421538e983334cd6b2f19a9885", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app_2.12/1.2.0-faster-compile-time/case-app_2.12-1.2.0-faster-compile-time-sources.jar" + }, + { + "coord": "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", + "dependencies": [ + "org.scala-sbt:util-interface:1.9.2" + ], + "directDependencies": [ + "org.scala-sbt:util-interface:1.9.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/compiler-interface/1.1.7%2B62-0f4ad9d5/compiler-interface-1.1.7%2B62-0f4ad9d5.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/compiler-interface/1.1.7%2B62-0f4ad9d5/compiler-interface-1.1.7%2B62-0f4ad9d5.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/compiler-interface/1.1.7%2B62-0f4ad9d5/compiler-interface-1.1.7%2B62-0f4ad9d5.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/compiler-interface/1.1.7%2B62-0f4ad9d5/compiler-interface-1.1.7%2B62-0f4ad9d5.jar" + ], + "sha256": "468d515a1a23d2ffb5635d38addac8f0da7937e54f91ed278a9b1884947bc284", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/compiler-interface/1.1.7%2B62-0f4ad9d5/compiler-interface-1.1.7%2B62-0f4ad9d5.jar" + }, + { + "coord": "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "dependencies": [ + "org.scala-sbt:util-interface:jar:sources:1.9.2" + ], + "directDependencies": [ + "org.scala-sbt:util-interface:jar:sources:1.9.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/compiler-interface/1.1.7%2B62-0f4ad9d5/compiler-interface-1.1.7%2B62-0f4ad9d5-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/compiler-interface/1.1.7%2B62-0f4ad9d5/compiler-interface-1.1.7%2B62-0f4ad9d5-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/compiler-interface/1.1.7%2B62-0f4ad9d5/compiler-interface-1.1.7%2B62-0f4ad9d5-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/compiler-interface/1.1.7%2B62-0f4ad9d5/compiler-interface-1.1.7%2B62-0f4ad9d5-sources.jar" + ], + "sha256": "779b0dba1398d8fe90b8f89a4702929eb240e3677b50ba9751519e353277235a", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/compiler-interface/1.1.7%2B62-0f4ad9d5/compiler-interface-1.1.7%2B62-0f4ad9d5-sources.jar" + }, + { + "coord": "ch.epfl.scala:nailgun-server:0c8b937b", + "dependencies": [ + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/nailgun-server/0c8b937b/nailgun-server-0c8b937b.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/nailgun-server/0c8b937b/nailgun-server-0c8b937b.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/nailgun-server/0c8b937b/nailgun-server-0c8b937b.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/nailgun-server/0c8b937b/nailgun-server-0c8b937b.jar" + ], + "sha256": "b5fbb84441e55c7e91540ee00d0808c8b656b0bfc2fc67907e754d3518ea66ea", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/nailgun-server/0c8b937b/nailgun-server-0c8b937b.jar" + }, + { + "coord": "ch.epfl.scala:nailgun-server:jar:sources:0c8b937b", + "dependencies": [ + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/nailgun-server/0c8b937b/nailgun-server-0c8b937b-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/nailgun-server/0c8b937b/nailgun-server-0c8b937b-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/nailgun-server/0c8b937b/nailgun-server-0c8b937b-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/nailgun-server/0c8b937b/nailgun-server-0c8b937b-sources.jar" + ], + "sha256": "c4bb657ec224b8ea19def64627ab8c9c76c9b6cc9dddc2572e8fc767055ebb2c", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/nailgun-server/0c8b937b/nailgun-server-0c8b937b-sources.jar" + }, + { + "coord": "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", + "dependencies": [ + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", + "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "com.lmax:disruptor:3.4.2", + "jline:jline:2.14.4", + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "org.apache.logging.log4j:log4j-api:2.17.1", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt:io_2.12:1.1.4", + "org.scala-sbt:util-interface:1.9.2", + "org.scala-sbt:util-logging_2.12:1.1.3", + "org.spire-math:jawn-parser_2.12:0.11.1" + ], + "directDependencies": [ + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-apiinfo_2.12/1.1.7%2B62-0f4ad9d5/zinc-apiinfo_2.12-1.1.7%2B62-0f4ad9d5.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-apiinfo_2.12/1.1.7%2B62-0f4ad9d5/zinc-apiinfo_2.12-1.1.7%2B62-0f4ad9d5.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/zinc-apiinfo_2.12/1.1.7%2B62-0f4ad9d5/zinc-apiinfo_2.12-1.1.7%2B62-0f4ad9d5.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/zinc-apiinfo_2.12/1.1.7%2B62-0f4ad9d5/zinc-apiinfo_2.12-1.1.7%2B62-0f4ad9d5.jar" + ], + "sha256": "1b041dd66c3d50ec17a80a1e1b8c0e3dc16ca8308495661a0b48abe84f09f327", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-apiinfo_2.12/1.1.7%2B62-0f4ad9d5/zinc-apiinfo_2.12-1.1.7%2B62-0f4ad9d5.jar" + }, + { + "coord": "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "dependencies": [ + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "com.lmax:disruptor:jar:sources:3.4.2", + "jline:jline:jar:sources:2.14.4", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:util-interface:jar:sources:1.9.2", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + ], + "directDependencies": [ + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-apiinfo_2.12/1.1.7%2B62-0f4ad9d5/zinc-apiinfo_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-apiinfo_2.12/1.1.7%2B62-0f4ad9d5/zinc-apiinfo_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/zinc-apiinfo_2.12/1.1.7%2B62-0f4ad9d5/zinc-apiinfo_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/zinc-apiinfo_2.12/1.1.7%2B62-0f4ad9d5/zinc-apiinfo_2.12-1.1.7%2B62-0f4ad9d5-sources.jar" + ], + "sha256": "54e686ca61511cdcbb46b6b45cbf4804588ad6cfbf2c4f31c80ffacb47676436", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-apiinfo_2.12/1.1.7%2B62-0f4ad9d5/zinc-apiinfo_2.12-1.1.7%2B62-0f4ad9d5-sources.jar" + }, + { + "coord": "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", + "dependencies": [ + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", + "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "com.lmax:disruptor:3.4.2", + "jline:jline:2.14.4", + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "org.apache.logging.log4j:log4j-api:2.17.1", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt:io_2.12:1.1.4", + "org.scala-sbt:util-interface:1.9.2", + "org.scala-sbt:util-logging_2.12:1.1.3", + "org.spire-math:jawn-parser_2.12:0.11.1" + ], + "directDependencies": [ + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:io_2.12:1.1.4", + "org.scala-sbt:util-logging_2.12:1.1.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-classfile_2.12/1.1.7%2B62-0f4ad9d5/zinc-classfile_2.12-1.1.7%2B62-0f4ad9d5.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-classfile_2.12/1.1.7%2B62-0f4ad9d5/zinc-classfile_2.12-1.1.7%2B62-0f4ad9d5.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/zinc-classfile_2.12/1.1.7%2B62-0f4ad9d5/zinc-classfile_2.12-1.1.7%2B62-0f4ad9d5.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/zinc-classfile_2.12/1.1.7%2B62-0f4ad9d5/zinc-classfile_2.12-1.1.7%2B62-0f4ad9d5.jar" + ], + "sha256": "298716ee438261d00757821e69d6849ece59f14d11a78c0c13d8ebce4ef74411", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-classfile_2.12/1.1.7%2B62-0f4ad9d5/zinc-classfile_2.12-1.1.7%2B62-0f4ad9d5.jar" + }, + { + "coord": "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "dependencies": [ + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "com.lmax:disruptor:jar:sources:3.4.2", + "jline:jline:jar:sources:2.14.4", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:util-interface:jar:sources:1.9.2", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + ], + "directDependencies": [ + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-classfile_2.12/1.1.7%2B62-0f4ad9d5/zinc-classfile_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-classfile_2.12/1.1.7%2B62-0f4ad9d5/zinc-classfile_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/zinc-classfile_2.12/1.1.7%2B62-0f4ad9d5/zinc-classfile_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/zinc-classfile_2.12/1.1.7%2B62-0f4ad9d5/zinc-classfile_2.12-1.1.7%2B62-0f4ad9d5-sources.jar" + ], + "sha256": "6514d2aa547d31b2f52a0398e4471b5978d585f91edcb9bca48e2ba1eebbdcf2", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-classfile_2.12/1.1.7%2B62-0f4ad9d5/zinc-classfile_2.12-1.1.7%2B62-0f4ad9d5-sources.jar" + }, + { + "coord": "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", + "dependencies": [ + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:io_2.12:1.1.4", + "org.scala-sbt:launcher-interface:1.4.2", + "org.scala-sbt:util-interface:1.9.2" + ], + "directDependencies": [ + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:io_2.12:1.1.4", + "org.scala-sbt:launcher-interface:1.4.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-classpath_2.12/1.1.7%2B62-0f4ad9d5/zinc-classpath_2.12-1.1.7%2B62-0f4ad9d5.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-classpath_2.12/1.1.7%2B62-0f4ad9d5/zinc-classpath_2.12-1.1.7%2B62-0f4ad9d5.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/zinc-classpath_2.12/1.1.7%2B62-0f4ad9d5/zinc-classpath_2.12-1.1.7%2B62-0f4ad9d5.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/zinc-classpath_2.12/1.1.7%2B62-0f4ad9d5/zinc-classpath_2.12-1.1.7%2B62-0f4ad9d5.jar" + ], + "sha256": "ef6b0fa2b0e84b17f31775afc032e1e6fe79248dbb2b63e81e72e416ae6baee1", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-classpath_2.12/1.1.7%2B62-0f4ad9d5/zinc-classpath_2.12-1.1.7%2B62-0f4ad9d5.jar" + }, + { + "coord": "ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "dependencies": [ + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "org.scala-sbt:util-interface:jar:sources:1.9.2" + ], + "directDependencies": [ + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:launcher-interface:jar:sources:1.4.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-classpath_2.12/1.1.7%2B62-0f4ad9d5/zinc-classpath_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-classpath_2.12/1.1.7%2B62-0f4ad9d5/zinc-classpath_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/zinc-classpath_2.12/1.1.7%2B62-0f4ad9d5/zinc-classpath_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/zinc-classpath_2.12/1.1.7%2B62-0f4ad9d5/zinc-classpath_2.12-1.1.7%2B62-0f4ad9d5-sources.jar" + ], + "sha256": "facbecb4a0f2a87ef15881fcb3f98884b31c29a3a03440ebf102b38eb5e2bc1c", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-classpath_2.12/1.1.7%2B62-0f4ad9d5/zinc-classpath_2.12-1.1.7%2B62-0f4ad9d5-sources.jar" + }, + { + "coord": "ch.epfl.scala:zinc-compile-core_2.12:1.1.7+62-0f4ad9d5", + "dependencies": [ + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", + "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "com.lmax:disruptor:3.4.2", + "jline:jline:2.14.4", + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "org.apache.logging.log4j:log4j-api:2.17.1", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt:io_2.12:1.1.4", + "org.scala-sbt:launcher-interface:1.4.2", + "org.scala-sbt:util-control_2.12:1.1.3", + "org.scala-sbt:util-interface:1.9.2", + "org.scala-sbt:util-logging_2.12:1.1.3", + "org.spire-math:jawn-parser_2.12:0.11.1" + ], + "directDependencies": [ + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", + "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:io_2.12:1.1.4", + "org.scala-sbt:launcher-interface:1.4.2", + "org.scala-sbt:util-control_2.12:1.1.3", + "org.scala-sbt:util-logging_2.12:1.1.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-compile-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-compile-core_2.12-1.1.7%2B62-0f4ad9d5.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-compile-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-compile-core_2.12-1.1.7%2B62-0f4ad9d5.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/zinc-compile-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-compile-core_2.12-1.1.7%2B62-0f4ad9d5.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/zinc-compile-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-compile-core_2.12-1.1.7%2B62-0f4ad9d5.jar" + ], + "sha256": "28364add18a0602b87321d5fb41b2d1c62539369cb897a57261013fa9be07022", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-compile-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-compile-core_2.12-1.1.7%2B62-0f4ad9d5.jar" + }, + { + "coord": "ch.epfl.scala:zinc-compile-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "dependencies": [ + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "com.lmax:disruptor:jar:sources:3.4.2", + "jline:jline:jar:sources:2.14.4", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "org.scala-sbt:util-control_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-interface:jar:sources:1.9.2", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + ], + "directDependencies": [ + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "org.scala-sbt:util-control_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-compile-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-compile-core_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-compile-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-compile-core_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/zinc-compile-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-compile-core_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/zinc-compile-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-compile-core_2.12-1.1.7%2B62-0f4ad9d5-sources.jar" + ], + "sha256": "de3ce5cabd5c2e85a0859c98a7b3cb1b91d09bcd74b5142afc83629f0240a5b8", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-compile-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-compile-core_2.12-1.1.7%2B62-0f4ad9d5-sources.jar" + }, + { + "coord": "ch.epfl.scala:zinc-core_2.12:1.1.7+62-0f4ad9d5", + "dependencies": [ + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", + "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "com.lmax:disruptor:3.4.2", + "jline:jline:2.14.4", + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "org.apache.logging.log4j:log4j-api:2.17.1", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt:io_2.12:1.1.4", + "org.scala-sbt:launcher-interface:1.4.2", + "org.scala-sbt:util-interface:1.9.2", + "org.scala-sbt:util-logging_2.12:1.1.3", + "org.scala-sbt:util-relation_2.12:1.1.3", + "org.spire-math:jawn-parser_2.12:0.11.1" + ], + "directDependencies": [ + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:io_2.12:1.1.4", + "org.scala-sbt:util-logging_2.12:1.1.3", + "org.scala-sbt:util-relation_2.12:1.1.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-core_2.12-1.1.7%2B62-0f4ad9d5.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-core_2.12-1.1.7%2B62-0f4ad9d5.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/zinc-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-core_2.12-1.1.7%2B62-0f4ad9d5.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/zinc-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-core_2.12-1.1.7%2B62-0f4ad9d5.jar" + ], + "sha256": "cb9d022abc169847c3a383f2e804b6f4452eaedac8771e4601863cc4da564006", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-core_2.12-1.1.7%2B62-0f4ad9d5.jar" + }, + { + "coord": "ch.epfl.scala:zinc-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "dependencies": [ + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "com.lmax:disruptor:jar:sources:3.4.2", + "jline:jline:jar:sources:2.14.4", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "org.scala-sbt:util-interface:jar:sources:1.9.2", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-relation_2.12:jar:sources:1.1.3", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + ], + "directDependencies": [ + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-relation_2.12:jar:sources:1.1.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-core_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-core_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/zinc-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-core_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/zinc-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-core_2.12-1.1.7%2B62-0f4ad9d5-sources.jar" + ], + "sha256": "144e22ce486a6b540a59ebb33525de795eb1150353c02a54597cc0ac8bb5301d", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-core_2.12-1.1.7%2B62-0f4ad9d5-sources.jar" + }, + { + "coord": "ch.epfl.scala:zinc-ivy-integration_2.12:1.1.7+62-0f4ad9d5", + "dependencies": [ + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-compile-core_2.12:1.1.7+62-0f4ad9d5", + "com.eed3si9n:gigahorse-core_2.12:0.3.0", + "com.eed3si9n:gigahorse-okhttp_2.12:0.3.0", + "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "com.jcraft:jsch:0.1.54", + "com.lmax:disruptor:3.4.2", + "com.squareup.okhttp3:okhttp-urlconnection:3.7.0", + "com.squareup.okhttp3:okhttp:3.7.0", + "com.squareup.okio:okio:1.12.0", + "com.typesafe:config:1.2.0", + "com.typesafe:ssl-config-core_2.12:0.2.2", + "jline:jline:2.14.4", + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "org.apache.logging.log4j:log4j-api:2.17.1", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.reactivestreams:reactive-streams:1.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "org.scala-lang.modules:scala-xml_2.12:1.0.6", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt:io_2.12:1.1.4", + "org.scala-sbt:launcher-interface:1.4.2", + "org.scala-sbt:librarymanagement-core_2.12:1.1.4", + "org.scala-sbt:util-cache_2.12:1.1.3", + "org.scala-sbt:util-control_2.12:1.1.3", + "org.scala-sbt:util-interface:1.9.2", + "org.scala-sbt:util-logging_2.12:1.1.3", + "org.scala-sbt:util-position_2.12:1.1.3", + "org.slf4j:slf4j-api:1.7.25", + "org.spire-math:jawn-parser_2.12:0.11.1" + ], + "directDependencies": [ + "ch.epfl.scala:zinc-compile-core_2.12:1.1.7+62-0f4ad9d5", + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:librarymanagement-core_2.12:1.1.4" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-ivy-integration_2.12/1.1.7%2B62-0f4ad9d5/zinc-ivy-integration_2.12-1.1.7%2B62-0f4ad9d5.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-ivy-integration_2.12/1.1.7%2B62-0f4ad9d5/zinc-ivy-integration_2.12-1.1.7%2B62-0f4ad9d5.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/zinc-ivy-integration_2.12/1.1.7%2B62-0f4ad9d5/zinc-ivy-integration_2.12-1.1.7%2B62-0f4ad9d5.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/zinc-ivy-integration_2.12/1.1.7%2B62-0f4ad9d5/zinc-ivy-integration_2.12-1.1.7%2B62-0f4ad9d5.jar" + ], + "sha256": "90925274b812fcbdc703f335cbeba0341579d1569894e32fccdaa921e73e2329", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-ivy-integration_2.12/1.1.7%2B62-0f4ad9d5/zinc-ivy-integration_2.12-1.1.7%2B62-0f4ad9d5.jar" + }, + { + "coord": "ch.epfl.scala:zinc-ivy-integration_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "dependencies": [ + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-compile-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0", + "com.eed3si9n:gigahorse-okhttp_2.12:jar:sources:0.3.0", + "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "com.jcraft:jsch:jar:sources:0.1.54", + "com.lmax:disruptor:jar:sources:3.4.2", + "com.squareup.okhttp3:okhttp-urlconnection:jar:sources:3.7.0", + "com.squareup.okhttp3:okhttp:jar:sources:3.7.0", + "com.squareup.okio:okio:jar:sources:1.12.0", + "com.typesafe:config:jar:sources:1.2.0", + "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", + "jline:jline:jar:sources:2.14.4", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.reactivestreams:reactive-streams:jar:sources:1.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "org.scala-sbt:librarymanagement-core_2.12:jar:sources:1.1.4", + "org.scala-sbt:util-cache_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-control_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-interface:jar:sources:1.9.2", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-position_2.12:jar:sources:1.1.3", + "org.slf4j:slf4j-api:jar:sources:1.7.25", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + ], + "directDependencies": [ + "ch.epfl.scala:zinc-compile-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:librarymanagement-core_2.12:jar:sources:1.1.4" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-ivy-integration_2.12/1.1.7%2B62-0f4ad9d5/zinc-ivy-integration_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-ivy-integration_2.12/1.1.7%2B62-0f4ad9d5/zinc-ivy-integration_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/zinc-ivy-integration_2.12/1.1.7%2B62-0f4ad9d5/zinc-ivy-integration_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/zinc-ivy-integration_2.12/1.1.7%2B62-0f4ad9d5/zinc-ivy-integration_2.12-1.1.7%2B62-0f4ad9d5-sources.jar" + ], + "sha256": "16c4c2b77eeaea0e9bb6f2c3b9008ba9e6415e38ed991fb43e9e461ea63fa046", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-ivy-integration_2.12/1.1.7%2B62-0f4ad9d5/zinc-ivy-integration_2.12-1.1.7%2B62-0f4ad9d5-sources.jar" + }, + { + "coord": "ch.epfl.scala:zinc-persist_2.12:1.1.7+62-0f4ad9d5", + "dependencies": [ + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-core_2.12:1.1.7+62-0f4ad9d5", + "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "com.google.protobuf:protobuf-java:3.19.6", + "com.lihaoyi:fastparse-utils_2.12:0.4.2", + "com.lihaoyi:fastparse_2.12:0.4.2", + "com.lihaoyi:sourcecode_2.12:0.1.4", + "com.lmax:disruptor:3.4.2", + "com.trueaccord.lenses:lenses_2.12:0.4.12", + "com.trueaccord.scalapb:scalapb-runtime_2.12:0.6.0", + "jline:jline:2.14.4", + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "org.apache.logging.log4j:log4j-api:2.17.1", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.scala-lang.modules:scala-xml_2.12:1.0.6", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt:io_2.12:1.1.4", + "org.scala-sbt:launcher-interface:1.4.2", + "org.scala-sbt:sbinary_2.12:0.4.4", + "org.scala-sbt:util-interface:1.9.2", + "org.scala-sbt:util-logging_2.12:1.1.3", + "org.scala-sbt:util-relation_2.12:1.1.3", + "org.spire-math:jawn-parser_2.12:0.11.1" + ], + "directDependencies": [ + "ch.epfl.scala:zinc-core_2.12:1.1.7+62-0f4ad9d5", + "com.trueaccord.scalapb:scalapb-runtime_2.12:0.6.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:sbinary_2.12:0.4.4" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-persist_2.12/1.1.7%2B62-0f4ad9d5/zinc-persist_2.12-1.1.7%2B62-0f4ad9d5.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-persist_2.12/1.1.7%2B62-0f4ad9d5/zinc-persist_2.12-1.1.7%2B62-0f4ad9d5.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/zinc-persist_2.12/1.1.7%2B62-0f4ad9d5/zinc-persist_2.12-1.1.7%2B62-0f4ad9d5.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/zinc-persist_2.12/1.1.7%2B62-0f4ad9d5/zinc-persist_2.12-1.1.7%2B62-0f4ad9d5.jar" + ], + "sha256": "e0a98ad11934b56c4357c11b866dbd6ba79c18deaeb7e38ed8ff9cd8ee52abde", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-persist_2.12/1.1.7%2B62-0f4ad9d5/zinc-persist_2.12-1.1.7%2B62-0f4ad9d5.jar" + }, + { + "coord": "ch.epfl.scala:zinc-persist_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "dependencies": [ + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "com.lihaoyi:fastparse-utils_2.12:jar:sources:0.4.2", + "com.lihaoyi:fastparse_2.12:jar:sources:0.4.2", + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "com.lmax:disruptor:jar:sources:3.4.2", + "com.trueaccord.lenses:lenses_2.12:jar:sources:0.4.12", + "com.trueaccord.scalapb:scalapb-runtime_2.12:jar:sources:0.6.0", + "jline:jline:jar:sources:2.14.4", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "org.scala-sbt:sbinary_2.12:jar:sources:0.4.4", + "org.scala-sbt:util-interface:jar:sources:1.9.2", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-relation_2.12:jar:sources:1.1.3", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + ], + "directDependencies": [ + "ch.epfl.scala:zinc-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "com.trueaccord.scalapb:scalapb-runtime_2.12:jar:sources:0.6.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:sbinary_2.12:jar:sources:0.4.4" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-persist_2.12/1.1.7%2B62-0f4ad9d5/zinc-persist_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-persist_2.12/1.1.7%2B62-0f4ad9d5/zinc-persist_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/zinc-persist_2.12/1.1.7%2B62-0f4ad9d5/zinc-persist_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/zinc-persist_2.12/1.1.7%2B62-0f4ad9d5/zinc-persist_2.12-1.1.7%2B62-0f4ad9d5-sources.jar" + ], + "sha256": "4d84c7442a724b7eb0f53deba8fbbd6e614a3688402d1f1f8c3030320892ceb8", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-persist_2.12/1.1.7%2B62-0f4ad9d5/zinc-persist_2.12-1.1.7%2B62-0f4ad9d5-sources.jar" + }, + { + "coord": "ch.epfl.scala:zinc_2.12:1.1.7+62-0f4ad9d5", + "dependencies": [ + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-compile-core_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-core_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-ivy-integration_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-persist_2.12:1.1.7+62-0f4ad9d5", + "com.eed3si9n:gigahorse-core_2.12:0.3.0", + "com.eed3si9n:gigahorse-okhttp_2.12:0.3.0", + "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "com.google.protobuf:protobuf-java:3.19.6", + "com.jcraft:jsch:0.1.54", + "com.lihaoyi:fastparse-utils_2.12:0.4.2", + "com.lihaoyi:fastparse_2.12:0.4.2", + "com.lihaoyi:sourcecode_2.12:0.1.4", + "com.lmax:disruptor:3.4.2", + "com.squareup.okhttp3:okhttp-urlconnection:3.7.0", + "com.squareup.okhttp3:okhttp:3.7.0", + "com.squareup.okio:okio:1.12.0", + "com.trueaccord.lenses:lenses_2.12:0.4.12", + "com.trueaccord.scalapb:scalapb-runtime_2.12:0.6.0", + "com.typesafe:config:1.2.0", + "com.typesafe:ssl-config-core_2.12:0.2.2", + "jline:jline:2.14.4", + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "org.apache.logging.log4j:log4j-api:2.17.1", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.reactivestreams:reactive-streams:1.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "org.scala-lang.modules:scala-xml_2.12:1.0.6", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt:io_2.12:1.1.4", + "org.scala-sbt:launcher-interface:1.4.2", + "org.scala-sbt:librarymanagement-core_2.12:1.1.4", + "org.scala-sbt:sbinary_2.12:0.4.4", + "org.scala-sbt:util-cache_2.12:1.1.3", + "org.scala-sbt:util-control_2.12:1.1.3", + "org.scala-sbt:util-interface:1.9.2", + "org.scala-sbt:util-logging_2.12:1.1.3", + "org.scala-sbt:util-position_2.12:1.1.3", + "org.scala-sbt:util-relation_2.12:1.1.3", + "org.slf4j:slf4j-api:1.7.25", + "org.spire-math:jawn-parser_2.12:0.11.1" + ], + "directDependencies": [ + "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-compile-core_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-core_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-ivy-integration_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-persist_2.12:1.1.7+62-0f4ad9d5", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc_2.12/1.1.7%2B62-0f4ad9d5/zinc_2.12-1.1.7%2B62-0f4ad9d5.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc_2.12/1.1.7%2B62-0f4ad9d5/zinc_2.12-1.1.7%2B62-0f4ad9d5.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/zinc_2.12/1.1.7%2B62-0f4ad9d5/zinc_2.12-1.1.7%2B62-0f4ad9d5.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/zinc_2.12/1.1.7%2B62-0f4ad9d5/zinc_2.12-1.1.7%2B62-0f4ad9d5.jar" + ], + "sha256": "7d39dcd05773e4c61e5498cf38385e18479a9031a5052410bdbf6414c637ca18", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc_2.12/1.1.7%2B62-0f4ad9d5/zinc_2.12-1.1.7%2B62-0f4ad9d5.jar" + }, + { + "coord": "ch.epfl.scala:zinc_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "dependencies": [ + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-compile-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-ivy-integration_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-persist_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0", + "com.eed3si9n:gigahorse-okhttp_2.12:jar:sources:0.3.0", + "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "com.jcraft:jsch:jar:sources:0.1.54", + "com.lihaoyi:fastparse-utils_2.12:jar:sources:0.4.2", + "com.lihaoyi:fastparse_2.12:jar:sources:0.4.2", + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "com.lmax:disruptor:jar:sources:3.4.2", + "com.squareup.okhttp3:okhttp-urlconnection:jar:sources:3.7.0", + "com.squareup.okhttp3:okhttp:jar:sources:3.7.0", + "com.squareup.okio:okio:jar:sources:1.12.0", + "com.trueaccord.lenses:lenses_2.12:jar:sources:0.4.12", + "com.trueaccord.scalapb:scalapb-runtime_2.12:jar:sources:0.6.0", + "com.typesafe:config:jar:sources:1.2.0", + "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", + "jline:jline:jar:sources:2.14.4", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.reactivestreams:reactive-streams:jar:sources:1.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "org.scala-sbt:librarymanagement-core_2.12:jar:sources:1.1.4", + "org.scala-sbt:sbinary_2.12:jar:sources:0.4.4", + "org.scala-sbt:util-cache_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-control_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-interface:jar:sources:1.9.2", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-position_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-relation_2.12:jar:sources:1.1.3", + "org.slf4j:slf4j-api:jar:sources:1.7.25", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + ], + "directDependencies": [ + "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-compile-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-ivy-integration_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-persist_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc_2.12/1.1.7%2B62-0f4ad9d5/zinc_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc_2.12/1.1.7%2B62-0f4ad9d5/zinc_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/zinc_2.12/1.1.7%2B62-0f4ad9d5/zinc_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/zinc_2.12/1.1.7%2B62-0f4ad9d5/zinc_2.12-1.1.7%2B62-0f4ad9d5-sources.jar" + ], + "sha256": "d2e4de73c039433c9ebb35e0c05bb835ba84fada8acd1b47a47f5bb116b10bb4", + "url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc_2.12/1.1.7%2B62-0f4ad9d5/zinc_2.12-1.1.7%2B62-0f4ad9d5-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.25" + ], + "directDependencies": [ + "ch.qos.logback:logback-core:1.2.3", + "org.slf4j:slf4j-api:1.7.25" + ], + "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-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.25" + ], + "directDependencies": [ + "ch.qos.logback:logback-core:jar:sources:1.2.3", + "org.slf4j:slf4j-api:jar:sources:1.7.25" + ], + "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-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": "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": "com.beachape:enumeratum-circe_2.12:1.5.15", + "dependencies": [ + "com.beachape:enumeratum-macros_2.12:1.5.9", + "com.beachape:enumeratum_2.12:1.5.12", + "io.circe:circe-core_2.12:0.9.3", + "io.circe:circe-numbers_2.12:0.9.3", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.typelevel:cats-core_2.12:1.0.1", + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.typelevel:cats-macros_2.12:1.0.1", + "org.typelevel:machinist_2.12:0.6.2" + ], + "directDependencies": [ + "com.beachape:enumeratum_2.12:1.5.12", + "io.circe:circe-core_2.12:0.9.3", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/beachape/enumeratum-circe_2.12/1.5.15/enumeratum-circe_2.12-1.5.15.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/beachape/enumeratum-circe_2.12/1.5.15/enumeratum-circe_2.12-1.5.15.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/beachape/enumeratum-circe_2.12/1.5.15/enumeratum-circe_2.12-1.5.15.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/beachape/enumeratum-circe_2.12/1.5.15/enumeratum-circe_2.12-1.5.15.jar" + ], + "sha256": "3f9379c7881d7ba6fc69b947f1761211819010880f5d833a99f2b266b2aa13ef", + "url": "https://repo.maven.apache.org/maven2/com/beachape/enumeratum-circe_2.12/1.5.15/enumeratum-circe_2.12-1.5.15.jar" + }, + { + "coord": "com.beachape:enumeratum-circe_2.12:jar:sources:1.5.15", + "dependencies": [ + "com.beachape:enumeratum-macros_2.12:jar:sources:1.5.9", + "com.beachape:enumeratum_2.12:jar:sources:1.5.12", + "io.circe:circe-core_2.12:jar:sources:0.9.3", + "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.typelevel:cats-core_2.12:jar:sources:1.0.1", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "org.typelevel:machinist_2.12:jar:sources:0.6.2" + ], + "directDependencies": [ + "com.beachape:enumeratum_2.12:jar:sources:1.5.12", + "io.circe:circe-core_2.12:jar:sources:0.9.3", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/beachape/enumeratum-circe_2.12/1.5.15/enumeratum-circe_2.12-1.5.15-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/beachape/enumeratum-circe_2.12/1.5.15/enumeratum-circe_2.12-1.5.15-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/beachape/enumeratum-circe_2.12/1.5.15/enumeratum-circe_2.12-1.5.15-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/beachape/enumeratum-circe_2.12/1.5.15/enumeratum-circe_2.12-1.5.15-sources.jar" + ], + "sha256": "70edbb264a2c53d9b43bc02fc4a18c4b39b1f56c8c756e0aa020210db5deb6b9", + "url": "https://repo.maven.apache.org/maven2/com/beachape/enumeratum-circe_2.12/1.5.15/enumeratum-circe_2.12-1.5.15-sources.jar" + }, + { + "coord": "com.beachape:enumeratum-macros_2.12:1.5.9", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/beachape/enumeratum-macros_2.12/1.5.9/enumeratum-macros_2.12-1.5.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/beachape/enumeratum-macros_2.12/1.5.9/enumeratum-macros_2.12-1.5.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/beachape/enumeratum-macros_2.12/1.5.9/enumeratum-macros_2.12-1.5.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/beachape/enumeratum-macros_2.12/1.5.9/enumeratum-macros_2.12-1.5.9.jar" + ], + "sha256": "e7ef82aa1ab73d52cccfe78fa09d8491d021df153415cae6f5e60295a90ee187", + "url": "https://repo.maven.apache.org/maven2/com/beachape/enumeratum-macros_2.12/1.5.9/enumeratum-macros_2.12-1.5.9.jar" + }, + { + "coord": "com.beachape:enumeratum-macros_2.12:jar:sources:1.5.9", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/beachape/enumeratum-macros_2.12/1.5.9/enumeratum-macros_2.12-1.5.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/beachape/enumeratum-macros_2.12/1.5.9/enumeratum-macros_2.12-1.5.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/beachape/enumeratum-macros_2.12/1.5.9/enumeratum-macros_2.12-1.5.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/beachape/enumeratum-macros_2.12/1.5.9/enumeratum-macros_2.12-1.5.9-sources.jar" + ], + "sha256": "8ce1a95fffb8d0a5eff3d4f30ec4cd653a4ad43ecbc28fa0caac9ab30ec47f61", + "url": "https://repo.maven.apache.org/maven2/com/beachape/enumeratum-macros_2.12/1.5.9/enumeratum-macros_2.12-1.5.9-sources.jar" + }, + { + "coord": "com.beachape:enumeratum_2.12:1.5.12", + "dependencies": [ + "com.beachape:enumeratum-macros_2.12:1.5.9", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14" + ], + "directDependencies": [ + "com.beachape:enumeratum-macros_2.12:1.5.9", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/beachape/enumeratum_2.12/1.5.12/enumeratum_2.12-1.5.12.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/beachape/enumeratum_2.12/1.5.12/enumeratum_2.12-1.5.12.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/beachape/enumeratum_2.12/1.5.12/enumeratum_2.12-1.5.12.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/beachape/enumeratum_2.12/1.5.12/enumeratum_2.12-1.5.12.jar" + ], + "sha256": "5f71174cf860e4b5f832371084859e074bc318fd59110adb05e6c8fcafb3f7fc", + "url": "https://repo.maven.apache.org/maven2/com/beachape/enumeratum_2.12/1.5.12/enumeratum_2.12-1.5.12.jar" + }, + { + "coord": "com.beachape:enumeratum_2.12:jar:sources:1.5.12", + "dependencies": [ + "com.beachape:enumeratum-macros_2.12:jar:sources:1.5.9", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" + ], + "directDependencies": [ + "com.beachape:enumeratum-macros_2.12:jar:sources:1.5.9", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/beachape/enumeratum_2.12/1.5.12/enumeratum_2.12-1.5.12-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/beachape/enumeratum_2.12/1.5.12/enumeratum_2.12-1.5.12-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/beachape/enumeratum_2.12/1.5.12/enumeratum_2.12-1.5.12-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/beachape/enumeratum_2.12/1.5.12/enumeratum_2.12-1.5.12-sources.jar" + ], + "sha256": "b268236a8dcebddf109f24e825a98e2bc75742c48693e16f482618bdb3b29ed7", + "url": "https://repo.maven.apache.org/maven2/com/beachape/enumeratum_2.12/1.5.12/enumeratum_2.12-1.5.12-sources.jar" + }, + { + "coord": "com.chuusai:shapeless_2.12:2.3.3", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.typelevel:macro-compat_2.12:1.1.1" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.typelevel:macro-compat_2.12:1.1.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/chuusai/shapeless_2.12/2.3.3/shapeless_2.12-2.3.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/chuusai/shapeless_2.12/2.3.3/shapeless_2.12-2.3.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/chuusai/shapeless_2.12/2.3.3/shapeless_2.12-2.3.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/shapeless_2.12-2.3.3.jar" + ], + "sha256": "312e301432375132ab49592bd8d22b9cd42a338a6300c6157fb4eafd1e3d5033", + "url": "https://repo.maven.apache.org/maven2/com/chuusai/shapeless_2.12/2.3.3/shapeless_2.12-2.3.3.jar" + }, + { + "coord": "com.chuusai:shapeless_2.12:jar:sources:2.3.3", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.typelevel:macro-compat_2.12:jar:sources:1.1.1" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.typelevel:macro-compat_2.12:jar:sources:1.1.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/chuusai/shapeless_2.12/2.3.3/shapeless_2.12-2.3.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/chuusai/shapeless_2.12/2.3.3/shapeless_2.12-2.3.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/chuusai/shapeless_2.12/2.3.3/shapeless_2.12-2.3.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/shapeless_2.12-2.3.3-sources.jar" + ], + "sha256": "2d53fea1b1ab224a4a731d99245747a640deaa6ef3912c253666aa61287f3d63", + "url": "https://repo.maven.apache.org/maven2/com/chuusai/shapeless_2.12/2.3.3/shapeless_2.12-2.3.3-sources.jar" + }, + { + "coord": "com.eed3si9n:gigahorse-core_2.12:0.3.0", + "dependencies": [ + "com.typesafe:config:1.2.0", + "com.typesafe:ssl-config-core_2.12:0.2.2", + "org.reactivestreams:reactive-streams:1.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "org.scala-lang:scala-library:2.13.14", + "org.slf4j:slf4j-api:1.7.25" + ], + "directDependencies": [ + "com.typesafe:ssl-config-core_2.12:0.2.2", + "org.reactivestreams:reactive-streams:1.0.0", + "org.scala-lang:scala-library:2.13.14", + "org.slf4j:slf4j-api:1.7.25" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.3.0/gigahorse-core_2.12-0.3.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.3.0/gigahorse-core_2.12-0.3.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/eed3si9n/gigahorse-core_2.12/0.3.0/gigahorse-core_2.12-0.3.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.3.0/gigahorse-core_2.12-0.3.0.jar" + ], + "sha256": "9f198e77608a915797e9d4b5c91eedae621cecc3f25f2a551a3fa5d6bc678aa4", + "url": "https://repo.maven.apache.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.3.0/gigahorse-core_2.12-0.3.0.jar" + }, + { + "coord": "com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0", + "dependencies": [ + "com.typesafe:config:jar:sources:1.2.0", + "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", + "org.reactivestreams:reactive-streams:jar:sources:1.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.slf4j:slf4j-api:jar:sources:1.7.25" + ], + "directDependencies": [ + "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", + "org.reactivestreams:reactive-streams:jar:sources:1.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.slf4j:slf4j-api:jar:sources:1.7.25" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.3.0/gigahorse-core_2.12-0.3.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.3.0/gigahorse-core_2.12-0.3.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/eed3si9n/gigahorse-core_2.12/0.3.0/gigahorse-core_2.12-0.3.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.3.0/gigahorse-core_2.12-0.3.0-sources.jar" + ], + "sha256": "31a6c5d8599e7bd4a9c1d38e56764c80695970ba045d2e9040dc98929b22f52a", + "url": "https://repo.maven.apache.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.3.0/gigahorse-core_2.12-0.3.0-sources.jar" + }, + { + "coord": "com.eed3si9n:gigahorse-okhttp_2.12:0.3.0", + "dependencies": [ + "com.eed3si9n:gigahorse-core_2.12:0.3.0", + "com.squareup.okhttp3:okhttp:3.7.0", + "com.squareup.okio:okio:1.12.0", + "com.typesafe:config:1.2.0", + "com.typesafe:ssl-config-core_2.12:0.2.2", + "org.reactivestreams:reactive-streams:1.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "org.scala-lang:scala-library:2.13.14", + "org.slf4j:slf4j-api:1.7.25" + ], + "directDependencies": [ + "com.eed3si9n:gigahorse-core_2.12:0.3.0", + "com.squareup.okhttp3:okhttp:3.7.0", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/eed3si9n/gigahorse-okhttp_2.12/0.3.0/gigahorse-okhttp_2.12-0.3.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/eed3si9n/gigahorse-okhttp_2.12/0.3.0/gigahorse-okhttp_2.12-0.3.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/eed3si9n/gigahorse-okhttp_2.12/0.3.0/gigahorse-okhttp_2.12-0.3.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/eed3si9n/gigahorse-okhttp_2.12/0.3.0/gigahorse-okhttp_2.12-0.3.0.jar" + ], + "sha256": "5cf8e8bb9d90a08aa851ac066f378f83710af7823d788f837dc64f22cebcbbdf", + "url": "https://repo.maven.apache.org/maven2/com/eed3si9n/gigahorse-okhttp_2.12/0.3.0/gigahorse-okhttp_2.12-0.3.0.jar" + }, + { + "coord": "com.eed3si9n:gigahorse-okhttp_2.12:jar:sources:0.3.0", + "dependencies": [ + "com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0", + "com.squareup.okhttp3:okhttp:jar:sources:3.7.0", + "com.squareup.okio:okio:jar:sources:1.12.0", + "com.typesafe:config:jar:sources:1.2.0", + "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", + "org.reactivestreams:reactive-streams:jar:sources:1.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.slf4j:slf4j-api:jar:sources:1.7.25" + ], + "directDependencies": [ + "com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0", + "com.squareup.okhttp3:okhttp:jar:sources:3.7.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/eed3si9n/gigahorse-okhttp_2.12/0.3.0/gigahorse-okhttp_2.12-0.3.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/eed3si9n/gigahorse-okhttp_2.12/0.3.0/gigahorse-okhttp_2.12-0.3.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/eed3si9n/gigahorse-okhttp_2.12/0.3.0/gigahorse-okhttp_2.12-0.3.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/eed3si9n/gigahorse-okhttp_2.12/0.3.0/gigahorse-okhttp_2.12-0.3.0-sources.jar" + ], + "sha256": "e991af1bb7150ee6341d4fbf0305b173cf6e0af81076cbccb010a6581019ea09", + "url": "https://repo.maven.apache.org/maven2/com/eed3si9n/gigahorse-okhttp_2.12/0.3.0/gigahorse-okhttp_2.12-0.3.0-sources.jar" + }, + { + "coord": "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/eed3si9n/shaded-jawn-parser_2.13/0.9.1/shaded-jawn-parser_2.13-0.9.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/eed3si9n/shaded-jawn-parser_2.13/0.9.1/shaded-jawn-parser_2.13-0.9.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/eed3si9n/shaded-jawn-parser_2.13/0.9.1/shaded-jawn-parser_2.13-0.9.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/eed3si9n/shaded-jawn-parser_2.13/0.9.1/shaded-jawn-parser_2.13-0.9.1.jar" + ], + "sha256": "0fcb635e2ea79f252a83b15cafd74d9bbce05d693c43cd3ffe055abae2c6e293", + "url": "https://repo.maven.apache.org/maven2/com/eed3si9n/shaded-jawn-parser_2.13/0.9.1/shaded-jawn-parser_2.13-0.9.1.jar" + }, + { + "coord": "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/eed3si9n/shaded-jawn-parser_2.13/0.9.1/shaded-jawn-parser_2.13-0.9.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/eed3si9n/shaded-jawn-parser_2.13/0.9.1/shaded-jawn-parser_2.13-0.9.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/eed3si9n/shaded-jawn-parser_2.13/0.9.1/shaded-jawn-parser_2.13-0.9.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/eed3si9n/shaded-jawn-parser_2.13/0.9.1/shaded-jawn-parser_2.13-0.9.1-sources.jar" + ], + "sha256": "52a356a9721461f2d40a334c39ceae5c67cd5074eba631f3aee44031a1c4ac18", + "url": "https://repo.maven.apache.org/maven2/com/eed3si9n/shaded-jawn-parser_2.13/0.9.1/shaded-jawn-parser_2.13-0.9.1-sources.jar" + }, + { + "coord": "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4.jar" + ], + "sha256": "264051c330fca00fe57d4b4cb767c1f6b359a5603f79f63562832125c7055a40", + "url": "https://repo.maven.apache.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4.jar" + }, + { + "coord": "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4-sources.jar" + ], + "sha256": "73400e3c769019b0ea5f5f5f94e61a1ebbc3d9b6667c455524b15967a0f4e550", + "url": "https://repo.maven.apache.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4-sources.jar" + }, + { + "coord": "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/eed3si9n/shaded-scalajson_2.13/1.0.0-M4/shaded-scalajson_2.13-1.0.0-M4.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/eed3si9n/shaded-scalajson_2.13/1.0.0-M4/shaded-scalajson_2.13-1.0.0-M4.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/eed3si9n/shaded-scalajson_2.13/1.0.0-M4/shaded-scalajson_2.13-1.0.0-M4.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.13/1.0.0-M4/shaded-scalajson_2.13-1.0.0-M4.jar" + ], + "sha256": "7b6b6d85727bd8abab940b559de8e32aa5081add29f7531c855bb0761ae8de67", + "url": "https://repo.maven.apache.org/maven2/com/eed3si9n/shaded-scalajson_2.13/1.0.0-M4/shaded-scalajson_2.13-1.0.0-M4.jar" + }, + { + "coord": "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/eed3si9n/shaded-scalajson_2.13/1.0.0-M4/shaded-scalajson_2.13-1.0.0-M4-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/eed3si9n/shaded-scalajson_2.13/1.0.0-M4/shaded-scalajson_2.13-1.0.0-M4-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/eed3si9n/shaded-scalajson_2.13/1.0.0-M4/shaded-scalajson_2.13-1.0.0-M4-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.13/1.0.0-M4/shaded-scalajson_2.13-1.0.0-M4-sources.jar" + ], + "sha256": "33ab92febadd7def753691bcb981c9a01aa9a6bfcdbd0768495af630d19690fc", + "url": "https://repo.maven.apache.org/maven2/com/eed3si9n/shaded-scalajson_2.13/1.0.0-M4/shaded-scalajson_2.13-1.0.0-M4-sources.jar" + }, + { + "coord": "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.8.2/sjson-new-core_2.12-0.8.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.8.2/sjson-new-core_2.12-0.8.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/eed3si9n/sjson-new-core_2.12/0.8.2/sjson-new-core_2.12-0.8.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.8.2/sjson-new-core_2.12-0.8.2.jar" + ], + "sha256": "0c67aa883ff2e703559d723dbab04e6510f0f541f5629426bf199c4719295830", + "url": "https://repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.8.2/sjson-new-core_2.12-0.8.2.jar" + }, + { + "coord": "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.8.2/sjson-new-core_2.12-0.8.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.8.2/sjson-new-core_2.12-0.8.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/eed3si9n/sjson-new-core_2.12/0.8.2/sjson-new-core_2.12-0.8.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.8.2/sjson-new-core_2.12-0.8.2-sources.jar" + ], + "sha256": "985acefd13801f50d51e3d45c999c8eab4e4cc32a371deb733e884da20ff9225", + "url": "https://repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.8.2/sjson-new-core_2.12-0.8.2-sources.jar" + }, + { + "coord": "com.eed3si9n:sjson-new-core_2.13:0.9.1", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-core_2.13/0.9.1/sjson-new-core_2.13-0.9.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-core_2.13/0.9.1/sjson-new-core_2.13-0.9.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/eed3si9n/sjson-new-core_2.13/0.9.1/sjson-new-core_2.13-0.9.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.13/0.9.1/sjson-new-core_2.13-0.9.1.jar" + ], + "sha256": "253c5082b8c7933ceb8aa9c872828037669fd0bc51c01fc985940f2bd4193400", + "url": "https://repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-core_2.13/0.9.1/sjson-new-core_2.13-0.9.1.jar" + }, + { + "coord": "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-core_2.13/0.9.1/sjson-new-core_2.13-0.9.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-core_2.13/0.9.1/sjson-new-core_2.13-0.9.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/eed3si9n/sjson-new-core_2.13/0.9.1/sjson-new-core_2.13-0.9.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.13/0.9.1/sjson-new-core_2.13-0.9.1-sources.jar" + ], + "sha256": "71d3f475660ae6a56a63cf6adaf7b28606065bee215163269f23e26a5c0b9c34", + "url": "https://repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-core_2.13/0.9.1/sjson-new-core_2.13-0.9.1-sources.jar" + }, + { + "coord": "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", + "dependencies": [ + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.8.2/sjson-new-murmurhash_2.12-0.8.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.8.2/sjson-new-murmurhash_2.12-0.8.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.8.2/sjson-new-murmurhash_2.12-0.8.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.8.2/sjson-new-murmurhash_2.12-0.8.2.jar" + ], + "sha256": "c8e622c56b1c48b384d95e8ebabaff80e1bed48aef50251a4abe613238593b93", + "url": "https://repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.8.2/sjson-new-murmurhash_2.12-0.8.2.jar" + }, + { + "coord": "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2", + "dependencies": [ + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.8.2/sjson-new-murmurhash_2.12-0.8.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.8.2/sjson-new-murmurhash_2.12-0.8.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.8.2/sjson-new-murmurhash_2.12-0.8.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.8.2/sjson-new-murmurhash_2.12-0.8.2-sources.jar" + ], + "sha256": "19adc4fb08a1a59151a928eea65e4417f222618f33248295eaacb1677a906295", + "url": "https://repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.8.2/sjson-new-murmurhash_2.12-0.8.2-sources.jar" + }, + { + "coord": "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "dependencies": [ + "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "org.scala-lang:scala-library:2.13.14", + "org.spire-math:jawn-parser_2.12:0.11.1" + ], + "directDependencies": [ + "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "org.scala-lang:scala-library:2.13.14", + "org.spire-math:jawn-parser_2.12:0.11.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.8.2/sjson-new-scalajson_2.12-0.8.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.8.2/sjson-new-scalajson_2.12-0.8.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.8.2/sjson-new-scalajson_2.12-0.8.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.8.2/sjson-new-scalajson_2.12-0.8.2.jar" + ], + "sha256": "a72ea3b3331d689e5aff14edab9b33319d3d0140e9512b87568e6311786c849d", + "url": "https://repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.8.2/sjson-new-scalajson_2.12-0.8.2.jar" + }, + { + "coord": "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "dependencies": [ + "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + ], + "directDependencies": [ + "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.8.2/sjson-new-scalajson_2.12-0.8.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.8.2/sjson-new-scalajson_2.12-0.8.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.8.2/sjson-new-scalajson_2.12-0.8.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.8.2/sjson-new-scalajson_2.12-0.8.2-sources.jar" + ], + "sha256": "820565cc1911a8e1d88789344229f92fe3dcfd747793f18fcf6e120fbe15dfd3", + "url": "https://repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.8.2/sjson-new-scalajson_2.12-0.8.2-sources.jar" + }, + { + "coord": "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "dependencies": [ + "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.13:0.9.1", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.13:0.9.1", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-scalajson_2.13/0.9.1/sjson-new-scalajson_2.13-0.9.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-scalajson_2.13/0.9.1/sjson-new-scalajson_2.13-0.9.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/eed3si9n/sjson-new-scalajson_2.13/0.9.1/sjson-new-scalajson_2.13-0.9.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.13/0.9.1/sjson-new-scalajson_2.13-0.9.1.jar" + ], + "sha256": "c0bae93e48180549d7358c6e5c809568a20aeb4342661da0b61507af0a9fa5be", + "url": "https://repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-scalajson_2.13/0.9.1/sjson-new-scalajson_2.13-0.9.1.jar" + }, + { + "coord": "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", + "dependencies": [ + "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-scalajson_2.13/0.9.1/sjson-new-scalajson_2.13-0.9.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-scalajson_2.13/0.9.1/sjson-new-scalajson_2.13-0.9.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/eed3si9n/sjson-new-scalajson_2.13/0.9.1/sjson-new-scalajson_2.13-0.9.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.13/0.9.1/sjson-new-scalajson_2.13-0.9.1-sources.jar" + ], + "sha256": "e67210c10845f54f5af1fdfa942f0751529c35f974e3dc3ad3298aee5f707d6d", + "url": "https://repo.maven.apache.org/maven2/com/eed3si9n/sjson-new-scalajson_2.13/0.9.1/sjson-new-scalajson_2.13-0.9.1-sources.jar" + }, + { + "coord": "com.github.pathikrit:better-files_2.12:3.4.0", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/github/pathikrit/better-files_2.12/3.4.0/better-files_2.12-3.4.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/github/pathikrit/better-files_2.12/3.4.0/better-files_2.12-3.4.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/github/pathikrit/better-files_2.12/3.4.0/better-files_2.12-3.4.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/github/pathikrit/better-files_2.12/3.4.0/better-files_2.12-3.4.0.jar" + ], + "sha256": "79b49bc134f06a6a091a962ec10ce3f1810403bccec7d99bf9928b7eb02e85c4", + "url": "https://repo.maven.apache.org/maven2/com/github/pathikrit/better-files_2.12/3.4.0/better-files_2.12-3.4.0.jar" + }, + { + "coord": "com.github.pathikrit:better-files_2.12:jar:sources:3.4.0", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/github/pathikrit/better-files_2.12/3.4.0/better-files_2.12-3.4.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/github/pathikrit/better-files_2.12/3.4.0/better-files_2.12-3.4.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/github/pathikrit/better-files_2.12/3.4.0/better-files_2.12-3.4.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/github/pathikrit/better-files_2.12/3.4.0/better-files_2.12-3.4.0-sources.jar" + ], + "sha256": "819911f7306162bdf9617f3ec0c218ebf7eec855e7120585e44f1b2a8d4852ec", + "url": "https://repo.maven.apache.org/maven2/com/github/pathikrit/better-files_2.12/3.4.0/better-files_2.12-3.4.0-sources.jar" + }, + { + "coord": "com.google.code.findbugs:jsr305:1.3.9", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar" + ], + "sha256": "905721a0eea90a81534abb7ee6ef4ea2e5e645fa1def0a5cd88402df1b46c9ed", + "url": "https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar" + }, + { + "coord": "com.google.code.findbugs:jsr305:jar:sources:1.3.9", + "dependencies": [], + "directDependencies": [], + "file": null + }, + { + "coord": "com.google.errorprone:error_prone_annotations:2.0.18", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18.jar" + ], + "sha256": "cb4cfad870bf563a07199f3ebea5763f0dec440fcda0b318640b1feaa788656b", + "url": "https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18.jar" + }, + { + "coord": "com.google.errorprone:error_prone_annotations:jar:sources:2.0.18", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18-sources.jar" + ], + "sha256": "dbe7b49dd0584704d5c306b4ac7273556353ea3c0c6c3e50adeeca8df47047be", + "url": "https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18-sources.jar" + }, + { + "coord": "com.google.guava:guava:23.0", + "dependencies": [ + "com.google.code.findbugs:jsr305:1.3.9", + "com.google.errorprone:error_prone_annotations:2.0.18", + "com.google.j2objc:j2objc-annotations:1.1", + "org.codehaus.mojo:animal-sniffer-annotations:1.14" + ], + "directDependencies": [ + "com.google.code.findbugs:jsr305:1.3.9", + "com.google.errorprone:error_prone_annotations:2.0.18", + "com.google.j2objc:j2objc-annotations:1.1", + "org.codehaus.mojo:animal-sniffer-annotations:1.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/google/guava/guava/23.0/guava-23.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/google/guava/guava/23.0/guava-23.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/google/guava/guava/23.0/guava-23.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/google/guava/guava/23.0/guava-23.0.jar" + ], + "sha256": "7baa80df284117e5b945b19b98d367a85ea7b7801bd358ff657946c3bd1b6596", + "url": "https://repo.maven.apache.org/maven2/com/google/guava/guava/23.0/guava-23.0.jar" + }, + { + "coord": "com.google.guava:guava:jar:sources:23.0", + "dependencies": [ + "com.google.code.findbugs:jsr305:jar:sources:1.3.9", + "com.google.errorprone:error_prone_annotations:jar:sources:2.0.18", + "com.google.j2objc:j2objc-annotations:jar:sources:1.1", + "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.14" + ], + "directDependencies": [ + "com.google.code.findbugs:jsr305:jar:sources:1.3.9", + "com.google.errorprone:error_prone_annotations:jar:sources:2.0.18", + "com.google.j2objc:j2objc-annotations:jar:sources:1.1", + "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/google/guava/guava/23.0/guava-23.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/google/guava/guava/23.0/guava-23.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/google/guava/guava/23.0/guava-23.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/google/guava/guava/23.0/guava-23.0-sources.jar" + ], + "sha256": "37fe8ba804fb3898c3c8f0cbac319cc9daa58400e5f0226a380ac94fb2c3ca14", + "url": "https://repo.maven.apache.org/maven2/com/google/guava/guava/23.0/guava-23.0-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.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.protobuf:protobuf-java:3.19.6", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6.jar" + ], + "sha256": "6a9a2dff91dcf71f85be71ae971f6164b5a631dcd34bff08f0618535ca44ad02", + "url": "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6.jar" + }, + { + "coord": "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6-sources.jar" + ], + "sha256": "98118edf28c74f173b25d8fce03f86ff95d61009df0c66324333573ec842f5d3", + "url": "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6-sources.jar" + }, + { + "coord": "com.jcraft:jsch:0.1.54", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar" + ], + "sha256": "92eb273a3316762478fdd4fe03a0ce1842c56f496c9c12fe1235db80450e1fdb", + "url": "https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar" + }, + { + "coord": "com.jcraft:jsch:jar:sources:0.1.54", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54-sources.jar" + ], + "sha256": "49d021dd58f6b455046a07331a68a5e647df354d7f6961b73df298203c43f44a", + "url": "https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54-sources.jar" + }, + { + "coord": "com.lihaoyi:fansi_2.12:0.2.5", + "dependencies": [ + "com.lihaoyi:sourcecode_2.12:0.1.4", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "com.lihaoyi:sourcecode_2.12:0.1.4", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/fansi_2.12/0.2.5/fansi_2.12-0.2.5.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/lihaoyi/fansi_2.12/0.2.5/fansi_2.12-0.2.5.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/fansi_2.12/0.2.5/fansi_2.12-0.2.5.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/fansi_2.12/0.2.5/fansi_2.12-0.2.5.jar" + ], + "sha256": "7d752240ec724e7370903c25b69088922fa3fb6831365db845cd72498f826eca", + "url": "https://repo.maven.apache.org/maven2/com/lihaoyi/fansi_2.12/0.2.5/fansi_2.12-0.2.5.jar" + }, + { + "coord": "com.lihaoyi:fansi_2.12:jar:sources:0.2.5", + "dependencies": [ + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/fansi_2.12/0.2.5/fansi_2.12-0.2.5-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/lihaoyi/fansi_2.12/0.2.5/fansi_2.12-0.2.5-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/fansi_2.12/0.2.5/fansi_2.12-0.2.5-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/fansi_2.12/0.2.5/fansi_2.12-0.2.5-sources.jar" + ], + "sha256": "15ba86e9c7bb83bddab0470a48a349c0f1b90bb2cd1c7d16f09cee6ba40ca95f", + "url": "https://repo.maven.apache.org/maven2/com/lihaoyi/fansi_2.12/0.2.5/fansi_2.12-0.2.5-sources.jar" + }, + { + "coord": "com.lihaoyi:fastparse-utils_2.12:0.4.2", + "dependencies": [ + "com.lihaoyi:sourcecode_2.12:0.1.4", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "com.lihaoyi:sourcecode_2.12:0.1.4", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/fastparse-utils_2.12/0.4.2/fastparse-utils_2.12-0.4.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/lihaoyi/fastparse-utils_2.12/0.4.2/fastparse-utils_2.12-0.4.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/fastparse-utils_2.12/0.4.2/fastparse-utils_2.12-0.4.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/fastparse-utils_2.12/0.4.2/fastparse-utils_2.12-0.4.2.jar" + ], + "sha256": "0da40d3c89d3f7009ac2f6e32b11d8cdd379b40a2f09ce08669b4695f558e101", + "url": "https://repo.maven.apache.org/maven2/com/lihaoyi/fastparse-utils_2.12/0.4.2/fastparse-utils_2.12-0.4.2.jar" + }, + { + "coord": "com.lihaoyi:fastparse-utils_2.12:jar:sources:0.4.2", + "dependencies": [ + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/fastparse-utils_2.12/0.4.2/fastparse-utils_2.12-0.4.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/lihaoyi/fastparse-utils_2.12/0.4.2/fastparse-utils_2.12-0.4.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/fastparse-utils_2.12/0.4.2/fastparse-utils_2.12-0.4.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/fastparse-utils_2.12/0.4.2/fastparse-utils_2.12-0.4.2-sources.jar" + ], + "sha256": "1eb227bc9659ce84b40d2d258c9ea3e8b8246f362241f43422266e05cabc902d", + "url": "https://repo.maven.apache.org/maven2/com/lihaoyi/fastparse-utils_2.12/0.4.2/fastparse-utils_2.12-0.4.2-sources.jar" + }, + { + "coord": "com.lihaoyi:fastparse_2.12:0.4.2", + "dependencies": [ + "com.lihaoyi:fastparse-utils_2.12:0.4.2", + "com.lihaoyi:sourcecode_2.12:0.1.4", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "com.lihaoyi:fastparse-utils_2.12:0.4.2", + "com.lihaoyi:sourcecode_2.12:0.1.4", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/fastparse_2.12-0.4.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/fastparse_2.12-0.4.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/fastparse_2.12/0.4.2/fastparse_2.12-0.4.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/fastparse_2.12-0.4.2.jar" + ], + "sha256": "43f57787179e902137167ba107e665272a0764f1addb3f452136f15bad5b21a8", + "url": "https://repo.maven.apache.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/fastparse_2.12-0.4.2.jar" + }, + { + "coord": "com.lihaoyi:fastparse_2.12:jar:sources:0.4.2", + "dependencies": [ + "com.lihaoyi:fastparse-utils_2.12:jar:sources:0.4.2", + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "com.lihaoyi:fastparse-utils_2.12:jar:sources:0.4.2", + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/fastparse_2.12-0.4.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/fastparse_2.12-0.4.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/fastparse_2.12/0.4.2/fastparse_2.12-0.4.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/fastparse_2.12-0.4.2-sources.jar" + ], + "sha256": "8e242feb1704b8483969c726056c46e5ba2bb659c943d336ae3948b3a507707d", + "url": "https://repo.maven.apache.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/fastparse_2.12-0.4.2-sources.jar" + }, + { + "coord": "com.lihaoyi:pprint_2.12:0.5.3", + "dependencies": [ + "com.lihaoyi:fansi_2.12:0.2.5", + "com.lihaoyi:sourcecode_2.12:0.1.4", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "com.lihaoyi:fansi_2.12:0.2.5", + "com.lihaoyi:sourcecode_2.12:0.1.4", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/pprint_2.12/0.5.3/pprint_2.12-0.5.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/lihaoyi/pprint_2.12/0.5.3/pprint_2.12-0.5.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/pprint_2.12/0.5.3/pprint_2.12-0.5.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/pprint_2.12/0.5.3/pprint_2.12-0.5.3.jar" + ], + "sha256": "2e18aa0884870537bf5c562255fc759d4ebe360882b5cb2141b30eda4034c71d", + "url": "https://repo.maven.apache.org/maven2/com/lihaoyi/pprint_2.12/0.5.3/pprint_2.12-0.5.3.jar" + }, + { + "coord": "com.lihaoyi:pprint_2.12:jar:sources:0.5.3", + "dependencies": [ + "com.lihaoyi:fansi_2.12:jar:sources:0.2.5", + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "com.lihaoyi:fansi_2.12:jar:sources:0.2.5", + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/pprint_2.12/0.5.3/pprint_2.12-0.5.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/lihaoyi/pprint_2.12/0.5.3/pprint_2.12-0.5.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/pprint_2.12/0.5.3/pprint_2.12-0.5.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/pprint_2.12/0.5.3/pprint_2.12-0.5.3-sources.jar" + ], + "sha256": "41898c25987f7023fe1dafed7639eebd1653f1bf82ba4f4381bc7ef6c50e6084", + "url": "https://repo.maven.apache.org/maven2/com/lihaoyi/pprint_2.12/0.5.3/pprint_2.12-0.5.3-sources.jar" + }, + { + "coord": "com.lihaoyi:sourcecode_2.12:0.1.4", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.4/sourcecode_2.12-0.1.4.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.4/sourcecode_2.12-0.1.4.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/sourcecode_2.12/0.1.4/sourcecode_2.12-0.1.4.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.4/sourcecode_2.12-0.1.4.jar" + ], + "sha256": "9a3134484e596205d0acdcccd260e0854346f266cb4d24e1b8a31be54fbaf6d9", + "url": "https://repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.4/sourcecode_2.12-0.1.4.jar" + }, + { + "coord": "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.4/sourcecode_2.12-0.1.4-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.4/sourcecode_2.12-0.1.4-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/sourcecode_2.12/0.1.4/sourcecode_2.12-0.1.4-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.4/sourcecode_2.12-0.1.4-sources.jar" + ], + "sha256": "c5c53ba31a9f891988f9e21595e8728956be22d9ab9442e140840d0a73be8261", + "url": "https://repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.4/sourcecode_2.12-0.1.4-sources.jar" + }, + { + "coord": "com.lihaoyi:sourcecode_2.13:0.2.7", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.13/0.2.7/sourcecode_2.13-0.2.7.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.13/0.2.7/sourcecode_2.13-0.2.7.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/sourcecode_2.13/0.2.7/sourcecode_2.13-0.2.7.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.13/0.2.7/sourcecode_2.13-0.2.7.jar" + ], + "sha256": "a639a90e2d21bbafd8a5e213c65442aad200ee086951605cbda8835bc6ef11d3", + "url": "https://repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.13/0.2.7/sourcecode_2.13-0.2.7.jar" + }, + { + "coord": "com.lihaoyi:sourcecode_2.13:jar:sources:0.2.7", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.13/0.2.7/sourcecode_2.13-0.2.7-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.13/0.2.7/sourcecode_2.13-0.2.7-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/sourcecode_2.13/0.2.7/sourcecode_2.13-0.2.7-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.13/0.2.7/sourcecode_2.13-0.2.7-sources.jar" + ], + "sha256": "e4cae365cd26b19ffb1491472cbc91ed853bb2a1cbbcc8176d0187affebd8bbe", + "url": "https://repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.13/0.2.7/sourcecode_2.13-0.2.7-sources.jar" + }, + { + "coord": "com.lmax:disruptor:3.4.2", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2.jar" + ], + "sha256": "f412ecbb235c2460b45e63584109723dea8d94b819c78c9bfc38f50cba8546c0", + "url": "https://repo.maven.apache.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2.jar" + }, + { + "coord": "com.lmax:disruptor:jar:sources:3.4.2", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2-sources.jar" + ], + "sha256": "ed3a5401dbfd2c6a6d914db221b7728acd17cfc8fdb7520c26879938a30132b4", + "url": "https://repo.maven.apache.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2-sources.jar" + }, + { + "coord": "com.squareup.okhttp3:okhttp-urlconnection:3.7.0", + "dependencies": [ + "com.squareup.okhttp3:okhttp:3.7.0", + "com.squareup.okio:okio:1.12.0" + ], + "directDependencies": [ + "com.squareup.okhttp3:okhttp:3.7.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp-urlconnection/3.7.0/okhttp-urlconnection-3.7.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp-urlconnection/3.7.0/okhttp-urlconnection-3.7.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/squareup/okhttp3/okhttp-urlconnection/3.7.0/okhttp-urlconnection-3.7.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/squareup/okhttp3/okhttp-urlconnection/3.7.0/okhttp-urlconnection-3.7.0.jar" + ], + "sha256": "4631582b6818b6c8bdb0bca13b3ba126d2787969d33693d0f3912f1225fde3ec", + "url": "https://repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp-urlconnection/3.7.0/okhttp-urlconnection-3.7.0.jar" + }, + { + "coord": "com.squareup.okhttp3:okhttp-urlconnection:jar:sources:3.7.0", + "dependencies": [ + "com.squareup.okhttp3:okhttp:jar:sources:3.7.0", + "com.squareup.okio:okio:jar:sources:1.12.0" + ], + "directDependencies": [ + "com.squareup.okhttp3:okhttp:jar:sources:3.7.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp-urlconnection/3.7.0/okhttp-urlconnection-3.7.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp-urlconnection/3.7.0/okhttp-urlconnection-3.7.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/squareup/okhttp3/okhttp-urlconnection/3.7.0/okhttp-urlconnection-3.7.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/squareup/okhttp3/okhttp-urlconnection/3.7.0/okhttp-urlconnection-3.7.0-sources.jar" + ], + "sha256": "f9526df9ab982e83fd184ad55d3c1b46a027d840108de9c55811d973c33013dc", + "url": "https://repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp-urlconnection/3.7.0/okhttp-urlconnection-3.7.0-sources.jar" + }, + { + "coord": "com.squareup.okhttp3:okhttp:3.7.0", + "dependencies": [ + "com.squareup.okio:okio:1.12.0" + ], + "directDependencies": [ + "com.squareup.okio:okio:1.12.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp/3.7.0/okhttp-3.7.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp/3.7.0/okhttp-3.7.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/squareup/okhttp3/okhttp/3.7.0/okhttp-3.7.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.7.0/okhttp-3.7.0.jar" + ], + "sha256": "f55abda036da75e1af45bd43b9dfa79b2a3d90905be9cb38687c6621597a8165", + "url": "https://repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp/3.7.0/okhttp-3.7.0.jar" + }, + { + "coord": "com.squareup.okhttp3:okhttp:jar:sources:3.7.0", + "dependencies": [ + "com.squareup.okio:okio:jar:sources:1.12.0" + ], + "directDependencies": [ + "com.squareup.okio:okio:jar:sources:1.12.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp/3.7.0/okhttp-3.7.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp/3.7.0/okhttp-3.7.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/squareup/okhttp3/okhttp/3.7.0/okhttp-3.7.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.7.0/okhttp-3.7.0-sources.jar" + ], + "sha256": "a05aec7722b6b96354a49b8a225be6bb7c86609ff3c358c45d3a5a8e4805c544", + "url": "https://repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp/3.7.0/okhttp-3.7.0-sources.jar" + }, + { + "coord": "com.squareup.okio:okio:1.12.0", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/squareup/okio/okio/1.12.0/okio-1.12.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/squareup/okio/okio/1.12.0/okio-1.12.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/squareup/okio/okio/1.12.0/okio-1.12.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/squareup/okio/okio/1.12.0/okio-1.12.0.jar" + ], + "sha256": "bfe7dfe483c37137966a1690f0c7d0b448ba217902c1fed202aaffdbba3291ae", + "url": "https://repo.maven.apache.org/maven2/com/squareup/okio/okio/1.12.0/okio-1.12.0.jar" + }, + { + "coord": "com.squareup.okio:okio:jar:sources:1.12.0", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/squareup/okio/okio/1.12.0/okio-1.12.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/squareup/okio/okio/1.12.0/okio-1.12.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/squareup/okio/okio/1.12.0/okio-1.12.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/squareup/okio/okio/1.12.0/okio-1.12.0-sources.jar" + ], + "sha256": "6b7aca5e64927cea1a51b7200b1b5378b15fb1067330b628f987febef25c21c9", + "url": "https://repo.maven.apache.org/maven2/com/squareup/okio/okio/1.12.0/okio-1.12.0-sources.jar" + }, + { + "coord": "com.swoval:file-tree-views:2.1.10", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/swoval/file-tree-views/2.1.10/file-tree-views-2.1.10.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/swoval/file-tree-views/2.1.10/file-tree-views-2.1.10.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/swoval/file-tree-views/2.1.10/file-tree-views-2.1.10.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.10/file-tree-views-2.1.10.jar" + ], + "sha256": "3eccd3cff2d7694aa3969d3a2f3a390dd8ec75243f9b672b2237f77308839273", + "url": "https://repo.maven.apache.org/maven2/com/swoval/file-tree-views/2.1.10/file-tree-views-2.1.10.jar" + }, + { + "coord": "com.swoval:file-tree-views:jar:sources:2.1.10", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/swoval/file-tree-views/2.1.10/file-tree-views-2.1.10-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/swoval/file-tree-views/2.1.10/file-tree-views-2.1.10-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/swoval/file-tree-views/2.1.10/file-tree-views-2.1.10-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.10/file-tree-views-2.1.10-sources.jar" + ], + "sha256": "d0802d4038e9693d8f06d76f441a2f899fea4ff5b9155fb03f10c02b5782c0f9", + "url": "https://repo.maven.apache.org/maven2/com/swoval/file-tree-views/2.1.10/file-tree-views-2.1.10-sources.jar" + }, + { + "coord": "com.thesamet.scalapb:lenses_2.13:0.11.17", + "dependencies": [ + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17.jar" + ], + "sha256": "4abe3fe573b8505a633414b0fbbcae4240250690ba48a9d4a6eeb3dfc3302ddf", + "url": "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17.jar" + }, + { + "coord": "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.17", + "dependencies": [ + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17-sources.jar" + ], + "sha256": "268a45ae25f08e4236a2194fd180bd29c2607920827d7342bb3f8ac77481010c", + "url": "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17-sources.jar" + }, + { + "coord": "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.17", + "dependencies": [ + "com.google.protobuf:protobuf-java:3.19.6", + "com.thesamet.scalapb:lenses_2.13:0.11.17", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "com.google.protobuf:protobuf-java:3.19.6", + "com.thesamet.scalapb:lenses_2.13:0.11.17", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17.jar" + ], + "sha256": "fe91faf58bccef68be348e76cab339a5fe2c215e48f7bd8f836190449ed94077", + "url": "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17.jar" + }, + { + "coord": "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.17", + "dependencies": [ + "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.17", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.17", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17-sources.jar" + ], + "sha256": "2e14340da16b0f7dc2c1d41c6b26b3bf0a691e05319a3d08e73b1c5d221dc67f", + "url": "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17-sources.jar" + }, + { + "coord": "com.trueaccord.lenses:lenses_2.12:0.4.12", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/trueaccord/lenses/lenses_2.12/0.4.12/lenses_2.12-0.4.12.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/trueaccord/lenses/lenses_2.12/0.4.12/lenses_2.12-0.4.12.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/trueaccord/lenses/lenses_2.12/0.4.12/lenses_2.12-0.4.12.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/trueaccord/lenses/lenses_2.12/0.4.12/lenses_2.12-0.4.12.jar" + ], + "sha256": "7cedcbc3125ad3f156466d6f3aec24b7fe6954cdc54a426ea089b4a46cd84c1c", + "url": "https://repo.maven.apache.org/maven2/com/trueaccord/lenses/lenses_2.12/0.4.12/lenses_2.12-0.4.12.jar" + }, + { + "coord": "com.trueaccord.lenses:lenses_2.12:jar:sources:0.4.12", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/trueaccord/lenses/lenses_2.12/0.4.12/lenses_2.12-0.4.12-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/trueaccord/lenses/lenses_2.12/0.4.12/lenses_2.12-0.4.12-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/trueaccord/lenses/lenses_2.12/0.4.12/lenses_2.12-0.4.12-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/trueaccord/lenses/lenses_2.12/0.4.12/lenses_2.12-0.4.12-sources.jar" + ], + "sha256": "2eed83e6a00d9dbfdcb367a28ca4a7d2080b0adb1dbabfe4892bef79e8b39aef", + "url": "https://repo.maven.apache.org/maven2/com/trueaccord/lenses/lenses_2.12/0.4.12/lenses_2.12-0.4.12-sources.jar" + }, + { + "coord": "com.trueaccord.scalapb:scalapb-runtime_2.12:0.6.0", + "dependencies": [ + "com.google.protobuf:protobuf-java:3.19.6", + "com.lihaoyi:fastparse-utils_2.12:0.4.2", + "com.lihaoyi:fastparse_2.12:0.4.2", + "com.lihaoyi:sourcecode_2.12:0.1.4", + "com.trueaccord.lenses:lenses_2.12:0.4.12", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "com.google.protobuf:protobuf-java:3.19.6", + "com.lihaoyi:fastparse_2.12:0.4.2", + "com.trueaccord.lenses:lenses_2.12:0.4.12", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/trueaccord/scalapb/scalapb-runtime_2.12/0.6.0/scalapb-runtime_2.12-0.6.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/trueaccord/scalapb/scalapb-runtime_2.12/0.6.0/scalapb-runtime_2.12-0.6.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/trueaccord/scalapb/scalapb-runtime_2.12/0.6.0/scalapb-runtime_2.12-0.6.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-runtime_2.12/0.6.0/scalapb-runtime_2.12-0.6.0.jar" + ], + "sha256": "7921c157a5d0c4852d6ee99c728cf77c148ce6d36280dfcb6b58d1fa90d17f8d", + "url": "https://repo.maven.apache.org/maven2/com/trueaccord/scalapb/scalapb-runtime_2.12/0.6.0/scalapb-runtime_2.12-0.6.0.jar" + }, + { + "coord": "com.trueaccord.scalapb:scalapb-runtime_2.12:jar:sources:0.6.0", + "dependencies": [ + "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "com.lihaoyi:fastparse-utils_2.12:jar:sources:0.4.2", + "com.lihaoyi:fastparse_2.12:jar:sources:0.4.2", + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "com.trueaccord.lenses:lenses_2.12:jar:sources:0.4.12", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "com.lihaoyi:fastparse_2.12:jar:sources:0.4.2", + "com.trueaccord.lenses:lenses_2.12:jar:sources:0.4.12", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/trueaccord/scalapb/scalapb-runtime_2.12/0.6.0/scalapb-runtime_2.12-0.6.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/trueaccord/scalapb/scalapb-runtime_2.12/0.6.0/scalapb-runtime_2.12-0.6.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/trueaccord/scalapb/scalapb-runtime_2.12/0.6.0/scalapb-runtime_2.12-0.6.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-runtime_2.12/0.6.0/scalapb-runtime_2.12-0.6.0-sources.jar" + ], + "sha256": "ed9b75d56698da090ead2ee1f464157225a4c6117d4adb31d2947809fb1f4da8", + "url": "https://repo.maven.apache.org/maven2/com/trueaccord/scalapb/scalapb-runtime_2.12/0.6.0/scalapb-runtime_2.12-0.6.0-sources.jar" + }, + { + "coord": "com.typesafe.scala-logging:scala-logging_2.12:3.7.2", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.slf4j:slf4j-api:1.7.25" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.slf4j:slf4j-api:1.7.25" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/scala-logging/scala-logging_2.12/3.7.2/scala-logging_2.12-3.7.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/typesafe/scala-logging/scala-logging_2.12/3.7.2/scala-logging_2.12-3.7.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/scala-logging/scala-logging_2.12/3.7.2/scala-logging_2.12-3.7.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/scala-logging/scala-logging_2.12/3.7.2/scala-logging_2.12-3.7.2.jar" + ], + "sha256": "8baac084969b1421a54880147abe79265eba76b06a75afe0aa05781efc7bedf4", + "url": "https://repo.maven.apache.org/maven2/com/typesafe/scala-logging/scala-logging_2.12/3.7.2/scala-logging_2.12-3.7.2.jar" + }, + { + "coord": "com.typesafe.scala-logging:scala-logging_2.12:jar:sources:3.7.2", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.slf4j:slf4j-api:jar:sources:1.7.25" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.slf4j:slf4j-api:jar:sources:1.7.25" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/scala-logging/scala-logging_2.12/3.7.2/scala-logging_2.12-3.7.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/typesafe/scala-logging/scala-logging_2.12/3.7.2/scala-logging_2.12-3.7.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/scala-logging/scala-logging_2.12/3.7.2/scala-logging_2.12-3.7.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/scala-logging/scala-logging_2.12/3.7.2/scala-logging_2.12-3.7.2-sources.jar" + ], + "sha256": "4096fc9a85ddc1dc556f34c22100d24b032408776140f8ec70bb359dc6f7579b", + "url": "https://repo.maven.apache.org/maven2/com/typesafe/scala-logging/scala-logging_2.12/3.7.2/scala-logging_2.12-3.7.2-sources.jar" + }, + { + "coord": "com.typesafe:config:1.2.0", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/config/1.2.0/config-1.2.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/typesafe/config/1.2.0/config-1.2.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/config/1.2.0/config-1.2.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/config/1.2.0/config-1.2.0.jar" + ], + "sha256": "56f2c2e8acb95fb1e358b1e3faef2d565782c2a528747b01af8dd8e8bd87bd60", + "url": "https://repo.maven.apache.org/maven2/com/typesafe/config/1.2.0/config-1.2.0.jar" + }, + { + "coord": "com.typesafe:config:jar:sources:1.2.0", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/config/1.2.0/config-1.2.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/typesafe/config/1.2.0/config-1.2.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/config/1.2.0/config-1.2.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/config/1.2.0/config-1.2.0-sources.jar" + ], + "sha256": "1acf655899a53e9acc577cb9d47e466095d83532cdfd1b17dd8e6f5c1c02642c", + "url": "https://repo.maven.apache.org/maven2/com/typesafe/config/1.2.0/config-1.2.0-sources.jar" + }, + { + "coord": "com.typesafe:ssl-config-core_2.12:0.2.2", + "dependencies": [ + "com.typesafe:config:1.2.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "com.typesafe:config:1.2.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/ssl-config-core_2.12/0.2.2/ssl-config-core_2.12-0.2.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/typesafe/ssl-config-core_2.12/0.2.2/ssl-config-core_2.12-0.2.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/ssl-config-core_2.12/0.2.2/ssl-config-core_2.12-0.2.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.2.2/ssl-config-core_2.12-0.2.2.jar" + ], + "sha256": "cf144ec0adeb7f97da59542910ef18471f03fde2e174148e711b7f071155c7e4", + "url": "https://repo.maven.apache.org/maven2/com/typesafe/ssl-config-core_2.12/0.2.2/ssl-config-core_2.12-0.2.2.jar" + }, + { + "coord": "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", + "dependencies": [ + "com.typesafe:config:jar:sources:1.2.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "com.typesafe:config:jar:sources:1.2.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/ssl-config-core_2.12/0.2.2/ssl-config-core_2.12-0.2.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/typesafe/ssl-config-core_2.12/0.2.2/ssl-config-core_2.12-0.2.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/ssl-config-core_2.12/0.2.2/ssl-config-core_2.12-0.2.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.2.2/ssl-config-core_2.12-0.2.2-sources.jar" + ], + "sha256": "6b8b6f4135e7bcce10a8507b7b9f8a70982e71f34926b9f2118706f82793b410", + "url": "https://repo.maven.apache.org/maven2/com/typesafe/ssl-config-core_2.12/0.2.2/ssl-config-core_2.12-0.2.2-sources.jar" + }, + { + "coord": "com.zaxxer:nuprocess:1.2.4", + "dependencies": [ + "net.java.dev.jna:jna:5.14.0" + ], + "directDependencies": [ + "net.java.dev.jna:jna:5.14.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/zaxxer/nuprocess/1.2.4/nuprocess-1.2.4.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/zaxxer/nuprocess/1.2.4/nuprocess-1.2.4.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/zaxxer/nuprocess/1.2.4/nuprocess-1.2.4.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/zaxxer/nuprocess/1.2.4/nuprocess-1.2.4.jar" + ], + "sha256": "1e56122ff6dba06f58dc97829fd1cbd2c5e82c99e0e1bc66214bfc3159838dd9", + "url": "https://repo.maven.apache.org/maven2/com/zaxxer/nuprocess/1.2.4/nuprocess-1.2.4.jar" + }, + { + "coord": "com.zaxxer:nuprocess:jar:sources:1.2.4", + "dependencies": [ + "net.java.dev.jna:jna:jar:sources:5.14.0" + ], + "directDependencies": [ + "net.java.dev.jna:jna:jar:sources:5.14.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/zaxxer/nuprocess/1.2.4/nuprocess-1.2.4-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/zaxxer/nuprocess/1.2.4/nuprocess-1.2.4-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/zaxxer/nuprocess/1.2.4/nuprocess-1.2.4-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/zaxxer/nuprocess/1.2.4/nuprocess-1.2.4-sources.jar" + ], + "sha256": "e9d60ef0f35ea1fde6f19d57679ea8a82306ccfa07cde23c7de1fac986d5a4e0", + "url": "https://repo.maven.apache.org/maven2/com/zaxxer/nuprocess/1.2.4/nuprocess-1.2.4-sources.jar" + }, + { + "coord": "io.circe:circe-core_2.12:0.9.3", + "dependencies": [ + "io.circe:circe-numbers_2.12:0.9.3", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.typelevel:cats-core_2.12:1.0.1", + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.typelevel:cats-macros_2.12:1.0.1", + "org.typelevel:machinist_2.12:0.6.2" + ], + "directDependencies": [ + "io.circe:circe-numbers_2.12:0.9.3", + "org.scala-lang:scala-library:2.13.14", + "org.typelevel:cats-core_2.12:1.0.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/circe/circe-core_2.12/0.9.3/circe-core_2.12-0.9.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/circe/circe-core_2.12/0.9.3/circe-core_2.12-0.9.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/circe/circe-core_2.12/0.9.3/circe-core_2.12-0.9.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/circe/circe-core_2.12/0.9.3/circe-core_2.12-0.9.3.jar" + ], + "sha256": "256527a2ce81b91db1d3cc27f44dc920a8cb33ff32c1d6e6d9813799df774e20", + "url": "https://repo.maven.apache.org/maven2/io/circe/circe-core_2.12/0.9.3/circe-core_2.12-0.9.3.jar" + }, + { + "coord": "io.circe:circe-core_2.12:jar:sources:0.9.3", + "dependencies": [ + "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.typelevel:cats-core_2.12:jar:sources:1.0.1", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "org.typelevel:machinist_2.12:jar:sources:0.6.2" + ], + "directDependencies": [ + "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.typelevel:cats-core_2.12:jar:sources:1.0.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/circe/circe-core_2.12/0.9.3/circe-core_2.12-0.9.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/circe/circe-core_2.12/0.9.3/circe-core_2.12-0.9.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/circe/circe-core_2.12/0.9.3/circe-core_2.12-0.9.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/circe/circe-core_2.12/0.9.3/circe-core_2.12-0.9.3-sources.jar" + ], + "sha256": "a84c0f7651d1a1ef2c4fb7df802965b572680f88e6128f09f137be19759e9e78", + "url": "https://repo.maven.apache.org/maven2/io/circe/circe-core_2.12/0.9.3/circe-core_2.12-0.9.3-sources.jar" + }, + { + "coord": "io.circe:circe-derivation_2.12:0.9.0-M3", + "dependencies": [ + "io.circe:circe-core_2.12:0.9.3", + "io.circe:circe-numbers_2.12:0.9.3", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.typelevel:cats-core_2.12:1.0.1", + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.typelevel:cats-macros_2.12:1.0.1", + "org.typelevel:machinist_2.12:0.6.2" + ], + "directDependencies": [ + "io.circe:circe-core_2.12:0.9.3", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/circe/circe-derivation_2.12/0.9.0-M3/circe-derivation_2.12-0.9.0-M3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/circe/circe-derivation_2.12/0.9.0-M3/circe-derivation_2.12-0.9.0-M3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/circe/circe-derivation_2.12/0.9.0-M3/circe-derivation_2.12-0.9.0-M3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/circe/circe-derivation_2.12/0.9.0-M3/circe-derivation_2.12-0.9.0-M3.jar" + ], + "sha256": "055edaacc4f4b4e8e3c49523b23cb313a24f11db64d7ab7bd210e14c6fc5d89f", + "url": "https://repo.maven.apache.org/maven2/io/circe/circe-derivation_2.12/0.9.0-M3/circe-derivation_2.12-0.9.0-M3.jar" + }, + { + "coord": "io.circe:circe-derivation_2.12:jar:sources:0.9.0-M3", + "dependencies": [ + "io.circe:circe-core_2.12:jar:sources:0.9.3", + "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.typelevel:cats-core_2.12:jar:sources:1.0.1", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "org.typelevel:machinist_2.12:jar:sources:0.6.2" + ], + "directDependencies": [ + "io.circe:circe-core_2.12:jar:sources:0.9.3", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/circe/circe-derivation_2.12/0.9.0-M3/circe-derivation_2.12-0.9.0-M3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/circe/circe-derivation_2.12/0.9.0-M3/circe-derivation_2.12-0.9.0-M3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/circe/circe-derivation_2.12/0.9.0-M3/circe-derivation_2.12-0.9.0-M3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/circe/circe-derivation_2.12/0.9.0-M3/circe-derivation_2.12-0.9.0-M3-sources.jar" + ], + "sha256": "a144bf1b9ab92965db68d53f4020c001961989a79f98e05db47fdfd8afc1061b", + "url": "https://repo.maven.apache.org/maven2/io/circe/circe-derivation_2.12/0.9.0-M3/circe-derivation_2.12-0.9.0-M3-sources.jar" + }, + { + "coord": "io.circe:circe-generic-extras_2.12:0.9.0", + "dependencies": [ + "com.chuusai:shapeless_2.12:2.3.3", + "io.circe:circe-core_2.12:0.9.3", + "io.circe:circe-generic_2.12:0.9.0", + "io.circe:circe-numbers_2.12:0.9.3", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.typelevel:cats-core_2.12:1.0.1", + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.typelevel:cats-macros_2.12:1.0.1", + "org.typelevel:machinist_2.12:0.6.2", + "org.typelevel:macro-compat_2.12:1.1.1" + ], + "directDependencies": [ + "io.circe:circe-generic_2.12:0.9.0", + "org.scala-lang:scala-library:2.13.14", + "org.typelevel:macro-compat_2.12:1.1.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/circe/circe-generic-extras_2.12/0.9.0/circe-generic-extras_2.12-0.9.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/circe/circe-generic-extras_2.12/0.9.0/circe-generic-extras_2.12-0.9.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/circe/circe-generic-extras_2.12/0.9.0/circe-generic-extras_2.12-0.9.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/circe/circe-generic-extras_2.12/0.9.0/circe-generic-extras_2.12-0.9.0.jar" + ], + "sha256": "710782ae44245c9f6bc79bd4038d7c2ec4f44222852ad9dfd7811b121316c1a4", + "url": "https://repo.maven.apache.org/maven2/io/circe/circe-generic-extras_2.12/0.9.0/circe-generic-extras_2.12-0.9.0.jar" + }, + { + "coord": "io.circe:circe-generic-extras_2.12:jar:sources:0.9.0", + "dependencies": [ + "com.chuusai:shapeless_2.12:jar:sources:2.3.3", + "io.circe:circe-core_2.12:jar:sources:0.9.3", + "io.circe:circe-generic_2.12:jar:sources:0.9.0", + "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.typelevel:cats-core_2.12:jar:sources:1.0.1", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "org.typelevel:machinist_2.12:jar:sources:0.6.2", + "org.typelevel:macro-compat_2.12:jar:sources:1.1.1" + ], + "directDependencies": [ + "io.circe:circe-generic_2.12:jar:sources:0.9.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.typelevel:macro-compat_2.12:jar:sources:1.1.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/circe/circe-generic-extras_2.12/0.9.0/circe-generic-extras_2.12-0.9.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/circe/circe-generic-extras_2.12/0.9.0/circe-generic-extras_2.12-0.9.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/circe/circe-generic-extras_2.12/0.9.0/circe-generic-extras_2.12-0.9.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/circe/circe-generic-extras_2.12/0.9.0/circe-generic-extras_2.12-0.9.0-sources.jar" + ], + "sha256": "309c311ddb3b2f022df9c46faef4487fdf85c12497d300dfc416ecc9c001ed7c", + "url": "https://repo.maven.apache.org/maven2/io/circe/circe-generic-extras_2.12/0.9.0/circe-generic-extras_2.12-0.9.0-sources.jar" + }, + { + "coord": "io.circe:circe-generic_2.12:0.9.0", + "dependencies": [ + "com.chuusai:shapeless_2.12:2.3.3", + "io.circe:circe-core_2.12:0.9.3", + "io.circe:circe-numbers_2.12:0.9.3", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.typelevel:cats-core_2.12:1.0.1", + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.typelevel:cats-macros_2.12:1.0.1", + "org.typelevel:machinist_2.12:0.6.2", + "org.typelevel:macro-compat_2.12:1.1.1" + ], + "directDependencies": [ + "com.chuusai:shapeless_2.12:2.3.3", + "io.circe:circe-core_2.12:0.9.3", + "org.scala-lang:scala-library:2.13.14", + "org.typelevel:macro-compat_2.12:1.1.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/circe/circe-generic_2.12/0.9.0/circe-generic_2.12-0.9.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/circe/circe-generic_2.12/0.9.0/circe-generic_2.12-0.9.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/circe/circe-generic_2.12/0.9.0/circe-generic_2.12-0.9.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/circe/circe-generic_2.12/0.9.0/circe-generic_2.12-0.9.0.jar" + ], + "sha256": "c9edca65268e37c08253a0a458d25356eab4c438cd283f73b0d8c7539d79dd95", + "url": "https://repo.maven.apache.org/maven2/io/circe/circe-generic_2.12/0.9.0/circe-generic_2.12-0.9.0.jar" + }, + { + "coord": "io.circe:circe-generic_2.12:jar:sources:0.9.0", + "dependencies": [ + "com.chuusai:shapeless_2.12:jar:sources:2.3.3", + "io.circe:circe-core_2.12:jar:sources:0.9.3", + "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.typelevel:cats-core_2.12:jar:sources:1.0.1", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "org.typelevel:machinist_2.12:jar:sources:0.6.2", + "org.typelevel:macro-compat_2.12:jar:sources:1.1.1" + ], + "directDependencies": [ + "com.chuusai:shapeless_2.12:jar:sources:2.3.3", + "io.circe:circe-core_2.12:jar:sources:0.9.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.typelevel:macro-compat_2.12:jar:sources:1.1.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/circe/circe-generic_2.12/0.9.0/circe-generic_2.12-0.9.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/circe/circe-generic_2.12/0.9.0/circe-generic_2.12-0.9.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/circe/circe-generic_2.12/0.9.0/circe-generic_2.12-0.9.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/circe/circe-generic_2.12/0.9.0/circe-generic_2.12-0.9.0-sources.jar" + ], + "sha256": "fd52e3bf0c2f1a7f3e9319fefe71ef4dacacee6eed78dab26d55503352522f29", + "url": "https://repo.maven.apache.org/maven2/io/circe/circe-generic_2.12/0.9.0/circe-generic_2.12-0.9.0-sources.jar" + }, + { + "coord": "io.circe:circe-jawn_2.12:0.9.3", + "dependencies": [ + "io.circe:circe-core_2.12:0.9.3", + "io.circe:circe-numbers_2.12:0.9.3", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.spire-math:jawn-parser_2.12:0.11.1", + "org.typelevel:cats-core_2.12:1.0.1", + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.typelevel:cats-macros_2.12:1.0.1", + "org.typelevel:machinist_2.12:0.6.2" + ], + "directDependencies": [ + "io.circe:circe-core_2.12:0.9.3", + "org.scala-lang:scala-library:2.13.14", + "org.spire-math:jawn-parser_2.12:0.11.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/circe/circe-jawn_2.12/0.9.3/circe-jawn_2.12-0.9.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/circe/circe-jawn_2.12/0.9.3/circe-jawn_2.12-0.9.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/circe/circe-jawn_2.12/0.9.3/circe-jawn_2.12-0.9.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/circe/circe-jawn_2.12/0.9.3/circe-jawn_2.12-0.9.3.jar" + ], + "sha256": "0f3b99235b0180482a1a00dcfc2fe7604a42c027923dc4c1b5e99f7ffc507d9d", + "url": "https://repo.maven.apache.org/maven2/io/circe/circe-jawn_2.12/0.9.3/circe-jawn_2.12-0.9.3.jar" + }, + { + "coord": "io.circe:circe-jawn_2.12:jar:sources:0.9.3", + "dependencies": [ + "io.circe:circe-core_2.12:jar:sources:0.9.3", + "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", + "org.typelevel:cats-core_2.12:jar:sources:1.0.1", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "org.typelevel:machinist_2.12:jar:sources:0.6.2" + ], + "directDependencies": [ + "io.circe:circe-core_2.12:jar:sources:0.9.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/circe/circe-jawn_2.12/0.9.3/circe-jawn_2.12-0.9.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/circe/circe-jawn_2.12/0.9.3/circe-jawn_2.12-0.9.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/circe/circe-jawn_2.12/0.9.3/circe-jawn_2.12-0.9.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/circe/circe-jawn_2.12/0.9.3/circe-jawn_2.12-0.9.3-sources.jar" + ], + "sha256": "a2f0e0fb26bb000426af13fa0e6389642f06feb9f1b4e9620aa8c6e584ccdfd8", + "url": "https://repo.maven.apache.org/maven2/io/circe/circe-jawn_2.12/0.9.3/circe-jawn_2.12-0.9.3-sources.jar" + }, + { + "coord": "io.circe:circe-numbers_2.12:0.9.3", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/circe/circe-numbers_2.12/0.9.3/circe-numbers_2.12-0.9.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/circe/circe-numbers_2.12/0.9.3/circe-numbers_2.12-0.9.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/circe/circe-numbers_2.12/0.9.3/circe-numbers_2.12-0.9.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/circe/circe-numbers_2.12/0.9.3/circe-numbers_2.12-0.9.3.jar" + ], + "sha256": "49cd74886f74659b239b6a85f3ba8e24f212a9e6b299fb9a793e092905bc8fa3", + "url": "https://repo.maven.apache.org/maven2/io/circe/circe-numbers_2.12/0.9.3/circe-numbers_2.12-0.9.3.jar" + }, + { + "coord": "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/circe/circe-numbers_2.12/0.9.3/circe-numbers_2.12-0.9.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/circe/circe-numbers_2.12/0.9.3/circe-numbers_2.12-0.9.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/circe/circe-numbers_2.12/0.9.3/circe-numbers_2.12-0.9.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/circe/circe-numbers_2.12/0.9.3/circe-numbers_2.12-0.9.3-sources.jar" + ], + "sha256": "562f7bc8dab9917b5e903cd8931a52cfce22d6a2fa53df1919ad5088580b8eb2", + "url": "https://repo.maven.apache.org/maven2/io/circe/circe-numbers_2.12/0.9.3/circe-numbers_2.12-0.9.3-sources.jar" + }, + { + "coord": "io.circe:circe-parser_2.12:0.9.3", + "dependencies": [ + "io.circe:circe-core_2.12:0.9.3", + "io.circe:circe-jawn_2.12:0.9.3", + "io.circe:circe-numbers_2.12:0.9.3", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.spire-math:jawn-parser_2.12:0.11.1", + "org.typelevel:cats-core_2.12:1.0.1", + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.typelevel:cats-macros_2.12:1.0.1", + "org.typelevel:machinist_2.12:0.6.2" + ], + "directDependencies": [ + "io.circe:circe-core_2.12:0.9.3", + "io.circe:circe-jawn_2.12:0.9.3", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/circe/circe-parser_2.12/0.9.3/circe-parser_2.12-0.9.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/circe/circe-parser_2.12/0.9.3/circe-parser_2.12-0.9.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/circe/circe-parser_2.12/0.9.3/circe-parser_2.12-0.9.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/circe/circe-parser_2.12/0.9.3/circe-parser_2.12-0.9.3.jar" + ], + "sha256": "35613794c8881186487beaf5a620cd0f6f128cffd4e7a2c777ef034cb4bd1f75", + "url": "https://repo.maven.apache.org/maven2/io/circe/circe-parser_2.12/0.9.3/circe-parser_2.12-0.9.3.jar" + }, + { + "coord": "io.circe:circe-parser_2.12:jar:sources:0.9.3", + "dependencies": [ + "io.circe:circe-core_2.12:jar:sources:0.9.3", + "io.circe:circe-jawn_2.12:jar:sources:0.9.3", + "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", + "org.typelevel:cats-core_2.12:jar:sources:1.0.1", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "org.typelevel:machinist_2.12:jar:sources:0.6.2" + ], + "directDependencies": [ + "io.circe:circe-core_2.12:jar:sources:0.9.3", + "io.circe:circe-jawn_2.12:jar:sources:0.9.3", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/circe/circe-parser_2.12/0.9.3/circe-parser_2.12-0.9.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/circe/circe-parser_2.12/0.9.3/circe-parser_2.12-0.9.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/circe/circe-parser_2.12/0.9.3/circe-parser_2.12-0.9.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/circe/circe-parser_2.12/0.9.3/circe-parser_2.12-0.9.3-sources.jar" + ], + "sha256": "08e1cdf76c77951b8771f2485756f6e9137de6473bfbaaabd86c9f568827b0a1", + "url": "https://repo.maven.apache.org/maven2/io/circe/circe-parser_2.12/0.9.3/circe-parser_2.12-0.9.3-sources.jar" + }, + { + "coord": "io.get-coursier:coursier-cache_2.12:1.1.0-M3", + "dependencies": [ + "io.get-coursier:coursier_2.12:1.1.0-M3", + "org.scala-lang.modules:scala-xml_2.12:1.0.6", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "io.get-coursier:coursier_2.12:1.1.0-M3", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/get-coursier/coursier-cache_2.12/1.1.0-M3/coursier-cache_2.12-1.1.0-M3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/get-coursier/coursier-cache_2.12/1.1.0-M3/coursier-cache_2.12-1.1.0-M3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/get-coursier/coursier-cache_2.12/1.1.0-M3/coursier-cache_2.12-1.1.0-M3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/get-coursier/coursier-cache_2.12/1.1.0-M3/coursier-cache_2.12-1.1.0-M3.jar" + ], + "sha256": "aaa00acfe8b99f986c42d6efcef5d67ff3b562a5c24da008c2348562127bff73", + "url": "https://repo.maven.apache.org/maven2/io/get-coursier/coursier-cache_2.12/1.1.0-M3/coursier-cache_2.12-1.1.0-M3.jar" + }, + { + "coord": "io.get-coursier:coursier-cache_2.12:jar:sources:1.1.0-M3", + "dependencies": [ + "io.get-coursier:coursier_2.12:jar:sources:1.1.0-M3", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "io.get-coursier:coursier_2.12:jar:sources:1.1.0-M3", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/get-coursier/coursier-cache_2.12/1.1.0-M3/coursier-cache_2.12-1.1.0-M3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/get-coursier/coursier-cache_2.12/1.1.0-M3/coursier-cache_2.12-1.1.0-M3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/get-coursier/coursier-cache_2.12/1.1.0-M3/coursier-cache_2.12-1.1.0-M3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/get-coursier/coursier-cache_2.12/1.1.0-M3/coursier-cache_2.12-1.1.0-M3-sources.jar" + ], + "sha256": "ce5baf5872f2ede7f4cd6698c0e36f5bd4a40025b69f879706ec3a03dc9bb45f", + "url": "https://repo.maven.apache.org/maven2/io/get-coursier/coursier-cache_2.12/1.1.0-M3/coursier-cache_2.12-1.1.0-M3-sources.jar" + }, + { + "coord": "io.get-coursier:coursier-scalaz-interop_2.12:1.1.0-M3", + "dependencies": [ + "io.get-coursier:coursier-cache_2.12:1.1.0-M3", + "io.get-coursier:coursier_2.12:1.1.0-M3", + "org.scala-lang.modules:scala-xml_2.12:1.0.6", + "org.scala-lang:scala-library:2.13.14", + "org.scalaz:scalaz-concurrent_2.12:7.2.20", + "org.scalaz:scalaz-core_2.12:7.2.20", + "org.scalaz:scalaz-effect_2.12:7.2.20" + ], + "directDependencies": [ + "io.get-coursier:coursier-cache_2.12:1.1.0-M3", + "org.scala-lang:scala-library:2.13.14", + "org.scalaz:scalaz-concurrent_2.12:7.2.20" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/get-coursier/coursier-scalaz-interop_2.12/1.1.0-M3/coursier-scalaz-interop_2.12-1.1.0-M3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/get-coursier/coursier-scalaz-interop_2.12/1.1.0-M3/coursier-scalaz-interop_2.12-1.1.0-M3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/get-coursier/coursier-scalaz-interop_2.12/1.1.0-M3/coursier-scalaz-interop_2.12-1.1.0-M3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/get-coursier/coursier-scalaz-interop_2.12/1.1.0-M3/coursier-scalaz-interop_2.12-1.1.0-M3.jar" + ], + "sha256": "108365bbad931ad21d858ac252256c1ee789761e15706647f624881b32b6832a", + "url": "https://repo.maven.apache.org/maven2/io/get-coursier/coursier-scalaz-interop_2.12/1.1.0-M3/coursier-scalaz-interop_2.12-1.1.0-M3.jar" + }, + { + "coord": "io.get-coursier:coursier-scalaz-interop_2.12:jar:sources:1.1.0-M3", + "dependencies": [ + "io.get-coursier:coursier-cache_2.12:jar:sources:1.1.0-M3", + "io.get-coursier:coursier_2.12:jar:sources:1.1.0-M3", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scalaz:scalaz-concurrent_2.12:jar:sources:7.2.20", + "org.scalaz:scalaz-core_2.12:jar:sources:7.2.20", + "org.scalaz:scalaz-effect_2.12:jar:sources:7.2.20" + ], + "directDependencies": [ + "io.get-coursier:coursier-cache_2.12:jar:sources:1.1.0-M3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scalaz:scalaz-concurrent_2.12:jar:sources:7.2.20" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/get-coursier/coursier-scalaz-interop_2.12/1.1.0-M3/coursier-scalaz-interop_2.12-1.1.0-M3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/get-coursier/coursier-scalaz-interop_2.12/1.1.0-M3/coursier-scalaz-interop_2.12-1.1.0-M3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/get-coursier/coursier-scalaz-interop_2.12/1.1.0-M3/coursier-scalaz-interop_2.12-1.1.0-M3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/get-coursier/coursier-scalaz-interop_2.12/1.1.0-M3/coursier-scalaz-interop_2.12-1.1.0-M3-sources.jar" + ], + "sha256": "aca9bedbd3eb226e5318aa9a90993dcc4f801e751cc6db2de01779d52d310be0", + "url": "https://repo.maven.apache.org/maven2/io/get-coursier/coursier-scalaz-interop_2.12/1.1.0-M3/coursier-scalaz-interop_2.12-1.1.0-M3-sources.jar" + }, + { + "coord": "io.get-coursier:coursier_2.12:1.1.0-M3", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:1.0.6", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang.modules:scala-xml_2.12:1.0.6", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/get-coursier/coursier_2.12/1.1.0-M3/coursier_2.12-1.1.0-M3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/get-coursier/coursier_2.12/1.1.0-M3/coursier_2.12-1.1.0-M3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/get-coursier/coursier_2.12/1.1.0-M3/coursier_2.12-1.1.0-M3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/get-coursier/coursier_2.12/1.1.0-M3/coursier_2.12-1.1.0-M3.jar" + ], + "sha256": "a4fc2994a83779d92413057128498620f99baf9772cc161ebdb865fc637ae370", + "url": "https://repo.maven.apache.org/maven2/io/get-coursier/coursier_2.12/1.1.0-M3/coursier_2.12-1.1.0-M3.jar" + }, + { + "coord": "io.get-coursier:coursier_2.12:jar:sources:1.1.0-M3", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/get-coursier/coursier_2.12/1.1.0-M3/coursier_2.12-1.1.0-M3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/get-coursier/coursier_2.12/1.1.0-M3/coursier_2.12-1.1.0-M3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/get-coursier/coursier_2.12/1.1.0-M3/coursier_2.12-1.1.0-M3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/get-coursier/coursier_2.12/1.1.0-M3/coursier_2.12-1.1.0-M3-sources.jar" + ], + "sha256": "6ddc5d5050751617b1f4d6279b3adf71d4cc7083a431fae0344839aaa5a08dc5", + "url": "https://repo.maven.apache.org/maven2/io/get-coursier/coursier_2.12/1.1.0-M3/coursier_2.12-1.1.0-M3-sources.jar" + }, + { + "coord": "io.github.java-diff-utils:java-diff-utils:4.12", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12.jar" + ], + "sha256": "9990a2039778f6b4cc94790141c2868864eacee0620c6c459451121a901cd5b5", + "url": "https://repo.maven.apache.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12.jar" + }, + { + "coord": "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12-sources.jar" + ], + "sha256": "fa24217b6eaa115a05d4a8f0003fe913c62716ca2184d2e4f17de4a7d42a8822", + "url": "https://repo.maven.apache.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12-sources.jar" + }, + { + "coord": "io.github.soc:directories:10", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/io/github/soc/directories/10/directories-10.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/github/soc/directories/10/directories-10.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/github/soc/directories/10/directories-10.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/github/soc/directories/10/directories-10.jar" + ], + "sha256": "28bed4b1f8cc99a2fbf078213e52f7778a231a59614aab5ba2b9ca9c12617bf2", + "url": "https://repo.maven.apache.org/maven2/io/github/soc/directories/10/directories-10.jar" + }, + { + "coord": "io.github.soc:directories:jar:sources:10", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/io/github/soc/directories/10/directories-10-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/github/soc/directories/10/directories-10-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/github/soc/directories/10/directories-10-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/github/soc/directories/10/directories-10-sources.jar" + ], + "sha256": "2bc1c4f7d3b6e96468dbb3bc542cd70155fb573a0ab1e51210a7e616b5fe9fbc", + "url": "https://repo.maven.apache.org/maven2/io/github/soc/directories/10/directories-10-sources.jar" + }, + { + "coord": "io.monix:monix-eval_2.12:2.3.3", + "dependencies": [ + "io.monix:monix-execution_2.12:2.3.3", + "io.monix:monix-types_2.12:2.3.3", + "org.reactivestreams:reactive-streams:1.0.0", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "io.monix:monix-execution_2.12:2.3.3", + "io.monix:monix-types_2.12:2.3.3", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/monix/monix-eval_2.12/2.3.3/monix-eval_2.12-2.3.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/monix/monix-eval_2.12/2.3.3/monix-eval_2.12-2.3.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/monix/monix-eval_2.12/2.3.3/monix-eval_2.12-2.3.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/monix/monix-eval_2.12/2.3.3/monix-eval_2.12-2.3.3.jar" + ], + "sha256": "19f5a7e9e715783fc258b4eb995849baf59e67d4381a448b552fba08df0ea99f", + "url": "https://repo.maven.apache.org/maven2/io/monix/monix-eval_2.12/2.3.3/monix-eval_2.12-2.3.3.jar" + }, + { + "coord": "io.monix:monix-eval_2.12:jar:sources:2.3.3", + "dependencies": [ + "io.monix:monix-execution_2.12:jar:sources:2.3.3", + "io.monix:monix-types_2.12:jar:sources:2.3.3", + "org.reactivestreams:reactive-streams:jar:sources:1.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "io.monix:monix-execution_2.12:jar:sources:2.3.3", + "io.monix:monix-types_2.12:jar:sources:2.3.3", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/monix/monix-eval_2.12/2.3.3/monix-eval_2.12-2.3.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/monix/monix-eval_2.12/2.3.3/monix-eval_2.12-2.3.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/monix/monix-eval_2.12/2.3.3/monix-eval_2.12-2.3.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/monix/monix-eval_2.12/2.3.3/monix-eval_2.12-2.3.3-sources.jar" + ], + "sha256": "0d2059f4496f6b0aae5d39a312eab35ef0289e9bcef4cd2d31f195d647576602", + "url": "https://repo.maven.apache.org/maven2/io/monix/monix-eval_2.12/2.3.3/monix-eval_2.12-2.3.3-sources.jar" + }, + { + "coord": "io.monix:monix-execution_2.12:2.3.3", + "dependencies": [ + "org.reactivestreams:reactive-streams:1.0.0", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.reactivestreams:reactive-streams:1.0.0", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/monix/monix-execution_2.12/2.3.3/monix-execution_2.12-2.3.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/monix/monix-execution_2.12/2.3.3/monix-execution_2.12-2.3.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/monix/monix-execution_2.12/2.3.3/monix-execution_2.12-2.3.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/monix/monix-execution_2.12/2.3.3/monix-execution_2.12-2.3.3.jar" + ], + "sha256": "6ecbe76c795c70d6b4815522ff9101ece055a57ea854eadf5a4628e398182bf2", + "url": "https://repo.maven.apache.org/maven2/io/monix/monix-execution_2.12/2.3.3/monix-execution_2.12-2.3.3.jar" + }, + { + "coord": "io.monix:monix-execution_2.12:jar:sources:2.3.3", + "dependencies": [ + "org.reactivestreams:reactive-streams:jar:sources:1.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.reactivestreams:reactive-streams:jar:sources:1.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/monix/monix-execution_2.12/2.3.3/monix-execution_2.12-2.3.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/monix/monix-execution_2.12/2.3.3/monix-execution_2.12-2.3.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/monix/monix-execution_2.12/2.3.3/monix-execution_2.12-2.3.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/monix/monix-execution_2.12/2.3.3/monix-execution_2.12-2.3.3-sources.jar" + ], + "sha256": "570e213e6d934a9cfcde2c650aa7abf25f66af943820e531706b8cb671800faf", + "url": "https://repo.maven.apache.org/maven2/io/monix/monix-execution_2.12/2.3.3/monix-execution_2.12-2.3.3-sources.jar" + }, + { + "coord": "io.monix:monix-reactive_2.12:2.3.3", + "dependencies": [ + "io.monix:monix-eval_2.12:2.3.3", + "io.monix:monix-execution_2.12:2.3.3", + "io.monix:monix-types_2.12:2.3.3", + "org.jctools:jctools-core:2.0.1", + "org.reactivestreams:reactive-streams:1.0.0", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "io.monix:monix-eval_2.12:2.3.3", + "io.monix:monix-execution_2.12:2.3.3", + "io.monix:monix-types_2.12:2.3.3", + "org.jctools:jctools-core:2.0.1", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/monix/monix-reactive_2.12/2.3.3/monix-reactive_2.12-2.3.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/monix/monix-reactive_2.12/2.3.3/monix-reactive_2.12-2.3.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/monix/monix-reactive_2.12/2.3.3/monix-reactive_2.12-2.3.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/monix/monix-reactive_2.12/2.3.3/monix-reactive_2.12-2.3.3.jar" + ], + "sha256": "eadbfaaa79c9e6660f06b639159160f97db69d59ccd220002c1b7e71d32dc030", + "url": "https://repo.maven.apache.org/maven2/io/monix/monix-reactive_2.12/2.3.3/monix-reactive_2.12-2.3.3.jar" + }, + { + "coord": "io.monix:monix-reactive_2.12:jar:sources:2.3.3", + "dependencies": [ + "io.monix:monix-eval_2.12:jar:sources:2.3.3", + "io.monix:monix-execution_2.12:jar:sources:2.3.3", + "io.monix:monix-types_2.12:jar:sources:2.3.3", + "org.jctools:jctools-core:jar:sources:2.0.1", + "org.reactivestreams:reactive-streams:jar:sources:1.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "io.monix:monix-eval_2.12:jar:sources:2.3.3", + "io.monix:monix-execution_2.12:jar:sources:2.3.3", + "io.monix:monix-types_2.12:jar:sources:2.3.3", + "org.jctools:jctools-core:jar:sources:2.0.1", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/monix/monix-reactive_2.12/2.3.3/monix-reactive_2.12-2.3.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/monix/monix-reactive_2.12/2.3.3/monix-reactive_2.12-2.3.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/monix/monix-reactive_2.12/2.3.3/monix-reactive_2.12-2.3.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/monix/monix-reactive_2.12/2.3.3/monix-reactive_2.12-2.3.3-sources.jar" + ], + "sha256": "e3f67876d11218f9bf6e623bcc5e057c29845867d053e91457bed2d96f862e8f", + "url": "https://repo.maven.apache.org/maven2/io/monix/monix-reactive_2.12/2.3.3/monix-reactive_2.12-2.3.3-sources.jar" + }, + { + "coord": "io.monix:monix-types_2.12:2.3.3", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/monix/monix-types_2.12/2.3.3/monix-types_2.12-2.3.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/monix/monix-types_2.12/2.3.3/monix-types_2.12-2.3.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/monix/monix-types_2.12/2.3.3/monix-types_2.12-2.3.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/monix/monix-types_2.12/2.3.3/monix-types_2.12-2.3.3.jar" + ], + "sha256": "619624432339bc30999a5faef08eecbd0bb85759bd4971451d587e667e0b7a0b", + "url": "https://repo.maven.apache.org/maven2/io/monix/monix-types_2.12/2.3.3/monix-types_2.12-2.3.3.jar" + }, + { + "coord": "io.monix:monix-types_2.12:jar:sources:2.3.3", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/monix/monix-types_2.12/2.3.3/monix-types_2.12-2.3.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/monix/monix-types_2.12/2.3.3/monix-types_2.12-2.3.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/monix/monix-types_2.12/2.3.3/monix-types_2.12-2.3.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/monix/monix-types_2.12/2.3.3/monix-types_2.12-2.3.3-sources.jar" + ], + "sha256": "d9b362d3860fa5c8ce2ba76ce6228a7ec950616c61fab32191003c10362ff602", + "url": "https://repo.maven.apache.org/maven2/io/monix/monix-types_2.12/2.3.3/monix-types_2.12-2.3.3-sources.jar" + }, + { + "coord": "io.monix:monix_2.12:2.3.3", + "dependencies": [ + "io.monix:monix-eval_2.12:2.3.3", + "io.monix:monix-execution_2.12:2.3.3", + "io.monix:monix-reactive_2.12:2.3.3", + "io.monix:monix-types_2.12:2.3.3", + "org.jctools:jctools-core:2.0.1", + "org.reactivestreams:reactive-streams:1.0.0", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "io.monix:monix-eval_2.12:2.3.3", + "io.monix:monix-execution_2.12:2.3.3", + "io.monix:monix-reactive_2.12:2.3.3", + "io.monix:monix-types_2.12:2.3.3", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/monix/monix_2.12/2.3.3/monix_2.12-2.3.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/monix/monix_2.12/2.3.3/monix_2.12-2.3.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/monix/monix_2.12/2.3.3/monix_2.12-2.3.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/monix/monix_2.12/2.3.3/monix_2.12-2.3.3.jar" + ], + "sha256": "0c335a9728ca46899c2efbde95660ad12d726b012a3b0a2965368197cc297fc0", + "url": "https://repo.maven.apache.org/maven2/io/monix/monix_2.12/2.3.3/monix_2.12-2.3.3.jar" + }, + { + "coord": "io.monix:monix_2.12:jar:sources:2.3.3", + "dependencies": [ + "io.monix:monix-eval_2.12:jar:sources:2.3.3", + "io.monix:monix-execution_2.12:jar:sources:2.3.3", + "io.monix:monix-reactive_2.12:jar:sources:2.3.3", + "io.monix:monix-types_2.12:jar:sources:2.3.3", + "org.jctools:jctools-core:jar:sources:2.0.1", + "org.reactivestreams:reactive-streams:jar:sources:1.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "io.monix:monix-eval_2.12:jar:sources:2.3.3", + "io.monix:monix-execution_2.12:jar:sources:2.3.3", + "io.monix:monix-reactive_2.12:jar:sources:2.3.3", + "io.monix:monix-types_2.12:jar:sources:2.3.3", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/io/monix/monix_2.12/2.3.3/monix_2.12-2.3.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/monix/monix_2.12/2.3.3/monix_2.12-2.3.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/monix/monix_2.12/2.3.3/monix_2.12-2.3.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/monix/monix_2.12/2.3.3/monix_2.12-2.3.3-sources.jar" + ], + "sha256": "d0d501ae72f5241e5c84e0ed9ed860646d38966666bf8bd39e619cd3ad2355ef", + "url": "https://repo.maven.apache.org/maven2/io/monix/monix_2.12/2.3.3/monix_2.12-2.3.3-sources.jar" + }, + { + "coord": "jline:jline:2.14.4", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/jline/jline/2.14.4/jline-2.14.4.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/jline/jline/2.14.4/jline-2.14.4.jar", + "https://maven-central.storage-download.googleapis.com/maven2/jline/jline/2.14.4/jline-2.14.4.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/jline/jline/2.14.4/jline-2.14.4.jar" + ], + "sha256": "cb489eb7caf57811f01b7ac9d1fb8175ee1d2086627cc69f524e7d68f5f67982", + "url": "https://repo.maven.apache.org/maven2/jline/jline/2.14.4/jline-2.14.4.jar" + }, + { + "coord": "jline:jline:jar:sources:2.14.4", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/jline/jline/2.14.4/jline-2.14.4-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/jline/jline/2.14.4/jline-2.14.4-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/jline/jline/2.14.4/jline-2.14.4-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/jline/jline/2.14.4/jline-2.14.4-sources.jar" + ], + "sha256": "521af91089abf9f6b154b42f32e99dca3d824fb8e22a844f78309f0fab5d1343", + "url": "https://repo.maven.apache.org/maven2/jline/jline/2.14.4/jline-2.14.4-sources.jar" + }, + { + "coord": "me.vican.jorge:directory-watcher-better-files_2.12:0.5.2-a1c0e21c", + "dependencies": [ + "com.github.pathikrit:better-files_2.12:3.4.0", + "com.google.code.findbugs:jsr305:1.3.9", + "com.google.errorprone:error_prone_annotations:2.0.18", + "com.google.guava:guava:23.0", + "com.google.j2objc:j2objc-annotations:1.1", + "me.vican.jorge:directory-watcher:0.5.2-a1c0e21c", + "net.java.dev.jna:jna:5.14.0", + "org.codehaus.mojo:animal-sniffer-annotations:1.14", + "org.scala-lang:scala-library:2.13.14", + "org.slf4j:slf4j-api:1.7.25" + ], + "directDependencies": [ + "com.github.pathikrit:better-files_2.12:3.4.0", + "me.vican.jorge:directory-watcher:0.5.2-a1c0e21c", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/me/vican/jorge/directory-watcher-better-files_2.12/0.5.2-a1c0e21c/directory-watcher-better-files_2.12-0.5.2-a1c0e21c.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/me/vican/jorge/directory-watcher-better-files_2.12/0.5.2-a1c0e21c/directory-watcher-better-files_2.12-0.5.2-a1c0e21c.jar", + "https://maven-central.storage-download.googleapis.com/maven2/me/vican/jorge/directory-watcher-better-files_2.12/0.5.2-a1c0e21c/directory-watcher-better-files_2.12-0.5.2-a1c0e21c.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/me/vican/jorge/directory-watcher-better-files_2.12/0.5.2-a1c0e21c/directory-watcher-better-files_2.12-0.5.2-a1c0e21c.jar" + ], + "sha256": "985576364f8c341592d1b24dabe1385d225df0480b6949cf1e12c13692912af3", + "url": "https://repo.maven.apache.org/maven2/me/vican/jorge/directory-watcher-better-files_2.12/0.5.2-a1c0e21c/directory-watcher-better-files_2.12-0.5.2-a1c0e21c.jar" + }, + { + "coord": "me.vican.jorge:directory-watcher-better-files_2.12:jar:sources:0.5.2-a1c0e21c", + "dependencies": [ + "com.github.pathikrit:better-files_2.12:jar:sources:3.4.0", + "com.google.code.findbugs:jsr305:jar:sources:1.3.9", + "com.google.errorprone:error_prone_annotations:jar:sources:2.0.18", + "com.google.guava:guava:jar:sources:23.0", + "com.google.j2objc:j2objc-annotations:jar:sources:1.1", + "me.vican.jorge:directory-watcher:jar:sources:0.5.2-a1c0e21c", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.slf4j:slf4j-api:jar:sources:1.7.25" + ], + "directDependencies": [ + "com.github.pathikrit:better-files_2.12:jar:sources:3.4.0", + "me.vican.jorge:directory-watcher:jar:sources:0.5.2-a1c0e21c", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/me/vican/jorge/directory-watcher-better-files_2.12/0.5.2-a1c0e21c/directory-watcher-better-files_2.12-0.5.2-a1c0e21c-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/me/vican/jorge/directory-watcher-better-files_2.12/0.5.2-a1c0e21c/directory-watcher-better-files_2.12-0.5.2-a1c0e21c-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/me/vican/jorge/directory-watcher-better-files_2.12/0.5.2-a1c0e21c/directory-watcher-better-files_2.12-0.5.2-a1c0e21c-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/me/vican/jorge/directory-watcher-better-files_2.12/0.5.2-a1c0e21c/directory-watcher-better-files_2.12-0.5.2-a1c0e21c-sources.jar" + ], + "sha256": "29379d5c34e8d577fed2664b13eacec20ed92418ef1c3e074941dddab21fabf3", + "url": "https://repo.maven.apache.org/maven2/me/vican/jorge/directory-watcher-better-files_2.12/0.5.2-a1c0e21c/directory-watcher-better-files_2.12-0.5.2-a1c0e21c-sources.jar" + }, + { + "coord": "me.vican.jorge:directory-watcher:0.5.2-a1c0e21c", + "dependencies": [ + "com.google.code.findbugs:jsr305:1.3.9", + "com.google.errorprone:error_prone_annotations:2.0.18", + "com.google.guava:guava:23.0", + "com.google.j2objc:j2objc-annotations:1.1", + "net.java.dev.jna:jna:5.14.0", + "org.codehaus.mojo:animal-sniffer-annotations:1.14", + "org.slf4j:slf4j-api:1.7.25" + ], + "directDependencies": [ + "com.google.guava:guava:23.0", + "net.java.dev.jna:jna:5.14.0", + "org.slf4j:slf4j-api:1.7.25" + ], + "file": "v1/https/repo.maven.apache.org/maven2/me/vican/jorge/directory-watcher/0.5.2-a1c0e21c/directory-watcher-0.5.2-a1c0e21c.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/me/vican/jorge/directory-watcher/0.5.2-a1c0e21c/directory-watcher-0.5.2-a1c0e21c.jar", + "https://maven-central.storage-download.googleapis.com/maven2/me/vican/jorge/directory-watcher/0.5.2-a1c0e21c/directory-watcher-0.5.2-a1c0e21c.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/me/vican/jorge/directory-watcher/0.5.2-a1c0e21c/directory-watcher-0.5.2-a1c0e21c.jar" + ], + "sha256": "011474987f98c35cf0344fd9151f5141aaf1d1f3bbc2995ee8c26ec53fbe95d5", + "url": "https://repo.maven.apache.org/maven2/me/vican/jorge/directory-watcher/0.5.2-a1c0e21c/directory-watcher-0.5.2-a1c0e21c.jar" + }, + { + "coord": "me.vican.jorge:directory-watcher:jar:sources:0.5.2-a1c0e21c", + "dependencies": [ + "com.google.code.findbugs:jsr305:jar:sources:1.3.9", + "com.google.errorprone:error_prone_annotations:jar:sources:2.0.18", + "com.google.guava:guava:jar:sources:23.0", + "com.google.j2objc:j2objc-annotations:jar:sources:1.1", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.14", + "org.slf4j:slf4j-api:jar:sources:1.7.25" + ], + "directDependencies": [ + "com.google.guava:guava:jar:sources:23.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.slf4j:slf4j-api:jar:sources:1.7.25" + ], + "file": "v1/https/repo.maven.apache.org/maven2/me/vican/jorge/directory-watcher/0.5.2-a1c0e21c/directory-watcher-0.5.2-a1c0e21c-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/me/vican/jorge/directory-watcher/0.5.2-a1c0e21c/directory-watcher-0.5.2-a1c0e21c-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/me/vican/jorge/directory-watcher/0.5.2-a1c0e21c/directory-watcher-0.5.2-a1c0e21c-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/me/vican/jorge/directory-watcher/0.5.2-a1c0e21c/directory-watcher-0.5.2-a1c0e21c-sources.jar" + ], + "sha256": "1bda4438176b5674488fd752fc12178653e26993a57d33b70206ef6bbb0a3e08", + "url": "https://repo.maven.apache.org/maven2/me/vican/jorge/directory-watcher/0.5.2-a1c0e21c/directory-watcher-0.5.2-a1c0e21c-sources.jar" + }, + { + "coord": "net.java.dev.jna:jna-platform:5.13.0", + "dependencies": [ + "net.java.dev.jna:jna:5.14.0" + ], + "directDependencies": [ + "net.java.dev.jna:jna:5.14.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0.jar" + ], + "sha256": "474d7b88f6e97009b6ec1d98c3024dd95c23187c65dabfbc35331bcac3d173dd", + "url": "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0.jar" + }, + { + "coord": "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "dependencies": [ + "net.java.dev.jna:jna:jar:sources:5.14.0" + ], + "directDependencies": [ + "net.java.dev.jna:jna:jar:sources:5.14.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0-sources.jar" + ], + "sha256": "2f39937649df7e74f36f2b56ee2f15c15d4f9218fde43369c48a6b51e3cc087e", + "url": "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0-sources.jar" + }, + { + "coord": "net.java.dev.jna:jna:5.14.0", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0.jar" + ], + "sha256": "34ed1e1f27fa896bca50dbc4e99cf3732967cec387a7a0d5e3486c09673fe8c6", + "url": "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0.jar" + }, + { + "coord": "net.java.dev.jna:jna:jar:sources:5.14.0", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0-sources.jar" + ], + "sha256": "ebd774c761215676cda059fd68240628ef99f4aafa6d355ae00d184855aef134", + "url": "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0-sources.jar" + }, + { + "coord": "net.openhft:zero-allocation-hashing:0.10.1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1.jar" + ], + "sha256": "83636838b75e001a061414f6737141e6200d5e21293842a7a08201ada8988d32", + "url": "https://repo.maven.apache.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1.jar" + }, + { + "coord": "net.openhft:zero-allocation-hashing:jar:sources:0.10.1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1-sources.jar" + ], + "sha256": "d402059ea626c31ccd7006bfa1c39ae934b468e6166aa314178e85eebb0481dd", + "url": "https://repo.maven.apache.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1-sources.jar" + }, + { + "coord": "net.sourceforge.argparse4j:argparse4j:0.8.1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/net/sourceforge/argparse4j/argparse4j/0.8.1/argparse4j-0.8.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/net/sourceforge/argparse4j/argparse4j/0.8.1/argparse4j-0.8.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/net/sourceforge/argparse4j/argparse4j/0.8.1/argparse4j-0.8.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/net/sourceforge/argparse4j/argparse4j/0.8.1/argparse4j-0.8.1.jar" + ], + "sha256": "98cb5468cac609f3bc07856f2e34088f50dc114181237c48d20ca69c3265d044", + "url": "https://repo.maven.apache.org/maven2/net/sourceforge/argparse4j/argparse4j/0.8.1/argparse4j-0.8.1.jar" + }, + { + "coord": "net.sourceforge.argparse4j:argparse4j:jar:sources:0.8.1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/net/sourceforge/argparse4j/argparse4j/0.8.1/argparse4j-0.8.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/net/sourceforge/argparse4j/argparse4j/0.8.1/argparse4j-0.8.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/net/sourceforge/argparse4j/argparse4j/0.8.1/argparse4j-0.8.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/net/sourceforge/argparse4j/argparse4j/0.8.1/argparse4j-0.8.1-sources.jar" + ], + "sha256": "6baf8893d69bf3b8cac582de8b6407ebfeac992b1694b11897a9a614fb4b892f", + "url": "https://repo.maven.apache.org/maven2/net/sourceforge/argparse4j/argparse4j/0.8.1/argparse4j-0.8.1-sources.jar" + }, + { + "coord": "org.apache.logging.log4j:log4j-api:2.17.1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/log4j-api-2.17.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/log4j-api-2.17.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/apache/logging/log4j/log4j-api/2.17.1/log4j-api-2.17.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/log4j-api-2.17.1.jar" + ], + "sha256": "b0d8a4c8ab4fb8b1888d0095822703b0e6d4793c419550203da9e69196161de4", + "url": "https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/log4j-api-2.17.1.jar" + }, + { + "coord": "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/log4j-api-2.17.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/log4j-api-2.17.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/apache/logging/log4j/log4j-api/2.17.1/log4j-api-2.17.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/log4j-api-2.17.1-sources.jar" + ], + "sha256": "198c1e77d61a46fc08d323e1931cd20b430d8a4114a17658b64d15ddb2d902b0", + "url": "https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/log4j-api-2.17.1-sources.jar" + }, + { + "coord": "org.apache.logging.log4j:log4j-core:2.17.1", + "dependencies": [ + "org.apache.logging.log4j:log4j-api:2.17.1" + ], + "directDependencies": [ + "org.apache.logging.log4j:log4j-api:2.17.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/log4j-core-2.17.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/log4j-core-2.17.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/apache/logging/log4j/log4j-core/2.17.1/log4j-core-2.17.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/log4j-core-2.17.1.jar" + ], + "sha256": "c967f223487980b9364e94a7c7f9a8a01fd3ee7c19bdbf0b0f9f8cb8511f3d41", + "url": "https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/log4j-core-2.17.1.jar" + }, + { + "coord": "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "dependencies": [ + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1" + ], + "directDependencies": [ + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/log4j-core-2.17.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/log4j-core-2.17.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/apache/logging/log4j/log4j-core/2.17.1/log4j-core-2.17.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/log4j-core-2.17.1-sources.jar" + ], + "sha256": "51cc2d5e9eedb7eca77f4fb19d38d2c97084c818013e14a1b2c8d38aea627792", + "url": "https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/log4j-core-2.17.1-sources.jar" + }, + { + "coord": "org.codehaus.groovy:groovy:2.4.0", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/codehaus/groovy/groovy/2.4.0/groovy-2.4.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy/2.4.0/groovy-2.4.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/codehaus/groovy/groovy/2.4.0/groovy-2.4.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/codehaus/groovy/groovy/2.4.0/groovy-2.4.0.jar" + ], + "sha256": "81689da0b150893d509d17c523c5becba97e3d7667e98f965d735505e25ad294", + "url": "https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy/2.4.0/groovy-2.4.0.jar" + }, + { + "coord": "org.codehaus.groovy:groovy:jar:sources:2.4.0", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/codehaus/groovy/groovy/2.4.0/groovy-2.4.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy/2.4.0/groovy-2.4.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/codehaus/groovy/groovy/2.4.0/groovy-2.4.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/codehaus/groovy/groovy/2.4.0/groovy-2.4.0-sources.jar" + ], + "sha256": "0a8193f9bdc5bf579275677afe00fcabf62fda96341a289dac592f140cd5d229", + "url": "https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy/2.4.0/groovy-2.4.0-sources.jar" + }, + { + "coord": "org.codehaus.mojo:animal-sniffer-annotations:1.14", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar" + ], + "sha256": "2068320bd6bad744c3673ab048f67e30bef8f518996fa380033556600669905d", + "url": "https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar" + }, + { + "coord": "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.14", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14-sources.jar" + ], + "sha256": "d821ae1f706db2c1b9c88d4b7b0746b01039dac63762745ef3fe5579967dd16b", + "url": "https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14-sources.jar" + }, + { + "coord": "org.fusesource.jansi:jansi:2.1.0", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0.jar" + ], + "sha256": "d207c1114741e7544a8f17c07b53d91689c0716c54eaf8f3b7149e73b0ec1b09", + "url": "https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0.jar" + }, + { + "coord": "org.fusesource.jansi:jansi:jar:sources:2.1.0", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0-sources.jar" + ], + "sha256": "c5f4a5fb41546f9c7b0dd0d5d8ff6dfa396e8cc11049f64f7a96fe24436c59eb", + "url": "https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0-sources.jar" + }, + { + "coord": "org.jacoco:org.jacoco.core:0.7.5.201505241946", + "dependencies": [ + "org.ow2.asm:asm-debug-all:5.0.1" + ], + "directDependencies": [ + "org.ow2.asm:asm-debug-all:5.0.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.7.5.201505241946/org.jacoco.core-0.7.5.201505241946.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.7.5.201505241946/org.jacoco.core-0.7.5.201505241946.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jacoco/org.jacoco.core/0.7.5.201505241946/org.jacoco.core-0.7.5.201505241946.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jacoco/org.jacoco.core/0.7.5.201505241946/org.jacoco.core-0.7.5.201505241946.jar" + ], + "sha256": "ecf1ad8192926438d0748bfcc3f09bebc7387d2a4184bb3a171a26084677e808", + "url": "https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.7.5.201505241946/org.jacoco.core-0.7.5.201505241946.jar" + }, + { + "coord": "org.jacoco:org.jacoco.core:jar:sources:0.7.5.201505241946", + "dependencies": [ + "org.ow2.asm:asm-debug-all:jar:sources:5.0.1" + ], + "directDependencies": [ + "org.ow2.asm:asm-debug-all:jar:sources:5.0.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.7.5.201505241946/org.jacoco.core-0.7.5.201505241946-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.7.5.201505241946/org.jacoco.core-0.7.5.201505241946-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jacoco/org.jacoco.core/0.7.5.201505241946/org.jacoco.core-0.7.5.201505241946-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jacoco/org.jacoco.core/0.7.5.201505241946/org.jacoco.core-0.7.5.201505241946-sources.jar" + ], + "sha256": "4a5ce92a3f3264d74033f43fecb6f644be6342ffe58b1cd322808c84cb47eb26", + "url": "https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.7.5.201505241946/org.jacoco.core-0.7.5.201505241946-sources.jar" + }, + { + "coord": "org.jctools:jctools-core:2.0.1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/jctools/jctools-core/2.0.1/jctools-core-2.0.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jctools/jctools-core/2.0.1/jctools-core-2.0.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jctools/jctools-core/2.0.1/jctools-core-2.0.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jctools/jctools-core/2.0.1/jctools-core-2.0.1.jar" + ], + "sha256": "5fba472768fcff372783fad4f8a0b4ffec6a9b632b95885e26f509ba00093b07", + "url": "https://repo.maven.apache.org/maven2/org/jctools/jctools-core/2.0.1/jctools-core-2.0.1.jar" + }, + { + "coord": "org.jctools:jctools-core:jar:sources:2.0.1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/jctools/jctools-core/2.0.1/jctools-core-2.0.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jctools/jctools-core/2.0.1/jctools-core-2.0.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jctools/jctools-core/2.0.1/jctools-core-2.0.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jctools/jctools-core/2.0.1/jctools-core-2.0.1-sources.jar" + ], + "sha256": "2865cf812ec2bff6fba558034de0d419475096c1884f3be59a87b2f03277ed6a", + "url": "https://repo.maven.apache.org/maven2/org/jctools/jctools-core/2.0.1/jctools-core-2.0.1-sources.jar" + }, + { + "coord": "org.jline:jline-terminal-jansi:3.19.0", + "dependencies": [ + "org.fusesource.jansi:jansi:2.1.0", + "org.jline:jline-terminal:3.19.0" + ], + "directDependencies": [ + "org.fusesource.jansi:jansi:2.1.0", + "org.jline:jline-terminal:3.19.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0.jar" + ], + "sha256": "09566aa3af952a83e2fc2582865b9afe20ad2c6afcafd78c52ae7eacdeb736c9", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0.jar" + }, + { + "coord": "org.jline:jline-terminal-jansi:jar:sources:3.19.0", + "dependencies": [ + "org.fusesource.jansi:jansi:jar:sources:2.1.0", + "org.jline:jline-terminal:jar:sources:3.19.0" + ], + "directDependencies": [ + "org.fusesource.jansi:jansi:jar:sources:2.1.0", + "org.jline:jline-terminal:jar:sources:3.19.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0-sources.jar" + ], + "sha256": "1c68b6d3c2cbb44e7fd04232ff81d5ea760bdb8005ae0f76a803608a88ddaa26", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0-sources.jar" + }, + { + "coord": "org.jline:jline-terminal-jna:3.19.0", + "dependencies": [ + "net.java.dev.jna:jna:5.14.0", + "org.jline:jline-terminal:3.19.0" + ], + "directDependencies": [ + "net.java.dev.jna:jna:5.14.0", + "org.jline:jline-terminal:3.19.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0.jar" + ], + "sha256": "4a86975ba94756eaf70dea642d8d4c32535b65479050b56c476dc8c6b0519331", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0.jar" + }, + { + "coord": "org.jline:jline-terminal-jna:jar:sources:3.19.0", + "dependencies": [ + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.jline:jline-terminal:jar:sources:3.19.0" + ], + "directDependencies": [ + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.jline:jline-terminal:jar:sources:3.19.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0-sources.jar" + ], + "sha256": "8bb10c163466591935b8accdf3b1793cc83478a56fa2a767f11810f110c2de30", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0-sources.jar" + }, + { + "coord": "org.jline:jline-terminal:3.19.0", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0.jar" + ], + "sha256": "abdbeafa38c4ccd82578c1f3d08ea48af439eff194d23aa3bae18fbe93b4dcf0", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0.jar" + }, + { + "coord": "org.jline:jline-terminal:jar:sources:3.19.0", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0-sources.jar" + ], + "sha256": "249e29e67e300d978491fcfbdbced5c9ecabec8aeaaf36145edfd5e890f34ac6", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0-sources.jar" + }, + { + "coord": "org.jline:jline:3.25.1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline/3.25.1/jline-3.25.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline/3.25.1/jline-3.25.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline/3.25.1/jline-3.25.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline/3.25.1/jline-3.25.1.jar" + ], + "sha256": "421efcde9db04c34b9c03cd66e0460e75e5cdd4a3cafde54ef370049ac092e7c", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline/3.25.1/jline-3.25.1.jar" + }, + { + "coord": "org.jline:jline:jar:sources:3.25.1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline/3.25.1/jline-3.25.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline/3.25.1/jline-3.25.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline/3.25.1/jline-3.25.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline/3.25.1/jline-3.25.1-sources.jar" + ], + "sha256": "fc452b72d16b34773168a8e5e6aa9d5a54e4bd85fc099e397fe34e4133ab5efd", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline/3.25.1/jline-3.25.1-sources.jar" + }, + { + "coord": "org.ow2.asm:asm-debug-all:5.0.1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/ow2/asm/asm-debug-all/5.0.1/asm-debug-all-5.0.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/ow2/asm/asm-debug-all/5.0.1/asm-debug-all-5.0.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/ow2/asm/asm-debug-all/5.0.1/asm-debug-all-5.0.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/ow2/asm/asm-debug-all/5.0.1/asm-debug-all-5.0.1.jar" + ], + "sha256": "4734de5b515a454b0096db6971fb068e5f70e6f10bbee2b3bd2fdfe5d978ed57", + "url": "https://repo.maven.apache.org/maven2/org/ow2/asm/asm-debug-all/5.0.1/asm-debug-all-5.0.1.jar" + }, + { + "coord": "org.ow2.asm:asm-debug-all:jar:sources:5.0.1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/ow2/asm/asm-debug-all/5.0.1/asm-debug-all-5.0.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/ow2/asm/asm-debug-all/5.0.1/asm-debug-all-5.0.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/ow2/asm/asm-debug-all/5.0.1/asm-debug-all-5.0.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/ow2/asm/asm-debug-all/5.0.1/asm-debug-all-5.0.1-sources.jar" + ], + "sha256": "4caf5914ce1fc912779bd15f1ab6ce89e2df102cb81230a6a5adaacc047e7e55", + "url": "https://repo.maven.apache.org/maven2/org/ow2/asm/asm-debug-all/5.0.1/asm-debug-all-5.0.1-sources.jar" + }, + { + "coord": "org.reactivestreams:reactive-streams:1.0.0", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.0/reactive-streams-1.0.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.0/reactive-streams-1.0.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/reactivestreams/reactive-streams/1.0.0/reactive-streams-1.0.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.0/reactive-streams-1.0.0.jar" + ], + "sha256": "ef867702a614b96eb6c64fb65a8f5e14bdfcabbc1ae056f78a1643f7b79ca0eb", + "url": "https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.0/reactive-streams-1.0.0.jar" + }, + { + "coord": "org.reactivestreams:reactive-streams:jar:sources:1.0.0", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.0/reactive-streams-1.0.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.0/reactive-streams-1.0.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/reactivestreams/reactive-streams/1.0.0/reactive-streams-1.0.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.0/reactive-streams-1.0.0-sources.jar" + ], + "sha256": "7e673b0c8b0ac51bdef8655cacf7804fb9791c47e71161a36c94738d55eefea8", + "url": "https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.0/reactive-streams-1.0.0-sources.jar" + }, + { + "coord": "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0.jar" + ], + "sha256": "befff482233cd7f9a7ca1e1f5a36ede421c018e6ce82358978c475d45532755f", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0.jar" + }, + { + "coord": "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0-sources.jar" + ], + "sha256": "1a60fde64d08f19fe2ce38d99accf6cfefa4eeac3c194fa36ef5f6b89b5f7564", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0-sources.jar" + }, + { + "coord": "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/0.2.0/scala-parallel-collections_2.13-0.2.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/0.2.0/scala-parallel-collections_2.13-0.2.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/0.2.0/scala-parallel-collections_2.13-0.2.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/0.2.0/scala-parallel-collections_2.13-0.2.0.jar" + ], + "sha256": "d15f22f1308b98e9ac52a3d1ac8d582d548d6d852b1116cbdf5a50f431246ed1", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/0.2.0/scala-parallel-collections_2.13-0.2.0.jar" + }, + { + "coord": "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/0.2.0/scala-parallel-collections_2.13-0.2.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/0.2.0/scala-parallel-collections_2.13-0.2.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/0.2.0/scala-parallel-collections_2.13-0.2.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/0.2.0/scala-parallel-collections_2.13-0.2.0-sources.jar" + ], + "sha256": "c513b9f3f72d843c106376fb06c16eded909e7a6f16abbe58f880e18c1299bb9", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/0.2.0/scala-parallel-collections_2.13-0.2.0-sources.jar" + }, + { + "coord": "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.0.5/scala-parser-combinators_2.12-1.0.5.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.0.5/scala-parser-combinators_2.12-1.0.5.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.0.5/scala-parser-combinators_2.12-1.0.5.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.0.5/scala-parser-combinators_2.12-1.0.5.jar" + ], + "sha256": "f1f2f43cfd8042eb8a5d3021dc7ac3fff08ed6565311b6c145f8efe882a58a75", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.0.5/scala-parser-combinators_2.12-1.0.5.jar" + }, + { + "coord": "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.0.5/scala-parser-combinators_2.12-1.0.5-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.0.5/scala-parser-combinators_2.12-1.0.5-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.0.5/scala-parser-combinators_2.12-1.0.5-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.0.5/scala-parser-combinators_2.12-1.0.5-sources.jar" + ], + "sha256": "3c13525e5b80f12cd3def37c2edf1d3ade43d42af0aac59495fbe24339450475", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.0.5/scala-parser-combinators_2.12-1.0.5-sources.jar" + }, + { + "coord": "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "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-parser-combinators_2.13:jar:sources:1.1.2", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "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-xml_2.12:1.0.6", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "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.modules:scala-xml_2.12:jar:sources:1.0.6", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "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.13:2.1.0", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0.jar" + ], + "sha256": "d122cbf93115ee714570de6a9c18e53001fedb474911d4cb5091758ee51f053a", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0.jar" + }, + { + "coord": "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.1.0", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0-sources.jar" + ], + "sha256": "b2f5f01c669f29dc03a8127f7a8ca2cdb40dff3e29ba416e3de4f6bef0480aca", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0-sources.jar" + }, + { + "coord": "org.scala-lang:scala-compiler:2.13.14", + "dependencies": [ + "io.github.java-diff-utils:java-diff-utils:4.12", + "net.java.dev.jna:jna:5.14.0", + "org.jline:jline:3.25.1", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14" + ], + "directDependencies": [ + "io.github.java-diff-utils:java-diff-utils:4.12", + "net.java.dev.jna:jna:5.14.0", + "org.jline:jline:3.25.1", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14.jar" + ], + "sha256": "17b7e1dd95900420816a3bc2788c8c7358c2a3c42899765a5c463a46bfa569a6", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14.jar" + }, + { + "coord": "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "dependencies": [ + "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.jline:jline:jar:sources:3.25.1", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" + ], + "directDependencies": [ + "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.jline:jline:jar:sources:3.25.1", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14-sources.jar" + ], + "sha256": "d6fc2c62cb90e32d5c08a1fbd312e2c5995d2a128f89ce34a5181e52cbff0809", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14-sources.jar" + }, + { + "coord": "org.scala-lang:scala-library:2.13.14", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14.jar" + ], + "sha256": "43e0ca1583df1966eaf02f0fbddcfb3784b995dd06bfc907209347758ce4b7e3", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14.jar" + }, + { + "coord": "org.scala-lang:scala-library:jar:sources:2.13.14", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14-sources.jar" + ], + "sha256": "4be0650f427ebf6ff8a462fe634fdc02665d59ec3962c4d98dbf5ac766f1dd4f", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14-sources.jar" + }, + { + "coord": "org.scala-lang:scala-reflect:2.13.14", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14.jar" + ], + "sha256": "8846baaa8cf43b1b19725ab737abff145ca58d14a4d02e75d71ca8f7ca5f2926", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14.jar" + }, + { + "coord": "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14-sources.jar" + ], + "sha256": "94bf451e612d9460dbc7cee4beed84a7e5dd7b86bcb901ee8c78f7cf5e035e01", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14-sources.jar" + }, + { + "coord": "org.scala-sbt.ivy:ivy:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd/ivy-2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd/ivy-2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd/ivy-2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd/ivy-2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd.jar" + ], + "sha256": "c48309f41f30b322704984dd851346bd1717568c4ff2a15bba164939764be4d1", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd/ivy-2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd.jar" + }, + { + "coord": "org.scala-sbt.ivy:ivy:jar:sources:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd/ivy-2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd/ivy-2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd/ivy-2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd/ivy-2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd-sources.jar" + ], + "sha256": "00253bb52115873f4fb51dc44af396222f8648378632206abfd69cf1fb03564b", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd/ivy-2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd-sources.jar" + }, + { + "coord": "org.scala-sbt.jline:jline:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", + "dependencies": [ + "org.fusesource.jansi:jansi:2.1.0" + ], + "directDependencies": [ + "org.fusesource.jansi:jansi:2.1.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.jar" + ], + "sha256": "6d725b356cbfc1131ef2ae3c3555fa4952bf273f245b174a45413f03372f7239", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.jar" + }, + { + "coord": "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", + "dependencies": [ + "org.fusesource.jansi:jansi:jar:sources:2.1.0" + ], + "directDependencies": [ + "org.fusesource.jansi:jansi:jar:sources:2.1.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493-sources.jar" + ], + "sha256": "e2d0fffa3f8ee802a1bcb043f24f1c9026107d055e58910cefc2ed6dcf567a82", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493-sources.jar" + }, + { + "coord": "org.scala-sbt:collections_2.13:1.9.2", + "dependencies": [ + "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.13:0.9.1", + "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt:util-position_2.13:1.9.2" + ], + "directDependencies": [ + "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:util-position_2.13:1.9.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/collections_2.13/1.9.2/collections_2.13-1.9.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/collections_2.13/1.9.2/collections_2.13-1.9.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/collections_2.13/1.9.2/collections_2.13-1.9.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/collections_2.13/1.9.2/collections_2.13-1.9.2.jar" + ], + "sha256": "fff72dd495411fcb8a3a83452f47a8971f0c6aa1afddfd954a6c487858dc15b4", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/collections_2.13/1.9.2/collections_2.13-1.9.2.jar" + }, + { + "coord": "org.scala-sbt:collections_2.13:jar:sources:1.9.2", + "dependencies": [ + "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt:util-position_2.13:jar:sources:1.9.2" + ], + "directDependencies": [ + "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:util-position_2.13:jar:sources:1.9.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/collections_2.13/1.9.2/collections_2.13-1.9.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/collections_2.13/1.9.2/collections_2.13-1.9.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/collections_2.13/1.9.2/collections_2.13-1.9.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/collections_2.13/1.9.2/collections_2.13-1.9.2-sources.jar" + ], + "sha256": "e1920052f99a02f2c7c0c62721aed79ebc4664512b8b46351037a9e741fd70e8", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/collections_2.13/1.9.2/collections_2.13-1.9.2-sources.jar" + }, + { + "coord": "org.scala-sbt:compiler-bridge_2.13:1.9.3", + "dependencies": [ + "org.scala-sbt:compiler-interface:1.9.3", + "org.scala-sbt:util-interface:1.9.2" + ], + "directDependencies": [ + "org.scala-sbt:compiler-interface:1.9.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.9.3/compiler-bridge_2.13-1.9.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.9.3/compiler-bridge_2.13-1.9.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-bridge_2.13/1.9.3/compiler-bridge_2.13-1.9.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.9.3/compiler-bridge_2.13-1.9.3.jar" + ], + "sha256": "706b9c2dd76437521475506e250317fa6aa22d88bbfc7435a6cfcba45961a8b1", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.9.3/compiler-bridge_2.13-1.9.3.jar" + }, + { + "coord": "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.9.3", + "dependencies": [ + "org.scala-sbt:compiler-interface:jar:sources:1.9.3", + "org.scala-sbt:util-interface:jar:sources:1.9.2" + ], + "directDependencies": [ + "org.scala-sbt:compiler-interface:jar:sources:1.9.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.9.3/compiler-bridge_2.13-1.9.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.9.3/compiler-bridge_2.13-1.9.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-bridge_2.13/1.9.3/compiler-bridge_2.13-1.9.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.9.3/compiler-bridge_2.13-1.9.3-sources.jar" + ], + "sha256": "4e7414d70e3567acf78002fa99fc9bf3ef3e68543c481d8a7b292f7bc9d0f542", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.9.3/compiler-bridge_2.13-1.9.3-sources.jar" + }, + { + "coord": "org.scala-sbt:compiler-interface:1.9.3", + "dependencies": [ + "org.scala-sbt:util-interface:1.9.2" + ], + "directDependencies": [ + "org.scala-sbt:util-interface:1.9.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar" + ], + "sha256": "fa586b4b1bdb61c48821cf9568507c1e4d57de3763d27ac2214523b00a173115", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar" + }, + { + "coord": "org.scala-sbt:compiler-interface:jar:sources:1.9.3", + "dependencies": [ + "org.scala-sbt:util-interface:jar:sources:1.9.2" + ], + "directDependencies": [ + "org.scala-sbt:util-interface:jar:sources:1.9.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar" + ], + "sha256": "22200c6be450ea4651088f1d43670d14ee7808aa0c1b07a1ff6bc1104a3d7488", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar" + }, + { + "coord": "org.scala-sbt:core-macros_2.13:1.9.2", + "dependencies": [ + "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.13:0.9.1", + "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt:collections_2.13:1.9.2", + "org.scala-sbt:util-position_2.13:1.9.2" + ], + "directDependencies": [ + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:collections_2.13:1.9.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/core-macros_2.13/1.9.2/core-macros_2.13-1.9.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/core-macros_2.13/1.9.2/core-macros_2.13-1.9.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/core-macros_2.13/1.9.2/core-macros_2.13-1.9.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.13/1.9.2/core-macros_2.13-1.9.2.jar" + ], + "sha256": "1de3a6b6b7bb51b7c576c4d3cadd000d91ec871c16532dac57a1812800f4e1e3", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/core-macros_2.13/1.9.2/core-macros_2.13-1.9.2.jar" + }, + { + "coord": "org.scala-sbt:core-macros_2.13:jar:sources:1.9.2", + "dependencies": [ + "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt:collections_2.13:jar:sources:1.9.2", + "org.scala-sbt:util-position_2.13:jar:sources:1.9.2" + ], + "directDependencies": [ + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:collections_2.13:jar:sources:1.9.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/core-macros_2.13/1.9.2/core-macros_2.13-1.9.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/core-macros_2.13/1.9.2/core-macros_2.13-1.9.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/core-macros_2.13/1.9.2/core-macros_2.13-1.9.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.13/1.9.2/core-macros_2.13-1.9.2-sources.jar" + ], + "sha256": "6041b933faf51796d06a44b7b77a5511d526b974117b4037c30917070d1d6207", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/core-macros_2.13/1.9.2/core-macros_2.13-1.9.2-sources.jar" + }, + { + "coord": "org.scala-sbt:io_2.12:1.1.4", + "dependencies": [ + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/io_2.12/1.1.4/io_2.12-1.1.4.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/io_2.12/1.1.4/io_2.12-1.1.4.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/io_2.12/1.1.4/io_2.12-1.1.4.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.1.4/io_2.12-1.1.4.jar" + ], + "sha256": "f1f514b54b4126ad9d4a1b14769128c06e1e0e7d18643f457a499af171b7a87e", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/io_2.12/1.1.4/io_2.12-1.1.4.jar" + }, + { + "coord": "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "dependencies": [ + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/io_2.12/1.1.4/io_2.12-1.1.4-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/io_2.12/1.1.4/io_2.12-1.1.4-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/io_2.12/1.1.4/io_2.12-1.1.4-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.1.4/io_2.12-1.1.4-sources.jar" + ], + "sha256": "f7a5811cdf568a46952e29385493a90ff3d812661ebe0498b5e4be02c112d887", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/io_2.12/1.1.4/io_2.12-1.1.4-sources.jar" + }, + { + "coord": "org.scala-sbt:io_2.13:1.9.1", + "dependencies": [ + "com.swoval:file-tree-views:2.1.10", + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "com.swoval:file-tree-views:2.1.10", + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/io_2.13/1.9.1/io_2.13-1.9.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/io_2.13/1.9.1/io_2.13-1.9.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/io_2.13/1.9.1/io_2.13-1.9.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/io_2.13/1.9.1/io_2.13-1.9.1.jar" + ], + "sha256": "e3df340735a8fac686355bddf0175deb2819a7f79776f2c82d322e236b3389e8", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/io_2.13/1.9.1/io_2.13-1.9.1.jar" + }, + { + "coord": "org.scala-sbt:io_2.13:jar:sources:1.9.1", + "dependencies": [ + "com.swoval:file-tree-views:jar:sources:2.1.10", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "com.swoval:file-tree-views:jar:sources:2.1.10", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/io_2.13/1.9.1/io_2.13-1.9.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/io_2.13/1.9.1/io_2.13-1.9.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/io_2.13/1.9.1/io_2.13-1.9.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/io_2.13/1.9.1/io_2.13-1.9.1-sources.jar" + ], + "sha256": "7d418af86861c74a0225f667e0aa6a2dbc577a5577da42a7329017b91e311d00", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/io_2.13/1.9.1/io_2.13-1.9.1-sources.jar" + }, + { + "coord": "org.scala-sbt:launcher-interface:1.4.2", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/launcher-interface/1.4.2/launcher-interface-1.4.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/launcher-interface/1.4.2/launcher-interface-1.4.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/launcher-interface/1.4.2/launcher-interface-1.4.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.4.2/launcher-interface-1.4.2.jar" + ], + "sha256": "f107c9a8ad70cef20232ef1651d564755c086f59e7bdb805307f5709d5bb22a7", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/launcher-interface/1.4.2/launcher-interface-1.4.2.jar" + }, + { + "coord": "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/launcher-interface/1.4.2/launcher-interface-1.4.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/launcher-interface/1.4.2/launcher-interface-1.4.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/launcher-interface/1.4.2/launcher-interface-1.4.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.4.2/launcher-interface-1.4.2-sources.jar" + ], + "sha256": "17649418c47a1320f1bae741607d84f5c72328390559c2ed67656210ceb5901b", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/launcher-interface/1.4.2/launcher-interface-1.4.2-sources.jar" + }, + { + "coord": "org.scala-sbt:librarymanagement-core_2.12:1.1.4", + "dependencies": [ + "com.eed3si9n:gigahorse-core_2.12:0.3.0", + "com.eed3si9n:gigahorse-okhttp_2.12:0.3.0", + "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "com.jcraft:jsch:0.1.54", + "com.lmax:disruptor:3.4.2", + "com.squareup.okhttp3:okhttp-urlconnection:3.7.0", + "com.squareup.okhttp3:okhttp:3.7.0", + "com.squareup.okio:okio:1.12.0", + "com.typesafe:config:1.2.0", + "com.typesafe:ssl-config-core_2.12:0.2.2", + "jline:jline:2.14.4", + "org.apache.logging.log4j:log4j-api:2.17.1", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.reactivestreams:reactive-streams:1.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "org.scala-lang.modules:scala-xml_2.12:1.0.6", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt:io_2.12:1.1.4", + "org.scala-sbt:launcher-interface:1.4.2", + "org.scala-sbt:util-cache_2.12:1.1.3", + "org.scala-sbt:util-interface:1.9.2", + "org.scala-sbt:util-logging_2.12:1.1.3", + "org.scala-sbt:util-position_2.12:1.1.3", + "org.slf4j:slf4j-api:1.7.25", + "org.spire-math:jawn-parser_2.12:0.11.1" + ], + "directDependencies": [ + "com.eed3si9n:gigahorse-okhttp_2.12:0.3.0", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "com.jcraft:jsch:0.1.54", + "com.squareup.okhttp3:okhttp-urlconnection:3.7.0", + "org.scala-lang.modules:scala-xml_2.12:1.0.6", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt:io_2.12:1.1.4", + "org.scala-sbt:launcher-interface:1.4.2", + "org.scala-sbt:util-cache_2.12:1.1.3", + "org.scala-sbt:util-logging_2.12:1.1.3", + "org.scala-sbt:util-position_2.12:1.1.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.1.4/librarymanagement-core_2.12-1.1.4.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.1.4/librarymanagement-core_2.12-1.1.4.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/librarymanagement-core_2.12/1.1.4/librarymanagement-core_2.12-1.1.4.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.1.4/librarymanagement-core_2.12-1.1.4.jar" + ], + "sha256": "6e00c7670de3403eb0c5382d67e123ddbaf8fd1619a340ef97f6fd702ad32cb6", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.1.4/librarymanagement-core_2.12-1.1.4.jar" + }, + { + "coord": "org.scala-sbt:librarymanagement-core_2.12:jar:sources:1.1.4", + "dependencies": [ + "com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0", + "com.eed3si9n:gigahorse-okhttp_2.12:jar:sources:0.3.0", + "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "com.jcraft:jsch:jar:sources:0.1.54", + "com.lmax:disruptor:jar:sources:3.4.2", + "com.squareup.okhttp3:okhttp-urlconnection:jar:sources:3.7.0", + "com.squareup.okhttp3:okhttp:jar:sources:3.7.0", + "com.squareup.okio:okio:jar:sources:1.12.0", + "com.typesafe:config:jar:sources:1.2.0", + "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", + "jline:jline:jar:sources:2.14.4", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.reactivestreams:reactive-streams:jar:sources:1.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "org.scala-sbt:util-cache_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-interface:jar:sources:1.9.2", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-position_2.12:jar:sources:1.1.3", + "org.slf4j:slf4j-api:jar:sources:1.7.25", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + ], + "directDependencies": [ + "com.eed3si9n:gigahorse-okhttp_2.12:jar:sources:0.3.0", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "com.jcraft:jsch:jar:sources:0.1.54", + "com.squareup.okhttp3:okhttp-urlconnection:jar:sources:3.7.0", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "org.scala-sbt:util-cache_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-position_2.12:jar:sources:1.1.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.1.4/librarymanagement-core_2.12-1.1.4-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.1.4/librarymanagement-core_2.12-1.1.4-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/librarymanagement-core_2.12/1.1.4/librarymanagement-core_2.12-1.1.4-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.1.4/librarymanagement-core_2.12-1.1.4-sources.jar" + ], + "sha256": "a7250bc2d145cf143499d8ec9e4e1eb5b17570e08d88a80d88ac6b1dc6473fab", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.1.4/librarymanagement-core_2.12-1.1.4-sources.jar" + }, + { + "coord": "org.scala-sbt:librarymanagement-ivy_2.12:1.0.0", + "dependencies": [ + "com.eed3si9n:gigahorse-core_2.12:0.3.0", + "com.eed3si9n:gigahorse-okhttp_2.12:0.3.0", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "com.jcraft:jsch:0.1.54", + "com.squareup.okhttp3:okhttp-urlconnection:3.7.0", + "com.squareup.okhttp3:okhttp:3.7.0", + "com.squareup.okio:okio:1.12.0", + "com.typesafe:config:1.2.0", + "com.typesafe:ssl-config-core_2.12:0.2.2", + "org.reactivestreams:reactive-streams:1.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "org.scala-lang.modules:scala-xml_2.12:1.0.6", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt.ivy:ivy:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd", + "org.scala-sbt:io_2.12:1.1.4", + "org.scala-sbt:launcher-interface:1.4.2", + "org.scala-sbt:librarymanagement-core_2.12:1.1.4", + "org.scala-sbt:util-cache_2.12:1.1.3", + "org.scala-sbt:util-logging_2.12:1.1.3", + "org.scala-sbt:util-position_2.12:1.1.3", + "org.slf4j:slf4j-api:1.7.25" + ], + "directDependencies": [ + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt.ivy:ivy:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd", + "org.scala-sbt:librarymanagement-core_2.12:1.1.4" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.0.0/librarymanagement-ivy_2.12-1.0.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.0.0/librarymanagement-ivy_2.12-1.0.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.0.0/librarymanagement-ivy_2.12-1.0.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.0.0/librarymanagement-ivy_2.12-1.0.0.jar" + ], + "sha256": "0e37e9a4b695b07aacad9e4dcabe725a2511962901dd15b8fa68184af11fab3f", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.0.0/librarymanagement-ivy_2.12-1.0.0.jar" + }, + { + "coord": "org.scala-sbt:librarymanagement-ivy_2.12:jar:sources:1.0.0", + "dependencies": [ + "com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0", + "com.eed3si9n:gigahorse-okhttp_2.12:jar:sources:0.3.0", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "com.jcraft:jsch:jar:sources:0.1.54", + "com.squareup.okhttp3:okhttp-urlconnection:jar:sources:3.7.0", + "com.squareup.okhttp3:okhttp:jar:sources:3.7.0", + "com.squareup.okio:okio:jar:sources:1.12.0", + "com.typesafe:config:jar:sources:1.2.0", + "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", + "org.reactivestreams:reactive-streams:jar:sources:1.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt.ivy:ivy:jar:sources:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "org.scala-sbt:librarymanagement-core_2.12:jar:sources:1.1.4", + "org.scala-sbt:util-cache_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-position_2.12:jar:sources:1.1.3", + "org.slf4j:slf4j-api:jar:sources:1.7.25" + ], + "directDependencies": [ + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt.ivy:ivy:jar:sources:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd", + "org.scala-sbt:librarymanagement-core_2.12:jar:sources:1.1.4" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.0.0/librarymanagement-ivy_2.12-1.0.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.0.0/librarymanagement-ivy_2.12-1.0.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.0.0/librarymanagement-ivy_2.12-1.0.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.0.0/librarymanagement-ivy_2.12-1.0.0-sources.jar" + ], + "sha256": "16179441e8ca6d0f25ede41c872b795dc7b74616f0da4d0c04225053e2f20d92", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.0.0/librarymanagement-ivy_2.12-1.0.0-sources.jar" + }, + { + "coord": "org.scala-sbt:sbinary_2.12:0.4.4", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:1.0.6", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang.modules:scala-xml_2.12:1.0.6", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/sbinary_2.12/0.4.4/sbinary_2.12-0.4.4.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/sbinary_2.12/0.4.4/sbinary_2.12-0.4.4.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/sbinary_2.12/0.4.4/sbinary_2.12-0.4.4.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.4.4/sbinary_2.12-0.4.4.jar" + ], + "sha256": "24a7a488a6992b6ab4d8e78b170f5fbc02ef13eadada88851fd41cb2ccfa802a", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/sbinary_2.12/0.4.4/sbinary_2.12-0.4.4.jar" + }, + { + "coord": "org.scala-sbt:sbinary_2.12:jar:sources:0.4.4", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/sbinary_2.12/0.4.4/sbinary_2.12-0.4.4-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/sbinary_2.12/0.4.4/sbinary_2.12-0.4.4-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/sbinary_2.12/0.4.4/sbinary_2.12-0.4.4-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.4.4/sbinary_2.12-0.4.4-sources.jar" + ], + "sha256": "1bace3a75fa2d5d73c0ea7d3be8107eec76fddeedba301af91fc6c99c6a774c9", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/sbinary_2.12/0.4.4/sbinary_2.12-0.4.4-sources.jar" + }, + { + "coord": "org.scala-sbt:sbinary_2.13:0.5.1", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "exclusions": [ + "org.scala-lang.modules:scala-xml_2.13" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/sbinary_2.13/0.5.1/sbinary_2.13-0.5.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/sbinary_2.13/0.5.1/sbinary_2.13-0.5.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/sbinary_2.13/0.5.1/sbinary_2.13-0.5.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.13/0.5.1/sbinary_2.13-0.5.1.jar" + ], + "sha256": "29ffddb55471910f2c5f82a954683ce1fab3b094900b97adb1f777c44b1afccc", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/sbinary_2.13/0.5.1/sbinary_2.13-0.5.1.jar" + }, + { + "coord": "org.scala-sbt:sbinary_2.13:jar:sources:0.5.1", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "exclusions": [ + "org.scala-lang.modules:scala-xml_2.13" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/sbinary_2.13/0.5.1/sbinary_2.13-0.5.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/sbinary_2.13/0.5.1/sbinary_2.13-0.5.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/sbinary_2.13/0.5.1/sbinary_2.13-0.5.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.13/0.5.1/sbinary_2.13-0.5.1-sources.jar" + ], + "sha256": "2c0514613825d0120b3a4a2c6afbff575d0d32c9e4173e0d6c8776391654cdf2", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/sbinary_2.13/0.5.1/sbinary_2.13-0.5.1-sources.jar" + }, + { + "coord": "org.scala-sbt:test-agent:1.0.4", + "dependencies": [ + "org.scala-sbt:test-interface:1.0" + ], + "directDependencies": [ + "org.scala-sbt:test-interface:1.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/test-agent/1.0.4/test-agent-1.0.4.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/test-agent/1.0.4/test-agent-1.0.4.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/test-agent/1.0.4/test-agent-1.0.4.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.0.4/test-agent-1.0.4.jar" + ], + "sha256": "3c2685c110db34c5611222b62a4e33e039803e8f9a126513616bab62a7cc0041", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/test-agent/1.0.4/test-agent-1.0.4.jar" + }, + { + "coord": "org.scala-sbt:test-agent:jar:sources:1.0.4", + "dependencies": [ + "org.scala-sbt:test-interface:jar:sources:1.0" + ], + "directDependencies": [ + "org.scala-sbt:test-interface:jar:sources:1.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/test-agent/1.0.4/test-agent-1.0.4-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/test-agent/1.0.4/test-agent-1.0.4-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/test-agent/1.0.4/test-agent-1.0.4-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.0.4/test-agent-1.0.4-sources.jar" + ], + "sha256": "b5bcaef40972e6aead9dba0b3a6ffa4a22259f7297e300091802bfa0b4763ed2", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/test-agent/1.0.4/test-agent-1.0.4-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.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:util-cache_2.12:1.1.3", + "dependencies": [ + "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt:io_2.12:1.1.4", + "org.spire-math:jawn-parser_2.12:0.11.1" + ], + "directDependencies": [ + "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt:io_2.12:1.1.4" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-cache_2.12/1.1.3/util-cache_2.12-1.1.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-cache_2.12/1.1.3/util-cache_2.12-1.1.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-cache_2.12/1.1.3/util-cache_2.12-1.1.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.1.3/util-cache_2.12-1.1.3.jar" + ], + "sha256": "3f69c0056db6a2bedd6b48fb5b5c69fa8260826bb2ec1fb0ffd4dfd7c2c7c66f", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-cache_2.12/1.1.3/util-cache_2.12-1.1.3.jar" + }, + { + "coord": "org.scala-sbt:util-cache_2.12:jar:sources:1.1.3", + "dependencies": [ + "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + ], + "directDependencies": [ + "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt:io_2.12:jar:sources:1.1.4" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-cache_2.12/1.1.3/util-cache_2.12-1.1.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-cache_2.12/1.1.3/util-cache_2.12-1.1.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-cache_2.12/1.1.3/util-cache_2.12-1.1.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.1.3/util-cache_2.12-1.1.3-sources.jar" + ], + "sha256": "8c9e9cfaa958e01bc6c4db5eb174003cd0983bcf7a6825fe2d47d4845d7b1995", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-cache_2.12/1.1.3/util-cache_2.12-1.1.3-sources.jar" + }, + { + "coord": "org.scala-sbt:util-control_2.12:1.1.3", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.12/1.1.3/util-control_2.12-1.1.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.12/1.1.3/util-control_2.12-1.1.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-control_2.12/1.1.3/util-control_2.12-1.1.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.1.3/util-control_2.12-1.1.3.jar" + ], + "sha256": "7a291f8a3080d7843620b087ab5c797c0ee5f43460a1e4f3ce4422afb73ae799", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.12/1.1.3/util-control_2.12-1.1.3.jar" + }, + { + "coord": "org.scala-sbt:util-control_2.12:jar:sources:1.1.3", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.12/1.1.3/util-control_2.12-1.1.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.12/1.1.3/util-control_2.12-1.1.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-control_2.12/1.1.3/util-control_2.12-1.1.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.1.3/util-control_2.12-1.1.3-sources.jar" + ], + "sha256": "988b1faeaa4fcb1d3ac3c7e8647b67f9325828021246b516a0eec3d3d9abcd53", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.12/1.1.3/util-control_2.12-1.1.3-sources.jar" + }, + { + "coord": "org.scala-sbt:util-control_2.13:1.9.2", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.13/1.9.2/util-control_2.13-1.9.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.13/1.9.2/util-control_2.13-1.9.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-control_2.13/1.9.2/util-control_2.13-1.9.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-control_2.13/1.9.2/util-control_2.13-1.9.2.jar" + ], + "sha256": "d435d93a26c7024944299d0e263181a4de19220f7bbd850844a5e7f849119321", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.13/1.9.2/util-control_2.13-1.9.2.jar" + }, + { + "coord": "org.scala-sbt:util-control_2.13:jar:sources:1.9.2", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.13/1.9.2/util-control_2.13-1.9.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.13/1.9.2/util-control_2.13-1.9.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-control_2.13/1.9.2/util-control_2.13-1.9.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-control_2.13/1.9.2/util-control_2.13-1.9.2-sources.jar" + ], + "sha256": "ae2fa7ad077142e5b31af61756957d5483934e5c59b8e714e7a7c84cec4d34ec", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.13/1.9.2/util-control_2.13-1.9.2-sources.jar" + }, + { + "coord": "org.scala-sbt:util-interface:1.9.2", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar" + ], + "sha256": "cbf6c0db09223e4c6c41afc4c5d831c47e3564e83361df4ba3cb04e439f83675", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar" + }, + { + "coord": "org.scala-sbt:util-interface:jar:sources:1.9.2", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar" + ], + "sha256": "bed4331c842f3c8b1c198ec25ead990fd064e1a0672ae2856aafc2a7593ec1fe", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar" + }, + { + "coord": "org.scala-sbt:util-logging_2.12:1.1.3", + "dependencies": [ + "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "com.lmax:disruptor:3.4.2", + "jline:jline:2.14.4", + "org.apache.logging.log4j:log4j-api:2.17.1", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt:util-interface:1.9.2", + "org.spire-math:jawn-parser_2.12:0.11.1" + ], + "directDependencies": [ + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "com.lmax:disruptor:3.4.2", + "jline:jline:2.14.4", + "org.apache.logging.log4j:log4j-api:2.17.1", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt:util-interface:1.9.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.12/1.1.3/util-logging_2.12-1.1.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.12/1.1.3/util-logging_2.12-1.1.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-logging_2.12/1.1.3/util-logging_2.12-1.1.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.1.3/util-logging_2.12-1.1.3.jar" + ], + "sha256": "14ec8942b844658a7da7e04f60555751661ab1273f8b31b57cfd86b473be2653", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.12/1.1.3/util-logging_2.12-1.1.3.jar" + }, + { + "coord": "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "dependencies": [ + "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "com.lmax:disruptor:jar:sources:3.4.2", + "jline:jline:jar:sources:2.14.4", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt:util-interface:jar:sources:1.9.2", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + ], + "directDependencies": [ + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "com.lmax:disruptor:jar:sources:3.4.2", + "jline:jline:jar:sources:2.14.4", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt:util-interface:jar:sources:1.9.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.12/1.1.3/util-logging_2.12-1.1.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.12/1.1.3/util-logging_2.12-1.1.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-logging_2.12/1.1.3/util-logging_2.12-1.1.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.1.3/util-logging_2.12-1.1.3-sources.jar" + ], + "sha256": "d0315dec95a9da6a2faefaf785f3d53953cda084e1e4b8e6bdc030c7d3f9917d", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.12/1.1.3/util-logging_2.12-1.1.3-sources.jar" + }, + { + "coord": "org.scala-sbt:util-logging_2.13:1.9.2", + "dependencies": [ + "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.13:0.9.1", + "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "com.lmax:disruptor:3.4.2", + "com.swoval:file-tree-views:2.1.10", + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "org.apache.logging.log4j:log4j-api:2.17.1", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.fusesource.jansi:jansi:2.1.0", + "org.jline:jline-terminal-jansi:3.19.0", + "org.jline:jline-terminal-jna:3.19.0", + "org.jline:jline-terminal:3.19.0", + "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt.jline:jline:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", + "org.scala-sbt:collections_2.13:1.9.2", + "org.scala-sbt:core-macros_2.13:1.9.2", + "org.scala-sbt:io_2.13:1.9.1", + "org.scala-sbt:util-interface:1.9.2", + "org.scala-sbt:util-position_2.13:1.9.2" + ], + "directDependencies": [ + "com.eed3si9n:sjson-new-core_2.13:0.9.1", + "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "com.lmax:disruptor:3.4.2", + "org.apache.logging.log4j:log4j-api:2.17.1", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.jline:jline-terminal-jansi:3.19.0", + "org.jline:jline-terminal-jna:3.19.0", + "org.jline:jline-terminal:3.19.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt.jline:jline:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", + "org.scala-sbt:collections_2.13:1.9.2", + "org.scala-sbt:core-macros_2.13:1.9.2", + "org.scala-sbt:io_2.13:1.9.1", + "org.scala-sbt:util-interface:1.9.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.13/1.9.2/util-logging_2.13-1.9.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.13/1.9.2/util-logging_2.13-1.9.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-logging_2.13/1.9.2/util-logging_2.13-1.9.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.13/1.9.2/util-logging_2.13-1.9.2.jar" + ], + "sha256": "8f798079c7aed6d9f282493a75b6b1e82c48834f1d03b58d5fc82c2d59ca83a3", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.13/1.9.2/util-logging_2.13-1.9.2.jar" + }, + { + "coord": "org.scala-sbt:util-logging_2.13:jar:sources:1.9.2", + "dependencies": [ + "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", + "com.lmax:disruptor:jar:sources:3.4.2", + "com.swoval:file-tree-views:jar:sources:2.1.10", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.fusesource.jansi:jansi:jar:sources:2.1.0", + "org.jline:jline-terminal-jansi:jar:sources:3.19.0", + "org.jline:jline-terminal-jna:jar:sources:3.19.0", + "org.jline:jline-terminal:jar:sources:3.19.0", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", + "org.scala-sbt:collections_2.13:jar:sources:1.9.2", + "org.scala-sbt:core-macros_2.13:jar:sources:1.9.2", + "org.scala-sbt:io_2.13:jar:sources:1.9.1", + "org.scala-sbt:util-interface:jar:sources:1.9.2", + "org.scala-sbt:util-position_2.13:jar:sources:1.9.2" + ], + "directDependencies": [ + "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", + "com.lmax:disruptor:jar:sources:3.4.2", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.jline:jline-terminal-jansi:jar:sources:3.19.0", + "org.jline:jline-terminal-jna:jar:sources:3.19.0", + "org.jline:jline-terminal:jar:sources:3.19.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", + "org.scala-sbt:collections_2.13:jar:sources:1.9.2", + "org.scala-sbt:core-macros_2.13:jar:sources:1.9.2", + "org.scala-sbt:io_2.13:jar:sources:1.9.1", + "org.scala-sbt:util-interface:jar:sources:1.9.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.13/1.9.2/util-logging_2.13-1.9.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.13/1.9.2/util-logging_2.13-1.9.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-logging_2.13/1.9.2/util-logging_2.13-1.9.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.13/1.9.2/util-logging_2.13-1.9.2-sources.jar" + ], + "sha256": "1f9cb26c90beb88bdc7106b44f5f94ece40ab7ed75920845ee48e19da5b73f7e", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.13/1.9.2/util-logging_2.13-1.9.2-sources.jar" + }, + { + "coord": "org.scala-sbt:util-position_2.12:1.1.3", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.12/1.1.3/util-position_2.12-1.1.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.12/1.1.3/util-position_2.12-1.1.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-position_2.12/1.1.3/util-position_2.12-1.1.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.1.3/util-position_2.12-1.1.3.jar" + ], + "sha256": "20fd912315e925f7f122aced8ae9aca3f099ae1ce6f1b00a201e1fcff1cdd360", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.12/1.1.3/util-position_2.12-1.1.3.jar" + }, + { + "coord": "org.scala-sbt:util-position_2.12:jar:sources:1.1.3", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.12/1.1.3/util-position_2.12-1.1.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.12/1.1.3/util-position_2.12-1.1.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-position_2.12/1.1.3/util-position_2.12-1.1.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.1.3/util-position_2.12-1.1.3-sources.jar" + ], + "sha256": "7b0a5c848212de1ccda400d242074666423ddb47534af8100c0d4b474b6cf6be", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.12/1.1.3/util-position_2.12-1.1.3-sources.jar" + }, + { + "coord": "org.scala-sbt:util-position_2.13:1.9.2", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.13/1.9.2/util-position_2.13-1.9.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.13/1.9.2/util-position_2.13-1.9.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-position_2.13/1.9.2/util-position_2.13-1.9.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-position_2.13/1.9.2/util-position_2.13-1.9.2.jar" + ], + "sha256": "43f4c6ec9371d8f7d888e90379bcf9d7ee08f5b7ac1fb25aaef2693d25d53c78", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.13/1.9.2/util-position_2.13-1.9.2.jar" + }, + { + "coord": "org.scala-sbt:util-position_2.13:jar:sources:1.9.2", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.13/1.9.2/util-position_2.13-1.9.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.13/1.9.2/util-position_2.13-1.9.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-position_2.13/1.9.2/util-position_2.13-1.9.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-position_2.13/1.9.2/util-position_2.13-1.9.2-sources.jar" + ], + "sha256": "c3db60905dea3716cb0796219c901419fddaeb7540c8a1cc41a0663b8a417fda", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.13/1.9.2/util-position_2.13-1.9.2-sources.jar" + }, + { + "coord": "org.scala-sbt:util-relation_2.12:1.1.3", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.12/1.1.3/util-relation_2.12-1.1.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.12/1.1.3/util-relation_2.12-1.1.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-relation_2.12/1.1.3/util-relation_2.12-1.1.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.1.3/util-relation_2.12-1.1.3.jar" + ], + "sha256": "dff98263c5fd5fc374ac241221cb83619a6bcce328c060482589d810617c2287", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.12/1.1.3/util-relation_2.12-1.1.3.jar" + }, + { + "coord": "org.scala-sbt:util-relation_2.12:jar:sources:1.1.3", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.12/1.1.3/util-relation_2.12-1.1.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.12/1.1.3/util-relation_2.12-1.1.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-relation_2.12/1.1.3/util-relation_2.12-1.1.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.1.3/util-relation_2.12-1.1.3-sources.jar" + ], + "sha256": "8a14088c870199b828ec3e87da6d9cbe39b0b766ce51c9cbf6ba294fe9fed3c0", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.12/1.1.3/util-relation_2.12-1.1.3-sources.jar" + }, + { + "coord": "org.scala-sbt:util-relation_2.13:1.9.2", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.13/1.9.2/util-relation_2.13-1.9.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.13/1.9.2/util-relation_2.13-1.9.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-relation_2.13/1.9.2/util-relation_2.13-1.9.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.13/1.9.2/util-relation_2.13-1.9.2.jar" + ], + "sha256": "96bae2ea13946da72059ad1e5658b869d1982b85558f42cfddc9c21e5b04a2fe", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.13/1.9.2/util-relation_2.13-1.9.2.jar" + }, + { + "coord": "org.scala-sbt:util-relation_2.13:jar:sources:1.9.2", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.13/1.9.2/util-relation_2.13-1.9.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.13/1.9.2/util-relation_2.13-1.9.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-relation_2.13/1.9.2/util-relation_2.13-1.9.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.13/1.9.2/util-relation_2.13-1.9.2-sources.jar" + ], + "sha256": "02acfad7f6f521e22c9237c6f845c63567a279d3930c5515b797b6f617a3281a", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.13/1.9.2/util-relation_2.13-1.9.2-sources.jar" + }, + { + "coord": "org.scala-sbt:zinc-apiinfo_2.13:1.9.3", + "dependencies": [ + "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.13:0.9.1", + "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "com.lmax:disruptor:3.4.2", + "com.swoval:file-tree-views:2.1.10", + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "org.apache.logging.log4j:log4j-api:2.17.1", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.fusesource.jansi:jansi:2.1.0", + "org.jline:jline-terminal-jansi:3.19.0", + "org.jline:jline-terminal-jna:3.19.0", + "org.jline:jline-terminal:3.19.0", + "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt.jline:jline:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", + "org.scala-sbt:collections_2.13:1.9.2", + "org.scala-sbt:compiler-bridge_2.13:1.9.3", + "org.scala-sbt:compiler-interface:1.9.3", + "org.scala-sbt:core-macros_2.13:1.9.2", + "org.scala-sbt:io_2.13:1.9.1", + "org.scala-sbt:util-interface:1.9.2", + "org.scala-sbt:util-logging_2.13:1.9.2", + "org.scala-sbt:util-position_2.13:1.9.2", + "org.scala-sbt:zinc-classfile_2.13:1.9.3" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:compiler-bridge_2.13:1.9.3", + "org.scala-sbt:compiler-interface:1.9.3", + "org.scala-sbt:zinc-classfile_2.13:1.9.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.9.3/zinc-apiinfo_2.13-1.9.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.9.3/zinc-apiinfo_2.13-1.9.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.9.3/zinc-apiinfo_2.13-1.9.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.9.3/zinc-apiinfo_2.13-1.9.3.jar" + ], + "sha256": "a9ac1985193d0b1581b6b8a64bda22b84c30290f0304d0de07d050b90eda9982", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.9.3/zinc-apiinfo_2.13-1.9.3.jar" + }, + { + "coord": "org.scala-sbt:zinc-apiinfo_2.13:jar:sources:1.9.3", + "dependencies": [ + "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", + "com.lmax:disruptor:jar:sources:3.4.2", + "com.swoval:file-tree-views:jar:sources:2.1.10", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.fusesource.jansi:jansi:jar:sources:2.1.0", + "org.jline:jline-terminal-jansi:jar:sources:3.19.0", + "org.jline:jline-terminal-jna:jar:sources:3.19.0", + "org.jline:jline-terminal:jar:sources:3.19.0", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", + "org.scala-sbt:collections_2.13:jar:sources:1.9.2", + "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.9.3", + "org.scala-sbt:compiler-interface:jar:sources:1.9.3", + "org.scala-sbt:core-macros_2.13:jar:sources:1.9.2", + "org.scala-sbt:io_2.13:jar:sources:1.9.1", + "org.scala-sbt:util-interface:jar:sources:1.9.2", + "org.scala-sbt:util-logging_2.13:jar:sources:1.9.2", + "org.scala-sbt:util-position_2.13:jar:sources:1.9.2", + "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.9.3" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.9.3", + "org.scala-sbt:compiler-interface:jar:sources:1.9.3", + "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.9.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.9.3/zinc-apiinfo_2.13-1.9.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.9.3/zinc-apiinfo_2.13-1.9.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.9.3/zinc-apiinfo_2.13-1.9.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.9.3/zinc-apiinfo_2.13-1.9.3-sources.jar" + ], + "sha256": "86d98a01c56ffb56834218104dfe1d8f18c17d6f55822983c313878f60c728e7", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.9.3/zinc-apiinfo_2.13-1.9.3-sources.jar" + }, + { + "coord": "org.scala-sbt:zinc-classfile_2.13:1.9.3", + "dependencies": [ + "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.13:0.9.1", + "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "com.lmax:disruptor:3.4.2", + "com.swoval:file-tree-views:2.1.10", + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "org.apache.logging.log4j:log4j-api:2.17.1", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.fusesource.jansi:jansi:2.1.0", + "org.jline:jline-terminal-jansi:3.19.0", + "org.jline:jline-terminal-jna:3.19.0", + "org.jline:jline-terminal:3.19.0", + "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt.jline:jline:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", + "org.scala-sbt:collections_2.13:1.9.2", + "org.scala-sbt:compiler-interface:1.9.3", + "org.scala-sbt:core-macros_2.13:1.9.2", + "org.scala-sbt:io_2.13:1.9.1", + "org.scala-sbt:util-interface:1.9.2", + "org.scala-sbt:util-logging_2.13:1.9.2", + "org.scala-sbt:util-position_2.13:1.9.2" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:compiler-interface:1.9.3", + "org.scala-sbt:io_2.13:1.9.1", + "org.scala-sbt:util-logging_2.13:1.9.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.9.3/zinc-classfile_2.13-1.9.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.9.3/zinc-classfile_2.13-1.9.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-classfile_2.13/1.9.3/zinc-classfile_2.13-1.9.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.9.3/zinc-classfile_2.13-1.9.3.jar" + ], + "sha256": "80ae2c88dbf55540ecdf692efccd7af5e9bc945f2245cbb580fae3a5eba19a4f", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.9.3/zinc-classfile_2.13-1.9.3.jar" + }, + { + "coord": "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.9.3", + "dependencies": [ + "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", + "com.lmax:disruptor:jar:sources:3.4.2", + "com.swoval:file-tree-views:jar:sources:2.1.10", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.fusesource.jansi:jansi:jar:sources:2.1.0", + "org.jline:jline-terminal-jansi:jar:sources:3.19.0", + "org.jline:jline-terminal-jna:jar:sources:3.19.0", + "org.jline:jline-terminal:jar:sources:3.19.0", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", + "org.scala-sbt:collections_2.13:jar:sources:1.9.2", + "org.scala-sbt:compiler-interface:jar:sources:1.9.3", + "org.scala-sbt:core-macros_2.13:jar:sources:1.9.2", + "org.scala-sbt:io_2.13:jar:sources:1.9.1", + "org.scala-sbt:util-interface:jar:sources:1.9.2", + "org.scala-sbt:util-logging_2.13:jar:sources:1.9.2", + "org.scala-sbt:util-position_2.13:jar:sources:1.9.2" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:compiler-interface:jar:sources:1.9.3", + "org.scala-sbt:io_2.13:jar:sources:1.9.1", + "org.scala-sbt:util-logging_2.13:jar:sources:1.9.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.9.3/zinc-classfile_2.13-1.9.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.9.3/zinc-classfile_2.13-1.9.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-classfile_2.13/1.9.3/zinc-classfile_2.13-1.9.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.9.3/zinc-classfile_2.13-1.9.3-sources.jar" + ], + "sha256": "5d5fdd033650562a4c93d2e3a7f7ef126b98a477e3503898969ecb5725bc0971", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.9.3/zinc-classfile_2.13-1.9.3-sources.jar" + }, + { + "coord": "org.scala-sbt:zinc-classpath_2.13:1.9.3", + "dependencies": [ + "com.swoval:file-tree-views:2.1.10", + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:compiler-interface:1.9.3", + "org.scala-sbt:io_2.13:1.9.1", + "org.scala-sbt:launcher-interface:1.4.2", + "org.scala-sbt:util-interface:1.9.2" + ], + "directDependencies": [ + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:compiler-interface:1.9.3", + "org.scala-sbt:io_2.13:1.9.1", + "org.scala-sbt:launcher-interface:1.4.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.9.3/zinc-classpath_2.13-1.9.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.9.3/zinc-classpath_2.13-1.9.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-classpath_2.13/1.9.3/zinc-classpath_2.13-1.9.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.9.3/zinc-classpath_2.13-1.9.3.jar" + ], + "sha256": "a93e75690525b5489c5de3d06d83a5b16b85f138011161751b25e448513e3d49", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.9.3/zinc-classpath_2.13-1.9.3.jar" + }, + { + "coord": "org.scala-sbt:zinc-classpath_2.13:jar:sources:1.9.3", + "dependencies": [ + "com.swoval:file-tree-views:jar:sources:2.1.10", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:compiler-interface:jar:sources:1.9.3", + "org.scala-sbt:io_2.13:jar:sources:1.9.1", + "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "org.scala-sbt:util-interface:jar:sources:1.9.2" + ], + "directDependencies": [ + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:compiler-interface:jar:sources:1.9.3", + "org.scala-sbt:io_2.13:jar:sources:1.9.1", + "org.scala-sbt:launcher-interface:jar:sources:1.4.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.9.3/zinc-classpath_2.13-1.9.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.9.3/zinc-classpath_2.13-1.9.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-classpath_2.13/1.9.3/zinc-classpath_2.13-1.9.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.9.3/zinc-classpath_2.13-1.9.3-sources.jar" + ], + "sha256": "b19c9fa3a9eb25aa0f169499704c680cd9b10bc04132988f2458aaa5ff495cab", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.9.3/zinc-classpath_2.13-1.9.3-sources.jar" + }, + { + "coord": "org.scala-sbt:zinc-compile-core_2.13:1.9.3", + "dependencies": [ + "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.13:0.9.1", + "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "com.lmax:disruptor:3.4.2", + "com.swoval:file-tree-views:2.1.10", + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "net.openhft:zero-allocation-hashing:0.10.1", + "org.apache.logging.log4j:log4j-api:2.17.1", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.fusesource.jansi:jansi:2.1.0", + "org.jline:jline-terminal-jansi:3.19.0", + "org.jline:jline-terminal-jna:3.19.0", + "org.jline:jline-terminal:3.19.0", + "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt.jline:jline:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", + "org.scala-sbt:collections_2.13:1.9.2", + "org.scala-sbt:compiler-bridge_2.13:1.9.3", + "org.scala-sbt:compiler-interface:1.9.3", + "org.scala-sbt:core-macros_2.13:1.9.2", + "org.scala-sbt:io_2.13:1.9.1", + "org.scala-sbt:launcher-interface:1.4.2", + "org.scala-sbt:util-control_2.13:1.9.2", + "org.scala-sbt:util-interface:1.9.2", + "org.scala-sbt:util-logging_2.13:1.9.2", + "org.scala-sbt:util-position_2.13:1.9.2", + "org.scala-sbt:zinc-apiinfo_2.13:1.9.3", + "org.scala-sbt:zinc-classfile_2.13:1.9.3", + "org.scala-sbt:zinc-classpath_2.13:1.9.3" + ], + "directDependencies": [ + "net.openhft:zero-allocation-hashing:0.10.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:compiler-interface:1.9.3", + "org.scala-sbt:io_2.13:1.9.1", + "org.scala-sbt:launcher-interface:1.4.2", + "org.scala-sbt:util-control_2.13:1.9.2", + "org.scala-sbt:util-logging_2.13:1.9.2", + "org.scala-sbt:zinc-apiinfo_2.13:1.9.3", + "org.scala-sbt:zinc-classfile_2.13:1.9.3", + "org.scala-sbt:zinc-classpath_2.13:1.9.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.9.3/zinc-compile-core_2.13-1.9.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.9.3/zinc-compile-core_2.13-1.9.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-compile-core_2.13/1.9.3/zinc-compile-core_2.13-1.9.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.9.3/zinc-compile-core_2.13-1.9.3.jar" + ], + "sha256": "7153b283aa6d351b9628ed909e35492cd301a51bd42abd2f60657083d085f752", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.9.3/zinc-compile-core_2.13-1.9.3.jar" + }, + { + "coord": "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.9.3", + "dependencies": [ + "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", + "com.lmax:disruptor:jar:sources:3.4.2", + "com.swoval:file-tree-views:jar:sources:2.1.10", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "net.openhft:zero-allocation-hashing:jar:sources:0.10.1", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.fusesource.jansi:jansi:jar:sources:2.1.0", + "org.jline:jline-terminal-jansi:jar:sources:3.19.0", + "org.jline:jline-terminal-jna:jar:sources:3.19.0", + "org.jline:jline-terminal:jar:sources:3.19.0", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", + "org.scala-sbt:collections_2.13:jar:sources:1.9.2", + "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.9.3", + "org.scala-sbt:compiler-interface:jar:sources:1.9.3", + "org.scala-sbt:core-macros_2.13:jar:sources:1.9.2", + "org.scala-sbt:io_2.13:jar:sources:1.9.1", + "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "org.scala-sbt:util-control_2.13:jar:sources:1.9.2", + "org.scala-sbt:util-interface:jar:sources:1.9.2", + "org.scala-sbt:util-logging_2.13:jar:sources:1.9.2", + "org.scala-sbt:util-position_2.13:jar:sources:1.9.2", + "org.scala-sbt:zinc-apiinfo_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-classpath_2.13:jar:sources:1.9.3" + ], + "directDependencies": [ + "net.openhft:zero-allocation-hashing:jar:sources:0.10.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:compiler-interface:jar:sources:1.9.3", + "org.scala-sbt:io_2.13:jar:sources:1.9.1", + "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "org.scala-sbt:util-control_2.13:jar:sources:1.9.2", + "org.scala-sbt:util-logging_2.13:jar:sources:1.9.2", + "org.scala-sbt:zinc-apiinfo_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-classpath_2.13:jar:sources:1.9.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.9.3/zinc-compile-core_2.13-1.9.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.9.3/zinc-compile-core_2.13-1.9.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-compile-core_2.13/1.9.3/zinc-compile-core_2.13-1.9.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.9.3/zinc-compile-core_2.13-1.9.3-sources.jar" + ], + "sha256": "8a9878016e95f93b2f09b539da34a0992675e3563db5811485ebd4fea3073204", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.9.3/zinc-compile-core_2.13-1.9.3-sources.jar" + }, + { + "coord": "org.scala-sbt:zinc-core_2.13:1.9.3", + "dependencies": [ + "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.13:0.9.1", + "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "com.lmax:disruptor:3.4.2", + "com.swoval:file-tree-views:2.1.10", + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "net.openhft:zero-allocation-hashing:0.10.1", + "org.apache.logging.log4j:log4j-api:2.17.1", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.fusesource.jansi:jansi:2.1.0", + "org.jline:jline-terminal-jansi:3.19.0", + "org.jline:jline-terminal-jna:3.19.0", + "org.jline:jline-terminal:3.19.0", + "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt.jline:jline:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", + "org.scala-sbt:collections_2.13:1.9.2", + "org.scala-sbt:compiler-bridge_2.13:1.9.3", + "org.scala-sbt:compiler-interface:1.9.3", + "org.scala-sbt:core-macros_2.13:1.9.2", + "org.scala-sbt:io_2.13:1.9.1", + "org.scala-sbt:launcher-interface:1.4.2", + "org.scala-sbt:util-control_2.13:1.9.2", + "org.scala-sbt:util-interface:1.9.2", + "org.scala-sbt:util-logging_2.13:1.9.2", + "org.scala-sbt:util-position_2.13:1.9.2", + "org.scala-sbt:util-relation_2.13:1.9.2", + "org.scala-sbt:zinc-apiinfo_2.13:1.9.3", + "org.scala-sbt:zinc-classfile_2.13:1.9.3", + "org.scala-sbt:zinc-classpath_2.13:1.9.3", + "org.scala-sbt:zinc-compile-core_2.13:1.9.3", + "org.scala-sbt:zinc-persist-core-assembly:1.9.3" + ], + "directDependencies": [ + "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:compiler-interface:1.9.3", + "org.scala-sbt:io_2.13:1.9.1", + "org.scala-sbt:util-logging_2.13:1.9.2", + "org.scala-sbt:util-relation_2.13:1.9.2", + "org.scala-sbt:zinc-apiinfo_2.13:1.9.3", + "org.scala-sbt:zinc-classpath_2.13:1.9.3", + "org.scala-sbt:zinc-compile-core_2.13:1.9.3", + "org.scala-sbt:zinc-persist-core-assembly:1.9.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-core_2.13/1.9.3/zinc-core_2.13-1.9.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-core_2.13/1.9.3/zinc-core_2.13-1.9.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-core_2.13/1.9.3/zinc-core_2.13-1.9.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.13/1.9.3/zinc-core_2.13-1.9.3.jar" + ], + "sha256": "dfe60b5d52336ca16ee7df42dea0fc056cce97db643773e941c515cfb2ee783d", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-core_2.13/1.9.3/zinc-core_2.13-1.9.3.jar" + }, + { + "coord": "org.scala-sbt:zinc-core_2.13:jar:sources:1.9.3", + "dependencies": [ + "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", + "com.lmax:disruptor:jar:sources:3.4.2", + "com.swoval:file-tree-views:jar:sources:2.1.10", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "net.openhft:zero-allocation-hashing:jar:sources:0.10.1", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.fusesource.jansi:jansi:jar:sources:2.1.0", + "org.jline:jline-terminal-jansi:jar:sources:3.19.0", + "org.jline:jline-terminal-jna:jar:sources:3.19.0", + "org.jline:jline-terminal:jar:sources:3.19.0", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", + "org.scala-sbt:collections_2.13:jar:sources:1.9.2", + "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.9.3", + "org.scala-sbt:compiler-interface:jar:sources:1.9.3", + "org.scala-sbt:core-macros_2.13:jar:sources:1.9.2", + "org.scala-sbt:io_2.13:jar:sources:1.9.1", + "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "org.scala-sbt:util-control_2.13:jar:sources:1.9.2", + "org.scala-sbt:util-interface:jar:sources:1.9.2", + "org.scala-sbt:util-logging_2.13:jar:sources:1.9.2", + "org.scala-sbt:util-position_2.13:jar:sources:1.9.2", + "org.scala-sbt:util-relation_2.13:jar:sources:1.9.2", + "org.scala-sbt:zinc-apiinfo_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-classpath_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-persist-core-assembly:jar:sources:1.9.3" + ], + "directDependencies": [ + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:compiler-interface:jar:sources:1.9.3", + "org.scala-sbt:io_2.13:jar:sources:1.9.1", + "org.scala-sbt:util-logging_2.13:jar:sources:1.9.2", + "org.scala-sbt:util-relation_2.13:jar:sources:1.9.2", + "org.scala-sbt:zinc-apiinfo_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-classpath_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-persist-core-assembly:jar:sources:1.9.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-core_2.13/1.9.3/zinc-core_2.13-1.9.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-core_2.13/1.9.3/zinc-core_2.13-1.9.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-core_2.13/1.9.3/zinc-core_2.13-1.9.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.13/1.9.3/zinc-core_2.13-1.9.3-sources.jar" + ], + "sha256": "95b328e46e3ed197d76ce6205829c35bfb4f637bc79f955a92459671a0874a36", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-core_2.13/1.9.3/zinc-core_2.13-1.9.3-sources.jar" + }, + { + "coord": "org.scala-sbt:zinc-persist-core-assembly:1.9.3", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.9.3/zinc-persist-core-assembly-1.9.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.9.3/zinc-persist-core-assembly-1.9.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-persist-core-assembly/1.9.3/zinc-persist-core-assembly-1.9.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.9.3/zinc-persist-core-assembly-1.9.3.jar" + ], + "sha256": "a039032dd2ddd6c82ec76012a9972fda0a9e35c2481ec791b82a60c8fef54807", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.9.3/zinc-persist-core-assembly-1.9.3.jar" + }, + { + "coord": "org.scala-sbt:zinc-persist-core-assembly:jar:sources:1.9.3", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.9.3/zinc-persist-core-assembly-1.9.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.9.3/zinc-persist-core-assembly-1.9.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-persist-core-assembly/1.9.3/zinc-persist-core-assembly-1.9.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.9.3/zinc-persist-core-assembly-1.9.3-sources.jar" + ], + "sha256": "bd69ac85da555f56edab763c13500563d278f7d80f45aed6f3e39a55c7ed9e1b", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.9.3/zinc-persist-core-assembly-1.9.3-sources.jar" + }, + { + "coord": "org.scala-sbt:zinc-persist_2.13:1.9.3", + "dependencies": [ + "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.13:0.9.1", + "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "com.lmax:disruptor:3.4.2", + "com.swoval:file-tree-views:2.1.10", + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "net.openhft:zero-allocation-hashing:0.10.1", + "org.apache.logging.log4j:log4j-api:2.17.1", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.fusesource.jansi:jansi:2.1.0", + "org.jline:jline-terminal-jansi:3.19.0", + "org.jline:jline-terminal-jna:3.19.0", + "org.jline:jline-terminal:3.19.0", + "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", + "org.scala-lang.modules:scala-xml_2.13:2.1.0", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt.jline:jline:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", + "org.scala-sbt:collections_2.13:1.9.2", + "org.scala-sbt:compiler-bridge_2.13:1.9.3", + "org.scala-sbt:compiler-interface:1.9.3", + "org.scala-sbt:core-macros_2.13:1.9.2", + "org.scala-sbt:io_2.13:1.9.1", + "org.scala-sbt:launcher-interface:1.4.2", + "org.scala-sbt:sbinary_2.13:0.5.1", + "org.scala-sbt:util-control_2.13:1.9.2", + "org.scala-sbt:util-interface:1.9.2", + "org.scala-sbt:util-logging_2.13:1.9.2", + "org.scala-sbt:util-position_2.13:1.9.2", + "org.scala-sbt:util-relation_2.13:1.9.2", + "org.scala-sbt:zinc-apiinfo_2.13:1.9.3", + "org.scala-sbt:zinc-classfile_2.13:1.9.3", + "org.scala-sbt:zinc-classpath_2.13:1.9.3", + "org.scala-sbt:zinc-compile-core_2.13:1.9.3", + "org.scala-sbt:zinc-core_2.13:1.9.3", + "org.scala-sbt:zinc-persist-core-assembly:1.9.3" + ], + "directDependencies": [ + "org.scala-lang.modules:scala-xml_2.13:2.1.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:sbinary_2.13:0.5.1", + "org.scala-sbt:zinc-compile-core_2.13:1.9.3", + "org.scala-sbt:zinc-core_2.13:1.9.3", + "org.scala-sbt:zinc-persist-core-assembly:1.9.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist_2.13/1.9.3/zinc-persist_2.13-1.9.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist_2.13/1.9.3/zinc-persist_2.13-1.9.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-persist_2.13/1.9.3/zinc-persist_2.13-1.9.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.13/1.9.3/zinc-persist_2.13-1.9.3.jar" + ], + "sha256": "1d9df73c7b40247f13db6325e417c1d062ba98e7689a10f57d1d1d9a7904cd59", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist_2.13/1.9.3/zinc-persist_2.13-1.9.3.jar" + }, + { + "coord": "org.scala-sbt:zinc-persist_2.13:jar:sources:1.9.3", + "dependencies": [ + "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", + "com.lmax:disruptor:jar:sources:3.4.2", + "com.swoval:file-tree-views:jar:sources:2.1.10", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "net.openhft:zero-allocation-hashing:jar:sources:0.10.1", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.fusesource.jansi:jansi:jar:sources:2.1.0", + "org.jline:jline-terminal-jansi:jar:sources:3.19.0", + "org.jline:jline-terminal-jna:jar:sources:3.19.0", + "org.jline:jline-terminal:jar:sources:3.19.0", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.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:2.1.0", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", + "org.scala-sbt:collections_2.13:jar:sources:1.9.2", + "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.9.3", + "org.scala-sbt:compiler-interface:jar:sources:1.9.3", + "org.scala-sbt:core-macros_2.13:jar:sources:1.9.2", + "org.scala-sbt:io_2.13:jar:sources:1.9.1", + "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "org.scala-sbt:sbinary_2.13:jar:sources:0.5.1", + "org.scala-sbt:util-control_2.13:jar:sources:1.9.2", + "org.scala-sbt:util-interface:jar:sources:1.9.2", + "org.scala-sbt:util-logging_2.13:jar:sources:1.9.2", + "org.scala-sbt:util-position_2.13:jar:sources:1.9.2", + "org.scala-sbt:util-relation_2.13:jar:sources:1.9.2", + "org.scala-sbt:zinc-apiinfo_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-classpath_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-core_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-persist-core-assembly:jar:sources:1.9.3" + ], + "directDependencies": [ + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.1.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:sbinary_2.13:jar:sources:0.5.1", + "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-core_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-persist-core-assembly:jar:sources:1.9.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist_2.13/1.9.3/zinc-persist_2.13-1.9.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist_2.13/1.9.3/zinc-persist_2.13-1.9.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-persist_2.13/1.9.3/zinc-persist_2.13-1.9.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.13/1.9.3/zinc-persist_2.13-1.9.3-sources.jar" + ], + "sha256": "2f9d7a4d67ff05da8dfec9de9497fac794ec82e596c36747ba82f7271845183f", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist_2.13/1.9.3/zinc-persist_2.13-1.9.3-sources.jar" + }, + { + "coord": "org.scala-sbt:zinc_2.13:1.9.3", + "dependencies": [ + "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.13:0.9.1", + "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "com.lmax:disruptor:3.4.2", + "com.swoval:file-tree-views:2.1.10", + "net.java.dev.jna:jna-platform:5.13.0", + "net.java.dev.jna:jna:5.14.0", + "net.openhft:zero-allocation-hashing:0.10.1", + "org.apache.logging.log4j:log4j-api:2.17.1", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.fusesource.jansi:jansi:2.1.0", + "org.jline:jline-terminal-jansi:3.19.0", + "org.jline:jline-terminal-jna:3.19.0", + "org.jline:jline-terminal:3.19.0", + "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", + "org.scala-lang.modules:scala-xml_2.13:2.1.0", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt.jline:jline:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", + "org.scala-sbt:collections_2.13:1.9.2", + "org.scala-sbt:compiler-bridge_2.13:1.9.3", + "org.scala-sbt:compiler-interface:1.9.3", + "org.scala-sbt:core-macros_2.13:1.9.2", + "org.scala-sbt:io_2.13:1.9.1", + "org.scala-sbt:launcher-interface:1.4.2", + "org.scala-sbt:sbinary_2.13:0.5.1", + "org.scala-sbt:util-control_2.13:1.9.2", + "org.scala-sbt:util-interface:1.9.2", + "org.scala-sbt:util-logging_2.13:1.9.2", + "org.scala-sbt:util-position_2.13:1.9.2", + "org.scala-sbt:util-relation_2.13:1.9.2", + "org.scala-sbt:zinc-apiinfo_2.13:1.9.3", + "org.scala-sbt:zinc-classfile_2.13:1.9.3", + "org.scala-sbt:zinc-classpath_2.13:1.9.3", + "org.scala-sbt:zinc-compile-core_2.13:1.9.3", + "org.scala-sbt:zinc-core_2.13:1.9.3", + "org.scala-sbt:zinc-persist-core-assembly:1.9.3", + "org.scala-sbt:zinc-persist_2.13:1.9.3" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:zinc-classfile_2.13:1.9.3", + "org.scala-sbt:zinc-compile-core_2.13:1.9.3", + "org.scala-sbt:zinc-core_2.13:1.9.3", + "org.scala-sbt:zinc-persist_2.13:1.9.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc_2.13/1.9.3/zinc_2.13-1.9.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc_2.13/1.9.3/zinc_2.13-1.9.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc_2.13/1.9.3/zinc_2.13-1.9.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc_2.13/1.9.3/zinc_2.13-1.9.3.jar" + ], + "sha256": "41eee1dae30599627287303ddb7b3ab5de1147aba20867fb4419dfee605d8a92", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc_2.13/1.9.3/zinc_2.13-1.9.3.jar" + }, + { + "coord": "org.scala-sbt:zinc_2.13:jar:sources:1.9.3", + "dependencies": [ + "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", + "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", + "com.lmax:disruptor:jar:sources:3.4.2", + "com.swoval:file-tree-views:jar:sources:2.1.10", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "net.openhft:zero-allocation-hashing:jar:sources:0.10.1", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.fusesource.jansi:jansi:jar:sources:2.1.0", + "org.jline:jline-terminal-jansi:jar:sources:3.19.0", + "org.jline:jline-terminal-jna:jar:sources:3.19.0", + "org.jline:jline-terminal:jar:sources:3.19.0", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.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:2.1.0", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", + "org.scala-sbt:collections_2.13:jar:sources:1.9.2", + "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.9.3", + "org.scala-sbt:compiler-interface:jar:sources:1.9.3", + "org.scala-sbt:core-macros_2.13:jar:sources:1.9.2", + "org.scala-sbt:io_2.13:jar:sources:1.9.1", + "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "org.scala-sbt:sbinary_2.13:jar:sources:0.5.1", + "org.scala-sbt:util-control_2.13:jar:sources:1.9.2", + "org.scala-sbt:util-interface:jar:sources:1.9.2", + "org.scala-sbt:util-logging_2.13:jar:sources:1.9.2", + "org.scala-sbt:util-position_2.13:jar:sources:1.9.2", + "org.scala-sbt:util-relation_2.13:jar:sources:1.9.2", + "org.scala-sbt:zinc-apiinfo_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-classpath_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-core_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-persist-core-assembly:jar:sources:1.9.3", + "org.scala-sbt:zinc-persist_2.13:jar:sources:1.9.3" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-core_2.13:jar:sources:1.9.3", + "org.scala-sbt:zinc-persist_2.13:jar:sources:1.9.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc_2.13/1.9.3/zinc_2.13-1.9.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc_2.13/1.9.3/zinc_2.13-1.9.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc_2.13/1.9.3/zinc_2.13-1.9.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc_2.13/1.9.3/zinc_2.13-1.9.3-sources.jar" + ], + "sha256": "d20c3cf6861a43b1cda0f1ea452ed79aa4a92b49e67eb974e4e2c2e7b40e0fa1", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc_2.13/1.9.3/zinc_2.13-1.9.3-sources.jar" + }, + { + "coord": "org.scalameta:jsonrpc_2.12:0.1.0", + "dependencies": [ + "ch.qos.logback:logback-classic:1.2.3", + "ch.qos.logback:logback-core:1.2.3", + "com.beachape:enumeratum-circe_2.12:1.5.15", + "com.beachape:enumeratum-macros_2.12:1.5.9", + "com.beachape:enumeratum_2.12:1.5.12", + "com.chuusai:shapeless_2.12:2.3.3", + "com.lihaoyi:fansi_2.12:0.2.5", + "com.lihaoyi:pprint_2.12:0.5.3", + "com.lihaoyi:sourcecode_2.12:0.1.4", + "com.typesafe.scala-logging:scala-logging_2.12:3.7.2", + "io.circe:circe-core_2.12:0.9.3", + "io.circe:circe-generic-extras_2.12:0.9.0", + "io.circe:circe-generic_2.12:0.9.0", + "io.circe:circe-numbers_2.12:0.9.3", + "io.circe:circe-parser_2.12:0.9.3", + "io.monix:monix_2.12:2.3.3", + "org.codehaus.groovy:groovy:2.4.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.slf4j:slf4j-api:1.7.25", + "org.typelevel:cats-core_2.12:1.0.1", + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.typelevel:cats-macros_2.12:1.0.1", + "org.typelevel:machinist_2.12:0.6.2", + "org.typelevel:macro-compat_2.12:1.1.1" + ], + "directDependencies": [ + "ch.qos.logback:logback-classic:1.2.3", + "com.beachape:enumeratum-circe_2.12:1.5.15", + "com.beachape:enumeratum_2.12:1.5.12", + "com.lihaoyi:pprint_2.12:0.5.3", + "com.typesafe.scala-logging:scala-logging_2.12:3.7.2", + "io.circe:circe-core_2.12:0.9.3", + "io.circe:circe-generic-extras_2.12:0.9.0", + "io.circe:circe-generic_2.12:0.9.0", + "io.circe:circe-parser_2.12:0.9.3", + "io.monix:monix_2.12:2.3.3", + "org.codehaus.groovy:groovy:2.4.0", + "org.scala-lang:scala-library:2.13.14", + "org.slf4j:slf4j-api:1.7.25", + "org.typelevel:cats-core_2.12:1.0.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/jsonrpc_2.12/0.1.0/jsonrpc_2.12-0.1.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalameta/jsonrpc_2.12/0.1.0/jsonrpc_2.12-0.1.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/jsonrpc_2.12/0.1.0/jsonrpc_2.12-0.1.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/jsonrpc_2.12/0.1.0/jsonrpc_2.12-0.1.0.jar" + ], + "sha256": "50c9aba9db630e174ccb522700cb163da5f96d8eb430d9776bf7bdcbe59a1879", + "url": "https://repo.maven.apache.org/maven2/org/scalameta/jsonrpc_2.12/0.1.0/jsonrpc_2.12-0.1.0.jar" + }, + { + "coord": "org.scalameta:jsonrpc_2.12:jar:sources:0.1.0", + "dependencies": [ + "ch.qos.logback:logback-classic:jar:sources:1.2.3", + "ch.qos.logback:logback-core:jar:sources:1.2.3", + "com.beachape:enumeratum-circe_2.12:jar:sources:1.5.15", + "com.beachape:enumeratum-macros_2.12:jar:sources:1.5.9", + "com.beachape:enumeratum_2.12:jar:sources:1.5.12", + "com.chuusai:shapeless_2.12:jar:sources:2.3.3", + "com.lihaoyi:fansi_2.12:jar:sources:0.2.5", + "com.lihaoyi:pprint_2.12:jar:sources:0.5.3", + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "com.typesafe.scala-logging:scala-logging_2.12:jar:sources:3.7.2", + "io.circe:circe-core_2.12:jar:sources:0.9.3", + "io.circe:circe-generic-extras_2.12:jar:sources:0.9.0", + "io.circe:circe-generic_2.12:jar:sources:0.9.0", + "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "io.circe:circe-parser_2.12:jar:sources:0.9.3", + "io.monix:monix_2.12:jar:sources:2.3.3", + "org.codehaus.groovy:groovy:jar:sources:2.4.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.slf4j:slf4j-api:jar:sources:1.7.25", + "org.typelevel:cats-core_2.12:jar:sources:1.0.1", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "org.typelevel:machinist_2.12:jar:sources:0.6.2", + "org.typelevel:macro-compat_2.12:jar:sources:1.1.1" + ], + "directDependencies": [ + "ch.qos.logback:logback-classic:jar:sources:1.2.3", + "com.beachape:enumeratum-circe_2.12:jar:sources:1.5.15", + "com.beachape:enumeratum_2.12:jar:sources:1.5.12", + "com.lihaoyi:pprint_2.12:jar:sources:0.5.3", + "com.typesafe.scala-logging:scala-logging_2.12:jar:sources:3.7.2", + "io.circe:circe-core_2.12:jar:sources:0.9.3", + "io.circe:circe-generic-extras_2.12:jar:sources:0.9.0", + "io.circe:circe-generic_2.12:jar:sources:0.9.0", + "io.circe:circe-parser_2.12:jar:sources:0.9.3", + "io.monix:monix_2.12:jar:sources:2.3.3", + "org.codehaus.groovy:groovy:jar:sources:2.4.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.slf4j:slf4j-api:jar:sources:1.7.25", + "org.typelevel:cats-core_2.12:jar:sources:1.0.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/jsonrpc_2.12/0.1.0/jsonrpc_2.12-0.1.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalameta/jsonrpc_2.12/0.1.0/jsonrpc_2.12-0.1.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/jsonrpc_2.12/0.1.0/jsonrpc_2.12-0.1.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/jsonrpc_2.12/0.1.0/jsonrpc_2.12-0.1.0-sources.jar" + ], + "sha256": "69e82914de579a9c67a9fa2f41a9c4f5dd8c152fc14b18fe40be17d03f46d4cc", + "url": "https://repo.maven.apache.org/maven2/org/scalameta/jsonrpc_2.12/0.1.0/jsonrpc_2.12-0.1.0-sources.jar" + }, + { + "coord": "org.scalameta:lsp4s_2.12:0.1.0", + "dependencies": [ + "ch.qos.logback:logback-classic:1.2.3", + "ch.qos.logback:logback-core:1.2.3", + "com.beachape:enumeratum-circe_2.12:1.5.15", + "com.beachape:enumeratum-macros_2.12:1.5.9", + "com.beachape:enumeratum_2.12:1.5.12", + "com.chuusai:shapeless_2.12:2.3.3", + "com.lihaoyi:fansi_2.12:0.2.5", + "com.lihaoyi:pprint_2.12:0.5.3", + "com.lihaoyi:sourcecode_2.12:0.1.4", + "com.typesafe.scala-logging:scala-logging_2.12:3.7.2", + "io.circe:circe-core_2.12:0.9.3", + "io.circe:circe-generic-extras_2.12:0.9.0", + "io.circe:circe-generic_2.12:0.9.0", + "io.circe:circe-numbers_2.12:0.9.3", + "io.circe:circe-parser_2.12:0.9.3", + "io.monix:monix_2.12:2.3.3", + "org.codehaus.groovy:groovy:2.4.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalameta:jsonrpc_2.12:0.1.0", + "org.slf4j:slf4j-api:1.7.25", + "org.typelevel:cats-core_2.12:1.0.1", + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.typelevel:cats-macros_2.12:1.0.1", + "org.typelevel:machinist_2.12:0.6.2", + "org.typelevel:macro-compat_2.12:1.1.1" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scalameta:jsonrpc_2.12:0.1.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/lsp4s_2.12/0.1.0/lsp4s_2.12-0.1.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalameta/lsp4s_2.12/0.1.0/lsp4s_2.12-0.1.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/lsp4s_2.12/0.1.0/lsp4s_2.12-0.1.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/lsp4s_2.12/0.1.0/lsp4s_2.12-0.1.0.jar" + ], + "sha256": "51244a5ba585f438ba6cca0336e87faa7e4d85ff68725edba06cee780ed01b8e", + "url": "https://repo.maven.apache.org/maven2/org/scalameta/lsp4s_2.12/0.1.0/lsp4s_2.12-0.1.0.jar" + }, + { + "coord": "org.scalameta:lsp4s_2.12:jar:sources:0.1.0", + "dependencies": [ + "ch.qos.logback:logback-classic:jar:sources:1.2.3", + "ch.qos.logback:logback-core:jar:sources:1.2.3", + "com.beachape:enumeratum-circe_2.12:jar:sources:1.5.15", + "com.beachape:enumeratum-macros_2.12:jar:sources:1.5.9", + "com.beachape:enumeratum_2.12:jar:sources:1.5.12", + "com.chuusai:shapeless_2.12:jar:sources:2.3.3", + "com.lihaoyi:fansi_2.12:jar:sources:0.2.5", + "com.lihaoyi:pprint_2.12:jar:sources:0.5.3", + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "com.typesafe.scala-logging:scala-logging_2.12:jar:sources:3.7.2", + "io.circe:circe-core_2.12:jar:sources:0.9.3", + "io.circe:circe-generic-extras_2.12:jar:sources:0.9.0", + "io.circe:circe-generic_2.12:jar:sources:0.9.0", + "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "io.circe:circe-parser_2.12:jar:sources:0.9.3", + "io.monix:monix_2.12:jar:sources:2.3.3", + "org.codehaus.groovy:groovy:jar:sources:2.4.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalameta:jsonrpc_2.12:jar:sources:0.1.0", + "org.slf4j:slf4j-api:jar:sources:1.7.25", + "org.typelevel:cats-core_2.12:jar:sources:1.0.1", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "org.typelevel:machinist_2.12:jar:sources:0.6.2", + "org.typelevel:macro-compat_2.12:jar:sources:1.1.1" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scalameta:jsonrpc_2.12:jar:sources:0.1.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/lsp4s_2.12/0.1.0/lsp4s_2.12-0.1.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalameta/lsp4s_2.12/0.1.0/lsp4s_2.12-0.1.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/lsp4s_2.12/0.1.0/lsp4s_2.12-0.1.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/lsp4s_2.12/0.1.0/lsp4s_2.12-0.1.0-sources.jar" + ], + "sha256": "50eec572818c2644a1c5d953ec1dcb9bbb61df678755eae1c39404206188a5c1", + "url": "https://repo.maven.apache.org/maven2/org/scalameta/lsp4s_2.12/0.1.0/lsp4s_2.12-0.1.0-sources.jar" + }, + { + "coord": "org.scalaz:scalaz-concurrent_2.12:7.2.20", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scalaz:scalaz-core_2.12:7.2.20", + "org.scalaz:scalaz-effect_2.12:7.2.20" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scalaz:scalaz-core_2.12:7.2.20", + "org.scalaz:scalaz-effect_2.12:7.2.20" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalaz/scalaz-concurrent_2.12/7.2.20/scalaz-concurrent_2.12-7.2.20.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalaz/scalaz-concurrent_2.12/7.2.20/scalaz-concurrent_2.12-7.2.20.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalaz/scalaz-concurrent_2.12/7.2.20/scalaz-concurrent_2.12-7.2.20.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalaz/scalaz-concurrent_2.12/7.2.20/scalaz-concurrent_2.12-7.2.20.jar" + ], + "sha256": "d046209a58e42b74f2545473671ecc71c14c874615c7bd2f816ea3d5e91564a6", + "url": "https://repo.maven.apache.org/maven2/org/scalaz/scalaz-concurrent_2.12/7.2.20/scalaz-concurrent_2.12-7.2.20.jar" + }, + { + "coord": "org.scalaz:scalaz-concurrent_2.12:jar:sources:7.2.20", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scalaz:scalaz-core_2.12:jar:sources:7.2.20", + "org.scalaz:scalaz-effect_2.12:jar:sources:7.2.20" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scalaz:scalaz-core_2.12:jar:sources:7.2.20", + "org.scalaz:scalaz-effect_2.12:jar:sources:7.2.20" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalaz/scalaz-concurrent_2.12/7.2.20/scalaz-concurrent_2.12-7.2.20-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalaz/scalaz-concurrent_2.12/7.2.20/scalaz-concurrent_2.12-7.2.20-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalaz/scalaz-concurrent_2.12/7.2.20/scalaz-concurrent_2.12-7.2.20-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalaz/scalaz-concurrent_2.12/7.2.20/scalaz-concurrent_2.12-7.2.20-sources.jar" + ], + "sha256": "282d22a104a9b82b91d0f4a3307192a773574472125728d7806f3e79b4e579d9", + "url": "https://repo.maven.apache.org/maven2/org/scalaz/scalaz-concurrent_2.12/7.2.20/scalaz-concurrent_2.12-7.2.20-sources.jar" + }, + { + "coord": "org.scalaz:scalaz-core_2.12:7.2.20", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalaz/scalaz-core_2.12/7.2.20/scalaz-core_2.12-7.2.20.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalaz/scalaz-core_2.12/7.2.20/scalaz-core_2.12-7.2.20.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalaz/scalaz-core_2.12/7.2.20/scalaz-core_2.12-7.2.20.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalaz/scalaz-core_2.12/7.2.20/scalaz-core_2.12-7.2.20.jar" + ], + "sha256": "5e69ee5c989b26c176534168c4beba1f0c9c0f0e7469c86bc9ef771245fc6867", + "url": "https://repo.maven.apache.org/maven2/org/scalaz/scalaz-core_2.12/7.2.20/scalaz-core_2.12-7.2.20.jar" + }, + { + "coord": "org.scalaz:scalaz-core_2.12:jar:sources:7.2.20", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalaz/scalaz-core_2.12/7.2.20/scalaz-core_2.12-7.2.20-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalaz/scalaz-core_2.12/7.2.20/scalaz-core_2.12-7.2.20-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalaz/scalaz-core_2.12/7.2.20/scalaz-core_2.12-7.2.20-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalaz/scalaz-core_2.12/7.2.20/scalaz-core_2.12-7.2.20-sources.jar" + ], + "sha256": "d5fb01a52285a96f437461bd8ffbaa37bbcec45ac954032e0aeba5900191d12e", + "url": "https://repo.maven.apache.org/maven2/org/scalaz/scalaz-core_2.12/7.2.20/scalaz-core_2.12-7.2.20-sources.jar" + }, + { + "coord": "org.scalaz:scalaz-effect_2.12:7.2.20", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scalaz:scalaz-core_2.12:7.2.20" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scalaz:scalaz-core_2.12:7.2.20" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalaz/scalaz-effect_2.12/7.2.20/scalaz-effect_2.12-7.2.20.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalaz/scalaz-effect_2.12/7.2.20/scalaz-effect_2.12-7.2.20.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalaz/scalaz-effect_2.12/7.2.20/scalaz-effect_2.12-7.2.20.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalaz/scalaz-effect_2.12/7.2.20/scalaz-effect_2.12-7.2.20.jar" + ], + "sha256": "c74e7ff8228125566fd6080a8abbda49ca50d40d15773a93a9ab973a07f2d4a4", + "url": "https://repo.maven.apache.org/maven2/org/scalaz/scalaz-effect_2.12/7.2.20/scalaz-effect_2.12-7.2.20.jar" + }, + { + "coord": "org.scalaz:scalaz-effect_2.12:jar:sources:7.2.20", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scalaz:scalaz-core_2.12:jar:sources:7.2.20" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scalaz:scalaz-core_2.12:jar:sources:7.2.20" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalaz/scalaz-effect_2.12/7.2.20/scalaz-effect_2.12-7.2.20-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalaz/scalaz-effect_2.12/7.2.20/scalaz-effect_2.12-7.2.20-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalaz/scalaz-effect_2.12/7.2.20/scalaz-effect_2.12-7.2.20-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalaz/scalaz-effect_2.12/7.2.20/scalaz-effect_2.12-7.2.20-sources.jar" + ], + "sha256": "26df8bb9234332a334178096338ed09d8522e2246380f9170a34fbb65f99fc1b", + "url": "https://repo.maven.apache.org/maven2/org/scalaz/scalaz-effect_2.12/7.2.20/scalaz-effect_2.12-7.2.20-sources.jar" + }, + { + "coord": "org.slf4j:slf4j-api:1.7.25", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar" + ], + "sha256": "18c4a0095d5c1da6b817592e767bb23d29dd2f560ad74df75ff3961dbde25b79", + "url": "https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar" + }, + { + "coord": "org.slf4j:slf4j-api:jar:sources:1.7.25", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25-sources.jar" + ], + "sha256": "c4bc93180a4f0aceec3b057a2514abe04a79f06c174bbed910a2afb227b79366", + "url": "https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25-sources.jar" + }, + { + "coord": "org.spire-math:jawn-parser_2.12:0.11.1", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/spire-math/jawn-parser_2.12/0.11.1/jawn-parser_2.12-0.11.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/spire-math/jawn-parser_2.12/0.11.1/jawn-parser_2.12-0.11.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/spire-math/jawn-parser_2.12/0.11.1/jawn-parser_2.12-0.11.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/spire-math/jawn-parser_2.12/0.11.1/jawn-parser_2.12-0.11.1.jar" + ], + "sha256": "a442dc3a1f399a0c1d5245e5b09ac292b01c5794ee303443efa3c8a625cbd6c4", + "url": "https://repo.maven.apache.org/maven2/org/spire-math/jawn-parser_2.12/0.11.1/jawn-parser_2.12-0.11.1.jar" + }, + { + "coord": "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/spire-math/jawn-parser_2.12/0.11.1/jawn-parser_2.12-0.11.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/spire-math/jawn-parser_2.12/0.11.1/jawn-parser_2.12-0.11.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/spire-math/jawn-parser_2.12/0.11.1/jawn-parser_2.12-0.11.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/spire-math/jawn-parser_2.12/0.11.1/jawn-parser_2.12-0.11.1-sources.jar" + ], + "sha256": "7541d3cbde1c37f0bc75971608d717a9223bb8dd879c96fc0256718eed4220dd", + "url": "https://repo.maven.apache.org/maven2/org/spire-math/jawn-parser_2.12/0.11.1/jawn-parser_2.12-0.11.1-sources.jar" + }, + { + "coord": "org.typelevel:cats-core_2.12:1.0.1", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.typelevel:cats-macros_2.12:1.0.1", + "org.typelevel:machinist_2.12:0.6.2" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.typelevel:cats-macros_2.12:1.0.1", + "org.typelevel:machinist_2.12:0.6.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/typelevel/cats-core_2.12/1.0.1/cats-core_2.12-1.0.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/typelevel/cats-core_2.12/1.0.1/cats-core_2.12-1.0.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/typelevel/cats-core_2.12/1.0.1/cats-core_2.12-1.0.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/typelevel/cats-core_2.12/1.0.1/cats-core_2.12-1.0.1.jar" + ], + "sha256": "9e1d264f3366f6090b17ebdf4fab7488c9491a7c82bc400b1f6ec05f39755b63", + "url": "https://repo.maven.apache.org/maven2/org/typelevel/cats-core_2.12/1.0.1/cats-core_2.12-1.0.1.jar" + }, + { + "coord": "org.typelevel:cats-core_2.12:jar:sources:1.0.1", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "org.typelevel:machinist_2.12:jar:sources:0.6.2" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "org.typelevel:machinist_2.12:jar:sources:0.6.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/typelevel/cats-core_2.12/1.0.1/cats-core_2.12-1.0.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/typelevel/cats-core_2.12/1.0.1/cats-core_2.12-1.0.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/typelevel/cats-core_2.12/1.0.1/cats-core_2.12-1.0.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/typelevel/cats-core_2.12/1.0.1/cats-core_2.12-1.0.1-sources.jar" + ], + "sha256": "343630226130389da2a040c1ee16fc1e0c4be625b19b2591763e0d20236a3b9f", + "url": "https://repo.maven.apache.org/maven2/org/typelevel/cats-core_2.12/1.0.1/cats-core_2.12-1.0.1-sources.jar" + }, + { + "coord": "org.typelevel:cats-kernel_2.12:1.0.1", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/typelevel/cats-kernel_2.12/1.0.1/cats-kernel_2.12-1.0.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/typelevel/cats-kernel_2.12/1.0.1/cats-kernel_2.12-1.0.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/typelevel/cats-kernel_2.12/1.0.1/cats-kernel_2.12-1.0.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/typelevel/cats-kernel_2.12/1.0.1/cats-kernel_2.12-1.0.1.jar" + ], + "sha256": "d87025b6fb7f403d767f6fa726c1626c9c713927bdc6b2a58ac07a32fec7490d", + "url": "https://repo.maven.apache.org/maven2/org/typelevel/cats-kernel_2.12/1.0.1/cats-kernel_2.12-1.0.1.jar" + }, + { + "coord": "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/typelevel/cats-kernel_2.12/1.0.1/cats-kernel_2.12-1.0.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/typelevel/cats-kernel_2.12/1.0.1/cats-kernel_2.12-1.0.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/typelevel/cats-kernel_2.12/1.0.1/cats-kernel_2.12-1.0.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/typelevel/cats-kernel_2.12/1.0.1/cats-kernel_2.12-1.0.1-sources.jar" + ], + "sha256": "4cfb3519fc4c7c6da339c614704cee1a9fa89357821ad9626b662dc7b5b963b9", + "url": "https://repo.maven.apache.org/maven2/org/typelevel/cats-kernel_2.12/1.0.1/cats-kernel_2.12-1.0.1-sources.jar" + }, + { + "coord": "org.typelevel:cats-macros_2.12:1.0.1", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.typelevel:machinist_2.12:0.6.2" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.typelevel:machinist_2.12:0.6.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/typelevel/cats-macros_2.12/1.0.1/cats-macros_2.12-1.0.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/typelevel/cats-macros_2.12/1.0.1/cats-macros_2.12-1.0.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/typelevel/cats-macros_2.12/1.0.1/cats-macros_2.12-1.0.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/typelevel/cats-macros_2.12/1.0.1/cats-macros_2.12-1.0.1.jar" + ], + "sha256": "c17a5625d9a203fa4676cb80ba22f65e68d18497945d24370bac9123ddc3da28", + "url": "https://repo.maven.apache.org/maven2/org/typelevel/cats-macros_2.12/1.0.1/cats-macros_2.12-1.0.1.jar" + }, + { + "coord": "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.typelevel:machinist_2.12:jar:sources:0.6.2" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.typelevel:machinist_2.12:jar:sources:0.6.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/typelevel/cats-macros_2.12/1.0.1/cats-macros_2.12-1.0.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/typelevel/cats-macros_2.12/1.0.1/cats-macros_2.12-1.0.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/typelevel/cats-macros_2.12/1.0.1/cats-macros_2.12-1.0.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/typelevel/cats-macros_2.12/1.0.1/cats-macros_2.12-1.0.1-sources.jar" + ], + "sha256": "456b745024e4836a78967f9edb9e5db09a7af352ad161b44188960be90d22702", + "url": "https://repo.maven.apache.org/maven2/org/typelevel/cats-macros_2.12/1.0.1/cats-macros_2.12-1.0.1-sources.jar" + }, + { + "coord": "org.typelevel:machinist_2.12:0.6.2", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/typelevel/machinist_2.12/0.6.2/machinist_2.12-0.6.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/typelevel/machinist_2.12/0.6.2/machinist_2.12-0.6.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/typelevel/machinist_2.12/0.6.2/machinist_2.12-0.6.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/typelevel/machinist_2.12/0.6.2/machinist_2.12-0.6.2.jar" + ], + "sha256": "b7e97638fa25ba02414b9b8387e9ecc2ea2fce4c9d9068ac3108ee5718b477a9", + "url": "https://repo.maven.apache.org/maven2/org/typelevel/machinist_2.12/0.6.2/machinist_2.12-0.6.2.jar" + }, + { + "coord": "org.typelevel:machinist_2.12:jar:sources:0.6.2", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/typelevel/machinist_2.12/0.6.2/machinist_2.12-0.6.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/typelevel/machinist_2.12/0.6.2/machinist_2.12-0.6.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/typelevel/machinist_2.12/0.6.2/machinist_2.12-0.6.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/typelevel/machinist_2.12/0.6.2/machinist_2.12-0.6.2-sources.jar" + ], + "sha256": "739d6899f54e3c958d853622aec7e5198a719a2906faa50199189b0289ebef83", + "url": "https://repo.maven.apache.org/maven2/org/typelevel/machinist_2.12/0.6.2/machinist_2.12-0.6.2-sources.jar" + }, + { + "coord": "org.typelevel:macro-compat_2.12:1.1.1", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/typelevel/macro-compat_2.12/1.1.1/macro-compat_2.12-1.1.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/typelevel/macro-compat_2.12/1.1.1/macro-compat_2.12-1.1.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/typelevel/macro-compat_2.12/1.1.1/macro-compat_2.12-1.1.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/typelevel/macro-compat_2.12/1.1.1/macro-compat_2.12-1.1.1.jar" + ], + "sha256": "8b1514ec99ac9c7eded284367b6c9f8f17a097198a44e6f24488706d66bbd2b8", + "url": "https://repo.maven.apache.org/maven2/org/typelevel/macro-compat_2.12/1.1.1/macro-compat_2.12-1.1.1.jar" + }, + { + "coord": "org.typelevel:macro-compat_2.12:jar:sources:1.1.1", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/typelevel/macro-compat_2.12/1.1.1/macro-compat_2.12-1.1.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/typelevel/macro-compat_2.12/1.1.1/macro-compat_2.12-1.1.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/typelevel/macro-compat_2.12/1.1.1/macro-compat_2.12-1.1.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/typelevel/macro-compat_2.12/1.1.1/macro-compat_2.12-1.1.1-sources.jar" + ], + "sha256": "c748cbcda2e8828dd25e788617a4c559abf92960ef0f92f9f5d3ea67774c34c8", + "url": "https://repo.maven.apache.org/maven2/org/typelevel/macro-compat_2.12/1.1.1/macro-compat_2.12-1.1.1-sources.jar" + } + ], + "version": "0.1.0" } - }, - "dependencies": { - "ch.epfl.scala:bloop-backend_2.12": [ - "ch.epfl.scala:nailgun-server", - "ch.epfl.scala:zinc_2.12", - "com.lihaoyi:sourcecode_2.12", - "io.get-coursier:coursier-cache_2.12", - "io.get-coursier:coursier-scalaz-interop_2.12", - "io.get-coursier:coursier_2.12", - "io.github.soc:directories", - "io.monix:monix_2.12", - "me.vican.jorge:directory-watcher-better-files_2.12", - "org.scala-lang:scala-library", - "org.scala-sbt:librarymanagement-ivy_2.12", - "org.scala-sbt:test-agent", - "org.scala-sbt:test-interface", - "org.scalaz:scalaz-concurrent_2.12", - "org.scalaz:scalaz-core_2.12" - ], - "ch.epfl.scala:bloop-config_2.12": [ - "io.circe:circe-derivation_2.12", - "io.circe:circe-parser_2.12", - "org.scala-lang:scala-library" - ], - "ch.epfl.scala:bloop-frontend_2.12": [ - "ch.epfl.scala:bloop-backend_2.12", - "ch.epfl.scala:bloop-config_2.12", - "ch.epfl.scala:bsp_2.12", - "ch.epfl.scala:case-app_2.12", - "com.zaxxer:nuprocess", - "io.monix:monix_2.12", - "org.scala-lang:scala-library", - "org.scalaz:scalaz-core_2.12" - ], - "ch.epfl.scala:bsp_2.12": [ - "io.circe:circe-core_2.12", - "org.scala-lang:scala-library", - "org.scalameta:lsp4s_2.12" - ], - "ch.epfl.scala:case-app-annotations_2.12": [ - "org.scala-lang:scala-library" - ], - "ch.epfl.scala:case-app-util_2.12": [ - "com.chuusai:shapeless_2.12", - "org.scala-lang:scala-library", - "org.typelevel:macro-compat_2.12" - ], - "ch.epfl.scala:case-app_2.12": [ - "ch.epfl.scala:case-app-annotations_2.12", - "ch.epfl.scala:case-app-util_2.12", - "org.scala-lang:scala-library" - ], - "ch.epfl.scala:compiler-interface": [ - "org.scala-sbt:util-interface" - ], - "ch.epfl.scala:nailgun-server": [ - "net.java.dev.jna:jna", - "net.java.dev.jna:jna-platform", - "org.scala-lang:scala-library" - ], - "ch.epfl.scala:zinc-apiinfo_2.12": [ - "ch.epfl.scala:compiler-interface", - "ch.epfl.scala:zinc-classfile_2.12", - "org.scala-lang:scala-library" - ], - "ch.epfl.scala:zinc-classfile_2.12": [ - "ch.epfl.scala:compiler-interface", - "org.scala-lang:scala-library", - "org.scala-sbt:io_2.12", - "org.scala-sbt:util-logging_2.12" - ], - "ch.epfl.scala:zinc-classpath_2.12": [ - "ch.epfl.scala:compiler-interface", - "org.scala-lang:scala-compiler", - "org.scala-lang:scala-library", - "org.scala-sbt:io_2.12", - "org.scala-sbt:launcher-interface" - ], - "ch.epfl.scala:zinc-compile-core_2.12": [ - "ch.epfl.scala:compiler-interface", - "ch.epfl.scala:zinc-apiinfo_2.12", - "ch.epfl.scala:zinc-classfile_2.12", - "ch.epfl.scala:zinc-classpath_2.12", - "org.scala-lang.modules:scala-parser-combinators_2.12", - "org.scala-lang:scala-library", - "org.scala-sbt:io_2.12", - "org.scala-sbt:launcher-interface", - "org.scala-sbt:util-control_2.12", - "org.scala-sbt:util-logging_2.12" - ], - "ch.epfl.scala:zinc-core_2.12": [ - "ch.epfl.scala:compiler-interface", - "ch.epfl.scala:zinc-apiinfo_2.12", - "ch.epfl.scala:zinc-classpath_2.12", - "org.scala-lang:scala-library", - "org.scala-sbt:io_2.12", - "org.scala-sbt:util-logging_2.12", - "org.scala-sbt:util-relation_2.12" - ], - "ch.epfl.scala:zinc-ivy-integration_2.12": [ - "ch.epfl.scala:zinc-compile-core_2.12", - "org.scala-lang:scala-library", - "org.scala-sbt:librarymanagement-core_2.12" - ], - "ch.epfl.scala:zinc-persist_2.12": [ - "ch.epfl.scala:zinc-core_2.12", - "com.trueaccord.scalapb:scalapb-runtime_2.12", - "org.scala-lang:scala-library", - "org.scala-sbt:sbinary_2.12" - ], - "ch.epfl.scala:zinc_2.12": [ - "ch.epfl.scala:zinc-classfile_2.12", - "ch.epfl.scala:zinc-compile-core_2.12", - "ch.epfl.scala:zinc-core_2.12", - "ch.epfl.scala:zinc-ivy-integration_2.12", - "ch.epfl.scala:zinc-persist_2.12", - "org.scala-lang:scala-library" - ], - "ch.qos.logback:logback-classic": [ - "ch.qos.logback:logback-core", - "org.slf4j:slf4j-api" - ], - "com.beachape:enumeratum-circe_2.12": [ - "com.beachape:enumeratum_2.12", - "io.circe:circe-core_2.12", - "org.scala-lang:scala-library" - ], - "com.beachape:enumeratum-macros_2.12": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect" - ], - "com.beachape:enumeratum_2.12": [ - "com.beachape:enumeratum-macros_2.12", - "org.scala-lang:scala-library" - ], - "com.chuusai:shapeless_2.12": [ - "org.scala-lang:scala-library", - "org.typelevel:macro-compat_2.12" - ], - "com.eed3si9n:gigahorse-core_2.12": [ - "com.typesafe:ssl-config-core_2.12", - "org.reactivestreams:reactive-streams", - "org.scala-lang:scala-library", - "org.slf4j:slf4j-api" - ], - "com.eed3si9n:gigahorse-okhttp_2.12": [ - "com.eed3si9n:gigahorse-core_2.12", - "com.squareup.okhttp3:okhttp", - "org.scala-lang:scala-library" - ], - "com.eed3si9n:shaded-jawn-parser_2.13": [ - "org.scala-lang:scala-library" - ], - "com.eed3si9n:shaded-scalajson_2.12": [ - "org.scala-lang:scala-library" - ], - "com.eed3si9n:shaded-scalajson_2.13": [ - "org.scala-lang:scala-library" - ], - "com.eed3si9n:sjson-new-core_2.12": [ - "org.scala-lang:scala-library" - ], - "com.eed3si9n:sjson-new-core_2.13": [ - "org.scala-lang:scala-library" - ], - "com.eed3si9n:sjson-new-murmurhash_2.12": [ - "com.eed3si9n:sjson-new-core_2.12", - "org.scala-lang:scala-library" - ], - "com.eed3si9n:sjson-new-scalajson_2.12": [ - "com.eed3si9n:shaded-scalajson_2.12", - "com.eed3si9n:sjson-new-core_2.12", - "org.scala-lang:scala-library", - "org.spire-math:jawn-parser_2.12" - ], - "com.eed3si9n:sjson-new-scalajson_2.13": [ - "com.eed3si9n:shaded-jawn-parser_2.13", - "com.eed3si9n:shaded-scalajson_2.13", - "com.eed3si9n:sjson-new-core_2.13", - "org.scala-lang:scala-library" - ], - "com.github.pathikrit:better-files_2.12": [ - "org.scala-lang:scala-library" - ], - "com.google.guava:guava": [ - "com.google.code.findbugs:jsr305", - "com.google.errorprone:error_prone_annotations", - "com.google.j2objc:j2objc-annotations", - "org.codehaus.mojo:animal-sniffer-annotations" - ], - "com.lihaoyi:fansi_2.12": [ - "com.lihaoyi:sourcecode_2.12", - "org.scala-lang:scala-library" - ], - "com.lihaoyi:fastparse-utils_2.12": [ - "com.lihaoyi:sourcecode_2.12", - "org.scala-lang:scala-library" - ], - "com.lihaoyi:fastparse_2.12": [ - "com.lihaoyi:fastparse-utils_2.12", - "com.lihaoyi:sourcecode_2.12", - "org.scala-lang:scala-library" - ], - "com.lihaoyi:pprint_2.12": [ - "com.lihaoyi:fansi_2.12", - "com.lihaoyi:sourcecode_2.12", - "org.scala-lang:scala-library" - ], - "com.lihaoyi:sourcecode_2.12": [ - "org.scala-lang:scala-library" - ], - "com.squareup.okhttp3:okhttp": [ - "com.squareup.okio:okio" - ], - "com.squareup.okhttp3:okhttp-urlconnection": [ - "com.squareup.okhttp3:okhttp" - ], - "com.thesamet.scalapb:lenses_2.13": [ - "org.scala-lang.modules:scala-collection-compat_2.13", - "org.scala-lang:scala-library" - ], - "com.thesamet.scalapb:scalapb-runtime_2.13": [ - "com.google.protobuf:protobuf-java", - "com.thesamet.scalapb:lenses_2.13", - "org.scala-lang.modules:scala-collection-compat_2.13", - "org.scala-lang:scala-library" - ], - "com.trueaccord.lenses:lenses_2.12": [ - "org.scala-lang:scala-library" - ], - "com.trueaccord.scalapb:scalapb-runtime_2.12": [ - "com.google.protobuf:protobuf-java", - "com.lihaoyi:fastparse_2.12", - "com.trueaccord.lenses:lenses_2.12", - "org.scala-lang:scala-library" - ], - "com.typesafe.scala-logging:scala-logging_2.12": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.slf4j:slf4j-api" - ], - "com.typesafe:ssl-config-core_2.12": [ - "com.typesafe:config", - "org.scala-lang.modules:scala-parser-combinators_2.12", - "org.scala-lang:scala-library" - ], - "com.zaxxer:nuprocess": [ - "net.java.dev.jna:jna" - ], - "io.circe:circe-core_2.12": [ - "io.circe:circe-numbers_2.12", - "org.scala-lang:scala-library", - "org.typelevel:cats-core_2.12" - ], - "io.circe:circe-derivation_2.12": [ - "io.circe:circe-core_2.12", - "org.scala-lang:scala-library" - ], - "io.circe:circe-generic-extras_2.12": [ - "io.circe:circe-generic_2.12", - "org.scala-lang:scala-library", - "org.typelevel:macro-compat_2.12" - ], - "io.circe:circe-generic_2.12": [ - "com.chuusai:shapeless_2.12", - "io.circe:circe-core_2.12", - "org.scala-lang:scala-library", - "org.typelevel:macro-compat_2.12" - ], - "io.circe:circe-jawn_2.12": [ - "io.circe:circe-core_2.12", - "org.scala-lang:scala-library", - "org.spire-math:jawn-parser_2.12" - ], - "io.circe:circe-numbers_2.12": [ - "org.scala-lang:scala-library" - ], - "io.circe:circe-parser_2.12": [ - "io.circe:circe-core_2.12", - "io.circe:circe-jawn_2.12", - "org.scala-lang:scala-library" - ], - "io.get-coursier:coursier-cache_2.12": [ - "io.get-coursier:coursier_2.12", - "org.scala-lang:scala-library" - ], - "io.get-coursier:coursier-scalaz-interop_2.12": [ - "io.get-coursier:coursier-cache_2.12", - "org.scala-lang:scala-library", - "org.scalaz:scalaz-concurrent_2.12" - ], - "io.get-coursier:coursier_2.12": [ - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang:scala-library" - ], - "io.monix:monix-eval_2.12": [ - "io.monix:monix-execution_2.12", - "io.monix:monix-types_2.12", - "org.scala-lang:scala-library" - ], - "io.monix:monix-execution_2.12": [ - "org.reactivestreams:reactive-streams", - "org.scala-lang:scala-library" - ], - "io.monix:monix-reactive_2.12": [ - "io.monix:monix-eval_2.12", - "io.monix:monix-execution_2.12", - "io.monix:monix-types_2.12", - "org.jctools:jctools-core", - "org.scala-lang:scala-library" - ], - "io.monix:monix-types_2.12": [ - "org.scala-lang:scala-library" - ], - "io.monix:monix_2.12": [ - "io.monix:monix-eval_2.12", - "io.monix:monix-execution_2.12", - "io.monix:monix-reactive_2.12", - "io.monix:monix-types_2.12", - "org.scala-lang:scala-library" - ], - "me.vican.jorge:directory-watcher": [ - "com.google.guava:guava", - "net.java.dev.jna:jna", - "org.slf4j:slf4j-api" - ], - "me.vican.jorge:directory-watcher-better-files_2.12": [ - "com.github.pathikrit:better-files_2.12", - "me.vican.jorge:directory-watcher", - "org.scala-lang:scala-library" - ], - "net.java.dev.jna:jna-platform": [ - "net.java.dev.jna:jna" - ], - "org.apache.logging.log4j:log4j-core": [ - "org.apache.logging.log4j:log4j-api" - ], - "org.jacoco:org.jacoco.core": [ - "org.ow2.asm:asm-debug-all" - ], - "org.jline:jline-terminal-jansi": [ - "org.fusesource.jansi:jansi", - "org.jline:jline-terminal" - ], - "org.jline:jline-terminal-jna": [ - "net.java.dev.jna:jna", - "org.jline:jline-terminal" - ], - "org.scala-lang.modules:scala-collection-compat_2.13": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang.modules:scala-parallel-collections_2.13": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang.modules:scala-parser-combinators_2.12": [ - "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.12": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang.modules:scala-xml_2.13": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang:scala-compiler": [ - "io.github.java-diff-utils:java-diff-utils", - "net.java.dev.jna:jna", - "org.jline:jline", - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect" - ], - "org.scala-lang:scala-reflect": [ - "org.scala-lang:scala-library" - ], - "org.scala-sbt.jline:jline": [ - "org.fusesource.jansi:jansi" - ], - "org.scala-sbt:collections_2.13": [ - "com.eed3si9n:sjson-new-scalajson_2.13", - "org.scala-lang.modules:scala-parallel-collections_2.13", - "org.scala-lang:scala-library", - "org.scala-sbt:util-position_2.13" - ], - "org.scala-sbt:compiler-bridge_2.13": [ - "org.scala-sbt:compiler-interface" - ], - "org.scala-sbt:compiler-interface": [ - "org.scala-sbt:util-interface" - ], - "org.scala-sbt:core-macros_2.13": [ - "org.scala-lang:scala-compiler", - "org.scala-lang:scala-library", - "org.scala-sbt:collections_2.13" - ], - "org.scala-sbt:io_2.12": [ - "net.java.dev.jna:jna", - "net.java.dev.jna:jna-platform", - "org.scala-lang:scala-library" - ], - "org.scala-sbt:io_2.13": [ - "com.swoval:file-tree-views", - "net.java.dev.jna:jna", - "net.java.dev.jna:jna-platform", - "org.scala-lang:scala-library" - ], - "org.scala-sbt:librarymanagement-core_2.12": [ - "com.eed3si9n:gigahorse-okhttp_2.12", - "com.eed3si9n:sjson-new-core_2.12", - "com.jcraft:jsch", - "com.squareup.okhttp3:okhttp-urlconnection", - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang:scala-compiler", - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scala-sbt:io_2.12", - "org.scala-sbt:launcher-interface", - "org.scala-sbt:util-cache_2.12", - "org.scala-sbt:util-logging_2.12", - "org.scala-sbt:util-position_2.12" - ], - "org.scala-sbt:librarymanagement-ivy_2.12": [ - "com.eed3si9n:sjson-new-core_2.12", - "org.scala-lang:scala-library", - "org.scala-sbt.ivy:ivy", - "org.scala-sbt:librarymanagement-core_2.12" - ], - "org.scala-sbt:sbinary_2.12": [ - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang:scala-library" - ], - "org.scala-sbt:sbinary_2.13": [ - "org.scala-lang:scala-library" - ], - "org.scala-sbt:test-agent": [ - "org.scala-sbt:test-interface" - ], - "org.scala-sbt:util-cache_2.12": [ - "com.eed3si9n:sjson-new-murmurhash_2.12", - "com.eed3si9n:sjson-new-scalajson_2.12", - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scala-sbt:io_2.12" - ], - "org.scala-sbt:util-control_2.12": [ - "org.scala-lang:scala-library" - ], - "org.scala-sbt:util-control_2.13": [ - "org.scala-lang:scala-library" - ], - "org.scala-sbt:util-logging_2.12": [ - "com.eed3si9n:sjson-new-core_2.12", - "com.eed3si9n:sjson-new-scalajson_2.12", - "com.lmax:disruptor", - "jline:jline", - "org.apache.logging.log4j:log4j-api", - "org.apache.logging.log4j:log4j-core", - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scala-sbt:util-interface" - ], - "org.scala-sbt:util-logging_2.13": [ - "com.eed3si9n:sjson-new-core_2.13", - "com.eed3si9n:sjson-new-scalajson_2.13", - "com.lmax:disruptor", - "org.apache.logging.log4j:log4j-api", - "org.apache.logging.log4j:log4j-core", - "org.jline:jline-terminal", - "org.jline:jline-terminal-jansi", - "org.jline:jline-terminal-jna", - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scala-sbt.jline:jline", - "org.scala-sbt:collections_2.13", - "org.scala-sbt:core-macros_2.13", - "org.scala-sbt:io_2.13", - "org.scala-sbt:util-interface" - ], - "org.scala-sbt:util-position_2.12": [ - "org.scala-lang:scala-library" - ], - "org.scala-sbt:util-position_2.13": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect" - ], - "org.scala-sbt:util-relation_2.12": [ - "org.scala-lang:scala-library" - ], - "org.scala-sbt:util-relation_2.13": [ - "org.scala-lang:scala-library" - ], - "org.scala-sbt:zinc-apiinfo_2.13": [ - "org.scala-lang:scala-library", - "org.scala-sbt:compiler-bridge_2.13", - "org.scala-sbt:compiler-interface", - "org.scala-sbt:zinc-classfile_2.13" - ], - "org.scala-sbt:zinc-classfile_2.13": [ - "org.scala-lang:scala-library", - "org.scala-sbt:compiler-interface", - "org.scala-sbt:io_2.13", - "org.scala-sbt:util-logging_2.13" - ], - "org.scala-sbt:zinc-classpath_2.13": [ - "org.scala-lang:scala-compiler", - "org.scala-lang:scala-library", - "org.scala-sbt:compiler-interface", - "org.scala-sbt:io_2.13", - "org.scala-sbt:launcher-interface" - ], - "org.scala-sbt:zinc-compile-core_2.13": [ - "net.openhft:zero-allocation-hashing", - "org.scala-lang.modules:scala-parser-combinators_2.13", - "org.scala-lang:scala-library", - "org.scala-sbt:compiler-interface", - "org.scala-sbt:io_2.13", - "org.scala-sbt:launcher-interface", - "org.scala-sbt:util-control_2.13", - "org.scala-sbt:util-logging_2.13", - "org.scala-sbt:zinc-apiinfo_2.13", - "org.scala-sbt:zinc-classfile_2.13", - "org.scala-sbt:zinc-classpath_2.13" - ], - "org.scala-sbt:zinc-core_2.13": [ - "org.scala-lang.modules:scala-parallel-collections_2.13", - "org.scala-lang:scala-library", - "org.scala-sbt:compiler-interface", - "org.scala-sbt:io_2.13", - "org.scala-sbt:util-logging_2.13", - "org.scala-sbt:util-relation_2.13", - "org.scala-sbt:zinc-apiinfo_2.13", - "org.scala-sbt:zinc-classpath_2.13", - "org.scala-sbt:zinc-compile-core_2.13", - "org.scala-sbt:zinc-persist-core-assembly" - ], - "org.scala-sbt:zinc-persist_2.13": [ - "org.scala-lang.modules:scala-xml_2.13", - "org.scala-lang:scala-library", - "org.scala-sbt:sbinary_2.13", - "org.scala-sbt:zinc-compile-core_2.13", - "org.scala-sbt:zinc-core_2.13", - "org.scala-sbt:zinc-persist-core-assembly" - ], - "org.scala-sbt:zinc_2.13": [ - "org.scala-lang:scala-library", - "org.scala-sbt:zinc-classfile_2.13", - "org.scala-sbt:zinc-compile-core_2.13", - "org.scala-sbt:zinc-core_2.13", - "org.scala-sbt:zinc-persist_2.13" - ], - "org.scalameta:jsonrpc_2.12": [ - "ch.qos.logback:logback-classic", - "com.beachape:enumeratum-circe_2.12", - "com.beachape:enumeratum_2.12", - "com.lihaoyi:pprint_2.12", - "com.typesafe.scala-logging:scala-logging_2.12", - "io.circe:circe-core_2.12", - "io.circe:circe-generic-extras_2.12", - "io.circe:circe-generic_2.12", - "io.circe:circe-parser_2.12", - "io.monix:monix_2.12", - "org.codehaus.groovy:groovy", - "org.scala-lang:scala-library", - "org.slf4j:slf4j-api", - "org.typelevel:cats-core_2.12" - ], - "org.scalameta:lsp4s_2.12": [ - "org.scala-lang:scala-library", - "org.scalameta:jsonrpc_2.12" - ], - "org.scalaz:scalaz-concurrent_2.12": [ - "org.scala-lang:scala-library", - "org.scalaz:scalaz-core_2.12", - "org.scalaz:scalaz-effect_2.12" - ], - "org.scalaz:scalaz-core_2.12": [ - "org.scala-lang:scala-library" - ], - "org.scalaz:scalaz-effect_2.12": [ - "org.scala-lang:scala-library", - "org.scalaz:scalaz-core_2.12" - ], - "org.spire-math:jawn-parser_2.12": [ - "org.scala-lang:scala-library" - ], - "org.typelevel:cats-core_2.12": [ - "org.scala-lang:scala-library", - "org.typelevel:cats-kernel_2.12", - "org.typelevel:cats-macros_2.12", - "org.typelevel:machinist_2.12" - ], - "org.typelevel:cats-kernel_2.12": [ - "org.scala-lang:scala-library" - ], - "org.typelevel:cats-macros_2.12": [ - "org.scala-lang:scala-library", - "org.typelevel:machinist_2.12" - ], - "org.typelevel:machinist_2.12": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect" - ], - "org.typelevel:macro-compat_2.12": [ - "org.scala-lang:scala-library" - ] - }, - "skipped": [ - "com.google.code.findbugs:jsr305:jar:sources" - ], - "packages": { - "ch.epfl.scala:bloop-backend_2.12": [ - "bloop", - "bloop.internal", - "bloop.internal.build", - "bloop.io", - "bloop.logging", - "bloop.reporter", - "sbt.internal.inc.bloop" - ], - "ch.epfl.scala:bloop-config_2.12": [ - "bloop.config" - ], - "ch.epfl.scala:bloop-frontend_2.12": [ - "bloop", - "bloop.bsp", - "bloop.cli", - "bloop.cli.completion", - "bloop.cli.validation", - "bloop.engine", - "bloop.engine.caches", - "bloop.engine.tasks", - "bloop.exec", - "bloop.internal.build", - "bloop.io", - "bloop.logging", - "bloop.monix", - "bloop.reporter", - "bloop.testing", - "bloop.util", - "sbt" - ], - "ch.epfl.scala:bsp_2.12": [ - "ch.epfl.scala.bsp", - "ch.epfl.scala.bsp.endpoints" - ], - "ch.epfl.scala:case-app-annotations_2.12": [ - "caseapp" - ], - "ch.epfl.scala:case-app-util_2.12": [ - "caseapp.util" - ], - "ch.epfl.scala:case-app_2.12": [ - "caseapp", - "caseapp.core", - "caseapp.core.util" - ], - "ch.epfl.scala:compiler-interface": [ - "xsbti", - "xsbti.api", - "xsbti.compile", - "xsbti.compile.analysis" - ], - "ch.epfl.scala:nailgun-server": [ - "com.martiansoftware.nailgun", - "com.martiansoftware.nailgun.builtins", - "com.martiansoftware.nailgun.examples" - ], - "ch.epfl.scala:zinc-apiinfo_2.12": [ - "sbt.internal.inc", - "xsbt.api", - "xsbti.api" - ], - "ch.epfl.scala:zinc-classfile_2.12": [ - "sbt.internal.inc.classfile" - ], - "ch.epfl.scala:zinc-classpath_2.12": [ - "sbt.internal.inc", - "sbt.internal.inc.classpath" - ], - "ch.epfl.scala:zinc-compile-core_2.12": [ - "sbt.internal.inc", - "sbt.internal.inc.javac", - "xsbti", - "xsbti.compile" - ], - "ch.epfl.scala:zinc-core_2.12": [ - "sbt.internal.inc", - "xsbti.compile" - ], - "ch.epfl.scala:zinc-ivy-integration_2.12": [ - "sbt.internal.inc", - "xsbti.compile" - ], - "ch.epfl.scala:zinc-persist_2.12": [ - "sbt.internal.inc", - "sbt.internal.inc.binary", - "sbt.internal.inc.binary.converters", - "sbt.internal.inc.cached", - "sbt.internal.inc.mappers", - "sbt.internal.inc.schema", - "sbt.internal.inc.text", - "xsbti.api", - "xsbti.compile", - "xsbti.compile.analysis" - ], - "ch.epfl.scala:zinc_2.12": [ - "sbt.internal.inc", - "sbt.internal.inc.caching", - "sbt.internal.inc.javac", - "xsbti.compile" - ], - "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.beachape:enumeratum-circe_2.12": [ - "enumeratum", - "enumeratum.values" - ], - "com.beachape:enumeratum-macros_2.12": [ - "enumeratum" - ], - "com.beachape:enumeratum_2.12": [ - "enumeratum", - "enumeratum.values" - ], - "com.chuusai:shapeless_2.12": [ - "shapeless", - "shapeless.ops", - "shapeless.ops.record", - "shapeless.syntax", - "shapeless.syntax.std", - "shapeless.test" - ], - "com.eed3si9n:gigahorse-core_2.12": [ - "gigahorse" - ], - "com.eed3si9n:gigahorse-okhttp_2.12": [ - "gigahorse.support.okhttp" - ], - "com.eed3si9n:shaded-jawn-parser_2.13": [ - "sjsonnew.shaded.org.typelevel.jawn" - ], - "com.eed3si9n:shaded-scalajson_2.12": [ - "sjsonnew.shaded.scalajson.ast", - "sjsonnew.shaded.scalajson.ast.unsafe" - ], - "com.eed3si9n:shaded-scalajson_2.13": [ - "sjsonnew.shaded.scalajson.ast", - "sjsonnew.shaded.scalajson.ast.unsafe" - ], - "com.eed3si9n:sjson-new-core_2.12": [ - "sjsonnew" - ], - "com.eed3si9n:sjson-new-core_2.13": [ - "sjsonnew" - ], - "com.eed3si9n:sjson-new-murmurhash_2.12": [ - "sjsonnew.support.murmurhash" - ], - "com.eed3si9n:sjson-new-scalajson_2.12": [ - "sjsonnew.support.scalajson.unsafe" - ], - "com.eed3si9n:sjson-new-scalajson_2.13": [ - "sjsonnew.support.scalajson.unsafe" - ], - "com.github.pathikrit:better-files_2.12": [ - "better.files" - ], - "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: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.j2objc:j2objc-annotations": [ - "com.google.j2objc.annotations" - ], - "com.google.protobuf:protobuf-java": [ - "com.google.protobuf", - "com.google.protobuf.compiler" - ], - "com.jcraft:jsch": [ - "com.jcraft.jsch", - "com.jcraft.jsch.jce", - "com.jcraft.jsch.jcraft", - "com.jcraft.jsch.jgss" - ], - "com.lihaoyi:fansi_2.12": [ - "fansi" - ], - "com.lihaoyi:fastparse-utils_2.12": [ - "fastparse.utils" - ], - "com.lihaoyi:fastparse_2.12": [ - "fastparse", - "fastparse.core", - "fastparse.parsers" - ], - "com.lihaoyi:pprint_2.12": [ - "pprint" - ], - "com.lihaoyi:sourcecode_2.12": [ - "sourcecode" - ], - "com.lihaoyi:sourcecode_2.13": [ - "sourcecode" - ], - "com.lmax:disruptor": [ - "com.lmax.disruptor", - "com.lmax.disruptor.dsl", - "com.lmax.disruptor.util" - ], - "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.okhttp3:okhttp-urlconnection": [ - "okhttp3", - "okhttp3.internal", - "okhttp3.internal.huc" - ], - "com.squareup.okio:okio": [ - "okio" - ], - "com.swoval:file-tree-views": [ - "com.swoval.concurrent", - "com.swoval.files", - "com.swoval.files.apple", - "com.swoval.functional", - "com.swoval.logging", - "com.swoval.runtime" - ], - "com.thesamet.scalapb:lenses_2.13": [ - "scalapb.lenses" - ], - "com.thesamet.scalapb:scalapb-runtime_2.13": [ - "com.google.protobuf.any", - "com.google.protobuf.api", - "com.google.protobuf.compiler.plugin", - "com.google.protobuf.descriptor", - "com.google.protobuf.duration", - "com.google.protobuf.empty", - "com.google.protobuf.field_mask", - "com.google.protobuf.source_context", - "com.google.protobuf.struct", - "com.google.protobuf.timestamp", - "com.google.protobuf.type", - "com.google.protobuf.wrappers", - "scalapb", - "scalapb.descriptors", - "scalapb.internal", - "scalapb.options", - "scalapb.textformat" - ], - "com.trueaccord.lenses:lenses_2.12": [ - "com.trueaccord.lenses" - ], - "com.trueaccord.scalapb:scalapb-runtime_2.12": [ - "com.google.protobuf.any", - "com.google.protobuf.api", - "com.google.protobuf.compiler.plugin", - "com.google.protobuf.descriptor", - "com.google.protobuf.duration", - "com.google.protobuf.empty", - "com.google.protobuf.field_mask", - "com.google.protobuf.source_context", - "com.google.protobuf.struct", - "com.google.protobuf.timestamp", - "com.google.protobuf.type", - "com.google.protobuf.wrappers", - "com.trueaccord.scalapb", - "com.trueaccord.scalapb.scalapb", - "com.trueaccord.scalapb.textformat", - "scalapb", - "scalapb.descriptors" - ], - "com.typesafe.scala-logging:scala-logging_2.12": [ - "com.typesafe.scalalogging" - ], - "com.typesafe:config": [ - "com.typesafe.config", - "com.typesafe.config.impl" - ], - "com.typesafe:ssl-config-core_2.12": [ - "com.typesafe.sslconfig", - "com.typesafe.sslconfig.ssl", - "com.typesafe.sslconfig.ssl.debug", - "com.typesafe.sslconfig.util" - ], - "com.zaxxer:nuprocess": [ - "com.zaxxer.nuprocess", - "com.zaxxer.nuprocess.codec", - "com.zaxxer.nuprocess.internal", - "com.zaxxer.nuprocess.linux", - "com.zaxxer.nuprocess.osx", - "com.zaxxer.nuprocess.windows" - ], - "io.circe:circe-core_2.12": [ - "io.circe", - "io.circe.cursor", - "io.circe.export", - "io.circe.syntax" - ], - "io.circe:circe-derivation_2.12": [ - "io.circe.derivation", - "io.circe.derivation.renaming" - ], - "io.circe:circe-generic-extras_2.12": [ - "io.circe.generic.extras", - "io.circe.generic.extras.auto", - "io.circe.generic.extras.decoding", - "io.circe.generic.extras.encoding", - "io.circe.generic.extras.util" - ], - "io.circe:circe-generic_2.12": [ - "io.circe.generic", - "io.circe.generic.auto", - "io.circe.generic.decoding", - "io.circe.generic.encoding", - "io.circe.generic.util", - "io.circe.generic.util.macros" - ], - "io.circe:circe-jawn_2.12": [ - "io.circe.jawn" - ], - "io.circe:circe-numbers_2.12": [ - "io.circe.numbers" - ], - "io.circe:circe-parser_2.12": [ - "io.circe.parser" - ], - "io.get-coursier:coursier-cache_2.12": [ - "coursier", - "coursier.internal", - "coursier.util", - "io.github.soc.directories" - ], - "io.get-coursier:coursier-scalaz-interop_2.12": [ - "coursier.interop" - ], - "io.get-coursier:coursier_2.12": [ - "coursier", - "coursier.core", - "coursier.core.compatibility", - "coursier.ivy", - "coursier.maven", - "coursier.shaded.fastparse", - "coursier.shaded.fastparse.core", - "coursier.shaded.fastparse.parsers", - "coursier.shaded.fastparse.utils", - "coursier.shaded.org.jsoup", - "coursier.shaded.org.jsoup.examples", - "coursier.shaded.org.jsoup.helper", - "coursier.shaded.org.jsoup.internal", - "coursier.shaded.org.jsoup.nodes", - "coursier.shaded.org.jsoup.parser", - "coursier.shaded.org.jsoup.safety", - "coursier.shaded.org.jsoup.select", - "coursier.shaded.sourcecode", - "coursier.util" - ], - "io.github.java-diff-utils:java-diff-utils": [ - "com.github.difflib", - "com.github.difflib.algorithm", - "com.github.difflib.algorithm.myers", - "com.github.difflib.patch", - "com.github.difflib.text", - "com.github.difflib.unifieddiff" - ], - "io.github.soc:directories": [ - "io.github.soc.directories" - ], - "io.monix:monix-eval_2.12": [ - "monix.eval", - "monix.eval.internal" - ], - "io.monix:monix-execution_2.12": [ - "monix.execution", - "monix.execution.atomic", - "monix.execution.cancelables", - "monix.execution.exceptions", - "monix.execution.internal", - "monix.execution.internal.collection", - "monix.execution.internal.forkJoin", - "monix.execution.internals.atomic", - "monix.execution.misc", - "monix.execution.misc.test", - "monix.execution.rstreams", - "monix.execution.schedulers" - ], - "io.monix:monix-reactive_2.12": [ - "monix.reactive", - "monix.reactive.exceptions", - "monix.reactive.internal.builders", - "monix.reactive.internal.consumers", - "monix.reactive.internal.operators", - "monix.reactive.internal.rstreams", - "monix.reactive.internal.subscribers", - "monix.reactive.internal.util", - "monix.reactive.observables", - "monix.reactive.observers", - "monix.reactive.observers.buffers", - "monix.reactive.subjects" - ], - "io.monix:monix-types_2.12": [ - "monix.types", - "monix.types.utils" - ], - "io.monix:monix_2.12": [ - "monix" - ], - "jline:jline": [ - "jline", - "jline.console", - "jline.console.completer", - "jline.console.history", - "jline.console.internal", - "jline.internal", - "org.fusesource.hawtjni.runtime", - "org.fusesource.jansi", - "org.fusesource.jansi.internal" - ], - "me.vican.jorge:directory-watcher": [ - "io.methvin.watcher", - "io.methvin.watchservice", - "io.methvin.watchservice.jna" - ], - "me.vican.jorge:directory-watcher-better-files_2.12": [ - "io.methvin.better.files" - ], - "net.java.dev.jna:jna": [ - "com.sun.jna", - "com.sun.jna.internal", - "com.sun.jna.ptr", - "com.sun.jna.win32" - ], - "net.java.dev.jna:jna-platform": [ - "com.sun.jna.platform", - "com.sun.jna.platform.dnd", - "com.sun.jna.platform.linux", - "com.sun.jna.platform.mac", - "com.sun.jna.platform.unix", - "com.sun.jna.platform.unix.aix", - "com.sun.jna.platform.unix.solaris", - "com.sun.jna.platform.win32", - "com.sun.jna.platform.win32.COM", - "com.sun.jna.platform.win32.COM.tlb", - "com.sun.jna.platform.win32.COM.tlb.imp", - "com.sun.jna.platform.win32.COM.util", - "com.sun.jna.platform.win32.COM.util.annotation", - "com.sun.jna.platform.wince" - ], - "net.openhft:zero-allocation-hashing": [ - "net.openhft.hashing" - ], - "net.sourceforge.argparse4j:argparse4j": [ - "net.sourceforge.argparse4j", - "net.sourceforge.argparse4j.annotation", - "net.sourceforge.argparse4j.helper", - "net.sourceforge.argparse4j.impl", - "net.sourceforge.argparse4j.impl.action", - "net.sourceforge.argparse4j.impl.choice", - "net.sourceforge.argparse4j.impl.type", - "net.sourceforge.argparse4j.inf", - "net.sourceforge.argparse4j.internal" - ], - "org.apache.logging.log4j:log4j-api": [ - "org.apache.logging.log4j", - "org.apache.logging.log4j.internal", - "org.apache.logging.log4j.message", - "org.apache.logging.log4j.simple", - "org.apache.logging.log4j.spi", - "org.apache.logging.log4j.status", - "org.apache.logging.log4j.util", - "org.apache.logging.log4j.util.internal" - ], - "org.apache.logging.log4j:log4j-core": [ - "org.apache.logging.log4j.core", - "org.apache.logging.log4j.core.appender", - "org.apache.logging.log4j.core.appender.db", - "org.apache.logging.log4j.core.appender.db.jdbc", - "org.apache.logging.log4j.core.appender.mom", - "org.apache.logging.log4j.core.appender.mom.jeromq", - "org.apache.logging.log4j.core.appender.mom.kafka", - "org.apache.logging.log4j.core.appender.nosql", - "org.apache.logging.log4j.core.appender.rewrite", - "org.apache.logging.log4j.core.appender.rolling", - "org.apache.logging.log4j.core.appender.rolling.action", - "org.apache.logging.log4j.core.appender.routing", - "org.apache.logging.log4j.core.async", - "org.apache.logging.log4j.core.config", - "org.apache.logging.log4j.core.config.arbiters", - "org.apache.logging.log4j.core.config.builder.api", - "org.apache.logging.log4j.core.config.builder.impl", - "org.apache.logging.log4j.core.config.composite", - "org.apache.logging.log4j.core.config.json", - "org.apache.logging.log4j.core.config.plugins", - "org.apache.logging.log4j.core.config.plugins.convert", - "org.apache.logging.log4j.core.config.plugins.processor", - "org.apache.logging.log4j.core.config.plugins.util", - "org.apache.logging.log4j.core.config.plugins.validation", - "org.apache.logging.log4j.core.config.plugins.validation.constraints", - "org.apache.logging.log4j.core.config.plugins.validation.validators", - "org.apache.logging.log4j.core.config.plugins.visitors", - "org.apache.logging.log4j.core.config.properties", - "org.apache.logging.log4j.core.config.status", - "org.apache.logging.log4j.core.config.xml", - "org.apache.logging.log4j.core.config.yaml", - "org.apache.logging.log4j.core.filter", - "org.apache.logging.log4j.core.impl", - "org.apache.logging.log4j.core.jackson", - "org.apache.logging.log4j.core.jmx", - "org.apache.logging.log4j.core.layout", - "org.apache.logging.log4j.core.layout.internal", - "org.apache.logging.log4j.core.lookup", - "org.apache.logging.log4j.core.message", - "org.apache.logging.log4j.core.net", - "org.apache.logging.log4j.core.net.ssl", - "org.apache.logging.log4j.core.osgi", - "org.apache.logging.log4j.core.parser", - "org.apache.logging.log4j.core.pattern", - "org.apache.logging.log4j.core.script", - "org.apache.logging.log4j.core.selector", - "org.apache.logging.log4j.core.time", - "org.apache.logging.log4j.core.time.internal", - "org.apache.logging.log4j.core.tools", - "org.apache.logging.log4j.core.tools.picocli", - "org.apache.logging.log4j.core.util", - "org.apache.logging.log4j.core.util.datetime" - ], - "org.codehaus.groovy:groovy": [ - "groovy.beans", - "groovy.grape", - "groovy.inspect", - "groovy.io", - "groovy.lang", - "groovy.security", - "groovy.time", - "groovy.transform", - "groovy.transform.builder", - "groovy.transform.stc", - "groovy.ui", - "groovy.util", - "groovy.util.logging", - "groovy.xml", - "groovyjarjarantlr", - "groovyjarjarantlr.ASdebug", - "groovyjarjarantlr.actions.cpp", - "groovyjarjarantlr.actions.csharp", - "groovyjarjarantlr.actions.java", - "groovyjarjarantlr.actions.python", - "groovyjarjarantlr.build", - "groovyjarjarantlr.collections", - "groovyjarjarantlr.collections.impl", - "groovyjarjarantlr.debug", - "groovyjarjarantlr.debug.misc", - "groovyjarjarantlr.preprocessor", - "groovyjarjarasm.asm", - "groovyjarjarasm.asm.commons", - "groovyjarjarasm.asm.signature", - "groovyjarjarasm.asm.tree", - "groovyjarjarasm.asm.util", - "groovyjarjarcommonscli", - "org.codehaus.groovy", - "org.codehaus.groovy.antlr", - "org.codehaus.groovy.antlr.java", - "org.codehaus.groovy.antlr.parser", - "org.codehaus.groovy.antlr.treewalker", - "org.codehaus.groovy.ast", - "org.codehaus.groovy.ast.builder", - "org.codehaus.groovy.ast.expr", - "org.codehaus.groovy.ast.stmt", - "org.codehaus.groovy.ast.tools", - "org.codehaus.groovy.classgen", - "org.codehaus.groovy.classgen.asm", - "org.codehaus.groovy.classgen.asm.indy", - "org.codehaus.groovy.classgen.asm.sc", - "org.codehaus.groovy.cli", - "org.codehaus.groovy.control", - "org.codehaus.groovy.control.customizers", - "org.codehaus.groovy.control.customizers.builder", - "org.codehaus.groovy.control.io", - "org.codehaus.groovy.control.messages", - "org.codehaus.groovy.plugin", - "org.codehaus.groovy.reflection", - "org.codehaus.groovy.reflection.android", - "org.codehaus.groovy.reflection.stdclasses", - "org.codehaus.groovy.reflection.v7", - "org.codehaus.groovy.runtime", - "org.codehaus.groovy.runtime.callsite", - "org.codehaus.groovy.runtime.dgmimpl", - "org.codehaus.groovy.runtime.dgmimpl.arrays", - "org.codehaus.groovy.runtime.m12n", - "org.codehaus.groovy.runtime.memoize", - "org.codehaus.groovy.runtime.metaclass", - "org.codehaus.groovy.runtime.powerassert", - "org.codehaus.groovy.runtime.typehandling", - "org.codehaus.groovy.runtime.wrappers", - "org.codehaus.groovy.syntax", - "org.codehaus.groovy.tools", - "org.codehaus.groovy.tools.ast", - "org.codehaus.groovy.tools.gse", - "org.codehaus.groovy.tools.javac", - "org.codehaus.groovy.tools.shell", - "org.codehaus.groovy.tools.shell.util", - "org.codehaus.groovy.transform", - "org.codehaus.groovy.transform.sc", - "org.codehaus.groovy.transform.sc.transformers", - "org.codehaus.groovy.transform.stc", - "org.codehaus.groovy.transform.tailrec", - "org.codehaus.groovy.transform.trait", - "org.codehaus.groovy.util", - "org.codehaus.groovy.vmplugin", - "org.codehaus.groovy.vmplugin.v5", - "org.codehaus.groovy.vmplugin.v6", - "org.codehaus.groovy.vmplugin.v7" - ], - "org.codehaus.mojo:animal-sniffer-annotations": [ - "org.codehaus.mojo.animal_sniffer" - ], - "org.fusesource.jansi:jansi": [ - "org.fusesource.jansi", - "org.fusesource.jansi.internal", - "org.fusesource.jansi.io" - ], - "org.jacoco:org.jacoco.core": [ - "org.jacoco.core", - "org.jacoco.core.analysis", - "org.jacoco.core.data", - "org.jacoco.core.instr", - "org.jacoco.core.internal", - "org.jacoco.core.internal.analysis", - "org.jacoco.core.internal.data", - "org.jacoco.core.internal.flow", - "org.jacoco.core.internal.instr", - "org.jacoco.core.runtime", - "org.jacoco.core.tools" - ], - "org.jctools:jctools-core": [ - "org.jctools.maps", - "org.jctools.queues", - "org.jctools.queues.atomic", - "org.jctools.queues.spec", - "org.jctools.util" - ], - "org.jline:jline": [ - "org.jline.builtins", - "org.jline.builtins.ssh", - "org.jline.builtins.telnet", - "org.jline.console", - "org.jline.console.impl", - "org.jline.jansi", - "org.jline.jansi.io", - "org.jline.keymap", - "org.jline.nativ", - "org.jline.reader", - "org.jline.reader.impl", - "org.jline.reader.impl.completer", - "org.jline.reader.impl.history", - "org.jline.style", - "org.jline.terminal", - "org.jline.terminal.impl", - "org.jline.terminal.impl.exec", - "org.jline.terminal.impl.ffm", - "org.jline.terminal.impl.jansi", - "org.jline.terminal.impl.jansi.freebsd", - "org.jline.terminal.impl.jansi.linux", - "org.jline.terminal.impl.jansi.osx", - "org.jline.terminal.impl.jansi.solaris", - "org.jline.terminal.impl.jansi.win", - "org.jline.terminal.impl.jna", - "org.jline.terminal.impl.jna.freebsd", - "org.jline.terminal.impl.jna.linux", - "org.jline.terminal.impl.jna.osx", - "org.jline.terminal.impl.jna.solaris", - "org.jline.terminal.impl.jna.win", - "org.jline.terminal.impl.jni", - "org.jline.terminal.impl.jni.freebsd", - "org.jline.terminal.impl.jni.linux", - "org.jline.terminal.impl.jni.osx", - "org.jline.terminal.impl.jni.solaris", - "org.jline.terminal.impl.jni.win", - "org.jline.terminal.spi", - "org.jline.utils", - "org.jline.widget" - ], - "org.jline:jline-terminal": [ - "org.jline.terminal", - "org.jline.terminal.impl", - "org.jline.terminal.spi", - "org.jline.utils" - ], - "org.jline:jline-terminal-jansi": [ - "org.jline.terminal.impl.jansi", - "org.jline.terminal.impl.jansi.freebsd", - "org.jline.terminal.impl.jansi.linux", - "org.jline.terminal.impl.jansi.osx", - "org.jline.terminal.impl.jansi.solaris", - "org.jline.terminal.impl.jansi.win" - ], - "org.jline:jline-terminal-jna": [ - "org.jline.terminal.impl.jna", - "org.jline.terminal.impl.jna.freebsd", - "org.jline.terminal.impl.jna.linux", - "org.jline.terminal.impl.jna.osx", - "org.jline.terminal.impl.jna.solaris", - "org.jline.terminal.impl.jna.win" - ], - "org.ow2.asm:asm-debug-all": [ - "org.objectweb.asm", - "org.objectweb.asm.commons", - "org.objectweb.asm.signature", - "org.objectweb.asm.tree", - "org.objectweb.asm.tree.analysis", - "org.objectweb.asm.util", - "org.objectweb.asm.xml" - ], - "org.reactivestreams:reactive-streams": [ - "org.reactivestreams" - ], - "org.scala-lang.modules:scala-collection-compat_2.13": [ - "scala.collection.compat", - "scala.collection.compat.immutable", - "scala.util.control.compat" - ], - "org.scala-lang.modules:scala-parallel-collections_2.13": [ - "scala.collection", - "scala.collection.generic", - "scala.collection.immutable", - "scala.collection.mutable", - "scala.collection.parallel", - "scala.collection.parallel.immutable", - "scala.collection.parallel.mutable" - ], - "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-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.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.modules:scala-xml_2.13": [ - "scala.xml", - "scala.xml.dtd", - "scala.xml.dtd.impl", - "scala.xml.factory", - "scala.xml.include", - "scala.xml.include.sax", - "scala.xml.parsing", - "scala.xml.transform" - ], - "org.scala-lang:scala-compiler": [ - "com.github.difflib", - "com.github.difflib.algorithm", - "com.github.difflib.algorithm.myers", - "com.github.difflib.patch", - "com.github.difflib.text", - "com.github.difflib.unifieddiff", - "scala.reflect.macros.compiler", - "scala.reflect.macros.contexts", - "scala.reflect.macros.runtime", - "scala.reflect.macros.util", - "scala.reflect.quasiquotes", - "scala.reflect.reify", - "scala.reflect.reify.codegen", - "scala.reflect.reify.phases", - "scala.reflect.reify.utils", - "scala.tools.asm", - "scala.tools.asm.commons", - "scala.tools.asm.signature", - "scala.tools.asm.tree", - "scala.tools.asm.tree.analysis", - "scala.tools.asm.util", - "scala.tools.nsc", - "scala.tools.nsc.ast", - "scala.tools.nsc.ast.parser", - "scala.tools.nsc.ast.parser.xml", - "scala.tools.nsc.backend", - "scala.tools.nsc.backend.jvm", - "scala.tools.nsc.backend.jvm.analysis", - "scala.tools.nsc.backend.jvm.opt", - "scala.tools.nsc.classpath", - "scala.tools.nsc.doc", - "scala.tools.nsc.doc.base", - "scala.tools.nsc.doc.base.comment", - "scala.tools.nsc.doc.doclet", - "scala.tools.nsc.doc.html", - "scala.tools.nsc.doc.html.page", - "scala.tools.nsc.doc.html.page.diagram", - "scala.tools.nsc.doc.model", - "scala.tools.nsc.doc.model.diagram", - "scala.tools.nsc.fsc", - "scala.tools.nsc.interactive", - "scala.tools.nsc.interactive.tests", - "scala.tools.nsc.interactive.tests.core", - "scala.tools.nsc.interpreter", - "scala.tools.nsc.interpreter.jline", - "scala.tools.nsc.interpreter.shell", - "scala.tools.nsc.io", - "scala.tools.nsc.javac", - "scala.tools.nsc.plugins", - "scala.tools.nsc.profile", - "scala.tools.nsc.reporters", - "scala.tools.nsc.settings", - "scala.tools.nsc.symtab", - "scala.tools.nsc.symtab.classfile", - "scala.tools.nsc.tasty", - "scala.tools.nsc.tasty.bridge", - "scala.tools.nsc.transform", - "scala.tools.nsc.transform.async", - "scala.tools.nsc.transform.patmat", - "scala.tools.nsc.typechecker", - "scala.tools.nsc.typechecker.splain", - "scala.tools.nsc.util", - "scala.tools.reflect", - "scala.tools.tasty", - "scala.tools.util" - ], - "org.scala-lang:scala-library": [ - "scala", - "scala.annotation", - "scala.annotation.meta", - "scala.annotation.unchecked", - "scala.beans", - "scala.collection", - "scala.collection.concurrent", - "scala.collection.convert", - "scala.collection.convert.impl", - "scala.collection.generic", - "scala.collection.immutable", - "scala.collection.mutable", - "scala.compat", - "scala.concurrent", - "scala.concurrent.duration", - "scala.concurrent.impl", - "scala.io", - "scala.jdk", - "scala.jdk.javaapi", - "scala.math", - "scala.ref", - "scala.reflect", - "scala.reflect.macros.internal", - "scala.runtime", - "scala.runtime.java8", - "scala.sys", - "scala.sys.process", - "scala.util", - "scala.util.control", - "scala.util.hashing", - "scala.util.matching" - ], - "org.scala-lang:scala-reflect": [ - "scala.reflect.api", - "scala.reflect.internal", - "scala.reflect.internal.annotations", - "scala.reflect.internal.pickling", - "scala.reflect.internal.settings", - "scala.reflect.internal.tpe", - "scala.reflect.internal.transform", - "scala.reflect.internal.util", - "scala.reflect.io", - "scala.reflect.macros", - "scala.reflect.macros.blackbox", - "scala.reflect.macros.whitebox", - "scala.reflect.runtime" - ], - "org.scala-sbt.ivy:ivy": [ - "org.apache.ivy", - "org.apache.ivy.ant", - "org.apache.ivy.core", - "org.apache.ivy.core.cache", - "org.apache.ivy.core.check", - "org.apache.ivy.core.deliver", - "org.apache.ivy.core.event", - "org.apache.ivy.core.event.download", - "org.apache.ivy.core.event.publish", - "org.apache.ivy.core.event.resolve", - "org.apache.ivy.core.event.retrieve", - "org.apache.ivy.core.install", - "org.apache.ivy.core.module.descriptor", - "org.apache.ivy.core.module.id", - "org.apache.ivy.core.module.status", - "org.apache.ivy.core.publish", - "org.apache.ivy.core.report", - "org.apache.ivy.core.repository", - "org.apache.ivy.core.resolve", - "org.apache.ivy.core.retrieve", - "org.apache.ivy.core.search", - "org.apache.ivy.core.settings", - "org.apache.ivy.core.sort", - "org.apache.ivy.osgi.core", - "org.apache.ivy.osgi.obr", - "org.apache.ivy.osgi.obr.filter", - "org.apache.ivy.osgi.obr.xml", - "org.apache.ivy.osgi.p2", - "org.apache.ivy.osgi.repo", - "org.apache.ivy.osgi.updatesite", - "org.apache.ivy.osgi.updatesite.xml", - "org.apache.ivy.osgi.util", - "org.apache.ivy.plugins", - "org.apache.ivy.plugins.circular", - "org.apache.ivy.plugins.conflict", - "org.apache.ivy.plugins.latest", - "org.apache.ivy.plugins.lock", - "org.apache.ivy.plugins.matcher", - "org.apache.ivy.plugins.namespace", - "org.apache.ivy.plugins.parser", - "org.apache.ivy.plugins.parser.m2", - "org.apache.ivy.plugins.parser.xml", - "org.apache.ivy.plugins.report", - "org.apache.ivy.plugins.repository", - "org.apache.ivy.plugins.repository.file", - "org.apache.ivy.plugins.repository.jar", - "org.apache.ivy.plugins.repository.sftp", - "org.apache.ivy.plugins.repository.ssh", - "org.apache.ivy.plugins.repository.url", - "org.apache.ivy.plugins.repository.vfs", - "org.apache.ivy.plugins.repository.vsftp", - "org.apache.ivy.plugins.resolver", - "org.apache.ivy.plugins.resolver.packager", - "org.apache.ivy.plugins.resolver.util", - "org.apache.ivy.plugins.signer", - "org.apache.ivy.plugins.signer.bouncycastle", - "org.apache.ivy.plugins.trigger", - "org.apache.ivy.plugins.version", - "org.apache.ivy.tools.analyser", - "org.apache.ivy.util", - "org.apache.ivy.util.cli", - "org.apache.ivy.util.extendable", - "org.apache.ivy.util.filter", - "org.apache.ivy.util.url" - ], - "org.scala-sbt.jline:jline": [ - "jline", - "jline.console", - "jline.console.completer", - "jline.console.history", - "jline.console.internal", - "jline.internal" - ], - "org.scala-sbt:collections_2.13": [ - "sbt.internal.util", - "sbt.util" - ], - "org.scala-sbt:compiler-bridge_2.13": [ - "scala", - "xsbt" - ], - "org.scala-sbt:compiler-interface": [ - "xsbti", - "xsbti.api", - "xsbti.compile", - "xsbti.compile.analysis" - ], - "org.scala-sbt:core-macros_2.13": [ - "sbt.internal.util.appmacro" - ], - "org.scala-sbt:io_2.12": [ - "sbt.internal.io", - "sbt.io" - ], - "org.scala-sbt:io_2.13": [ - "sbt.internal.io", - "sbt.internal.nio", - "sbt.io", - "sbt.nio.file", - "sbt.nio.file.syntax" - ], - "org.scala-sbt:launcher-interface": [ - "xsbti" - ], - "org.scala-sbt:librarymanagement-core_2.12": [ - "sbt.internal.librarymanagement", - "sbt.internal.librarymanagement.cross", - "sbt.internal.librarymanagement.formats", - "sbt.internal.librarymanagement.mavenint", - "sbt.librarymanagement" - ], - "org.scala-sbt:librarymanagement-ivy_2.12": [ - "org.apache.ivy.plugins.parser.m2", - "sbt", - "sbt.internal.librarymanagement", - "sbt.internal.librarymanagement.ivyint", - "sbt.internal.librarymanagement.mavenint", - "sbt.librarymanagement.ivy", - "sbt.librarymanagement.ivy.formats" - ], - "org.scala-sbt:sbinary_2.12": [ - "sbinary" - ], - "org.scala-sbt:sbinary_2.13": [ - "sbinary" - ], - "org.scala-sbt:test-agent": [ - "sbt" - ], - "org.scala-sbt:test-interface": [ - "org.scalatools.testing", - "sbt.testing" - ], - "org.scala-sbt:util-cache_2.12": [ - "sbt.util" - ], - "org.scala-sbt:util-control_2.12": [ - "sbt.internal.util" - ], - "org.scala-sbt:util-control_2.13": [ - "sbt.internal.util" - ], - "org.scala-sbt:util-interface": [ - "xsbti" - ], - "org.scala-sbt:util-logging_2.12": [ - "sbt.internal.util", - "sbt.internal.util.codec", - "sbt.util" - ], - "org.scala-sbt:util-logging_2.13": [ - "com.github.ghik.silencer", - "sbt.internal.util", - "sbt.internal.util.codec", - "sbt.util" - ], - "org.scala-sbt:util-position_2.12": [ - "sbt.internal.util" - ], - "org.scala-sbt:util-position_2.13": [ - "sbt.internal.util" - ], - "org.scala-sbt:util-relation_2.12": [ - "sbt.internal.util" - ], - "org.scala-sbt:util-relation_2.13": [ - "sbt.internal.util" - ], - "org.scala-sbt:zinc-apiinfo_2.13": [ - "sbt.internal.inc", - "xsbt.api", - "xsbti.api" - ], - "org.scala-sbt:zinc-classfile_2.13": [ - "sbt.internal.inc", - "sbt.internal.inc.classfile", - "sbt.internal.inc.zip" - ], - "org.scala-sbt:zinc-classpath_2.13": [ - "sbt.internal.inc", - "sbt.internal.inc.classpath" - ], - "org.scala-sbt:zinc-compile-core_2.13": [ - "sbt.internal.inc", - "sbt.internal.inc.javac", - "xsbti", - "xsbti.compile" - ], - "org.scala-sbt:zinc-core_2.13": [ - "sbt.internal.inc", - "xsbti.compile" - ], - "org.scala-sbt:zinc-persist-core-assembly": [ - "sbt.internal.inc", - "sbt.internal.prof", - "sbt.internal.shaded.com.google.protobuf", - "sbt.internal.shaded.com.google.protobuf.compiler" - ], - "org.scala-sbt:zinc-persist_2.13": [ - "sbt.internal.inc", - "sbt.internal.inc.binary", - "sbt.internal.inc.binary.converters", - "sbt.internal.inc.cached", - "sbt.internal.inc.mappers", - "sbt.internal.inc.text", - "xsbti.compile", - "xsbti.compile.analysis" - ], - "org.scala-sbt:zinc_2.13": [ - "sbt.internal.inc", - "sbt.internal.inc.caching", - "sbt.internal.inc.javac", - "xsbti.compile" - ], - "org.scalameta:jsonrpc_2.12": [ - "scala.meta.jsonrpc" - ], - "org.scalameta:lsp4s_2.12": [ - "scala.meta.lsp" - ], - "org.scalaz:scalaz-concurrent_2.12": [ - "scalaz.concurrent" - ], - "org.scalaz:scalaz-core_2.12": [ - "scalaz", - "scalaz.std", - "scalaz.std.java", - "scalaz.std.java.math", - "scalaz.std.java.util", - "scalaz.std.java.util.concurrent", - "scalaz.std.math", - "scalaz.syntax", - "scalaz.syntax.std" - ], - "org.scalaz:scalaz-effect_2.12": [ - "scalaz.effect", - "scalaz.std.effect", - "scalaz.std.effect.sql", - "scalaz.syntax.effect" - ], - "org.slf4j:slf4j-api": [ - "org.slf4j", - "org.slf4j.event", - "org.slf4j.helpers", - "org.slf4j.spi" - ], - "org.spire-math:jawn-parser_2.12": [ - "jawn" - ], - "org.typelevel:cats-core_2.12": [ - "cats", - "cats.arrow", - "cats.data", - "cats.evidence", - "cats.instances", - "cats.instances.symbol", - "cats.syntax" - ], - "org.typelevel:cats-kernel_2.12": [ - "cats.kernel", - "cats.kernel.instances", - "cats.kernel.instances.all", - "cats.kernel.instances.bigDecimal", - "cats.kernel.instances.bigInt", - "cats.kernel.instances.bitSet", - "cats.kernel.instances.boolean", - "cats.kernel.instances.byte", - "cats.kernel.instances.char", - "cats.kernel.instances.double", - "cats.kernel.instances.duration", - "cats.kernel.instances.either", - "cats.kernel.instances.float", - "cats.kernel.instances.function", - "cats.kernel.instances.int", - "cats.kernel.instances.list", - "cats.kernel.instances.long", - "cats.kernel.instances.map", - "cats.kernel.instances.option", - "cats.kernel.instances.queue", - "cats.kernel.instances.set", - "cats.kernel.instances.short", - "cats.kernel.instances.stream", - "cats.kernel.instances.string", - "cats.kernel.instances.symbol", - "cats.kernel.instances.tuple", - "cats.kernel.instances.unit", - "cats.kernel.instances.uuid", - "cats.kernel.instances.vector" - ], - "org.typelevel:cats-macros_2.12": [ - "cats.macros" - ], - "org.typelevel:machinist_2.12": [ - "machinist" - ], - "org.typelevel:macro-compat_2.12": [ - "macrocompat" - ] - }, - "repositories": { - "https://repo.maven.apache.org/maven2/": [ - "ch.epfl.scala:bloop-backend_2.12", - "ch.epfl.scala:bloop-backend_2.12:jar:sources", - "ch.epfl.scala:bloop-config_2.12", - "ch.epfl.scala:bloop-config_2.12:jar:sources", - "ch.epfl.scala:bloop-frontend_2.12", - "ch.epfl.scala:bloop-frontend_2.12:jar:sources", - "ch.epfl.scala:bsp_2.12", - "ch.epfl.scala:bsp_2.12:jar:sources", - "ch.epfl.scala:case-app-annotations_2.12", - "ch.epfl.scala:case-app-annotations_2.12:jar:sources", - "ch.epfl.scala:case-app-util_2.12", - "ch.epfl.scala:case-app-util_2.12:jar:sources", - "ch.epfl.scala:case-app_2.12", - "ch.epfl.scala:case-app_2.12:jar:sources", - "ch.epfl.scala:compiler-interface", - "ch.epfl.scala:compiler-interface:jar:sources", - "ch.epfl.scala:nailgun-server", - "ch.epfl.scala:nailgun-server:jar:sources", - "ch.epfl.scala:zinc-apiinfo_2.12", - "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources", - "ch.epfl.scala:zinc-classfile_2.12", - "ch.epfl.scala:zinc-classfile_2.12:jar:sources", - "ch.epfl.scala:zinc-classpath_2.12", - "ch.epfl.scala:zinc-classpath_2.12:jar:sources", - "ch.epfl.scala:zinc-compile-core_2.12", - "ch.epfl.scala:zinc-compile-core_2.12:jar:sources", - "ch.epfl.scala:zinc-core_2.12", - "ch.epfl.scala:zinc-core_2.12:jar:sources", - "ch.epfl.scala:zinc-ivy-integration_2.12", - "ch.epfl.scala:zinc-ivy-integration_2.12:jar:sources", - "ch.epfl.scala:zinc-persist_2.12", - "ch.epfl.scala:zinc-persist_2.12:jar:sources", - "ch.epfl.scala:zinc_2.12", - "ch.epfl.scala:zinc_2.12: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.beachape:enumeratum-circe_2.12", - "com.beachape:enumeratum-circe_2.12:jar:sources", - "com.beachape:enumeratum-macros_2.12", - "com.beachape:enumeratum-macros_2.12:jar:sources", - "com.beachape:enumeratum_2.12", - "com.beachape:enumeratum_2.12:jar:sources", - "com.chuusai:shapeless_2.12", - "com.chuusai:shapeless_2.12:jar:sources", - "com.eed3si9n:gigahorse-core_2.12", - "com.eed3si9n:gigahorse-core_2.12:jar:sources", - "com.eed3si9n:gigahorse-okhttp_2.12", - "com.eed3si9n:gigahorse-okhttp_2.12:jar:sources", - "com.eed3si9n:shaded-jawn-parser_2.13", - "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources", - "com.eed3si9n:shaded-scalajson_2.12", - "com.eed3si9n:shaded-scalajson_2.12:jar:sources", - "com.eed3si9n:shaded-scalajson_2.13", - "com.eed3si9n:shaded-scalajson_2.13:jar:sources", - "com.eed3si9n:sjson-new-core_2.12", - "com.eed3si9n:sjson-new-core_2.12:jar:sources", - "com.eed3si9n:sjson-new-core_2.13", - "com.eed3si9n:sjson-new-core_2.13:jar:sources", - "com.eed3si9n:sjson-new-murmurhash_2.12", - "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources", - "com.eed3si9n:sjson-new-scalajson_2.12", - "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources", - "com.eed3si9n:sjson-new-scalajson_2.13", - "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources", - "com.github.pathikrit:better-files_2.12", - "com.github.pathikrit:better-files_2.12:jar:sources", - "com.google.code.findbugs:jsr305", - "com.google.errorprone:error_prone_annotations", - "com.google.errorprone:error_prone_annotations:jar:sources", - "com.google.guava:guava", - "com.google.guava:guava:jar:sources", - "com.google.j2objc:j2objc-annotations", - "com.google.j2objc:j2objc-annotations:jar:sources", - "com.google.protobuf:protobuf-java", - "com.google.protobuf:protobuf-java:jar:sources", - "com.jcraft:jsch", - "com.jcraft:jsch:jar:sources", - "com.lihaoyi:fansi_2.12", - "com.lihaoyi:fansi_2.12:jar:sources", - "com.lihaoyi:fastparse-utils_2.12", - "com.lihaoyi:fastparse-utils_2.12:jar:sources", - "com.lihaoyi:fastparse_2.12", - "com.lihaoyi:fastparse_2.12:jar:sources", - "com.lihaoyi:pprint_2.12", - "com.lihaoyi:pprint_2.12:jar:sources", - "com.lihaoyi:sourcecode_2.12", - "com.lihaoyi:sourcecode_2.12:jar:sources", - "com.lihaoyi:sourcecode_2.13", - "com.lihaoyi:sourcecode_2.13:jar:sources", - "com.lmax:disruptor", - "com.lmax:disruptor:jar:sources", - "com.squareup.okhttp3:okhttp", - "com.squareup.okhttp3:okhttp-urlconnection", - "com.squareup.okhttp3:okhttp-urlconnection:jar:sources", - "com.squareup.okhttp3:okhttp:jar:sources", - "com.squareup.okio:okio", - "com.squareup.okio:okio:jar:sources", - "com.swoval:file-tree-views", - "com.swoval:file-tree-views:jar:sources", - "com.thesamet.scalapb:lenses_2.13", - "com.thesamet.scalapb:lenses_2.13:jar:sources", - "com.thesamet.scalapb:scalapb-runtime_2.13", - "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources", - "com.trueaccord.lenses:lenses_2.12", - "com.trueaccord.lenses:lenses_2.12:jar:sources", - "com.trueaccord.scalapb:scalapb-runtime_2.12", - "com.trueaccord.scalapb:scalapb-runtime_2.12:jar:sources", - "com.typesafe.scala-logging:scala-logging_2.12", - "com.typesafe.scala-logging:scala-logging_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", - "com.zaxxer:nuprocess", - "com.zaxxer:nuprocess:jar:sources", - "io.circe:circe-core_2.12", - "io.circe:circe-core_2.12:jar:sources", - "io.circe:circe-derivation_2.12", - "io.circe:circe-derivation_2.12:jar:sources", - "io.circe:circe-generic-extras_2.12", - "io.circe:circe-generic-extras_2.12:jar:sources", - "io.circe:circe-generic_2.12", - "io.circe:circe-generic_2.12:jar:sources", - "io.circe:circe-jawn_2.12", - "io.circe:circe-jawn_2.12:jar:sources", - "io.circe:circe-numbers_2.12", - "io.circe:circe-numbers_2.12:jar:sources", - "io.circe:circe-parser_2.12", - "io.circe:circe-parser_2.12:jar:sources", - "io.get-coursier:coursier-cache_2.12", - "io.get-coursier:coursier-cache_2.12:jar:sources", - "io.get-coursier:coursier-scalaz-interop_2.12", - "io.get-coursier:coursier-scalaz-interop_2.12:jar:sources", - "io.get-coursier:coursier_2.12", - "io.get-coursier:coursier_2.12:jar:sources", - "io.github.java-diff-utils:java-diff-utils", - "io.github.java-diff-utils:java-diff-utils:jar:sources", - "io.github.soc:directories", - "io.github.soc:directories:jar:sources", - "io.monix:monix-eval_2.12", - "io.monix:monix-eval_2.12:jar:sources", - "io.monix:monix-execution_2.12", - "io.monix:monix-execution_2.12:jar:sources", - "io.monix:monix-reactive_2.12", - "io.monix:monix-reactive_2.12:jar:sources", - "io.monix:monix-types_2.12", - "io.monix:monix-types_2.12:jar:sources", - "io.monix:monix_2.12", - "io.monix:monix_2.12:jar:sources", - "jline:jline", - "jline:jline:jar:sources", - "me.vican.jorge:directory-watcher", - "me.vican.jorge:directory-watcher-better-files_2.12", - "me.vican.jorge:directory-watcher-better-files_2.12:jar:sources", - "me.vican.jorge:directory-watcher:jar:sources", - "net.java.dev.jna:jna", - "net.java.dev.jna:jna-platform", - "net.java.dev.jna:jna-platform:jar:sources", - "net.java.dev.jna:jna:jar:sources", - "net.openhft:zero-allocation-hashing", - "net.openhft:zero-allocation-hashing:jar:sources", - "net.sourceforge.argparse4j:argparse4j", - "net.sourceforge.argparse4j:argparse4j:jar:sources", - "org.apache.logging.log4j:log4j-api", - "org.apache.logging.log4j:log4j-api:jar:sources", - "org.apache.logging.log4j:log4j-core", - "org.apache.logging.log4j:log4j-core:jar:sources", - "org.codehaus.groovy:groovy", - "org.codehaus.groovy:groovy:jar:sources", - "org.codehaus.mojo:animal-sniffer-annotations", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources", - "org.fusesource.jansi:jansi", - "org.fusesource.jansi:jansi:jar:sources", - "org.jacoco:org.jacoco.core", - "org.jacoco:org.jacoco.core:jar:sources", - "org.jctools:jctools-core", - "org.jctools:jctools-core:jar:sources", - "org.jline:jline", - "org.jline:jline-terminal", - "org.jline:jline-terminal-jansi", - "org.jline:jline-terminal-jansi:jar:sources", - "org.jline:jline-terminal-jna", - "org.jline:jline-terminal-jna:jar:sources", - "org.jline:jline-terminal:jar:sources", - "org.jline:jline:jar:sources", - "org.ow2.asm:asm-debug-all", - "org.ow2.asm:asm-debug-all:jar:sources", - "org.reactivestreams:reactive-streams", - "org.reactivestreams:reactive-streams:jar:sources", - "org.scala-lang.modules:scala-collection-compat_2.13", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources", - "org.scala-lang.modules:scala-parallel-collections_2.13", - "org.scala-lang.modules:scala-parallel-collections_2.13: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-parser-combinators_2.13", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources", - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang.modules:scala-xml_2.12:jar:sources", - "org.scala-lang.modules:scala-xml_2.13", - "org.scala-lang.modules:scala-xml_2.13:jar:sources", - "org.scala-lang:scala-compiler", - "org.scala-lang:scala-compiler:jar:sources", - "org.scala-lang:scala-library", - "org.scala-lang:scala-library:jar:sources", - "org.scala-lang:scala-reflect", - "org.scala-lang:scala-reflect:jar:sources", - "org.scala-sbt.ivy:ivy", - "org.scala-sbt.ivy:ivy:jar:sources", - "org.scala-sbt.jline:jline", - "org.scala-sbt.jline:jline:jar:sources", - "org.scala-sbt:collections_2.13", - "org.scala-sbt:collections_2.13:jar:sources", - "org.scala-sbt:compiler-bridge_2.13", - "org.scala-sbt:compiler-bridge_2.13:jar:sources", - "org.scala-sbt:compiler-interface", - "org.scala-sbt:compiler-interface:jar:sources", - "org.scala-sbt:core-macros_2.13", - "org.scala-sbt:core-macros_2.13:jar:sources", - "org.scala-sbt:io_2.12", - "org.scala-sbt:io_2.12:jar:sources", - "org.scala-sbt:io_2.13", - "org.scala-sbt:io_2.13:jar:sources", - "org.scala-sbt:launcher-interface", - "org.scala-sbt:launcher-interface:jar:sources", - "org.scala-sbt:librarymanagement-core_2.12", - "org.scala-sbt:librarymanagement-core_2.12:jar:sources", - "org.scala-sbt:librarymanagement-ivy_2.12", - "org.scala-sbt:librarymanagement-ivy_2.12:jar:sources", - "org.scala-sbt:sbinary_2.12", - "org.scala-sbt:sbinary_2.12:jar:sources", - "org.scala-sbt:sbinary_2.13", - "org.scala-sbt:sbinary_2.13:jar:sources", - "org.scala-sbt:test-agent", - "org.scala-sbt:test-agent:jar:sources", - "org.scala-sbt:test-interface", - "org.scala-sbt:test-interface:jar:sources", - "org.scala-sbt:util-cache_2.12", - "org.scala-sbt:util-cache_2.12:jar:sources", - "org.scala-sbt:util-control_2.12", - "org.scala-sbt:util-control_2.12:jar:sources", - "org.scala-sbt:util-control_2.13", - "org.scala-sbt:util-control_2.13:jar:sources", - "org.scala-sbt:util-interface", - "org.scala-sbt:util-interface:jar:sources", - "org.scala-sbt:util-logging_2.12", - "org.scala-sbt:util-logging_2.12:jar:sources", - "org.scala-sbt:util-logging_2.13", - "org.scala-sbt:util-logging_2.13:jar:sources", - "org.scala-sbt:util-position_2.12", - "org.scala-sbt:util-position_2.12:jar:sources", - "org.scala-sbt:util-position_2.13", - "org.scala-sbt:util-position_2.13:jar:sources", - "org.scala-sbt:util-relation_2.12", - "org.scala-sbt:util-relation_2.12:jar:sources", - "org.scala-sbt:util-relation_2.13", - "org.scala-sbt:util-relation_2.13:jar:sources", - "org.scala-sbt:zinc-apiinfo_2.13", - "org.scala-sbt:zinc-apiinfo_2.13:jar:sources", - "org.scala-sbt:zinc-classfile_2.13", - "org.scala-sbt:zinc-classfile_2.13:jar:sources", - "org.scala-sbt:zinc-classpath_2.13", - "org.scala-sbt:zinc-classpath_2.13:jar:sources", - "org.scala-sbt:zinc-compile-core_2.13", - "org.scala-sbt:zinc-compile-core_2.13:jar:sources", - "org.scala-sbt:zinc-core_2.13", - "org.scala-sbt:zinc-core_2.13:jar:sources", - "org.scala-sbt:zinc-persist-core-assembly", - "org.scala-sbt:zinc-persist-core-assembly:jar:sources", - "org.scala-sbt:zinc-persist_2.13", - "org.scala-sbt:zinc-persist_2.13:jar:sources", - "org.scala-sbt:zinc_2.13", - "org.scala-sbt:zinc_2.13:jar:sources", - "org.scalameta:jsonrpc_2.12", - "org.scalameta:jsonrpc_2.12:jar:sources", - "org.scalameta:lsp4s_2.12", - "org.scalameta:lsp4s_2.12:jar:sources", - "org.scalaz:scalaz-concurrent_2.12", - "org.scalaz:scalaz-concurrent_2.12:jar:sources", - "org.scalaz:scalaz-core_2.12", - "org.scalaz:scalaz-core_2.12:jar:sources", - "org.scalaz:scalaz-effect_2.12", - "org.scalaz:scalaz-effect_2.12:jar:sources", - "org.slf4j:slf4j-api", - "org.slf4j:slf4j-api:jar:sources", - "org.spire-math:jawn-parser_2.12", - "org.spire-math:jawn-parser_2.12:jar:sources", - "org.typelevel:cats-core_2.12", - "org.typelevel:cats-core_2.12:jar:sources", - "org.typelevel:cats-kernel_2.12", - "org.typelevel:cats-kernel_2.12:jar:sources", - "org.typelevel:cats-macros_2.12", - "org.typelevel:cats-macros_2.12:jar:sources", - "org.typelevel:machinist_2.12", - "org.typelevel:machinist_2.12:jar:sources", - "org.typelevel:macro-compat_2.12", - "org.typelevel:macro-compat_2.12:jar:sources" - ], - "https://maven-central.storage-download.googleapis.com/maven2/": [ - "ch.epfl.scala:bloop-backend_2.12", - "ch.epfl.scala:bloop-backend_2.12:jar:sources", - "ch.epfl.scala:bloop-config_2.12", - "ch.epfl.scala:bloop-config_2.12:jar:sources", - "ch.epfl.scala:bloop-frontend_2.12", - "ch.epfl.scala:bloop-frontend_2.12:jar:sources", - "ch.epfl.scala:bsp_2.12", - "ch.epfl.scala:bsp_2.12:jar:sources", - "ch.epfl.scala:case-app-annotations_2.12", - "ch.epfl.scala:case-app-annotations_2.12:jar:sources", - "ch.epfl.scala:case-app-util_2.12", - "ch.epfl.scala:case-app-util_2.12:jar:sources", - "ch.epfl.scala:case-app_2.12", - "ch.epfl.scala:case-app_2.12:jar:sources", - "ch.epfl.scala:compiler-interface", - "ch.epfl.scala:compiler-interface:jar:sources", - "ch.epfl.scala:nailgun-server", - "ch.epfl.scala:nailgun-server:jar:sources", - "ch.epfl.scala:zinc-apiinfo_2.12", - "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources", - "ch.epfl.scala:zinc-classfile_2.12", - "ch.epfl.scala:zinc-classfile_2.12:jar:sources", - "ch.epfl.scala:zinc-classpath_2.12", - "ch.epfl.scala:zinc-classpath_2.12:jar:sources", - "ch.epfl.scala:zinc-compile-core_2.12", - "ch.epfl.scala:zinc-compile-core_2.12:jar:sources", - "ch.epfl.scala:zinc-core_2.12", - "ch.epfl.scala:zinc-core_2.12:jar:sources", - "ch.epfl.scala:zinc-ivy-integration_2.12", - "ch.epfl.scala:zinc-ivy-integration_2.12:jar:sources", - "ch.epfl.scala:zinc-persist_2.12", - "ch.epfl.scala:zinc-persist_2.12:jar:sources", - "ch.epfl.scala:zinc_2.12", - "ch.epfl.scala:zinc_2.12: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.beachape:enumeratum-circe_2.12", - "com.beachape:enumeratum-circe_2.12:jar:sources", - "com.beachape:enumeratum-macros_2.12", - "com.beachape:enumeratum-macros_2.12:jar:sources", - "com.beachape:enumeratum_2.12", - "com.beachape:enumeratum_2.12:jar:sources", - "com.chuusai:shapeless_2.12", - "com.chuusai:shapeless_2.12:jar:sources", - "com.eed3si9n:gigahorse-core_2.12", - "com.eed3si9n:gigahorse-core_2.12:jar:sources", - "com.eed3si9n:gigahorse-okhttp_2.12", - "com.eed3si9n:gigahorse-okhttp_2.12:jar:sources", - "com.eed3si9n:shaded-jawn-parser_2.13", - "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources", - "com.eed3si9n:shaded-scalajson_2.12", - "com.eed3si9n:shaded-scalajson_2.12:jar:sources", - "com.eed3si9n:shaded-scalajson_2.13", - "com.eed3si9n:shaded-scalajson_2.13:jar:sources", - "com.eed3si9n:sjson-new-core_2.12", - "com.eed3si9n:sjson-new-core_2.12:jar:sources", - "com.eed3si9n:sjson-new-core_2.13", - "com.eed3si9n:sjson-new-core_2.13:jar:sources", - "com.eed3si9n:sjson-new-murmurhash_2.12", - "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources", - "com.eed3si9n:sjson-new-scalajson_2.12", - "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources", - "com.eed3si9n:sjson-new-scalajson_2.13", - "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources", - "com.github.pathikrit:better-files_2.12", - "com.github.pathikrit:better-files_2.12:jar:sources", - "com.google.code.findbugs:jsr305", - "com.google.errorprone:error_prone_annotations", - "com.google.errorprone:error_prone_annotations:jar:sources", - "com.google.guava:guava", - "com.google.guava:guava:jar:sources", - "com.google.j2objc:j2objc-annotations", - "com.google.j2objc:j2objc-annotations:jar:sources", - "com.google.protobuf:protobuf-java", - "com.google.protobuf:protobuf-java:jar:sources", - "com.jcraft:jsch", - "com.jcraft:jsch:jar:sources", - "com.lihaoyi:fansi_2.12", - "com.lihaoyi:fansi_2.12:jar:sources", - "com.lihaoyi:fastparse-utils_2.12", - "com.lihaoyi:fastparse-utils_2.12:jar:sources", - "com.lihaoyi:fastparse_2.12", - "com.lihaoyi:fastparse_2.12:jar:sources", - "com.lihaoyi:pprint_2.12", - "com.lihaoyi:pprint_2.12:jar:sources", - "com.lihaoyi:sourcecode_2.12", - "com.lihaoyi:sourcecode_2.12:jar:sources", - "com.lihaoyi:sourcecode_2.13", - "com.lihaoyi:sourcecode_2.13:jar:sources", - "com.lmax:disruptor", - "com.lmax:disruptor:jar:sources", - "com.squareup.okhttp3:okhttp", - "com.squareup.okhttp3:okhttp-urlconnection", - "com.squareup.okhttp3:okhttp-urlconnection:jar:sources", - "com.squareup.okhttp3:okhttp:jar:sources", - "com.squareup.okio:okio", - "com.squareup.okio:okio:jar:sources", - "com.swoval:file-tree-views", - "com.swoval:file-tree-views:jar:sources", - "com.thesamet.scalapb:lenses_2.13", - "com.thesamet.scalapb:lenses_2.13:jar:sources", - "com.thesamet.scalapb:scalapb-runtime_2.13", - "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources", - "com.trueaccord.lenses:lenses_2.12", - "com.trueaccord.lenses:lenses_2.12:jar:sources", - "com.trueaccord.scalapb:scalapb-runtime_2.12", - "com.trueaccord.scalapb:scalapb-runtime_2.12:jar:sources", - "com.typesafe.scala-logging:scala-logging_2.12", - "com.typesafe.scala-logging:scala-logging_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", - "com.zaxxer:nuprocess", - "com.zaxxer:nuprocess:jar:sources", - "io.circe:circe-core_2.12", - "io.circe:circe-core_2.12:jar:sources", - "io.circe:circe-derivation_2.12", - "io.circe:circe-derivation_2.12:jar:sources", - "io.circe:circe-generic-extras_2.12", - "io.circe:circe-generic-extras_2.12:jar:sources", - "io.circe:circe-generic_2.12", - "io.circe:circe-generic_2.12:jar:sources", - "io.circe:circe-jawn_2.12", - "io.circe:circe-jawn_2.12:jar:sources", - "io.circe:circe-numbers_2.12", - "io.circe:circe-numbers_2.12:jar:sources", - "io.circe:circe-parser_2.12", - "io.circe:circe-parser_2.12:jar:sources", - "io.get-coursier:coursier-cache_2.12", - "io.get-coursier:coursier-cache_2.12:jar:sources", - "io.get-coursier:coursier-scalaz-interop_2.12", - "io.get-coursier:coursier-scalaz-interop_2.12:jar:sources", - "io.get-coursier:coursier_2.12", - "io.get-coursier:coursier_2.12:jar:sources", - "io.github.java-diff-utils:java-diff-utils", - "io.github.java-diff-utils:java-diff-utils:jar:sources", - "io.github.soc:directories", - "io.github.soc:directories:jar:sources", - "io.monix:monix-eval_2.12", - "io.monix:monix-eval_2.12:jar:sources", - "io.monix:monix-execution_2.12", - "io.monix:monix-execution_2.12:jar:sources", - "io.monix:monix-reactive_2.12", - "io.monix:monix-reactive_2.12:jar:sources", - "io.monix:monix-types_2.12", - "io.monix:monix-types_2.12:jar:sources", - "io.monix:monix_2.12", - "io.monix:monix_2.12:jar:sources", - "jline:jline", - "jline:jline:jar:sources", - "me.vican.jorge:directory-watcher", - "me.vican.jorge:directory-watcher-better-files_2.12", - "me.vican.jorge:directory-watcher-better-files_2.12:jar:sources", - "me.vican.jorge:directory-watcher:jar:sources", - "net.java.dev.jna:jna", - "net.java.dev.jna:jna-platform", - "net.java.dev.jna:jna-platform:jar:sources", - "net.java.dev.jna:jna:jar:sources", - "net.openhft:zero-allocation-hashing", - "net.openhft:zero-allocation-hashing:jar:sources", - "net.sourceforge.argparse4j:argparse4j", - "net.sourceforge.argparse4j:argparse4j:jar:sources", - "org.apache.logging.log4j:log4j-api", - "org.apache.logging.log4j:log4j-api:jar:sources", - "org.apache.logging.log4j:log4j-core", - "org.apache.logging.log4j:log4j-core:jar:sources", - "org.codehaus.groovy:groovy", - "org.codehaus.groovy:groovy:jar:sources", - "org.codehaus.mojo:animal-sniffer-annotations", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources", - "org.fusesource.jansi:jansi", - "org.fusesource.jansi:jansi:jar:sources", - "org.jacoco:org.jacoco.core", - "org.jacoco:org.jacoco.core:jar:sources", - "org.jctools:jctools-core", - "org.jctools:jctools-core:jar:sources", - "org.jline:jline", - "org.jline:jline-terminal", - "org.jline:jline-terminal-jansi", - "org.jline:jline-terminal-jansi:jar:sources", - "org.jline:jline-terminal-jna", - "org.jline:jline-terminal-jna:jar:sources", - "org.jline:jline-terminal:jar:sources", - "org.jline:jline:jar:sources", - "org.ow2.asm:asm-debug-all", - "org.ow2.asm:asm-debug-all:jar:sources", - "org.reactivestreams:reactive-streams", - "org.reactivestreams:reactive-streams:jar:sources", - "org.scala-lang.modules:scala-collection-compat_2.13", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources", - "org.scala-lang.modules:scala-parallel-collections_2.13", - "org.scala-lang.modules:scala-parallel-collections_2.13: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-parser-combinators_2.13", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources", - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang.modules:scala-xml_2.12:jar:sources", - "org.scala-lang.modules:scala-xml_2.13", - "org.scala-lang.modules:scala-xml_2.13:jar:sources", - "org.scala-lang:scala-compiler", - "org.scala-lang:scala-compiler:jar:sources", - "org.scala-lang:scala-library", - "org.scala-lang:scala-library:jar:sources", - "org.scala-lang:scala-reflect", - "org.scala-lang:scala-reflect:jar:sources", - "org.scala-sbt.ivy:ivy", - "org.scala-sbt.ivy:ivy:jar:sources", - "org.scala-sbt.jline:jline", - "org.scala-sbt.jline:jline:jar:sources", - "org.scala-sbt:collections_2.13", - "org.scala-sbt:collections_2.13:jar:sources", - "org.scala-sbt:compiler-bridge_2.13", - "org.scala-sbt:compiler-bridge_2.13:jar:sources", - "org.scala-sbt:compiler-interface", - "org.scala-sbt:compiler-interface:jar:sources", - "org.scala-sbt:core-macros_2.13", - "org.scala-sbt:core-macros_2.13:jar:sources", - "org.scala-sbt:io_2.12", - "org.scala-sbt:io_2.12:jar:sources", - "org.scala-sbt:io_2.13", - "org.scala-sbt:io_2.13:jar:sources", - "org.scala-sbt:launcher-interface", - "org.scala-sbt:launcher-interface:jar:sources", - "org.scala-sbt:librarymanagement-core_2.12", - "org.scala-sbt:librarymanagement-core_2.12:jar:sources", - "org.scala-sbt:librarymanagement-ivy_2.12", - "org.scala-sbt:librarymanagement-ivy_2.12:jar:sources", - "org.scala-sbt:sbinary_2.12", - "org.scala-sbt:sbinary_2.12:jar:sources", - "org.scala-sbt:sbinary_2.13", - "org.scala-sbt:sbinary_2.13:jar:sources", - "org.scala-sbt:test-agent", - "org.scala-sbt:test-agent:jar:sources", - "org.scala-sbt:test-interface", - "org.scala-sbt:test-interface:jar:sources", - "org.scala-sbt:util-cache_2.12", - "org.scala-sbt:util-cache_2.12:jar:sources", - "org.scala-sbt:util-control_2.12", - "org.scala-sbt:util-control_2.12:jar:sources", - "org.scala-sbt:util-control_2.13", - "org.scala-sbt:util-control_2.13:jar:sources", - "org.scala-sbt:util-interface", - "org.scala-sbt:util-interface:jar:sources", - "org.scala-sbt:util-logging_2.12", - "org.scala-sbt:util-logging_2.12:jar:sources", - "org.scala-sbt:util-logging_2.13", - "org.scala-sbt:util-logging_2.13:jar:sources", - "org.scala-sbt:util-position_2.12", - "org.scala-sbt:util-position_2.12:jar:sources", - "org.scala-sbt:util-position_2.13", - "org.scala-sbt:util-position_2.13:jar:sources", - "org.scala-sbt:util-relation_2.12", - "org.scala-sbt:util-relation_2.12:jar:sources", - "org.scala-sbt:util-relation_2.13", - "org.scala-sbt:util-relation_2.13:jar:sources", - "org.scala-sbt:zinc-apiinfo_2.13", - "org.scala-sbt:zinc-apiinfo_2.13:jar:sources", - "org.scala-sbt:zinc-classfile_2.13", - "org.scala-sbt:zinc-classfile_2.13:jar:sources", - "org.scala-sbt:zinc-classpath_2.13", - "org.scala-sbt:zinc-classpath_2.13:jar:sources", - "org.scala-sbt:zinc-compile-core_2.13", - "org.scala-sbt:zinc-compile-core_2.13:jar:sources", - "org.scala-sbt:zinc-core_2.13", - "org.scala-sbt:zinc-core_2.13:jar:sources", - "org.scala-sbt:zinc-persist-core-assembly", - "org.scala-sbt:zinc-persist-core-assembly:jar:sources", - "org.scala-sbt:zinc-persist_2.13", - "org.scala-sbt:zinc-persist_2.13:jar:sources", - "org.scala-sbt:zinc_2.13", - "org.scala-sbt:zinc_2.13:jar:sources", - "org.scalameta:jsonrpc_2.12", - "org.scalameta:jsonrpc_2.12:jar:sources", - "org.scalameta:lsp4s_2.12", - "org.scalameta:lsp4s_2.12:jar:sources", - "org.scalaz:scalaz-concurrent_2.12", - "org.scalaz:scalaz-concurrent_2.12:jar:sources", - "org.scalaz:scalaz-core_2.12", - "org.scalaz:scalaz-core_2.12:jar:sources", - "org.scalaz:scalaz-effect_2.12", - "org.scalaz:scalaz-effect_2.12:jar:sources", - "org.slf4j:slf4j-api", - "org.slf4j:slf4j-api:jar:sources", - "org.spire-math:jawn-parser_2.12", - "org.spire-math:jawn-parser_2.12:jar:sources", - "org.typelevel:cats-core_2.12", - "org.typelevel:cats-core_2.12:jar:sources", - "org.typelevel:cats-kernel_2.12", - "org.typelevel:cats-kernel_2.12:jar:sources", - "org.typelevel:cats-macros_2.12", - "org.typelevel:cats-macros_2.12:jar:sources", - "org.typelevel:machinist_2.12", - "org.typelevel:machinist_2.12:jar:sources", - "org.typelevel:macro-compat_2.12", - "org.typelevel:macro-compat_2.12:jar:sources" - ], - "https://mirror.bazel.build/repo1.maven.org/maven2/": [ - "ch.epfl.scala:bloop-backend_2.12", - "ch.epfl.scala:bloop-backend_2.12:jar:sources", - "ch.epfl.scala:bloop-config_2.12", - "ch.epfl.scala:bloop-config_2.12:jar:sources", - "ch.epfl.scala:bloop-frontend_2.12", - "ch.epfl.scala:bloop-frontend_2.12:jar:sources", - "ch.epfl.scala:bsp_2.12", - "ch.epfl.scala:bsp_2.12:jar:sources", - "ch.epfl.scala:case-app-annotations_2.12", - "ch.epfl.scala:case-app-annotations_2.12:jar:sources", - "ch.epfl.scala:case-app-util_2.12", - "ch.epfl.scala:case-app-util_2.12:jar:sources", - "ch.epfl.scala:case-app_2.12", - "ch.epfl.scala:case-app_2.12:jar:sources", - "ch.epfl.scala:compiler-interface", - "ch.epfl.scala:compiler-interface:jar:sources", - "ch.epfl.scala:nailgun-server", - "ch.epfl.scala:nailgun-server:jar:sources", - "ch.epfl.scala:zinc-apiinfo_2.12", - "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources", - "ch.epfl.scala:zinc-classfile_2.12", - "ch.epfl.scala:zinc-classfile_2.12:jar:sources", - "ch.epfl.scala:zinc-classpath_2.12", - "ch.epfl.scala:zinc-classpath_2.12:jar:sources", - "ch.epfl.scala:zinc-compile-core_2.12", - "ch.epfl.scala:zinc-compile-core_2.12:jar:sources", - "ch.epfl.scala:zinc-core_2.12", - "ch.epfl.scala:zinc-core_2.12:jar:sources", - "ch.epfl.scala:zinc-ivy-integration_2.12", - "ch.epfl.scala:zinc-ivy-integration_2.12:jar:sources", - "ch.epfl.scala:zinc-persist_2.12", - "ch.epfl.scala:zinc-persist_2.12:jar:sources", - "ch.epfl.scala:zinc_2.12", - "ch.epfl.scala:zinc_2.12: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.beachape:enumeratum-circe_2.12", - "com.beachape:enumeratum-circe_2.12:jar:sources", - "com.beachape:enumeratum-macros_2.12", - "com.beachape:enumeratum-macros_2.12:jar:sources", - "com.beachape:enumeratum_2.12", - "com.beachape:enumeratum_2.12:jar:sources", - "com.chuusai:shapeless_2.12", - "com.chuusai:shapeless_2.12:jar:sources", - "com.eed3si9n:gigahorse-core_2.12", - "com.eed3si9n:gigahorse-core_2.12:jar:sources", - "com.eed3si9n:gigahorse-okhttp_2.12", - "com.eed3si9n:gigahorse-okhttp_2.12:jar:sources", - "com.eed3si9n:shaded-jawn-parser_2.13", - "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources", - "com.eed3si9n:shaded-scalajson_2.12", - "com.eed3si9n:shaded-scalajson_2.12:jar:sources", - "com.eed3si9n:shaded-scalajson_2.13", - "com.eed3si9n:shaded-scalajson_2.13:jar:sources", - "com.eed3si9n:sjson-new-core_2.12", - "com.eed3si9n:sjson-new-core_2.12:jar:sources", - "com.eed3si9n:sjson-new-core_2.13", - "com.eed3si9n:sjson-new-core_2.13:jar:sources", - "com.eed3si9n:sjson-new-murmurhash_2.12", - "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources", - "com.eed3si9n:sjson-new-scalajson_2.12", - "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources", - "com.eed3si9n:sjson-new-scalajson_2.13", - "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources", - "com.github.pathikrit:better-files_2.12", - "com.github.pathikrit:better-files_2.12:jar:sources", - "com.google.code.findbugs:jsr305", - "com.google.errorprone:error_prone_annotations", - "com.google.errorprone:error_prone_annotations:jar:sources", - "com.google.guava:guava", - "com.google.guava:guava:jar:sources", - "com.google.j2objc:j2objc-annotations", - "com.google.j2objc:j2objc-annotations:jar:sources", - "com.google.protobuf:protobuf-java", - "com.google.protobuf:protobuf-java:jar:sources", - "com.jcraft:jsch", - "com.jcraft:jsch:jar:sources", - "com.lihaoyi:fansi_2.12", - "com.lihaoyi:fansi_2.12:jar:sources", - "com.lihaoyi:fastparse-utils_2.12", - "com.lihaoyi:fastparse-utils_2.12:jar:sources", - "com.lihaoyi:fastparse_2.12", - "com.lihaoyi:fastparse_2.12:jar:sources", - "com.lihaoyi:pprint_2.12", - "com.lihaoyi:pprint_2.12:jar:sources", - "com.lihaoyi:sourcecode_2.12", - "com.lihaoyi:sourcecode_2.12:jar:sources", - "com.lihaoyi:sourcecode_2.13", - "com.lihaoyi:sourcecode_2.13:jar:sources", - "com.lmax:disruptor", - "com.lmax:disruptor:jar:sources", - "com.squareup.okhttp3:okhttp", - "com.squareup.okhttp3:okhttp-urlconnection", - "com.squareup.okhttp3:okhttp-urlconnection:jar:sources", - "com.squareup.okhttp3:okhttp:jar:sources", - "com.squareup.okio:okio", - "com.squareup.okio:okio:jar:sources", - "com.swoval:file-tree-views", - "com.swoval:file-tree-views:jar:sources", - "com.thesamet.scalapb:lenses_2.13", - "com.thesamet.scalapb:lenses_2.13:jar:sources", - "com.thesamet.scalapb:scalapb-runtime_2.13", - "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources", - "com.trueaccord.lenses:lenses_2.12", - "com.trueaccord.lenses:lenses_2.12:jar:sources", - "com.trueaccord.scalapb:scalapb-runtime_2.12", - "com.trueaccord.scalapb:scalapb-runtime_2.12:jar:sources", - "com.typesafe.scala-logging:scala-logging_2.12", - "com.typesafe.scala-logging:scala-logging_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", - "com.zaxxer:nuprocess", - "com.zaxxer:nuprocess:jar:sources", - "io.circe:circe-core_2.12", - "io.circe:circe-core_2.12:jar:sources", - "io.circe:circe-derivation_2.12", - "io.circe:circe-derivation_2.12:jar:sources", - "io.circe:circe-generic-extras_2.12", - "io.circe:circe-generic-extras_2.12:jar:sources", - "io.circe:circe-generic_2.12", - "io.circe:circe-generic_2.12:jar:sources", - "io.circe:circe-jawn_2.12", - "io.circe:circe-jawn_2.12:jar:sources", - "io.circe:circe-numbers_2.12", - "io.circe:circe-numbers_2.12:jar:sources", - "io.circe:circe-parser_2.12", - "io.circe:circe-parser_2.12:jar:sources", - "io.get-coursier:coursier-cache_2.12", - "io.get-coursier:coursier-cache_2.12:jar:sources", - "io.get-coursier:coursier-scalaz-interop_2.12", - "io.get-coursier:coursier-scalaz-interop_2.12:jar:sources", - "io.get-coursier:coursier_2.12", - "io.get-coursier:coursier_2.12:jar:sources", - "io.github.java-diff-utils:java-diff-utils", - "io.github.java-diff-utils:java-diff-utils:jar:sources", - "io.github.soc:directories", - "io.github.soc:directories:jar:sources", - "io.monix:monix-eval_2.12", - "io.monix:monix-eval_2.12:jar:sources", - "io.monix:monix-execution_2.12", - "io.monix:monix-execution_2.12:jar:sources", - "io.monix:monix-reactive_2.12", - "io.monix:monix-reactive_2.12:jar:sources", - "io.monix:monix-types_2.12", - "io.monix:monix-types_2.12:jar:sources", - "io.monix:monix_2.12", - "io.monix:monix_2.12:jar:sources", - "jline:jline", - "jline:jline:jar:sources", - "me.vican.jorge:directory-watcher", - "me.vican.jorge:directory-watcher-better-files_2.12", - "me.vican.jorge:directory-watcher-better-files_2.12:jar:sources", - "me.vican.jorge:directory-watcher:jar:sources", - "net.java.dev.jna:jna", - "net.java.dev.jna:jna-platform", - "net.java.dev.jna:jna-platform:jar:sources", - "net.java.dev.jna:jna:jar:sources", - "net.openhft:zero-allocation-hashing", - "net.openhft:zero-allocation-hashing:jar:sources", - "net.sourceforge.argparse4j:argparse4j", - "net.sourceforge.argparse4j:argparse4j:jar:sources", - "org.apache.logging.log4j:log4j-api", - "org.apache.logging.log4j:log4j-api:jar:sources", - "org.apache.logging.log4j:log4j-core", - "org.apache.logging.log4j:log4j-core:jar:sources", - "org.codehaus.groovy:groovy", - "org.codehaus.groovy:groovy:jar:sources", - "org.codehaus.mojo:animal-sniffer-annotations", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources", - "org.fusesource.jansi:jansi", - "org.fusesource.jansi:jansi:jar:sources", - "org.jacoco:org.jacoco.core", - "org.jacoco:org.jacoco.core:jar:sources", - "org.jctools:jctools-core", - "org.jctools:jctools-core:jar:sources", - "org.jline:jline", - "org.jline:jline-terminal", - "org.jline:jline-terminal-jansi", - "org.jline:jline-terminal-jansi:jar:sources", - "org.jline:jline-terminal-jna", - "org.jline:jline-terminal-jna:jar:sources", - "org.jline:jline-terminal:jar:sources", - "org.jline:jline:jar:sources", - "org.ow2.asm:asm-debug-all", - "org.ow2.asm:asm-debug-all:jar:sources", - "org.reactivestreams:reactive-streams", - "org.reactivestreams:reactive-streams:jar:sources", - "org.scala-lang.modules:scala-collection-compat_2.13", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources", - "org.scala-lang.modules:scala-parallel-collections_2.13", - "org.scala-lang.modules:scala-parallel-collections_2.13: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-parser-combinators_2.13", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources", - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang.modules:scala-xml_2.12:jar:sources", - "org.scala-lang.modules:scala-xml_2.13", - "org.scala-lang.modules:scala-xml_2.13:jar:sources", - "org.scala-lang:scala-compiler", - "org.scala-lang:scala-compiler:jar:sources", - "org.scala-lang:scala-library", - "org.scala-lang:scala-library:jar:sources", - "org.scala-lang:scala-reflect", - "org.scala-lang:scala-reflect:jar:sources", - "org.scala-sbt.ivy:ivy", - "org.scala-sbt.ivy:ivy:jar:sources", - "org.scala-sbt.jline:jline", - "org.scala-sbt.jline:jline:jar:sources", - "org.scala-sbt:collections_2.13", - "org.scala-sbt:collections_2.13:jar:sources", - "org.scala-sbt:compiler-bridge_2.13", - "org.scala-sbt:compiler-bridge_2.13:jar:sources", - "org.scala-sbt:compiler-interface", - "org.scala-sbt:compiler-interface:jar:sources", - "org.scala-sbt:core-macros_2.13", - "org.scala-sbt:core-macros_2.13:jar:sources", - "org.scala-sbt:io_2.12", - "org.scala-sbt:io_2.12:jar:sources", - "org.scala-sbt:io_2.13", - "org.scala-sbt:io_2.13:jar:sources", - "org.scala-sbt:launcher-interface", - "org.scala-sbt:launcher-interface:jar:sources", - "org.scala-sbt:librarymanagement-core_2.12", - "org.scala-sbt:librarymanagement-core_2.12:jar:sources", - "org.scala-sbt:librarymanagement-ivy_2.12", - "org.scala-sbt:librarymanagement-ivy_2.12:jar:sources", - "org.scala-sbt:sbinary_2.12", - "org.scala-sbt:sbinary_2.12:jar:sources", - "org.scala-sbt:sbinary_2.13", - "org.scala-sbt:sbinary_2.13:jar:sources", - "org.scala-sbt:test-agent", - "org.scala-sbt:test-agent:jar:sources", - "org.scala-sbt:test-interface", - "org.scala-sbt:test-interface:jar:sources", - "org.scala-sbt:util-cache_2.12", - "org.scala-sbt:util-cache_2.12:jar:sources", - "org.scala-sbt:util-control_2.12", - "org.scala-sbt:util-control_2.12:jar:sources", - "org.scala-sbt:util-control_2.13", - "org.scala-sbt:util-control_2.13:jar:sources", - "org.scala-sbt:util-interface", - "org.scala-sbt:util-interface:jar:sources", - "org.scala-sbt:util-logging_2.12", - "org.scala-sbt:util-logging_2.12:jar:sources", - "org.scala-sbt:util-logging_2.13", - "org.scala-sbt:util-logging_2.13:jar:sources", - "org.scala-sbt:util-position_2.12", - "org.scala-sbt:util-position_2.12:jar:sources", - "org.scala-sbt:util-position_2.13", - "org.scala-sbt:util-position_2.13:jar:sources", - "org.scala-sbt:util-relation_2.12", - "org.scala-sbt:util-relation_2.12:jar:sources", - "org.scala-sbt:util-relation_2.13", - "org.scala-sbt:util-relation_2.13:jar:sources", - "org.scala-sbt:zinc-apiinfo_2.13", - "org.scala-sbt:zinc-apiinfo_2.13:jar:sources", - "org.scala-sbt:zinc-classfile_2.13", - "org.scala-sbt:zinc-classfile_2.13:jar:sources", - "org.scala-sbt:zinc-classpath_2.13", - "org.scala-sbt:zinc-classpath_2.13:jar:sources", - "org.scala-sbt:zinc-compile-core_2.13", - "org.scala-sbt:zinc-compile-core_2.13:jar:sources", - "org.scala-sbt:zinc-core_2.13", - "org.scala-sbt:zinc-core_2.13:jar:sources", - "org.scala-sbt:zinc-persist-core-assembly", - "org.scala-sbt:zinc-persist-core-assembly:jar:sources", - "org.scala-sbt:zinc-persist_2.13", - "org.scala-sbt:zinc-persist_2.13:jar:sources", - "org.scala-sbt:zinc_2.13", - "org.scala-sbt:zinc_2.13:jar:sources", - "org.scalameta:jsonrpc_2.12", - "org.scalameta:jsonrpc_2.12:jar:sources", - "org.scalameta:lsp4s_2.12", - "org.scalameta:lsp4s_2.12:jar:sources", - "org.scalaz:scalaz-concurrent_2.12", - "org.scalaz:scalaz-concurrent_2.12:jar:sources", - "org.scalaz:scalaz-core_2.12", - "org.scalaz:scalaz-core_2.12:jar:sources", - "org.scalaz:scalaz-effect_2.12", - "org.scalaz:scalaz-effect_2.12:jar:sources", - "org.slf4j:slf4j-api", - "org.slf4j:slf4j-api:jar:sources", - "org.spire-math:jawn-parser_2.12", - "org.spire-math:jawn-parser_2.12:jar:sources", - "org.typelevel:cats-core_2.12", - "org.typelevel:cats-core_2.12:jar:sources", - "org.typelevel:cats-kernel_2.12", - "org.typelevel:cats-kernel_2.12:jar:sources", - "org.typelevel:cats-macros_2.12", - "org.typelevel:cats-macros_2.12:jar:sources", - "org.typelevel:machinist_2.12", - "org.typelevel:machinist_2.12:jar:sources", - "org.typelevel:macro-compat_2.12", - "org.typelevel:macro-compat_2.12:jar:sources" - ] - }, - "version": "2" } diff --git a/annex_proto_install.json b/annex_proto_install.json index a413f00eb..293dfe901 100644 --- a/annex_proto_install.json +++ b/annex_proto_install.json @@ -1,204 +1,283 @@ { - "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": 538858897, - "__RESOLVED_ARTIFACTS_HASH": -1836499631, - "artifacts": { - "com.github.os72:protoc-jar": { - "shasums": { - "jar": "0f80049a37e9ec184ae2055fb15b2b08b2858fea5c569ba4818e031cb3a023e3", - "sources": "6528f29b2ea969a6df1f0816da81174be6b4a5750f3f54e3ca78571ece915ce2" - }, - "version": "3.11.4" - }, - "com.google.protobuf:protobuf-java": { - "shasums": { - "jar": "6a9a2dff91dcf71f85be71ae971f6164b5a631dcd34bff08f0618535ca44ad02", - "sources": "98118edf28c74f173b25d8fce03f86ff95d61009df0c66324333573ec842f5d3" - }, - "version": "3.19.6" - }, - "com.thesamet.scalapb:compilerplugin_2.13": { - "shasums": { - "jar": "344350e70088e5c62b227f05c2796ee5372fb58ac6813caf3b006201ba5d9215", - "sources": "1c0ae73755353a67f3bd5e50496243c1edabeadbdff895e56234e9e0d601b8af" - }, - "version": "0.11.13" - }, - "com.thesamet.scalapb:protoc-bridge_2.13": { - "shasums": { - "jar": "0c1838a1a696efcde208f02cbdcc47f8ea7b3f965f1cb29e1ff143e5772a01ce", - "sources": "c2287667773b171051065ceb76adfbe9f6dc1f4e4fff03e0f0b288d659b7a47c" - }, - "version": "0.9.6" - }, - "com.thesamet.scalapb:protoc-gen_2.13": { - "shasums": { - "jar": "cf5a18f2ecf1373ac1cb14799943d2aff8d3762cf9595a14e5052098a6e5a349", - "sources": "da917be8e7ba6c8eccdb5b155c9c515fbf2ef9e295b30934c27e2cf6519ab8b5" - }, - "version": "0.9.6" - }, - "dev.dirs:directories": { - "shasums": { - "jar": "6d18fe25aa30b7e08b908cd21151d8f96e22965c640acd7751add9bbfe6137d4", - "sources": "192050e3a2a0eba7f22745765aaaf567ce6d515fe6a992688b4e262e9f14947b" - }, - "version": "26" - }, - "org.scala-lang.modules:scala-collection-compat_2.13": { - "shasums": { - "jar": "eb7494e25e62cd272223f5013cfcc31228f01aa23526df70ea6008190de1ae0d", - "sources": "31336bbcf4568c5b7b519e5e0318e9ff5a8c042d2531a2b85ed332ae4fb74ec2" - }, - "version": "2.9.0" - }, - "org.scala-lang:scala-library": { - "shasums": { - "jar": "e6ca607c3fce03e8fa38af3374ce1f8bb098e316e8bf6f6d27331360feddb1c1", - "sources": "a991527579c81765cc74ecdbf57fe8fda9c1fd88fceebf19266f030e456ee0f0" - }, - "version": "2.13.10" + "dependency_tree": { + "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", + "__INPUT_ARTIFACTS_HASH": -635419942, + "__RESOLVED_ARTIFACTS_HASH": 1274318306, + "conflict_resolution": {}, + "dependencies": [ + { + "coord": "com.github.os72:protoc-jar:3.11.4", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/github/os72/protoc-jar/3.11.4/protoc-jar-3.11.4.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/github/os72/protoc-jar/3.11.4/protoc-jar-3.11.4.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/github/os72/protoc-jar/3.11.4/protoc-jar-3.11.4.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.4/protoc-jar-3.11.4.jar" + ], + "sha256": "0f80049a37e9ec184ae2055fb15b2b08b2858fea5c569ba4818e031cb3a023e3", + "url": "https://repo.maven.apache.org/maven2/com/github/os72/protoc-jar/3.11.4/protoc-jar-3.11.4.jar" + }, + { + "coord": "com.github.os72:protoc-jar:jar:sources:3.11.4", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/github/os72/protoc-jar/3.11.4/protoc-jar-3.11.4-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/github/os72/protoc-jar/3.11.4/protoc-jar-3.11.4-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/github/os72/protoc-jar/3.11.4/protoc-jar-3.11.4-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.4/protoc-jar-3.11.4-sources.jar" + ], + "sha256": "6528f29b2ea969a6df1f0816da81174be6b4a5750f3f54e3ca78571ece915ce2", + "url": "https://repo.maven.apache.org/maven2/com/github/os72/protoc-jar/3.11.4/protoc-jar-3.11.4-sources.jar" + }, + { + "coord": "com.google.protobuf:protobuf-java:3.19.6", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6.jar" + ], + "sha256": "6a9a2dff91dcf71f85be71ae971f6164b5a631dcd34bff08f0618535ca44ad02", + "url": "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6.jar" + }, + { + "coord": "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6-sources.jar" + ], + "sha256": "98118edf28c74f173b25d8fce03f86ff95d61009df0c66324333573ec842f5d3", + "url": "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6-sources.jar" + }, + { + "coord": "com.thesamet.scalapb:compilerplugin_2.13:0.11.17", + "dependencies": [ + "com.google.protobuf:protobuf-java:3.19.6", + "com.thesamet.scalapb:protoc-bridge_2.13:0.9.7", + "com.thesamet.scalapb:protoc-gen_2.13:0.9.7", + "dev.dirs:directories:26", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "com.google.protobuf:protobuf-java:3.19.6", + "com.thesamet.scalapb:protoc-gen_2.13:0.9.7", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.17/compilerplugin_2.13-0.11.17.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.17/compilerplugin_2.13-0.11.17.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.17/compilerplugin_2.13-0.11.17.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.17/compilerplugin_2.13-0.11.17.jar" + ], + "sha256": "d36b84059289c7aa2f2bf08eeab7e85084fcf72bf58b337edf167c73218880d7", + "url": "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.17/compilerplugin_2.13-0.11.17.jar" + }, + { + "coord": "com.thesamet.scalapb:compilerplugin_2.13:jar:sources:0.11.17", + "dependencies": [ + "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "com.thesamet.scalapb:protoc-bridge_2.13:jar:sources:0.9.7", + "com.thesamet.scalapb:protoc-gen_2.13:jar:sources:0.9.7", + "dev.dirs:directories:jar:sources:26", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "com.thesamet.scalapb:protoc-gen_2.13:jar:sources:0.9.7", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.17/compilerplugin_2.13-0.11.17-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.17/compilerplugin_2.13-0.11.17-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.17/compilerplugin_2.13-0.11.17-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.17/compilerplugin_2.13-0.11.17-sources.jar" + ], + "sha256": "451346c5d8c6e4282380ba4de71dc06c504ce3bd0727acbc14e805f9feb08729", + "url": "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.17/compilerplugin_2.13-0.11.17-sources.jar" + }, + { + "coord": "com.thesamet.scalapb:protoc-bridge_2.13:0.9.7", + "dependencies": [ + "dev.dirs:directories:26", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "dev.dirs:directories:26", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/protoc-bridge_2.13/0.9.7/protoc-bridge_2.13-0.9.7.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/protoc-bridge_2.13/0.9.7/protoc-bridge_2.13-0.9.7.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/thesamet/scalapb/protoc-bridge_2.13/0.9.7/protoc-bridge_2.13-0.9.7.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/thesamet/scalapb/protoc-bridge_2.13/0.9.7/protoc-bridge_2.13-0.9.7.jar" + ], + "sha256": "403f0e7223c8fd052cff0fbf977f3696c387a696a3a12d7b031d95660c7552f5", + "url": "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/protoc-bridge_2.13/0.9.7/protoc-bridge_2.13-0.9.7.jar" + }, + { + "coord": "com.thesamet.scalapb:protoc-bridge_2.13:jar:sources:0.9.7", + "dependencies": [ + "dev.dirs:directories:jar:sources:26", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "dev.dirs:directories:jar:sources:26", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/protoc-bridge_2.13/0.9.7/protoc-bridge_2.13-0.9.7-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/protoc-bridge_2.13/0.9.7/protoc-bridge_2.13-0.9.7-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/thesamet/scalapb/protoc-bridge_2.13/0.9.7/protoc-bridge_2.13-0.9.7-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/thesamet/scalapb/protoc-bridge_2.13/0.9.7/protoc-bridge_2.13-0.9.7-sources.jar" + ], + "sha256": "887e1b1cd836be65e537c46d4f75f6d30500ef60d431c36fab991c9d1193622f", + "url": "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/protoc-bridge_2.13/0.9.7/protoc-bridge_2.13-0.9.7-sources.jar" + }, + { + "coord": "com.thesamet.scalapb:protoc-gen_2.13:0.9.7", + "dependencies": [ + "com.thesamet.scalapb:protoc-bridge_2.13:0.9.7", + "dev.dirs:directories:26", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "com.thesamet.scalapb:protoc-bridge_2.13:0.9.7", + "org.scala-lang:scala-library:2.13.14" + ], + "exclusions": [ + "org.scala-lang.modules:*" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/protoc-gen_2.13/0.9.7/protoc-gen_2.13-0.9.7.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/protoc-gen_2.13/0.9.7/protoc-gen_2.13-0.9.7.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/thesamet/scalapb/protoc-gen_2.13/0.9.7/protoc-gen_2.13-0.9.7.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/thesamet/scalapb/protoc-gen_2.13/0.9.7/protoc-gen_2.13-0.9.7.jar" + ], + "sha256": "f9943ce49261aad80a063c2ce55b01fb62cfd9487ffa2d36a2eade467bc16b23", + "url": "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/protoc-gen_2.13/0.9.7/protoc-gen_2.13-0.9.7.jar" + }, + { + "coord": "com.thesamet.scalapb:protoc-gen_2.13:jar:sources:0.9.7", + "dependencies": [ + "com.thesamet.scalapb:protoc-bridge_2.13:jar:sources:0.9.7", + "dev.dirs:directories:jar:sources:26", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "com.thesamet.scalapb:protoc-bridge_2.13:jar:sources:0.9.7", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "exclusions": [ + "org.scala-lang.modules:*" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/protoc-gen_2.13/0.9.7/protoc-gen_2.13-0.9.7-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/protoc-gen_2.13/0.9.7/protoc-gen_2.13-0.9.7-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/thesamet/scalapb/protoc-gen_2.13/0.9.7/protoc-gen_2.13-0.9.7-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/thesamet/scalapb/protoc-gen_2.13/0.9.7/protoc-gen_2.13-0.9.7-sources.jar" + ], + "sha256": "544a448d883e3d81c6a0bc060bb4a823b2a26495455eb326dc434d52cddaad69", + "url": "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/protoc-gen_2.13/0.9.7/protoc-gen_2.13-0.9.7-sources.jar" + }, + { + "coord": "dev.dirs:directories:26", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/dev/dirs/directories/26/directories-26.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/dev/dirs/directories/26/directories-26.jar", + "https://maven-central.storage-download.googleapis.com/maven2/dev/dirs/directories/26/directories-26.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/dev/dirs/directories/26/directories-26.jar" + ], + "sha256": "6d18fe25aa30b7e08b908cd21151d8f96e22965c640acd7751add9bbfe6137d4", + "url": "https://repo.maven.apache.org/maven2/dev/dirs/directories/26/directories-26.jar" + }, + { + "coord": "dev.dirs:directories:jar:sources:26", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/dev/dirs/directories/26/directories-26-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/dev/dirs/directories/26/directories-26-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/dev/dirs/directories/26/directories-26-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/dev/dirs/directories/26/directories-26-sources.jar" + ], + "sha256": "192050e3a2a0eba7f22745765aaaf567ce6d515fe6a992688b4e262e9f14947b", + "url": "https://repo.maven.apache.org/maven2/dev/dirs/directories/26/directories-26-sources.jar" + }, + { + "coord": "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0.jar" + ], + "sha256": "befff482233cd7f9a7ca1e1f5a36ede421c018e6ce82358978c475d45532755f", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0.jar" + }, + { + "coord": "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0-sources.jar" + ], + "sha256": "1a60fde64d08f19fe2ce38d99accf6cfefa4eeac3c194fa36ef5f6b89b5f7564", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0-sources.jar" + }, + { + "coord": "org.scala-lang:scala-library:2.13.14", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14.jar" + ], + "sha256": "43e0ca1583df1966eaf02f0fbddcfb3784b995dd06bfc907209347758ce4b7e3", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14.jar" + }, + { + "coord": "org.scala-lang:scala-library:jar:sources:2.13.14", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14-sources.jar" + ], + "sha256": "4be0650f427ebf6ff8a462fe634fdc02665d59ec3962c4d98dbf5ac766f1dd4f", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14-sources.jar" + } + ], + "version": "0.1.0" } - }, - "dependencies": { - "com.thesamet.scalapb:compilerplugin_2.13": [ - "com.google.protobuf:protobuf-java", - "com.thesamet.scalapb:protoc-gen_2.13", - "org.scala-lang.modules:scala-collection-compat_2.13", - "org.scala-lang:scala-library" - ], - "com.thesamet.scalapb:protoc-bridge_2.13": [ - "dev.dirs:directories", - "org.scala-lang:scala-library" - ], - "com.thesamet.scalapb:protoc-gen_2.13": [ - "com.thesamet.scalapb:protoc-bridge_2.13", - "org.scala-lang:scala-library" - ], - "org.scala-lang.modules:scala-collection-compat_2.13": [ - "org.scala-lang:scala-library" - ] - }, - "packages": { - "com.github.os72:protoc-jar": [ - "com.github.os72.protocjar" - ], - "com.google.protobuf:protobuf-java": [ - "com.google.protobuf", - "com.google.protobuf.compiler" - ], - "com.thesamet.scalapb:compilerplugin_2.13": [ - "scalapb", - "scalapb.compiler", - "scalapb.internal", - "scalapb.options", - "scalapb.options.compiler" - ], - "com.thesamet.scalapb:protoc-bridge_2.13": [ - "protocbridge", - "protocbridge.codegen", - "protocbridge.frontend" - ], - "com.thesamet.scalapb:protoc-gen_2.13": [ - "protocgen" - ], - "dev.dirs:directories": [ - "dev.dirs" - ], - "org.scala-lang.modules:scala-collection-compat_2.13": [ - "scala.collection.compat", - "scala.collection.compat.immutable", - "scala.util.control.compat" - ], - "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" - ] - }, - "repositories": { - "https://repo.maven.apache.org/maven2/": [ - "com.github.os72:protoc-jar", - "com.github.os72:protoc-jar:jar:sources", - "com.google.protobuf:protobuf-java", - "com.google.protobuf:protobuf-java:jar:sources", - "com.thesamet.scalapb:compilerplugin_2.13", - "com.thesamet.scalapb:compilerplugin_2.13:jar:sources", - "com.thesamet.scalapb:protoc-bridge_2.13", - "com.thesamet.scalapb:protoc-bridge_2.13:jar:sources", - "com.thesamet.scalapb:protoc-gen_2.13", - "com.thesamet.scalapb:protoc-gen_2.13:jar:sources", - "dev.dirs:directories", - "dev.dirs:directories:jar:sources", - "org.scala-lang.modules:scala-collection-compat_2.13", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources", - "org.scala-lang:scala-library", - "org.scala-lang:scala-library:jar:sources" - ], - "https://maven-central.storage-download.googleapis.com/maven2/": [ - "com.github.os72:protoc-jar", - "com.github.os72:protoc-jar:jar:sources", - "com.google.protobuf:protobuf-java", - "com.google.protobuf:protobuf-java:jar:sources", - "com.thesamet.scalapb:compilerplugin_2.13", - "com.thesamet.scalapb:compilerplugin_2.13:jar:sources", - "com.thesamet.scalapb:protoc-bridge_2.13", - "com.thesamet.scalapb:protoc-bridge_2.13:jar:sources", - "com.thesamet.scalapb:protoc-gen_2.13", - "com.thesamet.scalapb:protoc-gen_2.13:jar:sources", - "dev.dirs:directories", - "dev.dirs:directories:jar:sources", - "org.scala-lang.modules:scala-collection-compat_2.13", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources", - "org.scala-lang:scala-library", - "org.scala-lang:scala-library:jar:sources" - ], - "https://mirror.bazel.build/repo1.maven.org/maven2/": [ - "com.github.os72:protoc-jar", - "com.github.os72:protoc-jar:jar:sources", - "com.google.protobuf:protobuf-java", - "com.google.protobuf:protobuf-java:jar:sources", - "com.thesamet.scalapb:compilerplugin_2.13", - "com.thesamet.scalapb:compilerplugin_2.13:jar:sources", - "com.thesamet.scalapb:protoc-bridge_2.13", - "com.thesamet.scalapb:protoc-bridge_2.13:jar:sources", - "com.thesamet.scalapb:protoc-gen_2.13", - "com.thesamet.scalapb:protoc-gen_2.13:jar:sources", - "dev.dirs:directories", - "dev.dirs:directories:jar:sources", - "org.scala-lang.modules:scala-collection-compat_2.13", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources", - "org.scala-lang:scala-library", - "org.scala-lang:scala-library:jar:sources" - ] - }, - "version": "2" } diff --git a/annex_scalafmt_install.json b/annex_scalafmt_install.json index f4c7cadbc..fabb53b9c 100644 --- a/annex_scalafmt_install.json +++ b/annex_scalafmt_install.json @@ -1,751 +1,1153 @@ { - "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": 922310595, - "__RESOLVED_ARTIFACTS_HASH": 1798809364, - "conflict_resolution": { - "com.geirsson:metaconfig-core_2.13:0.9.14": "com.geirsson:metaconfig-core_2.13:0.9.15", - "org.scalameta:parsers_2.13:4.4.27": "org.scalameta:parsers_2.13:4.4.29" - }, - "artifacts": { - "com.geirsson:metaconfig-core_2.13": { - "shasums": { - "jar": "c5aad998af8b4ee8c1750e4e2fa214d3a997e8904cf1b5a1235a0a3e374c91e4", - "sources": "4d846214c9de2f671991e182e9e0ae23057ac44f35ad0641991242f3e3e18076" - }, - "version": "0.9.15" - }, - "com.geirsson:metaconfig-typesafe-config_2.13": { - "shasums": { - "jar": "e49ffa30df2f2266a387320366c3022319cacd33d26eca0d26d93acdd536cabc", - "sources": "11420ff0352bcf9047f48265c5b639bc883f4637abaebeae590ba97f42ef65aa" - }, - "version": "0.9.15" - }, - "com.google.protobuf:protobuf-java": { - "shasums": { - "jar": "8d0e2f9834f4fc1a083a65239adc507ca83682c754a27f4c80e4f21990eff686", - "sources": "5490e99493ade0f34719dd2943832bc4f8455231e9bf69993de20ca1e09e53f0" - }, - "version": "3.15.8" - }, - "com.lihaoyi:fansi_2.13": { - "shasums": { - "jar": "250014f81c734b9f5bb8ffc92cfad42c2425ffd8d60fa27e0828adf07483ebfb", - "sources": "cb77e6c0850853731c3a8f62d78120e09baf05d2bfa8f8d393082b3482233085" - }, - "version": "0.2.14" - }, - "com.lihaoyi:geny_2.13": { - "shasums": { - "jar": "ca3857a3f95266e0d87e1a1f26c8592c53c12ac7203f911759415f6c8a43df7d", - "sources": "ece40b310bd60d33613d394796063260f07aa6d8f52675d901477a092d85b48e" - }, - "version": "0.6.5" - }, - "com.lihaoyi:pprint_2.13": { - "shasums": { - "jar": "c4f89810da70c3100b52458a85f8d520f54243e05047b98e829e2473f0092283", - "sources": "7b8f1fd72a4af45507c96658352810bf4c247118de9d7b9f01ac626a0148f658" - }, - "version": "0.6.6" - }, - "com.lihaoyi:sourcecode_2.13": { - "shasums": { - "jar": "a639a90e2d21bbafd8a5e213c65442aad200ee086951605cbda8835bc6ef11d3", - "sources": "e4cae365cd26b19ffb1491472cbc91ed853bb2a1cbbcc8176d0187affebd8bbe" - }, - "version": "0.2.7" - }, - "com.thesamet.scalapb:lenses_2.13": { - "shasums": { - "jar": "18943a007752b150ae45f27e901c34f0e92009304f2f804ef156ab3056d79874", - "sources": "b03c01b1cf500431073b1ac82b0736c0b5689734318bcbe909d8df2767eda9a9" - }, - "version": "0.11.4" - }, - "com.thesamet.scalapb:scalapb-runtime_2.13": { - "shasums": { - "jar": "3be88effcb57ea136a2e5c377cdda3924d61b024afc2169f892c46662e266288", - "sources": "169a8d68b376b8fc34e6812315c714408894b5c92eea1f0672d68f8479be9719" - }, - "version": "0.11.4" - }, - "com.typesafe:config": { - "shasums": { - "jar": "4c0aa7e223c75c8840c41fc183d4cd3118140a1ee503e3e08ce66ed2794c948f", - "sources": "89af318a607f7e2b2691ed1ef4b4890bd37ea17d6986b0aec50dd4d5f889520c" - }, - "version": "1.4.1" - }, - "net.java.dev.jna:jna": { - "shasums": { - "jar": "01cb505c0698d0f7acf3524c7e73acb7dc424a5bae5e9c86ce44075ab32bc4ee", - "sources": "b2c47bfe2b471c3e03e0e7ffca9c2d23c3e6f63fca8a443a00129c957235ac5c" - }, - "version": "5.3.1" - }, - "org.jline:jline": { - "shasums": { - "jar": "c99ddcfa5431cab88d1cd40fd63bec6ab5a3fe2e83877051198539af66592a46", - "sources": "153e60f5dea73b68f0275d45d2dbd709a1397e3e9423ed44fbcad68eada9782c" - }, - "version": "3.19.0" - }, - "org.scala-lang.modules:scala-collection-compat_2.13": { - "shasums": { - "jar": "93f8bf202ac28c4ca13562e31f6881a7770768e12b056b568139f37c025a3841", - "sources": "20a598b2e792b1837b3ca2586c67147eb5dc10bda5947d85b62b8d8818dc85f6" - }, - "version": "2.5.0" - }, - "org.scala-lang.modules:scala-parallel-collections_2.13": { - "shasums": { - "jar": "68f266c4fa37cb20a76e905ad940e241190ce288b7e4a9877f1dd1261cd1a9a7", - "sources": "7f190cd21b0a2de3e0509920b5d548174c2c4a791108b854673ea40f3ea331d2" - }, - "version": "1.0.4" - }, - "org.scala-lang:scala-compiler": { - "shasums": { - "jar": "310d263d622a3d016913e94ee00b119d270573a5ceaa6b21312d69637fd9eec1", - "sources": "60d76ceef8357452abd645224dbc619f432f97175ac669213c7c25bd7df8d9a4" - }, - "version": "2.13.6" - }, - "org.scala-lang:scala-library": { - "shasums": { - "jar": "f19ed732e150d3537794fd3fe42ee18470a3f707efd499ecd05a99e727ff6c8a", - "sources": "8dd2744253f11da9684396f05ae16e7ab87827a971099636ec100fff42dc1ed3" - }, - "version": "2.13.6" - }, - "org.scala-lang:scala-reflect": { - "shasums": { - "jar": "f713593809b387c60935bb9a940dfcea53bd0dbf8fdc8d10739a2896f8ac56fa", - "sources": "d39f09971573ebf9e23a78d4e867548fb62cccf820af648f6969b8bb1d672d57" - }, - "version": "2.13.6" - }, - "org.scala-lang:scalap": { - "shasums": { - "jar": "bbfa4ab0603f510b16114371a35b9c34d20946edfc1aa8f3fd31014b9f06b5b1", - "sources": "2e41ea75538dd07436b84d8d615b7db22099eea4d45368c32307aeb5adee5727" - }, - "version": "2.13.6" - }, - "org.scalameta:common_2.13": { - "shasums": { - "jar": "8b84fae23e2971270436dbd8a81be3c422075d9ad58c1075babefef775290af4", - "sources": "81f38a13d90ca254fe1cff82ccdc86a1286cf283a8f0f8a12260a427140fdac6" - }, - "version": "4.4.29" - }, - "org.scalameta:fastparse-v2_2.13": { - "shasums": { - "jar": "8fca8597ad6d7c13c48009ee13bbe80c176b08ab12e68af54a50f7f69d8447c5", - "sources": "8b15f0ab21de220ced6ef14d1854f1446123371ef9d4020e1d4be941c3e488b2" - }, - "version": "2.3.1" - }, - "org.scalameta:parsers_2.13": { - "shasums": { - "jar": "f176ea199bd92cab32520ae11fb925171754a56012afce5d54c3a1b174634826", - "sources": "4cead5d896663540a8859c7b923c1d0bb4fe73f9a2509a51728b745102b470a0" - }, - "version": "4.4.29" - }, - "org.scalameta:scalafmt-core_2.13": { - "shasums": { - "jar": "03b5f5f89fa015b34002cf3492bb416d0e214336b33e1ededd37aa0dbc9f646d", - "sources": "0497e926dcca931c8dacfd6e21f77af51897f70b296c865d6d785fc591db21ee" - }, - "version": "3.1.0" - }, - "org.scalameta:scalafmt-sysops_2.13": { - "shasums": { - "jar": "711ac49c9b918b9184148e418993111166688f07126ca920a4aca16de6f6fa9c", - "sources": "367789cadfef9f45f0bf811f3fa5b4dfa7fb2bc27f352e3515a507cbaa6c27fb" - }, - "version": "3.1.0" - }, - "org.scalameta:scalameta_2.13": { - "shasums": { - "jar": "5cea0da6bb2b0055fc46bdad13642696326ad4e94f4ff5029bf4583639977083", - "sources": "9058d835459ffb42c356958d385695ef68c535f27857e24e9203886a58217795" - }, - "version": "4.4.29" - }, - "org.scalameta:trees_2.13": { - "shasums": { - "jar": "8cc2f25b6914f5bae24656dd4272fe34de54083f725d5838168f865bc93226d7", - "sources": "a5c84cb4f20ce53147e2db0376a4ea5c31d5f0e1ccf69a1af32c6d8a2863bba6" - }, - "version": "4.4.29" - }, - "org.typelevel:paiges-core_2.13": { - "shasums": { - "jar": "9484ac95856510459d1bd52a77a6b93cdd641560decdf9910395ee4d17e88163", - "sources": "e2ad8c00c992eee19f5c42374423046b85f64167a2674a34ae7f972d79ee69dc" - }, - "version": "0.4.2" + "dependency_tree": { + "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", + "__INPUT_ARTIFACTS_HASH": -34931404, + "__RESOLVED_ARTIFACTS_HASH": 1441971202, + "conflict_resolution": {}, + "dependencies": [ + { + "coord": "com.geirsson:metaconfig-core_2.13:0.12.0", + "dependencies": [ + "com.geirsson:metaconfig-pprint_2.13:0.12.0", + "com.lihaoyi:fansi_2.13:0.4.0", + "com.lihaoyi:sourcecode_2.13:0.4.2", + "net.java.dev.jna:jna:5.14.0", + "org.jline:jline:3.25.1", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.typelevel:paiges-core_2.13:0.4.3" + ], + "directDependencies": [ + "com.geirsson:metaconfig-pprint_2.13:0.12.0", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.typelevel:paiges-core_2.13:0.4.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/geirsson/metaconfig-core_2.13/0.12.0/metaconfig-core_2.13-0.12.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/geirsson/metaconfig-core_2.13/0.12.0/metaconfig-core_2.13-0.12.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/geirsson/metaconfig-core_2.13/0.12.0/metaconfig-core_2.13-0.12.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/geirsson/metaconfig-core_2.13/0.12.0/metaconfig-core_2.13-0.12.0.jar" + ], + "sha256": "2c91199ae5b206afdd52538f8c4da67c1794bcce0b5b06cf25679db00cf32c19", + "url": "https://repo.maven.apache.org/maven2/com/geirsson/metaconfig-core_2.13/0.12.0/metaconfig-core_2.13-0.12.0.jar" + }, + { + "coord": "com.geirsson:metaconfig-core_2.13:jar:sources:0.12.0", + "dependencies": [ + "com.geirsson:metaconfig-pprint_2.13:jar:sources:0.12.0", + "com.lihaoyi:fansi_2.13:jar:sources:0.4.0", + "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.jline:jline:jar:sources:3.25.1", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.typelevel:paiges-core_2.13:jar:sources:0.4.3" + ], + "directDependencies": [ + "com.geirsson:metaconfig-pprint_2.13:jar:sources:0.12.0", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.typelevel:paiges-core_2.13:jar:sources:0.4.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/geirsson/metaconfig-core_2.13/0.12.0/metaconfig-core_2.13-0.12.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/geirsson/metaconfig-core_2.13/0.12.0/metaconfig-core_2.13-0.12.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/geirsson/metaconfig-core_2.13/0.12.0/metaconfig-core_2.13-0.12.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/geirsson/metaconfig-core_2.13/0.12.0/metaconfig-core_2.13-0.12.0-sources.jar" + ], + "sha256": "ee580615d04a856f07ef3c951d3bd11b0d1f5d1c3f25394bc6e9b14a7054fb14", + "url": "https://repo.maven.apache.org/maven2/com/geirsson/metaconfig-core_2.13/0.12.0/metaconfig-core_2.13-0.12.0-sources.jar" + }, + { + "coord": "com.geirsson:metaconfig-pprint_2.13:0.12.0", + "dependencies": [ + "com.lihaoyi:fansi_2.13:0.4.0", + "com.lihaoyi:sourcecode_2.13:0.4.2", + "net.java.dev.jna:jna:5.14.0", + "org.jline:jline:3.25.1", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14" + ], + "directDependencies": [ + "com.lihaoyi:fansi_2.13:0.4.0", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/geirsson/metaconfig-pprint_2.13/0.12.0/metaconfig-pprint_2.13-0.12.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/geirsson/metaconfig-pprint_2.13/0.12.0/metaconfig-pprint_2.13-0.12.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/geirsson/metaconfig-pprint_2.13/0.12.0/metaconfig-pprint_2.13-0.12.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/geirsson/metaconfig-pprint_2.13/0.12.0/metaconfig-pprint_2.13-0.12.0.jar" + ], + "sha256": "6d8b0b4279116c11d4f29443bd2a9411bedb3d86ccaf964599a9420f530ed062", + "url": "https://repo.maven.apache.org/maven2/com/geirsson/metaconfig-pprint_2.13/0.12.0/metaconfig-pprint_2.13-0.12.0.jar" + }, + { + "coord": "com.geirsson:metaconfig-pprint_2.13:jar:sources:0.12.0", + "dependencies": [ + "com.lihaoyi:fansi_2.13:jar:sources:0.4.0", + "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.jline:jline:jar:sources:3.25.1", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" + ], + "directDependencies": [ + "com.lihaoyi:fansi_2.13:jar:sources:0.4.0", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/geirsson/metaconfig-pprint_2.13/0.12.0/metaconfig-pprint_2.13-0.12.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/geirsson/metaconfig-pprint_2.13/0.12.0/metaconfig-pprint_2.13-0.12.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/geirsson/metaconfig-pprint_2.13/0.12.0/metaconfig-pprint_2.13-0.12.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/geirsson/metaconfig-pprint_2.13/0.12.0/metaconfig-pprint_2.13-0.12.0-sources.jar" + ], + "sha256": "c6e46a8f940b62574b09edce3a0b0f3824e7241d46eacd0518c4b82f66bea8b3", + "url": "https://repo.maven.apache.org/maven2/com/geirsson/metaconfig-pprint_2.13/0.12.0/metaconfig-pprint_2.13-0.12.0-sources.jar" + }, + { + "coord": "com.geirsson:metaconfig-typesafe-config_2.13:0.12.0", + "dependencies": [ + "com.geirsson:metaconfig-core_2.13:0.12.0", + "com.geirsson:metaconfig-pprint_2.13:0.12.0", + "com.lihaoyi:fansi_2.13:0.4.0", + "com.lihaoyi:sourcecode_2.13:0.4.2", + "com.typesafe:config:1.4.1", + "net.java.dev.jna:jna:5.14.0", + "org.jline:jline:3.25.1", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.typelevel:paiges-core_2.13:0.4.3" + ], + "directDependencies": [ + "com.geirsson:metaconfig-core_2.13:0.12.0", + "com.typesafe:config:1.4.1", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/geirsson/metaconfig-typesafe-config_2.13/0.12.0/metaconfig-typesafe-config_2.13-0.12.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/geirsson/metaconfig-typesafe-config_2.13/0.12.0/metaconfig-typesafe-config_2.13-0.12.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/geirsson/metaconfig-typesafe-config_2.13/0.12.0/metaconfig-typesafe-config_2.13-0.12.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/geirsson/metaconfig-typesafe-config_2.13/0.12.0/metaconfig-typesafe-config_2.13-0.12.0.jar" + ], + "sha256": "b4c5dbf863dadde363d8bd24333ce1091fec94fc5b88efd04607a26f3eab61b8", + "url": "https://repo.maven.apache.org/maven2/com/geirsson/metaconfig-typesafe-config_2.13/0.12.0/metaconfig-typesafe-config_2.13-0.12.0.jar" + }, + { + "coord": "com.geirsson:metaconfig-typesafe-config_2.13:jar:sources:0.12.0", + "dependencies": [ + "com.geirsson:metaconfig-core_2.13:jar:sources:0.12.0", + "com.geirsson:metaconfig-pprint_2.13:jar:sources:0.12.0", + "com.lihaoyi:fansi_2.13:jar:sources:0.4.0", + "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", + "com.typesafe:config:jar:sources:1.4.1", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.jline:jline:jar:sources:3.25.1", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.typelevel:paiges-core_2.13:jar:sources:0.4.3" + ], + "directDependencies": [ + "com.geirsson:metaconfig-core_2.13:jar:sources:0.12.0", + "com.typesafe:config:jar:sources:1.4.1", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/geirsson/metaconfig-typesafe-config_2.13/0.12.0/metaconfig-typesafe-config_2.13-0.12.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/geirsson/metaconfig-typesafe-config_2.13/0.12.0/metaconfig-typesafe-config_2.13-0.12.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/geirsson/metaconfig-typesafe-config_2.13/0.12.0/metaconfig-typesafe-config_2.13-0.12.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/geirsson/metaconfig-typesafe-config_2.13/0.12.0/metaconfig-typesafe-config_2.13-0.12.0-sources.jar" + ], + "sha256": "218c549853b2217dce6337b7d2853e9feb3f17376e23fd36d4e30b1e427075ce", + "url": "https://repo.maven.apache.org/maven2/com/geirsson/metaconfig-typesafe-config_2.13/0.12.0/metaconfig-typesafe-config_2.13-0.12.0-sources.jar" + }, + { + "coord": "com.google.protobuf:protobuf-java:3.19.6", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6.jar" + ], + "sha256": "6a9a2dff91dcf71f85be71ae971f6164b5a631dcd34bff08f0618535ca44ad02", + "url": "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6.jar" + }, + { + "coord": "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6-sources.jar" + ], + "sha256": "98118edf28c74f173b25d8fce03f86ff95d61009df0c66324333573ec842f5d3", + "url": "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6-sources.jar" + }, + { + "coord": "com.lihaoyi:fansi_2.13:0.4.0", + "dependencies": [ + "com.lihaoyi:sourcecode_2.13:0.4.2", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "com.lihaoyi:sourcecode_2.13:0.4.2", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/fansi_2.13/0.4.0/fansi_2.13-0.4.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/lihaoyi/fansi_2.13/0.4.0/fansi_2.13-0.4.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/fansi_2.13/0.4.0/fansi_2.13-0.4.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/fansi_2.13/0.4.0/fansi_2.13-0.4.0.jar" + ], + "sha256": "0eb11a2a905d608033ec1642b0a9f0d8444daa4ad465f684b50bdc7e7a41bf53", + "url": "https://repo.maven.apache.org/maven2/com/lihaoyi/fansi_2.13/0.4.0/fansi_2.13-0.4.0.jar" + }, + { + "coord": "com.lihaoyi:fansi_2.13:jar:sources:0.4.0", + "dependencies": [ + "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/fansi_2.13/0.4.0/fansi_2.13-0.4.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/lihaoyi/fansi_2.13/0.4.0/fansi_2.13-0.4.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/fansi_2.13/0.4.0/fansi_2.13-0.4.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/fansi_2.13/0.4.0/fansi_2.13-0.4.0-sources.jar" + ], + "sha256": "3f35ad0b089ba6fe655cc9e75374eb9740ec599a4cde5a50e3dc1a9edf2ccc34", + "url": "https://repo.maven.apache.org/maven2/com/lihaoyi/fansi_2.13/0.4.0/fansi_2.13-0.4.0-sources.jar" + }, + { + "coord": "com.lihaoyi:sourcecode_2.13:0.4.2", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.13/0.4.2/sourcecode_2.13-0.4.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.13/0.4.2/sourcecode_2.13-0.4.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/sourcecode_2.13/0.4.2/sourcecode_2.13-0.4.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.13/0.4.2/sourcecode_2.13-0.4.2.jar" + ], + "sha256": "fbace2b994a7184f6b38ee98630be61f21948008a4a56cd83c7f86c1c1de743d", + "url": "https://repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.13/0.4.2/sourcecode_2.13-0.4.2.jar" + }, + { + "coord": "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.13/0.4.2/sourcecode_2.13-0.4.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.13/0.4.2/sourcecode_2.13-0.4.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/sourcecode_2.13/0.4.2/sourcecode_2.13-0.4.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.13/0.4.2/sourcecode_2.13-0.4.2-sources.jar" + ], + "sha256": "3cfacbe17cc04f57d7c397dce829f3b0e3faf282b421444aa7492099ad49cc2d", + "url": "https://repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.13/0.4.2/sourcecode_2.13-0.4.2-sources.jar" + }, + { + "coord": "com.thesamet.scalapb:lenses_2.13:0.11.17", + "dependencies": [ + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17.jar" + ], + "sha256": "4abe3fe573b8505a633414b0fbbcae4240250690ba48a9d4a6eeb3dfc3302ddf", + "url": "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17.jar" + }, + { + "coord": "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.17", + "dependencies": [ + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17-sources.jar" + ], + "sha256": "268a45ae25f08e4236a2194fd180bd29c2607920827d7342bb3f8ac77481010c", + "url": "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17-sources.jar" + }, + { + "coord": "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.17", + "dependencies": [ + "com.google.protobuf:protobuf-java:3.19.6", + "com.thesamet.scalapb:lenses_2.13:0.11.17", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "com.google.protobuf:protobuf-java:3.19.6", + "com.thesamet.scalapb:lenses_2.13:0.11.17", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17.jar" + ], + "sha256": "fe91faf58bccef68be348e76cab339a5fe2c215e48f7bd8f836190449ed94077", + "url": "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17.jar" + }, + { + "coord": "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.17", + "dependencies": [ + "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.17", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.17", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17-sources.jar" + ], + "sha256": "2e14340da16b0f7dc2c1d41c6b26b3bf0a691e05319a3d08e73b1c5d221dc67f", + "url": "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17-sources.jar" + }, + { + "coord": "com.typesafe:config:1.4.1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/config/1.4.1/config-1.4.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/typesafe/config/1.4.1/config-1.4.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/config/1.4.1/config-1.4.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/config/1.4.1/config-1.4.1.jar" + ], + "sha256": "4c0aa7e223c75c8840c41fc183d4cd3118140a1ee503e3e08ce66ed2794c948f", + "url": "https://repo.maven.apache.org/maven2/com/typesafe/config/1.4.1/config-1.4.1.jar" + }, + { + "coord": "com.typesafe:config:jar:sources:1.4.1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/config/1.4.1/config-1.4.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/typesafe/config/1.4.1/config-1.4.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/config/1.4.1/config-1.4.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/config/1.4.1/config-1.4.1-sources.jar" + ], + "sha256": "89af318a607f7e2b2691ed1ef4b4890bd37ea17d6986b0aec50dd4d5f889520c", + "url": "https://repo.maven.apache.org/maven2/com/typesafe/config/1.4.1/config-1.4.1-sources.jar" + }, + { + "coord": "io.github.java-diff-utils:java-diff-utils:4.12", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12.jar" + ], + "sha256": "9990a2039778f6b4cc94790141c2868864eacee0620c6c459451121a901cd5b5", + "url": "https://repo.maven.apache.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12.jar" + }, + { + "coord": "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12-sources.jar" + ], + "sha256": "fa24217b6eaa115a05d4a8f0003fe913c62716ca2184d2e4f17de4a7d42a8822", + "url": "https://repo.maven.apache.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12-sources.jar" + }, + { + "coord": "net.java.dev.jna:jna:5.14.0", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0.jar" + ], + "sha256": "34ed1e1f27fa896bca50dbc4e99cf3732967cec387a7a0d5e3486c09673fe8c6", + "url": "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0.jar" + }, + { + "coord": "net.java.dev.jna:jna:jar:sources:5.14.0", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0-sources.jar" + ], + "sha256": "ebd774c761215676cda059fd68240628ef99f4aafa6d355ae00d184855aef134", + "url": "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0-sources.jar" + }, + { + "coord": "org.jline:jline:3.25.1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline/3.25.1/jline-3.25.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline/3.25.1/jline-3.25.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline/3.25.1/jline-3.25.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline/3.25.1/jline-3.25.1.jar" + ], + "sha256": "421efcde9db04c34b9c03cd66e0460e75e5cdd4a3cafde54ef370049ac092e7c", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline/3.25.1/jline-3.25.1.jar" + }, + { + "coord": "org.jline:jline:jar:sources:3.25.1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline/3.25.1/jline-3.25.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline/3.25.1/jline-3.25.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline/3.25.1/jline-3.25.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline/3.25.1/jline-3.25.1-sources.jar" + ], + "sha256": "fc452b72d16b34773168a8e5e6aa9d5a54e4bd85fc099e397fe34e4133ab5efd", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline/3.25.1/jline-3.25.1-sources.jar" + }, + { + "coord": "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0.jar" + ], + "sha256": "befff482233cd7f9a7ca1e1f5a36ede421c018e6ce82358978c475d45532755f", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0.jar" + }, + { + "coord": "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0-sources.jar" + ], + "sha256": "1a60fde64d08f19fe2ce38d99accf6cfefa4eeac3c194fa36ef5f6b89b5f7564", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.12.0/scala-collection-compat_2.13-2.12.0-sources.jar" + }, + { + "coord": "org.scala-lang.modules:scala-parallel-collections_2.13:1.0.4", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/1.0.4/scala-parallel-collections_2.13-1.0.4.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/1.0.4/scala-parallel-collections_2.13-1.0.4.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/1.0.4/scala-parallel-collections_2.13-1.0.4.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/1.0.4/scala-parallel-collections_2.13-1.0.4.jar" + ], + "sha256": "68f266c4fa37cb20a76e905ad940e241190ce288b7e4a9877f1dd1261cd1a9a7", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/1.0.4/scala-parallel-collections_2.13-1.0.4.jar" + }, + { + "coord": "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:1.0.4", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/1.0.4/scala-parallel-collections_2.13-1.0.4-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/1.0.4/scala-parallel-collections_2.13-1.0.4-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/1.0.4/scala-parallel-collections_2.13-1.0.4-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/1.0.4/scala-parallel-collections_2.13-1.0.4-sources.jar" + ], + "sha256": "7f190cd21b0a2de3e0509920b5d548174c2c4a791108b854673ea40f3ea331d2", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/1.0.4/scala-parallel-collections_2.13-1.0.4-sources.jar" + }, + { + "coord": "org.scala-lang:scala-compiler:2.13.14", + "dependencies": [ + "io.github.java-diff-utils:java-diff-utils:4.12", + "net.java.dev.jna:jna:5.14.0", + "org.jline:jline:3.25.1", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14" + ], + "directDependencies": [ + "io.github.java-diff-utils:java-diff-utils:4.12", + "net.java.dev.jna:jna:5.14.0", + "org.jline:jline:3.25.1", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14.jar" + ], + "sha256": "17b7e1dd95900420816a3bc2788c8c7358c2a3c42899765a5c463a46bfa569a6", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14.jar" + }, + { + "coord": "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "dependencies": [ + "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.jline:jline:jar:sources:3.25.1", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" + ], + "directDependencies": [ + "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.jline:jline:jar:sources:3.25.1", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14-sources.jar" + ], + "sha256": "d6fc2c62cb90e32d5c08a1fbd312e2c5995d2a128f89ce34a5181e52cbff0809", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14-sources.jar" + }, + { + "coord": "org.scala-lang:scala-library:2.13.14", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14.jar" + ], + "sha256": "43e0ca1583df1966eaf02f0fbddcfb3784b995dd06bfc907209347758ce4b7e3", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14.jar" + }, + { + "coord": "org.scala-lang:scala-library:jar:sources:2.13.14", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14-sources.jar" + ], + "sha256": "4be0650f427ebf6ff8a462fe634fdc02665d59ec3962c4d98dbf5ac766f1dd4f", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14-sources.jar" + }, + { + "coord": "org.scala-lang:scala-reflect:2.13.14", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14.jar" + ], + "sha256": "8846baaa8cf43b1b19725ab737abff145ca58d14a4d02e75d71ca8f7ca5f2926", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14.jar" + }, + { + "coord": "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14-sources.jar" + ], + "sha256": "94bf451e612d9460dbc7cee4beed84a7e5dd7b86bcb901ee8c78f7cf5e035e01", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14-sources.jar" + }, + { + "coord": "org.scala-lang:scalap:2.13.14", + "dependencies": [ + "io.github.java-diff-utils:java-diff-utils:4.12", + "net.java.dev.jna:jna:5.14.0", + "org.jline:jline:3.25.1", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-compiler:2.13.14" + ], + "exclusions": [ + "com.thesamet.scalapb:scalapb-runtime_2.13" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scalap/2.13.14/scalap-2.13.14.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scalap/2.13.14/scalap-2.13.14.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scalap/2.13.14/scalap-2.13.14.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scalap/2.13.14/scalap-2.13.14.jar" + ], + "sha256": "b92a0f32ae645064f828005f883ce4aeec110fe6971f1b030643ff005a77e7c0", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scalap/2.13.14/scalap-2.13.14.jar" + }, + { + "coord": "org.scala-lang:scalap:jar:sources:2.13.14", + "dependencies": [ + "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.jline:jline:jar:sources:3.25.1", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-compiler:jar:sources:2.13.14" + ], + "exclusions": [ + "com.thesamet.scalapb:scalapb-runtime_2.13" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scalap/2.13.14/scalap-2.13.14-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scalap/2.13.14/scalap-2.13.14-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scalap/2.13.14/scalap-2.13.14-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scalap/2.13.14/scalap-2.13.14-sources.jar" + ], + "sha256": "9537d815ee0cf482379b4a2f270ae7746aa92822c12403c264e2566d496c6d40", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scalap/2.13.14/scalap-2.13.14-sources.jar" + }, + { + "coord": "org.scalameta:common_2.13:4.9.7", + "dependencies": [ + "com.google.protobuf:protobuf-java:3.19.6", + "com.lihaoyi:sourcecode_2.13:0.4.2", + "com.thesamet.scalapb:lenses_2.13:0.11.17", + "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.17", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "com.lihaoyi:sourcecode_2.13:0.4.2", + "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.17", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/common_2.13/4.9.7/common_2.13-4.9.7.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalameta/common_2.13/4.9.7/common_2.13-4.9.7.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/common_2.13/4.9.7/common_2.13-4.9.7.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/common_2.13/4.9.7/common_2.13-4.9.7.jar" + ], + "sha256": "2a94a8ab2e8151279738a0ed7989c085a5f61636df5087611ca65f083747f5ab", + "url": "https://repo.maven.apache.org/maven2/org/scalameta/common_2.13/4.9.7/common_2.13-4.9.7.jar" + }, + { + "coord": "org.scalameta:common_2.13:jar:sources:4.9.7", + "dependencies": [ + "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", + "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.17", + "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.17", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", + "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.17", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/common_2.13/4.9.7/common_2.13-4.9.7-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalameta/common_2.13/4.9.7/common_2.13-4.9.7-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/common_2.13/4.9.7/common_2.13-4.9.7-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/common_2.13/4.9.7/common_2.13-4.9.7-sources.jar" + ], + "sha256": "6b6c6c24164802bb750caa793ae4fab9857b71f4018f25bdb15eacb324937a7a", + "url": "https://repo.maven.apache.org/maven2/org/scalameta/common_2.13/4.9.7/common_2.13-4.9.7-sources.jar" + }, + { + "coord": "org.scalameta:mdoc-parser_2.13:2.5.2", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/mdoc-parser_2.13/2.5.2/mdoc-parser_2.13-2.5.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalameta/mdoc-parser_2.13/2.5.2/mdoc-parser_2.13-2.5.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/mdoc-parser_2.13/2.5.2/mdoc-parser_2.13-2.5.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/mdoc-parser_2.13/2.5.2/mdoc-parser_2.13-2.5.2.jar" + ], + "sha256": "c7fd2cfd6b23d2b118945301c720650db20c9bbedf80f37e26b218afca3ae2e2", + "url": "https://repo.maven.apache.org/maven2/org/scalameta/mdoc-parser_2.13/2.5.2/mdoc-parser_2.13-2.5.2.jar" + }, + { + "coord": "org.scalameta:mdoc-parser_2.13:jar:sources:2.5.2", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/mdoc-parser_2.13/2.5.2/mdoc-parser_2.13-2.5.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalameta/mdoc-parser_2.13/2.5.2/mdoc-parser_2.13-2.5.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/mdoc-parser_2.13/2.5.2/mdoc-parser_2.13-2.5.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/mdoc-parser_2.13/2.5.2/mdoc-parser_2.13-2.5.2-sources.jar" + ], + "sha256": "f33544adbc642c83b6056a1ee828ebd4e16e860fef4f1a7c0806df9ead889001", + "url": "https://repo.maven.apache.org/maven2/org/scalameta/mdoc-parser_2.13/2.5.2/mdoc-parser_2.13-2.5.2-sources.jar" + }, + { + "coord": "org.scalameta:parsers_2.13:4.9.7", + "dependencies": [ + "com.google.protobuf:protobuf-java:3.19.6", + "com.lihaoyi:sourcecode_2.13:0.4.2", + "com.thesamet.scalapb:lenses_2.13:0.11.17", + "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.17", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "org.scala-lang:scala-library:2.13.14", + "org.scalameta:common_2.13:4.9.7", + "org.scalameta:trees_2.13:4.9.7" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scalameta:trees_2.13:4.9.7" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/parsers_2.13/4.9.7/parsers_2.13-4.9.7.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalameta/parsers_2.13/4.9.7/parsers_2.13-4.9.7.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/parsers_2.13/4.9.7/parsers_2.13-4.9.7.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/parsers_2.13/4.9.7/parsers_2.13-4.9.7.jar" + ], + "sha256": "401cbfef329bbb1a700cd4f3532769c0d552e22fe18781959cee652586fb0410", + "url": "https://repo.maven.apache.org/maven2/org/scalameta/parsers_2.13/4.9.7/parsers_2.13-4.9.7.jar" + }, + { + "coord": "org.scalameta:parsers_2.13:jar:sources:4.9.7", + "dependencies": [ + "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", + "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.17", + "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.17", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scalameta:common_2.13:jar:sources:4.9.7", + "org.scalameta:trees_2.13:jar:sources:4.9.7" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scalameta:trees_2.13:jar:sources:4.9.7" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/parsers_2.13/4.9.7/parsers_2.13-4.9.7-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalameta/parsers_2.13/4.9.7/parsers_2.13-4.9.7-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/parsers_2.13/4.9.7/parsers_2.13-4.9.7-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/parsers_2.13/4.9.7/parsers_2.13-4.9.7-sources.jar" + ], + "sha256": "a73f2975408fc0b0846192673b4499a4dffe199f5088fadf1849e87f0304d8fa", + "url": "https://repo.maven.apache.org/maven2/org/scalameta/parsers_2.13/4.9.7/parsers_2.13-4.9.7-sources.jar" + }, + { + "coord": "org.scalameta:scalafmt-config_2.13:3.8.2", + "dependencies": [ + "com.geirsson:metaconfig-core_2.13:0.12.0", + "com.geirsson:metaconfig-pprint_2.13:0.12.0", + "com.geirsson:metaconfig-typesafe-config_2.13:0.12.0", + "com.lihaoyi:fansi_2.13:0.4.0", + "com.lihaoyi:sourcecode_2.13:0.4.2", + "com.typesafe:config:1.4.1", + "net.java.dev.jna:jna:5.14.0", + "org.jline:jline:3.25.1", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.typelevel:paiges-core_2.13:0.4.3" + ], + "directDependencies": [ + "com.geirsson:metaconfig-core_2.13:0.12.0", + "com.geirsson:metaconfig-typesafe-config_2.13:0.12.0", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/scalafmt-config_2.13/3.8.2/scalafmt-config_2.13-3.8.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalameta/scalafmt-config_2.13/3.8.2/scalafmt-config_2.13-3.8.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/scalafmt-config_2.13/3.8.2/scalafmt-config_2.13-3.8.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/scalafmt-config_2.13/3.8.2/scalafmt-config_2.13-3.8.2.jar" + ], + "sha256": "0ba81c4e3ea109e4d75f9e956a5d1ae75eb6731d1502ea2cd26492d22daf2fe0", + "url": "https://repo.maven.apache.org/maven2/org/scalameta/scalafmt-config_2.13/3.8.2/scalafmt-config_2.13-3.8.2.jar" + }, + { + "coord": "org.scalameta:scalafmt-config_2.13:jar:sources:3.8.2", + "dependencies": [ + "com.geirsson:metaconfig-core_2.13:jar:sources:0.12.0", + "com.geirsson:metaconfig-pprint_2.13:jar:sources:0.12.0", + "com.geirsson:metaconfig-typesafe-config_2.13:jar:sources:0.12.0", + "com.lihaoyi:fansi_2.13:jar:sources:0.4.0", + "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", + "com.typesafe:config:jar:sources:1.4.1", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.jline:jline:jar:sources:3.25.1", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.typelevel:paiges-core_2.13:jar:sources:0.4.3" + ], + "directDependencies": [ + "com.geirsson:metaconfig-core_2.13:jar:sources:0.12.0", + "com.geirsson:metaconfig-typesafe-config_2.13:jar:sources:0.12.0", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/scalafmt-config_2.13/3.8.2/scalafmt-config_2.13-3.8.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalameta/scalafmt-config_2.13/3.8.2/scalafmt-config_2.13-3.8.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/scalafmt-config_2.13/3.8.2/scalafmt-config_2.13-3.8.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/scalafmt-config_2.13/3.8.2/scalafmt-config_2.13-3.8.2-sources.jar" + ], + "sha256": "671f383c9730c70ace4a79ea0c9c9523e335b4c224a32fac8f22547b4976d9cc", + "url": "https://repo.maven.apache.org/maven2/org/scalameta/scalafmt-config_2.13/3.8.2/scalafmt-config_2.13-3.8.2-sources.jar" + }, + { + "coord": "org.scalameta:scalafmt-core_2.13:3.8.2", + "dependencies": [ + "com.geirsson:metaconfig-core_2.13:0.12.0", + "com.geirsson:metaconfig-pprint_2.13:0.12.0", + "com.geirsson:metaconfig-typesafe-config_2.13:0.12.0", + "com.lihaoyi:fansi_2.13:0.4.0", + "com.lihaoyi:sourcecode_2.13:0.4.2", + "com.typesafe:config:1.4.1", + "io.github.java-diff-utils:java-diff-utils:4.12", + "net.java.dev.jna:jna:5.14.0", + "org.jline:jline:3.25.1", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "org.scala-lang.modules:scala-parallel-collections_2.13:1.0.4", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-lang:scalap:2.13.14", + "org.scalameta:mdoc-parser_2.13:2.5.2", + "org.scalameta:parsers_2.13:4.9.7", + "org.scalameta:scalafmt-config_2.13:3.8.2", + "org.scalameta:scalafmt-sysops_2.13:3.8.2", + "org.scalameta:scalameta_2.13:4.9.6", + "org.typelevel:paiges-core_2.13:0.4.3" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalameta:mdoc-parser_2.13:2.5.2", + "org.scalameta:scalafmt-config_2.13:3.8.2", + "org.scalameta:scalafmt-sysops_2.13:3.8.2", + "org.scalameta:scalameta_2.13:4.9.6" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/scalafmt-core_2.13/3.8.2/scalafmt-core_2.13-3.8.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalameta/scalafmt-core_2.13/3.8.2/scalafmt-core_2.13-3.8.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/scalafmt-core_2.13/3.8.2/scalafmt-core_2.13-3.8.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/scalafmt-core_2.13/3.8.2/scalafmt-core_2.13-3.8.2.jar" + ], + "sha256": "d5f6a2eb56850875b30b7efd16cb829e010e5da64959c831f1706b7bda780c9b", + "url": "https://repo.maven.apache.org/maven2/org/scalameta/scalafmt-core_2.13/3.8.2/scalafmt-core_2.13-3.8.2.jar" + }, + { + "coord": "org.scalameta:scalafmt-core_2.13:jar:sources:3.8.2", + "dependencies": [ + "com.geirsson:metaconfig-core_2.13:jar:sources:0.12.0", + "com.geirsson:metaconfig-pprint_2.13:jar:sources:0.12.0", + "com.geirsson:metaconfig-typesafe-config_2.13:jar:sources:0.12.0", + "com.lihaoyi:fansi_2.13:jar:sources:0.4.0", + "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", + "com.typesafe:config:jar:sources:1.4.1", + "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.jline:jline:jar:sources:3.25.1", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:1.0.4", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-lang:scalap:jar:sources:2.13.14", + "org.scalameta:mdoc-parser_2.13:jar:sources:2.5.2", + "org.scalameta:parsers_2.13:jar:sources:4.9.7", + "org.scalameta:scalafmt-config_2.13:jar:sources:3.8.2", + "org.scalameta:scalafmt-sysops_2.13:jar:sources:3.8.2", + "org.scalameta:scalameta_2.13:jar:sources:4.9.6", + "org.typelevel:paiges-core_2.13:jar:sources:0.4.3" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalameta:mdoc-parser_2.13:jar:sources:2.5.2", + "org.scalameta:scalafmt-config_2.13:jar:sources:3.8.2", + "org.scalameta:scalafmt-sysops_2.13:jar:sources:3.8.2", + "org.scalameta:scalameta_2.13:jar:sources:4.9.6" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/scalafmt-core_2.13/3.8.2/scalafmt-core_2.13-3.8.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalameta/scalafmt-core_2.13/3.8.2/scalafmt-core_2.13-3.8.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/scalafmt-core_2.13/3.8.2/scalafmt-core_2.13-3.8.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/scalafmt-core_2.13/3.8.2/scalafmt-core_2.13-3.8.2-sources.jar" + ], + "sha256": "3bf791f0c4216974238474ba4dea338025e1c5bc2d82dd2f3c3aa3554190150d", + "url": "https://repo.maven.apache.org/maven2/org/scalameta/scalafmt-core_2.13/3.8.2/scalafmt-core_2.13-3.8.2-sources.jar" + }, + { + "coord": "org.scalameta:scalafmt-sysops_2.13:3.8.2", + "dependencies": [ + "org.scala-lang.modules:scala-parallel-collections_2.13:1.0.4", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang.modules:scala-parallel-collections_2.13:1.0.4", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/scalafmt-sysops_2.13/3.8.2/scalafmt-sysops_2.13-3.8.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalameta/scalafmt-sysops_2.13/3.8.2/scalafmt-sysops_2.13-3.8.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/scalafmt-sysops_2.13/3.8.2/scalafmt-sysops_2.13-3.8.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/scalafmt-sysops_2.13/3.8.2/scalafmt-sysops_2.13-3.8.2.jar" + ], + "sha256": "292f0e5f9bc51ebfe80f15a15232269a0de1ad1f90a105719a40411ab17c0226", + "url": "https://repo.maven.apache.org/maven2/org/scalameta/scalafmt-sysops_2.13/3.8.2/scalafmt-sysops_2.13-3.8.2.jar" + }, + { + "coord": "org.scalameta:scalafmt-sysops_2.13:jar:sources:3.8.2", + "dependencies": [ + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:1.0.4", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:1.0.4", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/scalafmt-sysops_2.13/3.8.2/scalafmt-sysops_2.13-3.8.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalameta/scalafmt-sysops_2.13/3.8.2/scalafmt-sysops_2.13-3.8.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/scalafmt-sysops_2.13/3.8.2/scalafmt-sysops_2.13-3.8.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/scalafmt-sysops_2.13/3.8.2/scalafmt-sysops_2.13-3.8.2-sources.jar" + ], + "sha256": "078c8a3daa0eb621617cb0b7b07e4668fa5116f18dc6bb68832ce4ae9b29fe54", + "url": "https://repo.maven.apache.org/maven2/org/scalameta/scalafmt-sysops_2.13/3.8.2/scalafmt-sysops_2.13-3.8.2-sources.jar" + }, + { + "coord": "org.scalameta:scalameta_2.13:4.9.6", + "dependencies": [ + "io.github.java-diff-utils:java-diff-utils:4.12", + "net.java.dev.jna:jna:5.14.0", + "org.jline:jline:3.25.1", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-lang:scalap:2.13.14", + "org.scalameta:parsers_2.13:4.9.7" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scalap:2.13.14", + "org.scalameta:parsers_2.13:4.9.7" + ], + "exclusions": [ + "com.thesamet.scalapb:scalapb-runtime_2.13" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/scalameta_2.13/4.9.6/scalameta_2.13-4.9.6.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalameta/scalameta_2.13/4.9.6/scalameta_2.13-4.9.6.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/scalameta_2.13/4.9.6/scalameta_2.13-4.9.6.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/scalameta_2.13/4.9.6/scalameta_2.13-4.9.6.jar" + ], + "sha256": "8ac56c994ebdd81115d2af9d39ab7c4cf5559a2822765deb8ddf085bf30f9092", + "url": "https://repo.maven.apache.org/maven2/org/scalameta/scalameta_2.13/4.9.6/scalameta_2.13-4.9.6.jar" + }, + { + "coord": "org.scalameta:scalameta_2.13:jar:sources:4.9.6", + "dependencies": [ + "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.jline:jline:jar:sources:3.25.1", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-lang:scalap:jar:sources:2.13.14", + "org.scalameta:parsers_2.13:jar:sources:4.9.7" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scalap:jar:sources:2.13.14", + "org.scalameta:parsers_2.13:jar:sources:4.9.7" + ], + "exclusions": [ + "com.thesamet.scalapb:scalapb-runtime_2.13" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/scalameta_2.13/4.9.6/scalameta_2.13-4.9.6-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalameta/scalameta_2.13/4.9.6/scalameta_2.13-4.9.6-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/scalameta_2.13/4.9.6/scalameta_2.13-4.9.6-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/scalameta_2.13/4.9.6/scalameta_2.13-4.9.6-sources.jar" + ], + "sha256": "36c1629d23d86c72b08ead6b51b746fd72c52be4e6a8f3c752fac341817c33f1", + "url": "https://repo.maven.apache.org/maven2/org/scalameta/scalameta_2.13/4.9.6/scalameta_2.13-4.9.6-sources.jar" + }, + { + "coord": "org.scalameta:trees_2.13:4.9.7", + "dependencies": [ + "com.google.protobuf:protobuf-java:3.19.6", + "com.lihaoyi:sourcecode_2.13:0.4.2", + "com.thesamet.scalapb:lenses_2.13:0.11.17", + "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.17", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "org.scala-lang:scala-library:2.13.14", + "org.scalameta:common_2.13:4.9.7" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scalameta:common_2.13:4.9.7" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/trees_2.13/4.9.7/trees_2.13-4.9.7.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalameta/trees_2.13/4.9.7/trees_2.13-4.9.7.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/trees_2.13/4.9.7/trees_2.13-4.9.7.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/trees_2.13/4.9.7/trees_2.13-4.9.7.jar" + ], + "sha256": "c273b84a54fbfef3a48a36ce14310b0e93a7b139a1186019717b25876bd3bb8c", + "url": "https://repo.maven.apache.org/maven2/org/scalameta/trees_2.13/4.9.7/trees_2.13-4.9.7.jar" + }, + { + "coord": "org.scalameta:trees_2.13:jar:sources:4.9.7", + "dependencies": [ + "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", + "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.17", + "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.17", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scalameta:common_2.13:jar:sources:4.9.7" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scalameta:common_2.13:jar:sources:4.9.7" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/trees_2.13/4.9.7/trees_2.13-4.9.7-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalameta/trees_2.13/4.9.7/trees_2.13-4.9.7-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/trees_2.13/4.9.7/trees_2.13-4.9.7-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/trees_2.13/4.9.7/trees_2.13-4.9.7-sources.jar" + ], + "sha256": "81ae77354163118c728f5b7424efd43290e1c2c7b3bc665fb30ffb4978a2f67b", + "url": "https://repo.maven.apache.org/maven2/org/scalameta/trees_2.13/4.9.7/trees_2.13-4.9.7-sources.jar" + }, + { + "coord": "org.typelevel:paiges-core_2.13:0.4.3", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/typelevel/paiges-core_2.13/0.4.3/paiges-core_2.13-0.4.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/typelevel/paiges-core_2.13/0.4.3/paiges-core_2.13-0.4.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/typelevel/paiges-core_2.13/0.4.3/paiges-core_2.13-0.4.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/typelevel/paiges-core_2.13/0.4.3/paiges-core_2.13-0.4.3.jar" + ], + "sha256": "4daa8b180b466634b66be040e1097c107981c0ba0b7c605e2f7c0b66ae1b99b5", + "url": "https://repo.maven.apache.org/maven2/org/typelevel/paiges-core_2.13/0.4.3/paiges-core_2.13-0.4.3.jar" + }, + { + "coord": "org.typelevel:paiges-core_2.13:jar:sources:0.4.3", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/typelevel/paiges-core_2.13/0.4.3/paiges-core_2.13-0.4.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/typelevel/paiges-core_2.13/0.4.3/paiges-core_2.13-0.4.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/typelevel/paiges-core_2.13/0.4.3/paiges-core_2.13-0.4.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/typelevel/paiges-core_2.13/0.4.3/paiges-core_2.13-0.4.3-sources.jar" + ], + "sha256": "a29d8b8b02632e46adf820e5bc34aa161b311521035ca1ca2b048f2de8a94b98", + "url": "https://repo.maven.apache.org/maven2/org/typelevel/paiges-core_2.13/0.4.3/paiges-core_2.13-0.4.3-sources.jar" + } + ], + "version": "0.1.0" } - }, - "dependencies": { - "com.geirsson:metaconfig-core_2.13": [ - "com.lihaoyi:pprint_2.13", - "org.scala-lang.modules:scala-collection-compat_2.13", - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.typelevel:paiges-core_2.13" - ], - "com.geirsson:metaconfig-typesafe-config_2.13": [ - "com.geirsson:metaconfig-core_2.13", - "com.typesafe:config", - "org.scala-lang:scala-library" - ], - "com.lihaoyi:fansi_2.13": [ - "com.lihaoyi:sourcecode_2.13" - ], - "com.lihaoyi:pprint_2.13": [ - "com.lihaoyi:fansi_2.13", - "com.lihaoyi:sourcecode_2.13" - ], - "com.thesamet.scalapb:lenses_2.13": [ - "org.scala-lang.modules:scala-collection-compat_2.13", - "org.scala-lang:scala-library" - ], - "com.thesamet.scalapb:scalapb-runtime_2.13": [ - "com.google.protobuf:protobuf-java", - "com.thesamet.scalapb:lenses_2.13", - "org.scala-lang.modules:scala-collection-compat_2.13", - "org.scala-lang:scala-library" - ], - "org.scala-lang.modules:scala-collection-compat_2.13": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang.modules:scala-parallel-collections_2.13": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang:scala-compiler": [ - "net.java.dev.jna:jna", - "org.jline:jline", - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect" - ], - "org.scala-lang:scala-reflect": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang:scalap": [ - "org.scala-lang:scala-compiler" - ], - "org.scalameta:common_2.13": [ - "com.lihaoyi:sourcecode_2.13", - "com.thesamet.scalapb:scalapb-runtime_2.13", - "org.scala-lang:scala-library" - ], - "org.scalameta:fastparse-v2_2.13": [ - "com.lihaoyi:geny_2.13", - "com.lihaoyi:sourcecode_2.13" - ], - "org.scalameta:parsers_2.13": [ - "org.scala-lang:scala-library", - "org.scalameta:trees_2.13" - ], - "org.scalameta:scalafmt-core_2.13": [ - "com.geirsson:metaconfig-core_2.13", - "com.geirsson:metaconfig-typesafe-config_2.13", - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalameta:scalafmt-sysops_2.13", - "org.scalameta:scalameta_2.13" - ], - "org.scalameta:scalafmt-sysops_2.13": [ - "org.scala-lang.modules:scala-parallel-collections_2.13", - "org.scala-lang:scala-library" - ], - "org.scalameta:scalameta_2.13": [ - "org.scala-lang:scala-library", - "org.scala-lang:scalap", - "org.scalameta:parsers_2.13" - ], - "org.scalameta:trees_2.13": [ - "org.scala-lang:scala-library", - "org.scalameta:common_2.13", - "org.scalameta:fastparse-v2_2.13" - ], - "org.typelevel:paiges-core_2.13": [ - "org.scala-lang:scala-library" - ] - }, - "packages": { - "com.geirsson:metaconfig-core_2.13": [ - "metaconfig", - "metaconfig.annotation", - "metaconfig.cli", - "metaconfig.error", - "metaconfig.generic", - "metaconfig.internal" - ], - "com.geirsson:metaconfig-typesafe-config_2.13": [ - "metaconfig", - "metaconfig.typesafeconfig" - ], - "com.google.protobuf:protobuf-java": [ - "com.google.protobuf", - "com.google.protobuf.compiler" - ], - "com.lihaoyi:fansi_2.13": [ - "fansi" - ], - "com.lihaoyi:geny_2.13": [ - "geny" - ], - "com.lihaoyi:pprint_2.13": [ - "pprint" - ], - "com.lihaoyi:sourcecode_2.13": [ - "sourcecode" - ], - "com.thesamet.scalapb:lenses_2.13": [ - "scalapb.lenses" - ], - "com.thesamet.scalapb:scalapb-runtime_2.13": [ - "com.google.protobuf.any", - "com.google.protobuf.api", - "com.google.protobuf.compiler.plugin", - "com.google.protobuf.descriptor", - "com.google.protobuf.duration", - "com.google.protobuf.empty", - "com.google.protobuf.field_mask", - "com.google.protobuf.source_context", - "com.google.protobuf.struct", - "com.google.protobuf.timestamp", - "com.google.protobuf.type", - "com.google.protobuf.wrappers", - "scalapb", - "scalapb.descriptors", - "scalapb.internal", - "scalapb.options", - "scalapb.textformat" - ], - "com.typesafe:config": [ - "com.typesafe.config", - "com.typesafe.config.impl", - "com.typesafe.config.parser" - ], - "net.java.dev.jna:jna": [ - "com.sun.jna", - "com.sun.jna.internal", - "com.sun.jna.ptr", - "com.sun.jna.win32" - ], - "org.jline:jline": [ - "org.jline.builtins", - "org.jline.builtins.ssh", - "org.jline.builtins.telnet", - "org.jline.console", - "org.jline.console.impl", - "org.jline.keymap", - "org.jline.reader", - "org.jline.reader.impl", - "org.jline.reader.impl.completer", - "org.jline.reader.impl.history", - "org.jline.style", - "org.jline.terminal", - "org.jline.terminal.impl", - "org.jline.terminal.impl.jansi", - "org.jline.terminal.impl.jansi.freebsd", - "org.jline.terminal.impl.jansi.linux", - "org.jline.terminal.impl.jansi.osx", - "org.jline.terminal.impl.jansi.solaris", - "org.jline.terminal.impl.jansi.win", - "org.jline.terminal.impl.jna", - "org.jline.terminal.impl.jna.freebsd", - "org.jline.terminal.impl.jna.linux", - "org.jline.terminal.impl.jna.osx", - "org.jline.terminal.impl.jna.solaris", - "org.jline.terminal.impl.jna.win", - "org.jline.terminal.spi", - "org.jline.utils", - "org.jline.widget" - ], - "org.scala-lang.modules:scala-collection-compat_2.13": [ - "scala.collection.compat", - "scala.collection.compat.immutable", - "scala.util.control.compat" - ], - "org.scala-lang.modules:scala-parallel-collections_2.13": [ - "scala.collection", - "scala.collection.generic", - "scala.collection.immutable", - "scala.collection.mutable", - "scala.collection.parallel", - "scala.collection.parallel.immutable", - "scala.collection.parallel.mutable" - ], - "org.scala-lang:scala-compiler": [ - "scala.reflect.macros.compiler", - "scala.reflect.macros.contexts", - "scala.reflect.macros.runtime", - "scala.reflect.macros.util", - "scala.reflect.quasiquotes", - "scala.reflect.reify", - "scala.reflect.reify.codegen", - "scala.reflect.reify.phases", - "scala.reflect.reify.utils", - "scala.tools.asm", - "scala.tools.asm.commons", - "scala.tools.asm.signature", - "scala.tools.asm.tree", - "scala.tools.asm.tree.analysis", - "scala.tools.asm.util", - "scala.tools.cmd", - "scala.tools.nsc", - "scala.tools.nsc.ast", - "scala.tools.nsc.ast.parser", - "scala.tools.nsc.ast.parser.xml", - "scala.tools.nsc.backend", - "scala.tools.nsc.backend.jvm", - "scala.tools.nsc.backend.jvm.analysis", - "scala.tools.nsc.backend.jvm.opt", - "scala.tools.nsc.classpath", - "scala.tools.nsc.doc", - "scala.tools.nsc.doc.base", - "scala.tools.nsc.doc.base.comment", - "scala.tools.nsc.doc.doclet", - "scala.tools.nsc.doc.html", - "scala.tools.nsc.doc.html.page", - "scala.tools.nsc.doc.html.page.diagram", - "scala.tools.nsc.doc.model", - "scala.tools.nsc.doc.model.diagram", - "scala.tools.nsc.fsc", - "scala.tools.nsc.interactive", - "scala.tools.nsc.interactive.tests", - "scala.tools.nsc.interactive.tests.core", - "scala.tools.nsc.interpreter", - "scala.tools.nsc.interpreter.jline", - "scala.tools.nsc.interpreter.shell", - "scala.tools.nsc.io", - "scala.tools.nsc.javac", - "scala.tools.nsc.plugins", - "scala.tools.nsc.profile", - "scala.tools.nsc.reporters", - "scala.tools.nsc.settings", - "scala.tools.nsc.symtab", - "scala.tools.nsc.symtab.classfile", - "scala.tools.nsc.tasty", - "scala.tools.nsc.tasty.bridge", - "scala.tools.nsc.transform", - "scala.tools.nsc.transform.async", - "scala.tools.nsc.transform.patmat", - "scala.tools.nsc.typechecker", - "scala.tools.nsc.typechecker.splain", - "scala.tools.nsc.util", - "scala.tools.reflect", - "scala.tools.tasty", - "scala.tools.util" - ], - "org.scala-lang:scala-library": [ - "scala", - "scala.annotation", - "scala.annotation.meta", - "scala.annotation.unchecked", - "scala.beans", - "scala.collection", - "scala.collection.concurrent", - "scala.collection.convert", - "scala.collection.convert.impl", - "scala.collection.generic", - "scala.collection.immutable", - "scala.collection.mutable", - "scala.compat", - "scala.concurrent", - "scala.concurrent.duration", - "scala.concurrent.impl", - "scala.io", - "scala.jdk", - "scala.jdk.javaapi", - "scala.math", - "scala.ref", - "scala.reflect", - "scala.reflect.macros.internal", - "scala.runtime", - "scala.runtime.java8", - "scala.sys", - "scala.sys.process", - "scala.util", - "scala.util.control", - "scala.util.hashing", - "scala.util.matching" - ], - "org.scala-lang:scala-reflect": [ - "scala.reflect.api", - "scala.reflect.internal", - "scala.reflect.internal.annotations", - "scala.reflect.internal.pickling", - "scala.reflect.internal.settings", - "scala.reflect.internal.tpe", - "scala.reflect.internal.transform", - "scala.reflect.internal.util", - "scala.reflect.io", - "scala.reflect.macros", - "scala.reflect.macros.blackbox", - "scala.reflect.macros.whitebox", - "scala.reflect.runtime" - ], - "org.scala-lang:scalap": [ - "scala.tools.scalap", - "scala.tools.scalap.scalax.rules", - "scala.tools.scalap.scalax.rules.scalasig" - ], - "org.scalameta:common_2.13": [ - "org.scalameta", - "org.scalameta.adt", - "org.scalameta.collections", - "org.scalameta.data", - "org.scalameta.explore", - "org.scalameta.internal", - "org.scalameta.invariants", - "org.scalameta.overload", - "org.scalameta.tests", - "scala.meta.classifiers", - "scala.meta.common", - "scala.meta.internal.classifiers", - "scala.meta.internal.platform", - "scala.meta.internal.prettyprinters", - "scala.meta.internal.semanticdb", - "scala.meta.internal.semanticidx", - "scala.meta.internal.tokens", - "scala.meta.internal.transversers", - "scala.meta.internal.trees", - "scala.meta.prettyprinters" - ], - "org.scalameta:fastparse-v2_2.13": [ - "scala.meta.internal.fastparse", - "scala.meta.internal.fastparse.internal" - ], - "org.scalameta:parsers_2.13": [ - "scala.meta.internal.parsers", - "scala.meta.internal.quasiquotes", - "scala.meta.parsers", - "scala.meta.quasiquotes", - "scala.meta.transversers" - ], - "org.scalameta:scalafmt-core_2.13": [ - "org.scalafmt", - "org.scalafmt.config", - "org.scalafmt.internal", - "org.scalafmt.rewrite", - "org.scalafmt.util" - ], - "org.scalameta:scalafmt-sysops_2.13": [ - "org.scalafmt", - "org.scalafmt.sysops" - ], - "org.scalameta:scalameta_2.13": [ - "scala.meta", - "scala.meta.cli", - "scala.meta.contrib", - "scala.meta.contrib.equality", - "scala.meta.contrib.implicits", - "scala.meta.contrib.instances", - "scala.meta.internal.classpath", - "scala.meta.internal.cli", - "scala.meta.internal.javacp", - "scala.meta.internal.javacp.asm", - "scala.meta.internal.metacp", - "scala.meta.internal.metap", - "scala.meta.internal.scalacp", - "scala.meta.internal.semanticdb", - "scala.meta.internal.semanticidx", - "scala.meta.internal.symtab", - "scala.meta.metacp", - "scala.meta.metap" - ], - "org.scalameta:trees_2.13": [ - "scala.meta", - "scala.meta.dialects", - "scala.meta.inputs", - "scala.meta.internal", - "scala.meta.internal.dialects", - "scala.meta.internal.inputs", - "scala.meta.internal.io", - "scala.meta.internal.prettyprinters", - "scala.meta.internal.tokenizers", - "scala.meta.internal.tokens", - "scala.meta.internal.trees", - "scala.meta.io", - "scala.meta.tokenizers", - "scala.meta.tokens", - "scala.meta.trees" - ], - "org.typelevel:paiges-core_2.13": [ - "org.typelevel.paiges" - ] - }, - "repositories": { - "https://repo.maven.apache.org/maven2/": [ - "com.geirsson:metaconfig-core_2.13", - "com.geirsson:metaconfig-core_2.13:jar:sources", - "com.geirsson:metaconfig-typesafe-config_2.13", - "com.geirsson:metaconfig-typesafe-config_2.13:jar:sources", - "com.google.protobuf:protobuf-java", - "com.google.protobuf:protobuf-java:jar:sources", - "com.lihaoyi:fansi_2.13", - "com.lihaoyi:fansi_2.13:jar:sources", - "com.lihaoyi:geny_2.13", - "com.lihaoyi:geny_2.13:jar:sources", - "com.lihaoyi:pprint_2.13", - "com.lihaoyi:pprint_2.13:jar:sources", - "com.lihaoyi:sourcecode_2.13", - "com.lihaoyi:sourcecode_2.13:jar:sources", - "com.thesamet.scalapb:lenses_2.13", - "com.thesamet.scalapb:lenses_2.13:jar:sources", - "com.thesamet.scalapb:scalapb-runtime_2.13", - "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources", - "com.typesafe:config", - "com.typesafe:config:jar:sources", - "net.java.dev.jna:jna", - "net.java.dev.jna:jna:jar:sources", - "org.jline:jline", - "org.jline:jline:jar:sources", - "org.scala-lang.modules:scala-collection-compat_2.13", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources", - "org.scala-lang.modules:scala-parallel-collections_2.13", - "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources", - "org.scala-lang:scala-compiler", - "org.scala-lang:scala-compiler:jar:sources", - "org.scala-lang:scala-library", - "org.scala-lang:scala-library:jar:sources", - "org.scala-lang:scala-reflect", - "org.scala-lang:scala-reflect:jar:sources", - "org.scala-lang:scalap", - "org.scala-lang:scalap:jar:sources", - "org.scalameta:common_2.13", - "org.scalameta:common_2.13:jar:sources", - "org.scalameta:fastparse-v2_2.13", - "org.scalameta:fastparse-v2_2.13:jar:sources", - "org.scalameta:parsers_2.13", - "org.scalameta:parsers_2.13:jar:sources", - "org.scalameta:scalafmt-core_2.13", - "org.scalameta:scalafmt-core_2.13:jar:sources", - "org.scalameta:scalafmt-sysops_2.13", - "org.scalameta:scalafmt-sysops_2.13:jar:sources", - "org.scalameta:scalameta_2.13", - "org.scalameta:scalameta_2.13:jar:sources", - "org.scalameta:trees_2.13", - "org.scalameta:trees_2.13:jar:sources", - "org.typelevel:paiges-core_2.13", - "org.typelevel:paiges-core_2.13:jar:sources" - ], - "https://maven-central.storage-download.googleapis.com/maven2/": [ - "com.geirsson:metaconfig-core_2.13", - "com.geirsson:metaconfig-core_2.13:jar:sources", - "com.geirsson:metaconfig-typesafe-config_2.13", - "com.geirsson:metaconfig-typesafe-config_2.13:jar:sources", - "com.google.protobuf:protobuf-java", - "com.google.protobuf:protobuf-java:jar:sources", - "com.lihaoyi:fansi_2.13", - "com.lihaoyi:fansi_2.13:jar:sources", - "com.lihaoyi:geny_2.13", - "com.lihaoyi:geny_2.13:jar:sources", - "com.lihaoyi:pprint_2.13", - "com.lihaoyi:pprint_2.13:jar:sources", - "com.lihaoyi:sourcecode_2.13", - "com.lihaoyi:sourcecode_2.13:jar:sources", - "com.thesamet.scalapb:lenses_2.13", - "com.thesamet.scalapb:lenses_2.13:jar:sources", - "com.thesamet.scalapb:scalapb-runtime_2.13", - "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources", - "com.typesafe:config", - "com.typesafe:config:jar:sources", - "net.java.dev.jna:jna", - "net.java.dev.jna:jna:jar:sources", - "org.jline:jline", - "org.jline:jline:jar:sources", - "org.scala-lang.modules:scala-collection-compat_2.13", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources", - "org.scala-lang.modules:scala-parallel-collections_2.13", - "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources", - "org.scala-lang:scala-compiler", - "org.scala-lang:scala-compiler:jar:sources", - "org.scala-lang:scala-library", - "org.scala-lang:scala-library:jar:sources", - "org.scala-lang:scala-reflect", - "org.scala-lang:scala-reflect:jar:sources", - "org.scala-lang:scalap", - "org.scala-lang:scalap:jar:sources", - "org.scalameta:common_2.13", - "org.scalameta:common_2.13:jar:sources", - "org.scalameta:fastparse-v2_2.13", - "org.scalameta:fastparse-v2_2.13:jar:sources", - "org.scalameta:parsers_2.13", - "org.scalameta:parsers_2.13:jar:sources", - "org.scalameta:scalafmt-core_2.13", - "org.scalameta:scalafmt-core_2.13:jar:sources", - "org.scalameta:scalafmt-sysops_2.13", - "org.scalameta:scalafmt-sysops_2.13:jar:sources", - "org.scalameta:scalameta_2.13", - "org.scalameta:scalameta_2.13:jar:sources", - "org.scalameta:trees_2.13", - "org.scalameta:trees_2.13:jar:sources", - "org.typelevel:paiges-core_2.13", - "org.typelevel:paiges-core_2.13:jar:sources" - ], - "https://mirror.bazel.build/repo1.maven.org/maven2/": [ - "com.geirsson:metaconfig-core_2.13", - "com.geirsson:metaconfig-core_2.13:jar:sources", - "com.geirsson:metaconfig-typesafe-config_2.13", - "com.geirsson:metaconfig-typesafe-config_2.13:jar:sources", - "com.google.protobuf:protobuf-java", - "com.google.protobuf:protobuf-java:jar:sources", - "com.lihaoyi:fansi_2.13", - "com.lihaoyi:fansi_2.13:jar:sources", - "com.lihaoyi:geny_2.13", - "com.lihaoyi:geny_2.13:jar:sources", - "com.lihaoyi:pprint_2.13", - "com.lihaoyi:pprint_2.13:jar:sources", - "com.lihaoyi:sourcecode_2.13", - "com.lihaoyi:sourcecode_2.13:jar:sources", - "com.thesamet.scalapb:lenses_2.13", - "com.thesamet.scalapb:lenses_2.13:jar:sources", - "com.thesamet.scalapb:scalapb-runtime_2.13", - "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources", - "com.typesafe:config", - "com.typesafe:config:jar:sources", - "net.java.dev.jna:jna", - "net.java.dev.jna:jna:jar:sources", - "org.jline:jline", - "org.jline:jline:jar:sources", - "org.scala-lang.modules:scala-collection-compat_2.13", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources", - "org.scala-lang.modules:scala-parallel-collections_2.13", - "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources", - "org.scala-lang:scala-compiler", - "org.scala-lang:scala-compiler:jar:sources", - "org.scala-lang:scala-library", - "org.scala-lang:scala-library:jar:sources", - "org.scala-lang:scala-reflect", - "org.scala-lang:scala-reflect:jar:sources", - "org.scala-lang:scalap", - "org.scala-lang:scalap:jar:sources", - "org.scalameta:common_2.13", - "org.scalameta:common_2.13:jar:sources", - "org.scalameta:fastparse-v2_2.13", - "org.scalameta:fastparse-v2_2.13:jar:sources", - "org.scalameta:parsers_2.13", - "org.scalameta:parsers_2.13:jar:sources", - "org.scalameta:scalafmt-core_2.13", - "org.scalameta:scalafmt-core_2.13:jar:sources", - "org.scalameta:scalafmt-sysops_2.13", - "org.scalameta:scalafmt-sysops_2.13:jar:sources", - "org.scalameta:scalameta_2.13", - "org.scalameta:scalameta_2.13:jar:sources", - "org.scalameta:trees_2.13", - "org.scalameta:trees_2.13:jar:sources", - "org.typelevel:paiges-core_2.13", - "org.typelevel:paiges-core_2.13:jar:sources" - ] - }, - "version": "2" } diff --git a/rules/scala/workspace.bzl b/rules/scala/workspace.bzl index 874c468cf..db1e1a5a4 100644 --- a/rules/scala/workspace.bzl +++ b/rules/scala/workspace.bzl @@ -14,8 +14,8 @@ def scala_artifacts(): return [ "ch.epfl.scala:bloop-frontend_2.12:1.0.0", "com.lihaoyi:sourcecode_2.13:0.2.7,", - "com.thesamet.scalapb:lenses_2.13:0.11.4", - "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.4", + "com.thesamet.scalapb:lenses_2.13:0.11.17", + "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.17", "net.sourceforge.argparse4j:argparse4j:0.8.1", "org.jacoco:org.jacoco.core:0.7.5.201505241946", "org.scala-lang:scala-compiler:2.13.14", diff --git a/rules/scala_proto/private/ScalaProtoWorker.scala b/rules/scala_proto/private/ScalaProtoWorker.scala index 5e0460fa1..78cf737c9 100644 --- a/rules/scala_proto/private/ScalaProtoWorker.scala +++ b/rules/scala_proto/private/ScalaProtoWorker.scala @@ -15,7 +15,7 @@ import scalapb.ScalaPbCodeGenerator object ScalaProtoWorker extends WorkerMain[Unit] { - private[this] val argParser: ArgumentParser = { + private val argParser: ArgumentParser = { val parser = ArgumentParsers.newFor("proto").addHelp(true).fromFilePrefix("@").build parser .addArgument("--output_dir") @@ -42,7 +42,7 @@ object ScalaProtoWorker extends WorkerMain[Unit] { override def init(args: Option[Array[String]]): Unit = () - protected[this] def work(ctx: Unit, args: Array[String], out: PrintStream): Unit = { + protected def work(ctx: Unit, args: Array[String], out: PrintStream): Unit = { val namespace = argParser.parseArgs(args) val sources = namespace.getList[File]("sources").asScala.toList val protoPaths = namespace.getList[File]("proto_paths").asScala.toList diff --git a/rules/scala_proto/workspace.bzl b/rules/scala_proto/workspace.bzl index eda48fb2c..9fc852858 100644 --- a/rules/scala_proto/workspace.bzl +++ b/rules/scala_proto/workspace.bzl @@ -6,8 +6,8 @@ def scala_proto_register_toolchains(): def scala_proto_artifacts(): return [ "com.github.os72:protoc-jar:3.11.4", - "com.thesamet.scalapb:compilerplugin_2.13:0.11.13", - "com.thesamet.scalapb:protoc-bridge_2.13:0.9.6", + "com.thesamet.scalapb:compilerplugin_2.13:0.11.17", + "com.thesamet.scalapb:protoc-bridge_2.13:0.9.7", ] def scala_proto_repositories(): diff --git a/rules/scalafmt/scalafmt/ScalafmtRunner.scala b/rules/scalafmt/scalafmt/ScalafmtRunner.scala index f7e3ad88a..570e3fa0e 100644 --- a/rules/scalafmt/scalafmt/ScalafmtRunner.scala +++ b/rules/scalafmt/scalafmt/ScalafmtRunner.scala @@ -7,7 +7,7 @@ import java.nio.file.{Files, Path} import net.sourceforge.argparse4j.ArgumentParsers import net.sourceforge.argparse4j.impl.Arguments import org.scalafmt.Scalafmt -import org.scalafmt.config.Config +import org.scalafmt.config.ScalafmtConfig import org.scalafmt.sysops.FileOps import scala.annotation.tailrec import scala.io.Codec @@ -27,7 +27,7 @@ object ScalafmtRunner extends WorkerMain[Unit] { val source = FileOps.readFile(namespace.get[File]("input").toPath())(Codec.UTF8) - val config = Config.fromHoconFile(namespace.get[File]("config").toPath()).get + val config = ScalafmtConfig.fromHoconFile(namespace.get[File]("config").toPath()).get @tailrec def format(code: String): String = { val formatted = Scalafmt.format(code, config).get diff --git a/rules/scalafmt/workspace.bzl b/rules/scalafmt/workspace.bzl index 37f354a69..88d12e5f3 100644 --- a/rules/scalafmt/workspace.bzl +++ b/rules/scalafmt/workspace.bzl @@ -2,9 +2,9 @@ load("@rules_jvm_external//:defs.bzl", "maven_install") def scalafmt_artifacts(): return [ - "org.scalameta:parsers_2.13:4.4.27", - "com.geirsson:metaconfig-core_2.13:0.9.14", - "org.scalameta:scalafmt-core_2.13:3.1.0", + "org.scalameta:parsers_2.13:4.9.7", + "com.geirsson:metaconfig-core_2.13:0.12.0", + "org.scalameta:scalafmt-core_2.13:3.8.2", ] def scalafmt_repositories(): diff --git a/src/main/scala/higherkindness/rules_scala/common/sbt-testing/JUnitXmlReporter.scala b/src/main/scala/higherkindness/rules_scala/common/sbt-testing/JUnitXmlReporter.scala index 52987a5b6..dc1479d3c 100644 --- a/src/main/scala/higherkindness/rules_scala/common/sbt-testing/JUnitXmlReporter.scala +++ b/src/main/scala/higherkindness/rules_scala/common/sbt-testing/JUnitXmlReporter.scala @@ -16,59 +16,57 @@ class JUnitXmlReporter(tasksAndEvents: ListBuffer[(String, ListBuffer[Event])]) def result: Elem = XML.loadString(s""" ${(for ((name, events) <- tasksAndEvents) - yield s""" e.status == Ignored || e.status == Skipped || e.status == Pending || e.status == Canceled) + .toString}" time="${(events.map(_.duration).sum / 1000d).toString}"> ${(for (e <- events) - yield s""" escape(selector.testName) + case _ => "Error occurred outside of a test case." + }}" time="${(e.duration / 1000d).toString}"> - ${ - val stringWriter = new StringWriter() - if (e.throwable.isDefined) { - val writer = new PrintWriter(stringWriter) - e.throwable.get.printStackTrace(writer) - writer.flush() - } - val trace: String = stringWriter.toString - e.status match { - case Status.Error if e.throwable.isDefined => - val t = e.throwable.get - s"""${escape( - trace - )}""" - case Status.Error => - s"""""" - case Status.Failure if e.throwable.isDefined => - val t = e.throwable.get - s"""${escape( - trace - )}""" - case Status.Failure => - s"""""" - case Status.Canceled if e.throwable.isDefined => - val t = e.throwable.get - s"""${escape( - trace - )}""" - case Status.Canceled => - s"""""" - case Status.Ignored | Status.Skipped | Status.Pending => - "" - case _ => - } - } + ${val stringWriter = new StringWriter() + if (e.throwable.isDefined) { + val writer = new PrintWriter(stringWriter) + e.throwable.get.printStackTrace(writer) + writer.flush() + } + val trace: String = stringWriter.toString + e.status match { + case Status.Error if e.throwable.isDefined => + val t = e.throwable.get + s"""${escape( + trace + )}""" + case Status.Error => + s"""""" + case Status.Failure if e.throwable.isDefined => + val t = e.throwable.get + s"""${escape( + trace + )}""" + case Status.Failure => + s"""""" + case Status.Canceled if e.throwable.isDefined => + val t = e.throwable.get + s"""${escape( + trace + )}""" + case Status.Canceled => + s"""""" + case Status.Ignored | Status.Skipped | Status.Pending => + "" + case _ => + }} """).mkString("")} diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala index d21d30046..391aa6c9c 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala @@ -121,8 +121,11 @@ object ZincRunner extends WorkerMain[Namespace] { val label = prefixedLabel.stripPrefix("_") jars .map(jar => - Paths.get(jar) -> (classesDir - .resolve(labelToPath(label)), DepAnalysisFiles(Paths.get(apis), Paths.get(relations))) + Paths.get(jar) -> ( + classesDir + .resolve(labelToPath(label)), + DepAnalysisFiles(Paths.get(apis), Paths.get(relations)) + ) ) } .toMap diff --git a/tests/WORKSPACE b/tests/WORKSPACE index b074d3d22..de83a1886 100644 --- a/tests/WORKSPACE +++ b/tests/WORKSPACE @@ -16,9 +16,11 @@ http_archive( ], ) -protobuf_tag = "3.15.8" +# protobuf -protobuf_sha256 = "dd513a79c7d7e45cbaeaf7655289f78fd6b806e52dbbd7018ef4e3cf5cff697a" +protobuf_tag = "3.19.6" + +protobuf_sha256 = "387e2c559bb2c7c1bc3798c4e6cff015381a79b2758696afcbf8e88730b47389" http_archive( name = "com_google_protobuf", @@ -35,13 +37,16 @@ protobuf_deps() # rules_java http_archive( name = "rules_java", + sha256 = "80e61f508ff79a3fde4a549b8b1f6ec7f8a82c259e51240a4403e5be36f88142", urls = [ "https://github.com/bazelbuild/rules_java/releases/download/7.6.4/rules_java-7.6.4.tar.gz", ], - sha256 = "80e61f508ff79a3fde4a549b8b1f6ec7f8a82c259e51240a4403e5be36f88142", ) + load("@rules_java//java:repositories.bzl", "rules_java_dependencies", "rules_java_toolchains") + rules_java_dependencies() + rules_java_toolchains() register_toolchains("//:repository_default_toolchain_21_definition") @@ -51,15 +56,24 @@ local_repository( path = "../", ) -rules_jvm_external_tag = "5.3" +# rules_jvm_external +rules_jvm_external_tag = "6.1" http_archive( name = "rules_jvm_external", - sha256 = "6cc8444b20307113a62b676846c29ff018402fd4c7097fcd6d0a0fd5f2e86429", + sha256 = "42a6d48eb2c08089961c715a813304f30dc434df48e371ebdd868fc3636f0e82", strip_prefix = "rules_jvm_external-{}".format(rules_jvm_external_tag), url = "https://github.com/bazelbuild/rules_jvm_external/archive/{}.zip".format(rules_jvm_external_tag), ) +load("@rules_jvm_external//:repositories.bzl", "rules_jvm_external_deps") + +rules_jvm_external_deps() + +load("@rules_jvm_external//:setup.bzl", "rules_jvm_external_setup") + +rules_jvm_external_setup() + load( "@rules_scala_annex//rules/scala:workspace.bzl", "scala_register_toolchains", @@ -196,3 +210,17 @@ http_file( sha256 = "72c5bd08c7d97ccefc2fe871c47dd6aed4b12ba19f616e3ac30946907d1cc4d2", urls = ["https://repo.maven.apache.org/maven2/com/chuusai/shapeless_2.13/2.3.7/shapeless_2.13-2.3.7-sources.jar"], ) + +# rules_python - this is needed by rules_jvm_external for some reason +rules_python_tag = "0.33.2" + +http_archive( + name = "rules_python", + sha256 = "e3f1cc7a04d9b09635afb3130731ed82b5f58eadc8233d4efb59944d92ffc06f", + strip_prefix = "rules_python-{}".format(rules_python_tag), + url = "https://github.com/bazelbuild/rules_python/releases/download/{}/rules_python-{}.tar.gz".format(rules_python_tag, rules_python_tag), +) + +load("@rules_python//python:repositories.bzl", "py_repositories") + +py_repositories() diff --git a/tests/annex_test_2_12_install.json b/tests/annex_test_2_12_install.json index 498a91d18..df25f6724 100644 --- a/tests/annex_test_2_12_install.json +++ b/tests/annex_test_2_12_install.json @@ -1,688 +1,1219 @@ { - "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": -1492347256, - "__RESOLVED_ARTIFACTS_HASH": -1724963741, - "artifacts": { - "org.portable-scala:portable-scala-reflect_2.12": { - "shasums": { - "jar": "2eb8ee9df8ff1ecb3612552d2f6dbdbc17c149ad78dbeef5ca56bc6ba964a956", - "sources": "da225cd34412a66905e5d9f6bfa03c28933c41bb4ff44b468bdd573009c2758c" - }, - "version": "1.1.1" - }, - "org.scala-lang.modules:scala-parser-combinators_2.12": { - "shasums": { - "jar": "1e07e98531954e8a4146f601137dc93510c436cf87b7bc4c494d73baf6ec3c4b", - "sources": "6730c9e310d2bac75db6622aea1da4b8d461824a5a66baaa7750dccf5096b2eb" - }, - "version": "2.0.0" - }, - "org.scala-lang.modules:scala-xml_2.12": { - "shasums": { - "jar": "ccaa5edaf1e653f5ba6bfbb3cefa525f34719112b61e4fa42e8c4fcf690a3e35", - "sources": "f4c3284cf8bb195488263414d8608f0df34e0d5b8f4bc6ec6a157115bfeb5300" - }, - "version": "1.3.0" - }, - "org.scala-lang:scala-library": { - "shasums": { - "jar": "0451dce8322903a6c2aa7d31232b54daa72a61ced8ade0b4c5022442a3f6cb57", - "sources": "5d3d5e62367e1dc39d6eac1299db6a3a4ead71f6f3bae2394b2d61251461dd26" - }, - "version": "2.12.14" - }, - "org.scala-lang:scala-reflect": { - "shasums": { - "jar": "497f4603e9d19dc4fa591cd467de5e32238d240bbd955d3dac6390b270889522", - "sources": "8b2299b758fa07cf8c1cc388b7d1e0d59a4c83dca84bc8fbef0006401c2d7dc3" - }, - "version": "2.12.14" - }, - "org.scala-sbt:test-interface": { - "shasums": { - "jar": "15f70b38bb95f3002fec9aea54030f19bb4ecfbad64c67424b5e5fea09cd749e", - "sources": "c314491c9df4f0bd9dd125ef1d51228d70bd466ee57848df1cd1b96aea18a5ad" - }, - "version": "1.0" - }, - "org.scalacheck:scalacheck_2.12": { - "shasums": { - "jar": "67ccccf1005b8a765b51314f795c198f678a9db21231b55b1c536ecbebde95fc", - "sources": "62308968656ce57af0c723d336f5d00aa8547b1e42594bc3458cd78ccfb62971" - }, - "version": "1.15.4" - }, - "org.scalactic:scalactic_2.12": { - "shasums": { - "jar": "a5f01a0ecb7479b4f43e03147094279609d66fdaa04a9cb3238510d7c4dbc22a", - "sources": "c721a35914b328e30c2773de52b2e16a5565c136b4cec1692e6668e5c75d98b7" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-compatible": { - "shasums": { - "jar": "7e5f1193af2fd88c432c4b80ce3641e4b1d062f421d8a0fcc43af9a19bb7c2eb", - "sources": "2d2d8645e812f6acae111ea36f6f53a970692e8927a2846886a024286538217d" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-core_2.12": { - "shasums": { - "jar": "8d5bc6b847caaf221fa42cc214dcd1c70fd758aef384a2b6498463db0caf8e3c", - "sources": "c1c1e7e939a43a59f1919c87b7574e6afb6911bce9ee54dc3a19e8c8a5074234" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-diagrams_2.12": { - "shasums": { - "jar": "f0e70557af834d16c36e6a84a1c74c78c2c2737af44d329452bfaefaf01b680b", - "sources": "b6c5c8c1d658385a5508f495ad58bebae10623c5d04eb3c12ce08b80de9290e1" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-featurespec_2.12": { - "shasums": { - "jar": "f68bd68cd1f9fc5ccc3bbb004bb843bf01481886952e96e909933960a3365d00", - "sources": "1099311e9e617be58951e474e8bec1580cd027996c3330a5d236a7d5b527f7ef" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-flatspec_2.12": { - "shasums": { - "jar": "bcec89594fda4fc4ffe3c98adaf8e9b7982011433d782b280fe54b6dc8b9f21f", - "sources": "81ab486a9418c0584b21d23ebe356c3dc5304728303254cd3ce71dc46c9a83f4" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-freespec_2.12": { - "shasums": { - "jar": "097d551509cbb472d2367ea1b2060b0a27e36bad45ce5828ae2062867b5e8299", - "sources": "607f5aae82a6a342b14ba788188e6a0fbccea126e104370630e5513b976ebbf0" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-funspec_2.12": { - "shasums": { - "jar": "3d4d5b6e79c4398d0ff71f1ad4843f7eaf2acd0d197d782ee5f2437eb214ccf1", - "sources": "04414a6d5ca438f72fcf35ac91ced9c4e382a1a090a77146c7ff6f4902cd7f3a" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-funsuite_2.12": { - "shasums": { - "jar": "07b6eb20584bc684646dff58ac02019b97a74c2825644f09d514b7dd7cacf067", - "sources": "8faa4e26f7f86e518fa1743e0ea1f87c298525408b9f02b0e8f4fd8e36f02711" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-matchers-core_2.12": { - "shasums": { - "jar": "44e6bf24fb6fd4fd9419fcaf8d7e64b20c2916659f5d062d33f2de9a48ffdf09", - "sources": "3f6eafe9c3ed756ac5b25641c6dfa354f49a88a845b73830490598a6607e36fc" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-mustmatchers_2.12": { - "shasums": { - "jar": "e443fa6b4b741d1fb21c76ec204df39fec565ea817a3adb2b0b9be7c2a143041", - "sources": "7c34f2459f03636999a1b1d1c6c76054901b43ce4e94d79e2c56b3f965476b35" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-propspec_2.12": { - "shasums": { - "jar": "8a60666d87385d3bd940d8f55b4c28ffbef066d8b01e11b0585b5cd6e4b3734d", - "sources": "968b121c006575a83590edfc6909c992ee5b22ec99230ed53b53c21d06958826" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-refspec_2.12": { - "shasums": { - "jar": "11e116ef37da8bad9d1b705d0dd166123bfdd8346f6ab0f3242c71eb14b019fa", - "sources": "1959d3a0f9f9b117c7b09f9a69f589e3e904363912e7017c3a6e3e328a81c0f1" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-shouldmatchers_2.12": { - "shasums": { - "jar": "2fce7f0f8cbfbc1a3bc65807cf389b01599ee78af459071e679ba5ed4884b4e2", - "sources": "0bf2b1b0143a9668bac6f2eedf3637bf223a4937c53818d193232f7d9d2f5ff2" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-wordspec_2.12": { - "shasums": { - "jar": "3d51d057ac4858fb38faf63035f94687a29f75492825ee8881204008a0a59a95", - "sources": "8a6f23594cf387e6c30f188ea308752e6da469e0477b7a11423d9f9999f2b66f" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest_2.12": { - "shasums": { - "jar": "ed4a7e0a2373505ae5b9c4811fa2d2d167f5388556cdcb49bce11f27e18b90fa", - "sources": "825a948573fc0cd462a92b7efab0fd3f740e00947158a9afce53458cbb285611" - }, - "version": "3.2.9" - }, - "org.specs2:specs2-common_2.12": { - "shasums": { - "jar": "a5aabff0a3c711ba68c9301feb3afa347bc69cb5a5e938a9257d110e8503989c", - "sources": "9cc1a9a63ce25b58f53fd80ad5b15d59e0f95663cc835b4b756ac500ca950549" - }, - "version": "4.12.3" - }, - "org.specs2:specs2-core_2.12": { - "shasums": { - "jar": "9ff64ab203b578f0dc4f0b482178d249fedf9a41a02f6bd017bd511e7f3b7d24", - "sources": "7eff91a3ed7b1394b962629700996e70664c3e5da36e92dd01c7e3d1f649bef7" - }, - "version": "4.12.3" - }, - "org.specs2:specs2-fp_2.12": { - "shasums": { - "jar": "56cbb1e1e11be804a1fd292c375f123c94f4054fd1f25bcca7eda8b671771bb6", - "sources": "94de88401362ab41c2c04a67ee93f80a9aa06ff99cc6a1829688e8224276e3b5" - }, - "version": "4.12.3" - }, - "org.specs2:specs2-matcher_2.12": { - "shasums": { - "jar": "2984fa09bc769134140c60340b0c449646083622feaf6f4281f93b300e8f3d14", - "sources": "e7cbe383c479f07673ec133e110239a29e437f5515d9ab03c24b7b477198c714" - }, - "version": "4.12.3" + "dependency_tree": { + "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", + "__INPUT_ARTIFACTS_HASH": -1193356660, + "__RESOLVED_ARTIFACTS_HASH": -1248983143, + "conflict_resolution": {}, + "dependencies": [ + { + "coord": "org.portable-scala:portable-scala-reflect_2.12:1.1.1", + "dependencies": [ + "org.scala-lang:scala-library:2.12.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.12.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.12/1.1.1/portable-scala-reflect_2.12-1.1.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.12/1.1.1/portable-scala-reflect_2.12-1.1.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/portable-scala/portable-scala-reflect_2.12/1.1.1/portable-scala-reflect_2.12-1.1.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/portable-scala/portable-scala-reflect_2.12/1.1.1/portable-scala-reflect_2.12-1.1.1.jar" + ], + "sha256": "2eb8ee9df8ff1ecb3612552d2f6dbdbc17c149ad78dbeef5ca56bc6ba964a956", + "url": "https://repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.12/1.1.1/portable-scala-reflect_2.12-1.1.1.jar" + }, + { + "coord": "org.portable-scala:portable-scala-reflect_2.12:jar:sources:1.1.1", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.12/1.1.1/portable-scala-reflect_2.12-1.1.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.12/1.1.1/portable-scala-reflect_2.12-1.1.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/portable-scala/portable-scala-reflect_2.12/1.1.1/portable-scala-reflect_2.12-1.1.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/portable-scala/portable-scala-reflect_2.12/1.1.1/portable-scala-reflect_2.12-1.1.1-sources.jar" + ], + "sha256": "da225cd34412a66905e5d9f6bfa03c28933c41bb4ff44b468bdd573009c2758c", + "url": "https://repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.12/1.1.1/portable-scala-reflect_2.12-1.1.1-sources.jar" + }, + { + "coord": "org.scala-lang.modules:scala-parser-combinators_2.12:2.0.0", + "dependencies": [ + "org.scala-lang:scala-library:2.12.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.12.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/2.0.0/scala-parser-combinators_2.12-2.0.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/2.0.0/scala-parser-combinators_2.12-2.0.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/2.0.0/scala-parser-combinators_2.12-2.0.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/2.0.0/scala-parser-combinators_2.12-2.0.0.jar" + ], + "sha256": "1e07e98531954e8a4146f601137dc93510c436cf87b7bc4c494d73baf6ec3c4b", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/2.0.0/scala-parser-combinators_2.12-2.0.0.jar" + }, + { + "coord": "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:2.0.0", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/2.0.0/scala-parser-combinators_2.12-2.0.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/2.0.0/scala-parser-combinators_2.12-2.0.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/2.0.0/scala-parser-combinators_2.12-2.0.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/2.0.0/scala-parser-combinators_2.12-2.0.0-sources.jar" + ], + "sha256": "6730c9e310d2bac75db6622aea1da4b8d461824a5a66baaa7750dccf5096b2eb", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/2.0.0/scala-parser-combinators_2.12-2.0.0-sources.jar" + }, + { + "coord": "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "dependencies": [ + "org.scala-lang:scala-library:2.12.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.12.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.3.0/scala-xml_2.12-1.3.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.3.0/scala-xml_2.12-1.3.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.12/1.3.0/scala-xml_2.12-1.3.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.3.0/scala-xml_2.12-1.3.0.jar" + ], + "sha256": "ccaa5edaf1e653f5ba6bfbb3cefa525f34719112b61e4fa42e8c4fcf690a3e35", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.3.0/scala-xml_2.12-1.3.0.jar" + }, + { + "coord": "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.3.0/scala-xml_2.12-1.3.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.3.0/scala-xml_2.12-1.3.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.12/1.3.0/scala-xml_2.12-1.3.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.3.0/scala-xml_2.12-1.3.0-sources.jar" + ], + "sha256": "f4c3284cf8bb195488263414d8608f0df34e0d5b8f4bc6ec6a157115bfeb5300", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.3.0/scala-xml_2.12-1.3.0-sources.jar" + }, + { + "coord": "org.scala-lang:scala-library:2.12.14", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.14/scala-library-2.12.14.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.14/scala-library-2.12.14.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.12.14/scala-library-2.12.14.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.14/scala-library-2.12.14.jar" + ], + "sha256": "0451dce8322903a6c2aa7d31232b54daa72a61ced8ade0b4c5022442a3f6cb57", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.14/scala-library-2.12.14.jar" + }, + { + "coord": "org.scala-lang:scala-library:jar:sources:2.12.14", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.14/scala-library-2.12.14-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.14/scala-library-2.12.14-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.12.14/scala-library-2.12.14-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.14/scala-library-2.12.14-sources.jar" + ], + "sha256": "5d3d5e62367e1dc39d6eac1299db6a3a4ead71f6f3bae2394b2d61251461dd26", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.14/scala-library-2.12.14-sources.jar" + }, + { + "coord": "org.scala-lang:scala-reflect:2.12.14", + "dependencies": [ + "org.scala-lang:scala-library:2.12.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.12.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.14/scala-reflect-2.12.14.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.14/scala-reflect-2.12.14.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.12.14/scala-reflect-2.12.14.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.14/scala-reflect-2.12.14.jar" + ], + "sha256": "497f4603e9d19dc4fa591cd467de5e32238d240bbd955d3dac6390b270889522", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.14/scala-reflect-2.12.14.jar" + }, + { + "coord": "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.14/scala-reflect-2.12.14-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.14/scala-reflect-2.12.14-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.12.14/scala-reflect-2.12.14-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.14/scala-reflect-2.12.14-sources.jar" + ], + "sha256": "8b2299b758fa07cf8c1cc388b7d1e0d59a4c83dca84bc8fbef0006401c2d7dc3", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.14/scala-reflect-2.12.14-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.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.scalacheck:scalacheck_2.12:1.15.4", + "dependencies": [ + "org.scala-lang:scala-library:2.12.14", + "org.scala-sbt:test-interface:1.0" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.12.14", + "org.scala-sbt:test-interface:1.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.12/1.15.4/scalacheck_2.12-1.15.4.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.12/1.15.4/scalacheck_2.12-1.15.4.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalacheck/scalacheck_2.12/1.15.4/scalacheck_2.12-1.15.4.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.15.4/scalacheck_2.12-1.15.4.jar" + ], + "sha256": "67ccccf1005b8a765b51314f795c198f678a9db21231b55b1c536ecbebde95fc", + "url": "https://repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.12/1.15.4/scalacheck_2.12-1.15.4.jar" + }, + { + "coord": "org.scalacheck:scalacheck_2.12:jar:sources:1.15.4", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-sbt:test-interface:jar:sources:1.0" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-sbt:test-interface:jar:sources:1.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.12/1.15.4/scalacheck_2.12-1.15.4-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.12/1.15.4/scalacheck_2.12-1.15.4-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalacheck/scalacheck_2.12/1.15.4/scalacheck_2.12-1.15.4-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.15.4/scalacheck_2.12-1.15.4-sources.jar" + ], + "sha256": "62308968656ce57af0c723d336f5d00aa8547b1e42594bc3458cd78ccfb62971", + "url": "https://repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.12/1.15.4/scalacheck_2.12-1.15.4-sources.jar" + }, + { + "coord": "org.scalactic:scalactic_2.12:3.2.9", + "dependencies": [ + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalactic/scalactic_2.12/3.2.9/scalactic_2.12-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalactic/scalactic_2.12/3.2.9/scalactic_2.12-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalactic/scalactic_2.12/3.2.9/scalactic_2.12-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.2.9/scalactic_2.12-3.2.9.jar" + ], + "sha256": "a5f01a0ecb7479b4f43e03147094279609d66fdaa04a9cb3238510d7c4dbc22a", + "url": "https://repo.maven.apache.org/maven2/org/scalactic/scalactic_2.12/3.2.9/scalactic_2.12-3.2.9.jar" + }, + { + "coord": "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalactic/scalactic_2.12/3.2.9/scalactic_2.12-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalactic/scalactic_2.12/3.2.9/scalactic_2.12-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalactic/scalactic_2.12/3.2.9/scalactic_2.12-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.2.9/scalactic_2.12-3.2.9-sources.jar" + ], + "sha256": "c721a35914b328e30c2773de52b2e16a5565c136b4cec1692e6668e5c75d98b7", + "url": "https://repo.maven.apache.org/maven2/org/scalactic/scalactic_2.12/3.2.9/scalactic_2.12-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-compatible:3.2.9", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar" + ], + "sha256": "7e5f1193af2fd88c432c4b80ce3641e4b1d062f421d8a0fcc43af9a19bb7c2eb", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar" + ], + "sha256": "2d2d8645e812f6acae111ea36f6f53a970692e8927a2846886a024286538217d", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-core_2.12:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalactic:scalactic_2.12:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9" + ], + "directDependencies": [ + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalactic:scalactic_2.12:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.12/3.2.9/scalatest-core_2.12-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.12/3.2.9/scalatest-core_2.12-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-core_2.12/3.2.9/scalatest-core_2.12-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-core_2.12/3.2.9/scalatest-core_2.12-3.2.9.jar" + ], + "sha256": "8d5bc6b847caaf221fa42cc214dcd1c70fd758aef384a2b6498463db0caf8e3c", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.12/3.2.9/scalatest-core_2.12-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.12/3.2.9/scalatest-core_2.12-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.12/3.2.9/scalatest-core_2.12-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-core_2.12/3.2.9/scalatest-core_2.12-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-core_2.12/3.2.9/scalatest-core_2.12-3.2.9-sources.jar" + ], + "sha256": "c1c1e7e939a43a59f1919c87b7574e6afb6911bce9ee54dc3a19e8c8a5074234", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.12/3.2.9/scalatest-core_2.12-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-diagrams_2.12:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalactic:scalactic_2.12:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.12:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalatest:scalatest-core_2.12:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.12/3.2.9/scalatest-diagrams_2.12-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.12/3.2.9/scalatest-diagrams_2.12-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-diagrams_2.12/3.2.9/scalatest-diagrams_2.12-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-diagrams_2.12/3.2.9/scalatest-diagrams_2.12-3.2.9.jar" + ], + "sha256": "f0e70557af834d16c36e6a84a1c74c78c2c2737af44d329452bfaefaf01b680b", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.12/3.2.9/scalatest-diagrams_2.12-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-diagrams_2.12:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.12/3.2.9/scalatest-diagrams_2.12-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.12/3.2.9/scalatest-diagrams_2.12-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-diagrams_2.12/3.2.9/scalatest-diagrams_2.12-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-diagrams_2.12/3.2.9/scalatest-diagrams_2.12-3.2.9-sources.jar" + ], + "sha256": "b6c5c8c1d658385a5508f495ad58bebae10623c5d04eb3c12ce08b80de9290e1", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.12/3.2.9/scalatest-diagrams_2.12-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-featurespec_2.12:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalactic:scalactic_2.12:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.12:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalatest:scalatest-core_2.12:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.12/3.2.9/scalatest-featurespec_2.12-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.12/3.2.9/scalatest-featurespec_2.12-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-featurespec_2.12/3.2.9/scalatest-featurespec_2.12-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.12/3.2.9/scalatest-featurespec_2.12-3.2.9.jar" + ], + "sha256": "f68bd68cd1f9fc5ccc3bbb004bb843bf01481886952e96e909933960a3365d00", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.12/3.2.9/scalatest-featurespec_2.12-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-featurespec_2.12:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.12/3.2.9/scalatest-featurespec_2.12-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.12/3.2.9/scalatest-featurespec_2.12-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-featurespec_2.12/3.2.9/scalatest-featurespec_2.12-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.12/3.2.9/scalatest-featurespec_2.12-3.2.9-sources.jar" + ], + "sha256": "1099311e9e617be58951e474e8bec1580cd027996c3330a5d236a7d5b527f7ef", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.12/3.2.9/scalatest-featurespec_2.12-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-flatspec_2.12:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalactic:scalactic_2.12:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.12:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalatest:scalatest-core_2.12:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.12/3.2.9/scalatest-flatspec_2.12-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.12/3.2.9/scalatest-flatspec_2.12-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-flatspec_2.12/3.2.9/scalatest-flatspec_2.12-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.12/3.2.9/scalatest-flatspec_2.12-3.2.9.jar" + ], + "sha256": "bcec89594fda4fc4ffe3c98adaf8e9b7982011433d782b280fe54b6dc8b9f21f", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.12/3.2.9/scalatest-flatspec_2.12-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-flatspec_2.12:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.12/3.2.9/scalatest-flatspec_2.12-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.12/3.2.9/scalatest-flatspec_2.12-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-flatspec_2.12/3.2.9/scalatest-flatspec_2.12-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.12/3.2.9/scalatest-flatspec_2.12-3.2.9-sources.jar" + ], + "sha256": "81ab486a9418c0584b21d23ebe356c3dc5304728303254cd3ce71dc46c9a83f4", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.12/3.2.9/scalatest-flatspec_2.12-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-freespec_2.12:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalactic:scalactic_2.12:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.12:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalatest:scalatest-core_2.12:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.12/3.2.9/scalatest-freespec_2.12-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.12/3.2.9/scalatest-freespec_2.12-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-freespec_2.12/3.2.9/scalatest-freespec_2.12-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.12/3.2.9/scalatest-freespec_2.12-3.2.9.jar" + ], + "sha256": "097d551509cbb472d2367ea1b2060b0a27e36bad45ce5828ae2062867b5e8299", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.12/3.2.9/scalatest-freespec_2.12-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-freespec_2.12:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.12/3.2.9/scalatest-freespec_2.12-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.12/3.2.9/scalatest-freespec_2.12-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-freespec_2.12/3.2.9/scalatest-freespec_2.12-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.12/3.2.9/scalatest-freespec_2.12-3.2.9-sources.jar" + ], + "sha256": "607f5aae82a6a342b14ba788188e6a0fbccea126e104370630e5513b976ebbf0", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.12/3.2.9/scalatest-freespec_2.12-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-funspec_2.12:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalactic:scalactic_2.12:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.12:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalatest:scalatest-core_2.12:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.12/3.2.9/scalatest-funspec_2.12-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.12/3.2.9/scalatest-funspec_2.12-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-funspec_2.12/3.2.9/scalatest-funspec_2.12-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-funspec_2.12/3.2.9/scalatest-funspec_2.12-3.2.9.jar" + ], + "sha256": "3d4d5b6e79c4398d0ff71f1ad4843f7eaf2acd0d197d782ee5f2437eb214ccf1", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.12/3.2.9/scalatest-funspec_2.12-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-funspec_2.12:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.12/3.2.9/scalatest-funspec_2.12-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.12/3.2.9/scalatest-funspec_2.12-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-funspec_2.12/3.2.9/scalatest-funspec_2.12-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-funspec_2.12/3.2.9/scalatest-funspec_2.12-3.2.9-sources.jar" + ], + "sha256": "04414a6d5ca438f72fcf35ac91ced9c4e382a1a090a77146c7ff6f4902cd7f3a", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.12/3.2.9/scalatest-funspec_2.12-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-funsuite_2.12:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalactic:scalactic_2.12:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.12:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalatest:scalatest-core_2.12:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.12/3.2.9/scalatest-funsuite_2.12-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.12/3.2.9/scalatest-funsuite_2.12-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-funsuite_2.12/3.2.9/scalatest-funsuite_2.12-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-funsuite_2.12/3.2.9/scalatest-funsuite_2.12-3.2.9.jar" + ], + "sha256": "07b6eb20584bc684646dff58ac02019b97a74c2825644f09d514b7dd7cacf067", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.12/3.2.9/scalatest-funsuite_2.12-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-funsuite_2.12:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.12/3.2.9/scalatest-funsuite_2.12-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.12/3.2.9/scalatest-funsuite_2.12-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-funsuite_2.12/3.2.9/scalatest-funsuite_2.12-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-funsuite_2.12/3.2.9/scalatest-funsuite_2.12-3.2.9-sources.jar" + ], + "sha256": "8faa4e26f7f86e518fa1743e0ea1f87c298525408b9f02b0e8f4fd8e36f02711", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.12/3.2.9/scalatest-funsuite_2.12-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-matchers-core_2.12:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalactic:scalactic_2.12:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.12:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalatest:scalatest-core_2.12:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.12/3.2.9/scalatest-matchers-core_2.12-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.12/3.2.9/scalatest-matchers-core_2.12-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-matchers-core_2.12/3.2.9/scalatest-matchers-core_2.12-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.12/3.2.9/scalatest-matchers-core_2.12-3.2.9.jar" + ], + "sha256": "44e6bf24fb6fd4fd9419fcaf8d7e64b20c2916659f5d062d33f2de9a48ffdf09", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.12/3.2.9/scalatest-matchers-core_2.12-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-matchers-core_2.12:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.12/3.2.9/scalatest-matchers-core_2.12-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.12/3.2.9/scalatest-matchers-core_2.12-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-matchers-core_2.12/3.2.9/scalatest-matchers-core_2.12-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.12/3.2.9/scalatest-matchers-core_2.12-3.2.9-sources.jar" + ], + "sha256": "3f6eafe9c3ed756ac5b25641c6dfa354f49a88a845b73830490598a6607e36fc", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.12/3.2.9/scalatest-matchers-core_2.12-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-mustmatchers_2.12:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalactic:scalactic_2.12:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.12:3.2.9", + "org.scalatest:scalatest-matchers-core_2.12:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalatest:scalatest-matchers-core_2.12:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.12/3.2.9/scalatest-mustmatchers_2.12-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.12/3.2.9/scalatest-mustmatchers_2.12-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-mustmatchers_2.12/3.2.9/scalatest-mustmatchers_2.12-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-mustmatchers_2.12/3.2.9/scalatest-mustmatchers_2.12-3.2.9.jar" + ], + "sha256": "e443fa6b4b741d1fb21c76ec204df39fec565ea817a3adb2b0b9be7c2a143041", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.12/3.2.9/scalatest-mustmatchers_2.12-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-mustmatchers_2.12:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-matchers-core_2.12:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalatest:scalatest-matchers-core_2.12:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.12/3.2.9/scalatest-mustmatchers_2.12-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.12/3.2.9/scalatest-mustmatchers_2.12-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-mustmatchers_2.12/3.2.9/scalatest-mustmatchers_2.12-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-mustmatchers_2.12/3.2.9/scalatest-mustmatchers_2.12-3.2.9-sources.jar" + ], + "sha256": "7c34f2459f03636999a1b1d1c6c76054901b43ce4e94d79e2c56b3f965476b35", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.12/3.2.9/scalatest-mustmatchers_2.12-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-propspec_2.12:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalactic:scalactic_2.12:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.12:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalatest:scalatest-core_2.12:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.12/3.2.9/scalatest-propspec_2.12-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.12/3.2.9/scalatest-propspec_2.12-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-propspec_2.12/3.2.9/scalatest-propspec_2.12-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-propspec_2.12/3.2.9/scalatest-propspec_2.12-3.2.9.jar" + ], + "sha256": "8a60666d87385d3bd940d8f55b4c28ffbef066d8b01e11b0585b5cd6e4b3734d", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.12/3.2.9/scalatest-propspec_2.12-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-propspec_2.12:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.12/3.2.9/scalatest-propspec_2.12-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.12/3.2.9/scalatest-propspec_2.12-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-propspec_2.12/3.2.9/scalatest-propspec_2.12-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-propspec_2.12/3.2.9/scalatest-propspec_2.12-3.2.9-sources.jar" + ], + "sha256": "968b121c006575a83590edfc6909c992ee5b22ec99230ed53b53c21d06958826", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.12/3.2.9/scalatest-propspec_2.12-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-refspec_2.12:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalactic:scalactic_2.12:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.12:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalatest:scalatest-core_2.12:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.12/3.2.9/scalatest-refspec_2.12-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.12/3.2.9/scalatest-refspec_2.12-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-refspec_2.12/3.2.9/scalatest-refspec_2.12-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-refspec_2.12/3.2.9/scalatest-refspec_2.12-3.2.9.jar" + ], + "sha256": "11e116ef37da8bad9d1b705d0dd166123bfdd8346f6ab0f3242c71eb14b019fa", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.12/3.2.9/scalatest-refspec_2.12-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-refspec_2.12:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.12/3.2.9/scalatest-refspec_2.12-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.12/3.2.9/scalatest-refspec_2.12-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-refspec_2.12/3.2.9/scalatest-refspec_2.12-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-refspec_2.12/3.2.9/scalatest-refspec_2.12-3.2.9-sources.jar" + ], + "sha256": "1959d3a0f9f9b117c7b09f9a69f589e3e904363912e7017c3a6e3e328a81c0f1", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.12/3.2.9/scalatest-refspec_2.12-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-shouldmatchers_2.12:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalactic:scalactic_2.12:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.12:3.2.9", + "org.scalatest:scalatest-matchers-core_2.12:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalatest:scalatest-matchers-core_2.12:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.12/3.2.9/scalatest-shouldmatchers_2.12-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.12/3.2.9/scalatest-shouldmatchers_2.12-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-shouldmatchers_2.12/3.2.9/scalatest-shouldmatchers_2.12-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.12/3.2.9/scalatest-shouldmatchers_2.12-3.2.9.jar" + ], + "sha256": "2fce7f0f8cbfbc1a3bc65807cf389b01599ee78af459071e679ba5ed4884b4e2", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.12/3.2.9/scalatest-shouldmatchers_2.12-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-shouldmatchers_2.12:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-matchers-core_2.12:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalatest:scalatest-matchers-core_2.12:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.12/3.2.9/scalatest-shouldmatchers_2.12-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.12/3.2.9/scalatest-shouldmatchers_2.12-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-shouldmatchers_2.12/3.2.9/scalatest-shouldmatchers_2.12-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.12/3.2.9/scalatest-shouldmatchers_2.12-3.2.9-sources.jar" + ], + "sha256": "0bf2b1b0143a9668bac6f2eedf3637bf223a4937c53818d193232f7d9d2f5ff2", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.12/3.2.9/scalatest-shouldmatchers_2.12-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-wordspec_2.12:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalactic:scalactic_2.12:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.12:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalatest:scalatest-core_2.12:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.12/3.2.9/scalatest-wordspec_2.12-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.12/3.2.9/scalatest-wordspec_2.12-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-wordspec_2.12/3.2.9/scalatest-wordspec_2.12-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-wordspec_2.12/3.2.9/scalatest-wordspec_2.12-3.2.9.jar" + ], + "sha256": "3d51d057ac4858fb38faf63035f94687a29f75492825ee8881204008a0a59a95", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.12/3.2.9/scalatest-wordspec_2.12-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-wordspec_2.12:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.12/3.2.9/scalatest-wordspec_2.12-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.12/3.2.9/scalatest-wordspec_2.12-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-wordspec_2.12/3.2.9/scalatest-wordspec_2.12-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-wordspec_2.12/3.2.9/scalatest-wordspec_2.12-3.2.9-sources.jar" + ], + "sha256": "8a6f23594cf387e6c30f188ea308752e6da469e0477b7a11423d9f9999f2b66f", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.12/3.2.9/scalatest-wordspec_2.12-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest_2.12:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalactic:scalactic_2.12:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.12:3.2.9", + "org.scalatest:scalatest-diagrams_2.12:3.2.9", + "org.scalatest:scalatest-featurespec_2.12:3.2.9", + "org.scalatest:scalatest-flatspec_2.12:3.2.9", + "org.scalatest:scalatest-freespec_2.12:3.2.9", + "org.scalatest:scalatest-funspec_2.12:3.2.9", + "org.scalatest:scalatest-funsuite_2.12:3.2.9", + "org.scalatest:scalatest-matchers-core_2.12:3.2.9", + "org.scalatest:scalatest-mustmatchers_2.12:3.2.9", + "org.scalatest:scalatest-propspec_2.12:3.2.9", + "org.scalatest:scalatest-refspec_2.12:3.2.9", + "org.scalatest:scalatest-shouldmatchers_2.12:3.2.9", + "org.scalatest:scalatest-wordspec_2.12:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scalatest:scalatest-core_2.12:3.2.9", + "org.scalatest:scalatest-diagrams_2.12:3.2.9", + "org.scalatest:scalatest-featurespec_2.12:3.2.9", + "org.scalatest:scalatest-flatspec_2.12:3.2.9", + "org.scalatest:scalatest-freespec_2.12:3.2.9", + "org.scalatest:scalatest-funspec_2.12:3.2.9", + "org.scalatest:scalatest-funsuite_2.12:3.2.9", + "org.scalatest:scalatest-matchers-core_2.12:3.2.9", + "org.scalatest:scalatest-mustmatchers_2.12:3.2.9", + "org.scalatest:scalatest-propspec_2.12:3.2.9", + "org.scalatest:scalatest-refspec_2.12:3.2.9", + "org.scalatest:scalatest-shouldmatchers_2.12:3.2.9", + "org.scalatest:scalatest-wordspec_2.12:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest_2.12/3.2.9/scalatest_2.12-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest_2.12/3.2.9/scalatest_2.12-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest_2.12/3.2.9/scalatest_2.12-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.2.9/scalatest_2.12-3.2.9.jar" + ], + "sha256": "ed4a7e0a2373505ae5b9c4811fa2d2d167f5388556cdcb49bce11f27e18b90fa", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest_2.12/3.2.9/scalatest_2.12-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest_2.12:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-diagrams_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-featurespec_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-flatspec_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-freespec_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-funspec_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-funsuite_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-matchers-core_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-mustmatchers_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-propspec_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-refspec_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-shouldmatchers_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-wordspec_2.12:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-diagrams_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-featurespec_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-flatspec_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-freespec_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-funspec_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-funsuite_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-matchers-core_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-mustmatchers_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-propspec_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-refspec_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-shouldmatchers_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-wordspec_2.12:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest_2.12/3.2.9/scalatest_2.12-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest_2.12/3.2.9/scalatest_2.12-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest_2.12/3.2.9/scalatest_2.12-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.2.9/scalatest_2.12-3.2.9-sources.jar" + ], + "sha256": "825a948573fc0cd462a92b7efab0fd3f740e00947158a9afce53458cbb285611", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest_2.12/3.2.9/scalatest_2.12-3.2.9-sources.jar" + }, + { + "coord": "org.specs2:specs2-common_2.12:4.12.3", + "dependencies": [ + "org.portable-scala:portable-scala-reflect_2.12:1.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.12:2.0.0", + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scala-sbt:test-interface:1.0", + "org.specs2:specs2-fp_2.12:4.12.3" + ], + "directDependencies": [ + "org.portable-scala:portable-scala-reflect_2.12:1.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.12:2.0.0", + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scala-sbt:test-interface:1.0", + "org.specs2:specs2-fp_2.12:4.12.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-common_2.12/4.12.3/specs2-common_2.12-4.12.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.12/4.12.3/specs2-common_2.12-4.12.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-common_2.12/4.12.3/specs2-common_2.12-4.12.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-common_2.12/4.12.3/specs2-common_2.12-4.12.3.jar" + ], + "sha256": "a5aabff0a3c711ba68c9301feb3afa347bc69cb5a5e938a9257d110e8503989c", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.12/4.12.3/specs2-common_2.12-4.12.3.jar" + }, + { + "coord": "org.specs2:specs2-common_2.12:jar:sources:4.12.3", + "dependencies": [ + "org.portable-scala:portable-scala-reflect_2.12:jar:sources:1.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:2.0.0", + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scala-sbt:test-interface:jar:sources:1.0", + "org.specs2:specs2-fp_2.12:jar:sources:4.12.3" + ], + "directDependencies": [ + "org.portable-scala:portable-scala-reflect_2.12:jar:sources:1.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:2.0.0", + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scala-sbt:test-interface:jar:sources:1.0", + "org.specs2:specs2-fp_2.12:jar:sources:4.12.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-common_2.12/4.12.3/specs2-common_2.12-4.12.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.12/4.12.3/specs2-common_2.12-4.12.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-common_2.12/4.12.3/specs2-common_2.12-4.12.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-common_2.12/4.12.3/specs2-common_2.12-4.12.3-sources.jar" + ], + "sha256": "9cc1a9a63ce25b58f53fd80ad5b15d59e0f95663cc835b4b756ac500ca950549", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.12/4.12.3/specs2-common_2.12-4.12.3-sources.jar" + }, + { + "coord": "org.specs2:specs2-core_2.12:4.12.3", + "dependencies": [ + "org.portable-scala:portable-scala-reflect_2.12:1.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.12:2.0.0", + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scala-sbt:test-interface:1.0", + "org.specs2:specs2-common_2.12:4.12.3", + "org.specs2:specs2-fp_2.12:4.12.3", + "org.specs2:specs2-matcher_2.12:4.12.3" + ], + "directDependencies": [ + "org.portable-scala:portable-scala-reflect_2.12:1.1.1", + "org.scala-lang:scala-library:2.12.14", + "org.scala-sbt:test-interface:1.0", + "org.specs2:specs2-common_2.12:4.12.3", + "org.specs2:specs2-matcher_2.12:4.12.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-core_2.12/4.12.3/specs2-core_2.12-4.12.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.12/4.12.3/specs2-core_2.12-4.12.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-core_2.12/4.12.3/specs2-core_2.12-4.12.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-core_2.12/4.12.3/specs2-core_2.12-4.12.3.jar" + ], + "sha256": "9ff64ab203b578f0dc4f0b482178d249fedf9a41a02f6bd017bd511e7f3b7d24", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.12/4.12.3/specs2-core_2.12-4.12.3.jar" + }, + { + "coord": "org.specs2:specs2-core_2.12:jar:sources:4.12.3", + "dependencies": [ + "org.portable-scala:portable-scala-reflect_2.12:jar:sources:1.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:2.0.0", + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scala-sbt:test-interface:jar:sources:1.0", + "org.specs2:specs2-common_2.12:jar:sources:4.12.3", + "org.specs2:specs2-fp_2.12:jar:sources:4.12.3", + "org.specs2:specs2-matcher_2.12:jar:sources:4.12.3" + ], + "directDependencies": [ + "org.portable-scala:portable-scala-reflect_2.12:jar:sources:1.1.1", + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-sbt:test-interface:jar:sources:1.0", + "org.specs2:specs2-common_2.12:jar:sources:4.12.3", + "org.specs2:specs2-matcher_2.12:jar:sources:4.12.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-core_2.12/4.12.3/specs2-core_2.12-4.12.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.12/4.12.3/specs2-core_2.12-4.12.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-core_2.12/4.12.3/specs2-core_2.12-4.12.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-core_2.12/4.12.3/specs2-core_2.12-4.12.3-sources.jar" + ], + "sha256": "7eff91a3ed7b1394b962629700996e70664c3e5da36e92dd01c7e3d1f649bef7", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.12/4.12.3/specs2-core_2.12-4.12.3-sources.jar" + }, + { + "coord": "org.specs2:specs2-fp_2.12:4.12.3", + "dependencies": [ + "org.scala-lang:scala-library:2.12.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.12.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.12/4.12.3/specs2-fp_2.12-4.12.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.12/4.12.3/specs2-fp_2.12-4.12.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-fp_2.12/4.12.3/specs2-fp_2.12-4.12.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-fp_2.12/4.12.3/specs2-fp_2.12-4.12.3.jar" + ], + "sha256": "56cbb1e1e11be804a1fd292c375f123c94f4054fd1f25bcca7eda8b671771bb6", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.12/4.12.3/specs2-fp_2.12-4.12.3.jar" + }, + { + "coord": "org.specs2:specs2-fp_2.12:jar:sources:4.12.3", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.12/4.12.3/specs2-fp_2.12-4.12.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.12/4.12.3/specs2-fp_2.12-4.12.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-fp_2.12/4.12.3/specs2-fp_2.12-4.12.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-fp_2.12/4.12.3/specs2-fp_2.12-4.12.3-sources.jar" + ], + "sha256": "94de88401362ab41c2c04a67ee93f80a9aa06ff99cc6a1829688e8224276e3b5", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.12/4.12.3/specs2-fp_2.12-4.12.3-sources.jar" + }, + { + "coord": "org.specs2:specs2-matcher_2.12:4.12.3", + "dependencies": [ + "org.portable-scala:portable-scala-reflect_2.12:1.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.12:2.0.0", + "org.scala-lang:scala-library:2.12.14", + "org.scala-lang:scala-reflect:2.12.14", + "org.scala-sbt:test-interface:1.0", + "org.specs2:specs2-common_2.12:4.12.3", + "org.specs2:specs2-fp_2.12:4.12.3" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.12.14", + "org.specs2:specs2-common_2.12:4.12.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.12/4.12.3/specs2-matcher_2.12-4.12.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.12/4.12.3/specs2-matcher_2.12-4.12.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-matcher_2.12/4.12.3/specs2-matcher_2.12-4.12.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-matcher_2.12/4.12.3/specs2-matcher_2.12-4.12.3.jar" + ], + "sha256": "2984fa09bc769134140c60340b0c449646083622feaf6f4281f93b300e8f3d14", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.12/4.12.3/specs2-matcher_2.12-4.12.3.jar" + }, + { + "coord": "org.specs2:specs2-matcher_2.12:jar:sources:4.12.3", + "dependencies": [ + "org.portable-scala:portable-scala-reflect_2.12:jar:sources:1.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:2.0.0", + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scala-sbt:test-interface:jar:sources:1.0", + "org.specs2:specs2-common_2.12:jar:sources:4.12.3", + "org.specs2:specs2-fp_2.12:jar:sources:4.12.3" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.12.14", + "org.specs2:specs2-common_2.12:jar:sources:4.12.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.12/4.12.3/specs2-matcher_2.12-4.12.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.12/4.12.3/specs2-matcher_2.12-4.12.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-matcher_2.12/4.12.3/specs2-matcher_2.12-4.12.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-matcher_2.12/4.12.3/specs2-matcher_2.12-4.12.3-sources.jar" + ], + "sha256": "e7cbe383c479f07673ec133e110239a29e437f5515d9ab03c24b7b477198c714", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.12/4.12.3/specs2-matcher_2.12-4.12.3-sources.jar" + } + ], + "version": "0.1.0" } - }, - "dependencies": { - "org.portable-scala:portable-scala-reflect_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.scalacheck:scalacheck_2.12": [ - "org.scala-lang:scala-library", - "org.scala-sbt:test-interface" - ], - "org.scalactic:scalactic_2.12": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect" - ], - "org.scalatest:scalatest-core_2.12": [ - "org.scala-lang.modules:scala-xml_2.12", - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalactic:scalactic_2.12", - "org.scalatest:scalatest-compatible" - ], - "org.scalatest:scalatest-diagrams_2.12": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-core_2.12" - ], - "org.scalatest:scalatest-featurespec_2.12": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-core_2.12" - ], - "org.scalatest:scalatest-flatspec_2.12": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-core_2.12" - ], - "org.scalatest:scalatest-freespec_2.12": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-core_2.12" - ], - "org.scalatest:scalatest-funspec_2.12": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-core_2.12" - ], - "org.scalatest:scalatest-funsuite_2.12": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-core_2.12" - ], - "org.scalatest:scalatest-matchers-core_2.12": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-core_2.12" - ], - "org.scalatest:scalatest-mustmatchers_2.12": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-matchers-core_2.12" - ], - "org.scalatest:scalatest-propspec_2.12": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-core_2.12" - ], - "org.scalatest:scalatest-refspec_2.12": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-core_2.12" - ], - "org.scalatest:scalatest-shouldmatchers_2.12": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-matchers-core_2.12" - ], - "org.scalatest:scalatest-wordspec_2.12": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-core_2.12" - ], - "org.scalatest:scalatest_2.12": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-core_2.12", - "org.scalatest:scalatest-diagrams_2.12", - "org.scalatest:scalatest-featurespec_2.12", - "org.scalatest:scalatest-flatspec_2.12", - "org.scalatest:scalatest-freespec_2.12", - "org.scalatest:scalatest-funspec_2.12", - "org.scalatest:scalatest-funsuite_2.12", - "org.scalatest:scalatest-matchers-core_2.12", - "org.scalatest:scalatest-mustmatchers_2.12", - "org.scalatest:scalatest-propspec_2.12", - "org.scalatest:scalatest-refspec_2.12", - "org.scalatest:scalatest-shouldmatchers_2.12", - "org.scalatest:scalatest-wordspec_2.12" - ], - "org.specs2:specs2-common_2.12": [ - "org.portable-scala:portable-scala-reflect_2.12", - "org.scala-lang.modules:scala-parser-combinators_2.12", - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scala-sbt:test-interface", - "org.specs2:specs2-fp_2.12" - ], - "org.specs2:specs2-core_2.12": [ - "org.portable-scala:portable-scala-reflect_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-matcher_2.12": [ - "org.scala-lang:scala-library", - "org.specs2:specs2-common_2.12" - ] - }, - "packages": { - "org.portable-scala:portable-scala-reflect_2.12": [ - "org.portablescala.reflect", - "org.portablescala.reflect.annotation", - "org.portablescala.reflect.internal" - ], - "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" - ], - "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.scalacheck:scalacheck_2.12": [ - "org.scalacheck", - "org.scalacheck.commands", - "org.scalacheck.rng", - "org.scalacheck.time", - "org.scalacheck.util" - ], - "org.scalactic:scalactic_2.12": [ - "org.scalactic", - "org.scalactic.anyvals", - "org.scalactic.exceptions", - "org.scalactic.source" - ], - "org.scalatest:scalatest-compatible": [ - "org.scalatest.compatible" - ], - "org.scalatest:scalatest-core_2.12": [ - "org.scalatest", - "org.scalatest.concurrent", - "org.scalatest.enablers", - "org.scalatest.events", - "org.scalatest.exceptions", - "org.scalatest.fixture", - "org.scalatest.prop", - "org.scalatest.tagobjects", - "org.scalatest.tags", - "org.scalatest.time", - "org.scalatest.tools", - "org.scalatest.verbs" - ], - "org.scalatest:scalatest-diagrams_2.12": [ - "org.scalatest.diagrams" - ], - "org.scalatest:scalatest-featurespec_2.12": [ - "org.scalatest.featurespec" - ], - "org.scalatest:scalatest-flatspec_2.12": [ - "org.scalatest.flatspec" - ], - "org.scalatest:scalatest-freespec_2.12": [ - "org.scalatest.freespec" - ], - "org.scalatest:scalatest-funspec_2.12": [ - "org.scalatest.funspec" - ], - "org.scalatest:scalatest-funsuite_2.12": [ - "org.scalatest.funsuite" - ], - "org.scalatest:scalatest-matchers-core_2.12": [ - "org.scalatest.matchers", - "org.scalatest.matchers.dsl" - ], - "org.scalatest:scalatest-mustmatchers_2.12": [ - "org.scalatest.matchers.must" - ], - "org.scalatest:scalatest-propspec_2.12": [ - "org.scalatest.propspec" - ], - "org.scalatest:scalatest-refspec_2.12": [ - "org.scalatest.refspec" - ], - "org.scalatest:scalatest-shouldmatchers_2.12": [ - "org.scalatest.matchers.should" - ], - "org.scalatest:scalatest-wordspec_2.12": [ - "org.scalatest.wordspec" - ], - "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", - "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-matcher_2.12": [ - "org.specs2.matcher", - "org.specs2.matcher.describe" - ] - }, - "repositories": { - "https://repo.maven.apache.org/maven2/": [ - "org.portable-scala:portable-scala-reflect_2.12", - "org.portable-scala:portable-scala-reflect_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.scalacheck:scalacheck_2.12", - "org.scalacheck:scalacheck_2.12:jar:sources", - "org.scalactic:scalactic_2.12", - "org.scalactic:scalactic_2.12:jar:sources", - "org.scalatest:scalatest-compatible", - "org.scalatest:scalatest-compatible:jar:sources", - "org.scalatest:scalatest-core_2.12", - "org.scalatest:scalatest-core_2.12:jar:sources", - "org.scalatest:scalatest-diagrams_2.12", - "org.scalatest:scalatest-diagrams_2.12:jar:sources", - "org.scalatest:scalatest-featurespec_2.12", - "org.scalatest:scalatest-featurespec_2.12:jar:sources", - "org.scalatest:scalatest-flatspec_2.12", - "org.scalatest:scalatest-flatspec_2.12:jar:sources", - "org.scalatest:scalatest-freespec_2.12", - "org.scalatest:scalatest-freespec_2.12:jar:sources", - "org.scalatest:scalatest-funspec_2.12", - "org.scalatest:scalatest-funspec_2.12:jar:sources", - "org.scalatest:scalatest-funsuite_2.12", - "org.scalatest:scalatest-funsuite_2.12:jar:sources", - "org.scalatest:scalatest-matchers-core_2.12", - "org.scalatest:scalatest-matchers-core_2.12:jar:sources", - "org.scalatest:scalatest-mustmatchers_2.12", - "org.scalatest:scalatest-mustmatchers_2.12:jar:sources", - "org.scalatest:scalatest-propspec_2.12", - "org.scalatest:scalatest-propspec_2.12:jar:sources", - "org.scalatest:scalatest-refspec_2.12", - "org.scalatest:scalatest-refspec_2.12:jar:sources", - "org.scalatest:scalatest-shouldmatchers_2.12", - "org.scalatest:scalatest-shouldmatchers_2.12:jar:sources", - "org.scalatest:scalatest-wordspec_2.12", - "org.scalatest:scalatest-wordspec_2.12:jar:sources", - "org.scalatest:scalatest_2.12", - "org.scalatest:scalatest_2.12: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-matcher_2.12", - "org.specs2:specs2-matcher_2.12:jar:sources" - ], - "https://maven-central.storage-download.googleapis.com/maven2/": [ - "org.portable-scala:portable-scala-reflect_2.12", - "org.portable-scala:portable-scala-reflect_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.scalacheck:scalacheck_2.12", - "org.scalacheck:scalacheck_2.12:jar:sources", - "org.scalactic:scalactic_2.12", - "org.scalactic:scalactic_2.12:jar:sources", - "org.scalatest:scalatest-compatible", - "org.scalatest:scalatest-compatible:jar:sources", - "org.scalatest:scalatest-core_2.12", - "org.scalatest:scalatest-core_2.12:jar:sources", - "org.scalatest:scalatest-diagrams_2.12", - "org.scalatest:scalatest-diagrams_2.12:jar:sources", - "org.scalatest:scalatest-featurespec_2.12", - "org.scalatest:scalatest-featurespec_2.12:jar:sources", - "org.scalatest:scalatest-flatspec_2.12", - "org.scalatest:scalatest-flatspec_2.12:jar:sources", - "org.scalatest:scalatest-freespec_2.12", - "org.scalatest:scalatest-freespec_2.12:jar:sources", - "org.scalatest:scalatest-funspec_2.12", - "org.scalatest:scalatest-funspec_2.12:jar:sources", - "org.scalatest:scalatest-funsuite_2.12", - "org.scalatest:scalatest-funsuite_2.12:jar:sources", - "org.scalatest:scalatest-matchers-core_2.12", - "org.scalatest:scalatest-matchers-core_2.12:jar:sources", - "org.scalatest:scalatest-mustmatchers_2.12", - "org.scalatest:scalatest-mustmatchers_2.12:jar:sources", - "org.scalatest:scalatest-propspec_2.12", - "org.scalatest:scalatest-propspec_2.12:jar:sources", - "org.scalatest:scalatest-refspec_2.12", - "org.scalatest:scalatest-refspec_2.12:jar:sources", - "org.scalatest:scalatest-shouldmatchers_2.12", - "org.scalatest:scalatest-shouldmatchers_2.12:jar:sources", - "org.scalatest:scalatest-wordspec_2.12", - "org.scalatest:scalatest-wordspec_2.12:jar:sources", - "org.scalatest:scalatest_2.12", - "org.scalatest:scalatest_2.12: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-matcher_2.12", - "org.specs2:specs2-matcher_2.12:jar:sources" - ], - "https://mirror.bazel.build/repo1.maven.org/maven2/": [ - "org.portable-scala:portable-scala-reflect_2.12", - "org.portable-scala:portable-scala-reflect_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.scalacheck:scalacheck_2.12", - "org.scalacheck:scalacheck_2.12:jar:sources", - "org.scalactic:scalactic_2.12", - "org.scalactic:scalactic_2.12:jar:sources", - "org.scalatest:scalatest-compatible", - "org.scalatest:scalatest-compatible:jar:sources", - "org.scalatest:scalatest-core_2.12", - "org.scalatest:scalatest-core_2.12:jar:sources", - "org.scalatest:scalatest-diagrams_2.12", - "org.scalatest:scalatest-diagrams_2.12:jar:sources", - "org.scalatest:scalatest-featurespec_2.12", - "org.scalatest:scalatest-featurespec_2.12:jar:sources", - "org.scalatest:scalatest-flatspec_2.12", - "org.scalatest:scalatest-flatspec_2.12:jar:sources", - "org.scalatest:scalatest-freespec_2.12", - "org.scalatest:scalatest-freespec_2.12:jar:sources", - "org.scalatest:scalatest-funspec_2.12", - "org.scalatest:scalatest-funspec_2.12:jar:sources", - "org.scalatest:scalatest-funsuite_2.12", - "org.scalatest:scalatest-funsuite_2.12:jar:sources", - "org.scalatest:scalatest-matchers-core_2.12", - "org.scalatest:scalatest-matchers-core_2.12:jar:sources", - "org.scalatest:scalatest-mustmatchers_2.12", - "org.scalatest:scalatest-mustmatchers_2.12:jar:sources", - "org.scalatest:scalatest-propspec_2.12", - "org.scalatest:scalatest-propspec_2.12:jar:sources", - "org.scalatest:scalatest-refspec_2.12", - "org.scalatest:scalatest-refspec_2.12:jar:sources", - "org.scalatest:scalatest-shouldmatchers_2.12", - "org.scalatest:scalatest-shouldmatchers_2.12:jar:sources", - "org.scalatest:scalatest-wordspec_2.12", - "org.scalatest:scalatest-wordspec_2.12:jar:sources", - "org.scalatest:scalatest_2.12", - "org.scalatest:scalatest_2.12: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-matcher_2.12", - "org.specs2:specs2-matcher_2.12:jar:sources" - ] - }, - "version": "2" } diff --git a/tests/annex_test_install.json b/tests/annex_test_install.json index 69ee68dc9..730295994 100644 --- a/tests/annex_test_install.json +++ b/tests/annex_test_install.json @@ -1,1022 +1,1600 @@ { - "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": 71573883, - "__RESOLVED_ARTIFACTS_HASH": 281212344, - "conflict_resolution": { - "com.google.protobuf:protobuf-java:3.11.4": "com.google.protobuf:protobuf-java:3.15.8", - "com.thesamet.scalapb:lenses_2.13:0.9.0": "com.thesamet.scalapb:lenses_2.13:0.11.4" - }, - "artifacts": { - "com.google.protobuf:protobuf-java": { - "shasums": { - "jar": "8d0e2f9834f4fc1a083a65239adc507ca83682c754a27f4c80e4f21990eff686", - "sources": "5490e99493ade0f34719dd2943832bc4f8455231e9bf69993de20ca1e09e53f0" - }, - "version": "3.15.8" - }, - "com.thesamet.scalapb:lenses_2.13": { - "shasums": { - "jar": "18943a007752b150ae45f27e901c34f0e92009304f2f804ef156ab3056d79874", - "sources": "b03c01b1cf500431073b1ac82b0736c0b5689734318bcbe909d8df2767eda9a9" - }, - "version": "0.11.4" - }, - "com.thesamet.scalapb:scalapb-runtime_2.13": { - "shasums": { - "jar": "3be88effcb57ea136a2e5c377cdda3924d61b024afc2169f892c46662e266288", - "sources": "169a8d68b376b8fc34e6812315c714408894b5c92eea1f0672d68f8479be9719" - }, - "version": "0.11.4" - }, - "io.github.java-diff-utils:java-diff-utils": { - "shasums": { - "jar": "9990a2039778f6b4cc94790141c2868864eacee0620c6c459451121a901cd5b5", - "sources": "fa24217b6eaa115a05d4a8f0003fe913c62716ca2184d2e4f17de4a7d42a8822" - }, - "version": "4.12" - }, - "net.java.dev.jna:jna": { - "shasums": { - "jar": "34ed1e1f27fa896bca50dbc4e99cf3732967cec387a7a0d5e3486c09673fe8c6", - "sources": "ebd774c761215676cda059fd68240628ef99f4aafa6d355ae00d184855aef134" - }, - "version": "5.14.0" - }, - "org.jline:jline": { - "shasums": { - "jar": "421efcde9db04c34b9c03cd66e0460e75e5cdd4a3cafde54ef370049ac092e7c", - "sources": "fc452b72d16b34773168a8e5e6aa9d5a54e4bd85fc099e397fe34e4133ab5efd" - }, - "version": "3.25.1" - }, - "org.portable-scala:portable-scala-reflect_2.13": { - "shasums": { - "jar": "11f2f59d0c228912811095025b36ce58a025a8397851d773295c8ad7862d8488", - "sources": "da225cd34412a66905e5d9f6bfa03c28933c41bb4ff44b468bdd573009c2758c" - }, - "version": "1.1.1" - }, - "org.scala-lang.modules:scala-collection-compat_2.13": { - "shasums": { - "jar": "f17aec79f7588c60c028d879affe1bbbb92b3d2475cf8fa44b0afb9d3da2861f", - "sources": "8b7780ec47a0b6153c11810446eaab594ab3c2a9889da1ffd79a658fcc314bd8" - }, - "version": "2.4.4" - }, - "org.scala-lang.modules:scala-parser-combinators_2.13": { - "shasums": { - "jar": "5504044e867a4943c2a47ba0cd513c5cdaa3b4cc1b4d450a4b00d2462e243155", - "sources": "912c172b6467bef9c0d361bbaa06439911c1be8490e6c5046af1151e1d98b25c" - }, - "version": "2.0.0" - }, - "org.scala-lang.modules:scala-xml_2.13": { - "shasums": { - "jar": "a39fc7991cc7fe21f42e2231f0c65c038367acd29b3888f7626e1f023dd67e57", - "sources": "7b9ad53f7cd785364dc8b4e2be73ec92f5bb6f954411086b24a57c8afde29f1f" - }, - "version": "2.0.0" - }, - "org.scala-lang:scala-compiler": { - "shasums": { - "jar": "17b7e1dd95900420816a3bc2788c8c7358c2a3c42899765a5c463a46bfa569a6", - "sources": "d6fc2c62cb90e32d5c08a1fbd312e2c5995d2a128f89ce34a5181e52cbff0809" - }, - "version": "2.13.14" - }, - "org.scala-lang:scala-library": { - "shasums": { - "jar": "43e0ca1583df1966eaf02f0fbddcfb3784b995dd06bfc907209347758ce4b7e3", - "sources": "4be0650f427ebf6ff8a462fe634fdc02665d59ec3962c4d98dbf5ac766f1dd4f" - }, - "version": "2.13.14" - }, - "org.scala-lang:scala-reflect": { - "shasums": { - "jar": "8846baaa8cf43b1b19725ab737abff145ca58d14a4d02e75d71ca8f7ca5f2926", - "sources": "94bf451e612d9460dbc7cee4beed84a7e5dd7b86bcb901ee8c78f7cf5e035e01" - }, - "version": "2.13.14" - }, - "org.scala-sbt:compiler-interface": { - "shasums": { - "jar": "fa586b4b1bdb61c48821cf9568507c1e4d57de3763d27ac2214523b00a173115", - "sources": "22200c6be450ea4651088f1d43670d14ee7808aa0c1b07a1ff6bc1104a3d7488" - }, - "version": "1.9.3" - }, - "org.scala-sbt:test-interface": { - "shasums": { - "jar": "15f70b38bb95f3002fec9aea54030f19bb4ecfbad64c67424b5e5fea09cd749e", - "sources": "c314491c9df4f0bd9dd125ef1d51228d70bd466ee57848df1cd1b96aea18a5ad" - }, - "version": "1.0" - }, - "org.scala-sbt:util-interface": { - "shasums": { - "jar": "cbf6c0db09223e4c6c41afc4c5d831c47e3564e83361df4ba3cb04e439f83675", - "sources": "bed4331c842f3c8b1c198ec25ead990fd064e1a0672ae2856aafc2a7593ec1fe" - }, - "version": "1.9.2" - }, - "org.scalacheck:scalacheck_2.13": { - "shasums": { - "jar": "ebe8ffc5edeeafddddba810111bad7477a3cc31b59760bc3b4e24aaf53f69f72", - "sources": "9c429b216222c4837c68f0fcd418d76453e6fe18d0d9393fc9d3e00ce0f7501f" - }, - "version": "1.15.4" - }, - "org.scalactic:scalactic_2.13": { - "shasums": { - "jar": "dcb853409202fee6f8e7216b363aab5b68edc07a51d27b61d5bf3fdf4418c9da", - "sources": "c721a35914b328e30c2773de52b2e16a5565c136b4cec1692e6668e5c75d98b7" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-compatible": { - "shasums": { - "jar": "7e5f1193af2fd88c432c4b80ce3641e4b1d062f421d8a0fcc43af9a19bb7c2eb", - "sources": "2d2d8645e812f6acae111ea36f6f53a970692e8927a2846886a024286538217d" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-core_2.13": { - "shasums": { - "jar": "b238f0e42edd471c8d066d25fa925d4c0cfae33b8db1ea79d14ff42047263e5d", - "sources": "c1c1e7e939a43a59f1919c87b7574e6afb6911bce9ee54dc3a19e8c8a5074234" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-diagrams_2.13": { - "shasums": { - "jar": "803d4f2ce03b581ed5435a097a20882809dfe48b87ed232f13a98e718ceb731d", - "sources": "b6c5c8c1d658385a5508f495ad58bebae10623c5d04eb3c12ce08b80de9290e1" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-featurespec_2.13": { - "shasums": { - "jar": "f8ec83a39554c1e44f6ef5e13d9b87bf8257067b0dad8ee6012fec36e318036d", - "sources": "1099311e9e617be58951e474e8bec1580cd027996c3330a5d236a7d5b527f7ef" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-flatspec_2.13": { - "shasums": { - "jar": "6a1bc2f522105b4eda53c225f3d5cbdabbf3e9375136dde57a5b43846369f75a", - "sources": "81ab486a9418c0584b21d23ebe356c3dc5304728303254cd3ce71dc46c9a83f4" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-freespec_2.13": { - "shasums": { - "jar": "db3467bb0b34c1ca8d9830cf40179e2900ac01d5119f7a1b6bdcef30adb62214", - "sources": "607f5aae82a6a342b14ba788188e6a0fbccea126e104370630e5513b976ebbf0" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-funspec_2.13": { - "shasums": { - "jar": "821d13ced0bf96d1470538cbcca3109694148f2637961e5c502639e16ab7eee9", - "sources": "04414a6d5ca438f72fcf35ac91ced9c4e382a1a090a77146c7ff6f4902cd7f3a" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-funsuite_2.13": { - "shasums": { - "jar": "d6455470fabc9f3a5a7a50770f6e1a4f4d0114122885637f3df684e5bb501f9d", - "sources": "8faa4e26f7f86e518fa1743e0ea1f87c298525408b9f02b0e8f4fd8e36f02711" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-matchers-core_2.13": { - "shasums": { - "jar": "b86ed6f0986d005f4d54af5effdb73a18fe5741533f6663631d17a0731b9616f", - "sources": "3f6eafe9c3ed756ac5b25641c6dfa354f49a88a845b73830490598a6607e36fc" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-mustmatchers_2.13": { - "shasums": { - "jar": "e170d4ff75f0e96458b7ec072accd40ff585f9e444b5831ba84287ff2da70f2c", - "sources": "7c34f2459f03636999a1b1d1c6c76054901b43ce4e94d79e2c56b3f965476b35" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-propspec_2.13": { - "shasums": { - "jar": "f08355a14c5afece8130016a9f8e5bbc4196f4b612fefefb2acf223fb9f92607", - "sources": "968b121c006575a83590edfc6909c992ee5b22ec99230ed53b53c21d06958826" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-refspec_2.13": { - "shasums": { - "jar": "edd37859e64c4f18ef266a28603ac7d85649f3f3cc26c14eb093d60199eaec03", - "sources": "1959d3a0f9f9b117c7b09f9a69f589e3e904363912e7017c3a6e3e328a81c0f1" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-shouldmatchers_2.13": { - "shasums": { - "jar": "39a4eefa409fed5a32eff3647aa4f80628202d966e3cb6a9f01e88dcfae75e4c", - "sources": "0bf2b1b0143a9668bac6f2eedf3637bf223a4937c53818d193232f7d9d2f5ff2" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest-wordspec_2.13": { - "shasums": { - "jar": "c5d5424bc43f02df9720bd83c57daa982af02ad7ae468875956ebe183f836277", - "sources": "8a6f23594cf387e6c30f188ea308752e6da469e0477b7a11423d9f9999f2b66f" - }, - "version": "3.2.9" - }, - "org.scalatest:scalatest_2.13": { - "shasums": { - "jar": "c5d283a5ec028bf06f83d70e2b88d70a149dd574d19e79e8389b49483914b08b", - "sources": "825a948573fc0cd462a92b7efab0fd3f740e00947158a9afce53458cbb285611" - }, - "version": "3.2.9" - }, - "org.specs2:specs2-common_2.13": { - "shasums": { - "jar": "b505504e474747009660cb7ed679f015adaa7097f2b2e4b31a1a5085556333ea", - "sources": "9cc1a9a63ce25b58f53fd80ad5b15d59e0f95663cc835b4b756ac500ca950549" - }, - "version": "4.12.3" - }, - "org.specs2:specs2-core_2.13": { - "shasums": { - "jar": "23e68bf88d962e2a7154307ed9be65a7789acce7e1273ee363450f98fce146df", - "sources": "7eff91a3ed7b1394b962629700996e70664c3e5da36e92dd01c7e3d1f649bef7" - }, - "version": "4.12.3" - }, - "org.specs2:specs2-fp_2.13": { - "shasums": { - "jar": "4b0dc6f8dcdd30e82f70f9fd9b9ac1c6f751de211b68a363c8efc70d4efa7b0a", - "sources": "94de88401362ab41c2c04a67ee93f80a9aa06ff99cc6a1829688e8224276e3b5" - }, - "version": "4.12.3" - }, - "org.specs2:specs2-matcher_2.13": { - "shasums": { - "jar": "050d2d9d826eae76f3d11dcaf799bf89dedb3a3fc38b64c88402e6015b7dbe8d", - "sources": "e7cbe383c479f07673ec133e110239a29e437f5515d9ab03c24b7b477198c714" - }, - "version": "4.12.3" - }, - "org.typelevel:kind-projector_2.13.14": { - "shasums": { - "jar": "569fec54deba82cd143f05a6a0456c9e3bf56bff310b0968f0adb5fb3b352d92", - "sources": "baf8fbcbed5c19413cc87694f8d2208e4f92dedb8ff851bfdfc89a78025e1c5f" - }, - "version": "0.13.3" + "dependency_tree": { + "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", + "__INPUT_ARTIFACTS_HASH": 462841215, + "__RESOLVED_ARTIFACTS_HASH": 1676278494, + "conflict_resolution": { + "com.google.protobuf:protobuf-java:3.11.4": "com.google.protobuf:protobuf-java:3.15.8", + "com.thesamet.scalapb:lenses_2.13:0.9.0": "com.thesamet.scalapb:lenses_2.13:0.11.4" + }, + "dependencies": [ + { + "coord": "com.google.protobuf:protobuf-java:3.15.8", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.15.8/protobuf-java-3.15.8.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.15.8/protobuf-java-3.15.8.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/google/protobuf/protobuf-java/3.15.8/protobuf-java-3.15.8.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.15.8/protobuf-java-3.15.8.jar" + ], + "sha256": "8d0e2f9834f4fc1a083a65239adc507ca83682c754a27f4c80e4f21990eff686", + "url": "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.15.8/protobuf-java-3.15.8.jar" + }, + { + "coord": "com.google.protobuf:protobuf-java:jar:sources:3.15.8", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.15.8/protobuf-java-3.15.8-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.15.8/protobuf-java-3.15.8-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/google/protobuf/protobuf-java/3.15.8/protobuf-java-3.15.8-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.15.8/protobuf-java-3.15.8-sources.jar" + ], + "sha256": "5490e99493ade0f34719dd2943832bc4f8455231e9bf69993de20ca1e09e53f0", + "url": "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.15.8/protobuf-java-3.15.8-sources.jar" + }, + { + "coord": "com.thesamet.scalapb:lenses_2.13:0.11.4", + "dependencies": [ + "org.scala-lang.modules:scala-collection-compat_2.13:2.4.4", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang.modules:scala-collection-compat_2.13:2.4.4", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.4/lenses_2.13-0.11.4.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.4/lenses_2.13-0.11.4.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/thesamet/scalapb/lenses_2.13/0.11.4/lenses_2.13-0.11.4.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.4/lenses_2.13-0.11.4.jar" + ], + "sha256": "18943a007752b150ae45f27e901c34f0e92009304f2f804ef156ab3056d79874", + "url": "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.4/lenses_2.13-0.11.4.jar" + }, + { + "coord": "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.4", + "dependencies": [ + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.4.4", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.4.4", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.4/lenses_2.13-0.11.4-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.4/lenses_2.13-0.11.4-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/thesamet/scalapb/lenses_2.13/0.11.4/lenses_2.13-0.11.4-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.4/lenses_2.13-0.11.4-sources.jar" + ], + "sha256": "b03c01b1cf500431073b1ac82b0736c0b5689734318bcbe909d8df2767eda9a9", + "url": "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.4/lenses_2.13-0.11.4-sources.jar" + }, + { + "coord": "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.4", + "dependencies": [ + "com.google.protobuf:protobuf-java:3.15.8", + "com.thesamet.scalapb:lenses_2.13:0.11.4", + "org.scala-lang.modules:scala-collection-compat_2.13:2.4.4", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "com.google.protobuf:protobuf-java:3.15.8", + "com.thesamet.scalapb:lenses_2.13:0.11.4", + "org.scala-lang.modules:scala-collection-compat_2.13:2.4.4", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.4/scalapb-runtime_2.13-0.11.4.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.4/scalapb-runtime_2.13-0.11.4.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.4/scalapb-runtime_2.13-0.11.4.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.4/scalapb-runtime_2.13-0.11.4.jar" + ], + "sha256": "3be88effcb57ea136a2e5c377cdda3924d61b024afc2169f892c46662e266288", + "url": "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.4/scalapb-runtime_2.13-0.11.4.jar" + }, + { + "coord": "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.4", + "dependencies": [ + "com.google.protobuf:protobuf-java:jar:sources:3.15.8", + "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.4", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.4.4", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "com.google.protobuf:protobuf-java:jar:sources:3.15.8", + "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.4", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.4.4", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.4/scalapb-runtime_2.13-0.11.4-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.4/scalapb-runtime_2.13-0.11.4-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.4/scalapb-runtime_2.13-0.11.4-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.4/scalapb-runtime_2.13-0.11.4-sources.jar" + ], + "sha256": "169a8d68b376b8fc34e6812315c714408894b5c92eea1f0672d68f8479be9719", + "url": "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.4/scalapb-runtime_2.13-0.11.4-sources.jar" + }, + { + "coord": "io.github.java-diff-utils:java-diff-utils:4.12", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12.jar" + ], + "sha256": "9990a2039778f6b4cc94790141c2868864eacee0620c6c459451121a901cd5b5", + "url": "https://repo.maven.apache.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12.jar" + }, + { + "coord": "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12-sources.jar" + ], + "sha256": "fa24217b6eaa115a05d4a8f0003fe913c62716ca2184d2e4f17de4a7d42a8822", + "url": "https://repo.maven.apache.org/maven2/io/github/java-diff-utils/java-diff-utils/4.12/java-diff-utils-4.12-sources.jar" + }, + { + "coord": "net.java.dev.jna:jna:5.14.0", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0.jar" + ], + "sha256": "34ed1e1f27fa896bca50dbc4e99cf3732967cec387a7a0d5e3486c09673fe8c6", + "url": "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0.jar" + }, + { + "coord": "net.java.dev.jna:jna:jar:sources:5.14.0", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0-sources.jar" + ], + "sha256": "ebd774c761215676cda059fd68240628ef99f4aafa6d355ae00d184855aef134", + "url": "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0-sources.jar" + }, + { + "coord": "org.jline:jline:3.25.1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline/3.25.1/jline-3.25.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline/3.25.1/jline-3.25.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline/3.25.1/jline-3.25.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline/3.25.1/jline-3.25.1.jar" + ], + "sha256": "421efcde9db04c34b9c03cd66e0460e75e5cdd4a3cafde54ef370049ac092e7c", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline/3.25.1/jline-3.25.1.jar" + }, + { + "coord": "org.jline:jline:jar:sources:3.25.1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline/3.25.1/jline-3.25.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline/3.25.1/jline-3.25.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline/3.25.1/jline-3.25.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline/3.25.1/jline-3.25.1-sources.jar" + ], + "sha256": "fc452b72d16b34773168a8e5e6aa9d5a54e4bd85fc099e397fe34e4133ab5efd", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline/3.25.1/jline-3.25.1-sources.jar" + }, + { + "coord": "org.portable-scala:portable-scala-reflect_2.13:1.1.1", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.1/portable-scala-reflect_2.13-1.1.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.1/portable-scala-reflect_2.13-1.1.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.1/portable-scala-reflect_2.13-1.1.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.1/portable-scala-reflect_2.13-1.1.1.jar" + ], + "sha256": "11f2f59d0c228912811095025b36ce58a025a8397851d773295c8ad7862d8488", + "url": "https://repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.1/portable-scala-reflect_2.13-1.1.1.jar" + }, + { + "coord": "org.portable-scala:portable-scala-reflect_2.13:jar:sources:1.1.1", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.1/portable-scala-reflect_2.13-1.1.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.1/portable-scala-reflect_2.13-1.1.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.1/portable-scala-reflect_2.13-1.1.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.1/portable-scala-reflect_2.13-1.1.1-sources.jar" + ], + "sha256": "da225cd34412a66905e5d9f6bfa03c28933c41bb4ff44b468bdd573009c2758c", + "url": "https://repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.1/portable-scala-reflect_2.13-1.1.1-sources.jar" + }, + { + "coord": "org.scala-lang.modules:scala-collection-compat_2.13:2.4.4", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.4.4/scala-collection-compat_2.13-2.4.4.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.4.4/scala-collection-compat_2.13-2.4.4.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.4.4/scala-collection-compat_2.13-2.4.4.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.4.4/scala-collection-compat_2.13-2.4.4.jar" + ], + "sha256": "f17aec79f7588c60c028d879affe1bbbb92b3d2475cf8fa44b0afb9d3da2861f", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.4.4/scala-collection-compat_2.13-2.4.4.jar" + }, + { + "coord": "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.4.4", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.4.4/scala-collection-compat_2.13-2.4.4-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.4.4/scala-collection-compat_2.13-2.4.4-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.4.4/scala-collection-compat_2.13-2.4.4-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.4.4/scala-collection-compat_2.13-2.4.4-sources.jar" + ], + "sha256": "8b7780ec47a0b6153c11810446eaab594ab3c2a9889da1ffd79a658fcc314bd8", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.4.4/scala-collection-compat_2.13-2.4.4-sources.jar" + }, + { + "coord": "org.scala-lang.modules:scala-parser-combinators_2.13:2.0.0", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.0.0/scala-parser-combinators_2.13-2.0.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.0.0/scala-parser-combinators_2.13-2.0.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.0.0/scala-parser-combinators_2.13-2.0.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.0.0/scala-parser-combinators_2.13-2.0.0.jar" + ], + "sha256": "5504044e867a4943c2a47ba0cd513c5cdaa3b4cc1b4d450a4b00d2462e243155", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.0.0/scala-parser-combinators_2.13-2.0.0.jar" + }, + { + "coord": "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.0.0", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.0.0/scala-parser-combinators_2.13-2.0.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.0.0/scala-parser-combinators_2.13-2.0.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.0.0/scala-parser-combinators_2.13-2.0.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.0.0/scala-parser-combinators_2.13-2.0.0-sources.jar" + ], + "sha256": "912c172b6467bef9c0d361bbaa06439911c1be8490e6c5046af1151e1d98b25c", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.0.0/scala-parser-combinators_2.13-2.0.0-sources.jar" + }, + { + "coord": "org.scala-lang.modules:scala-xml_2.13:2.0.0", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.0.0/scala-xml_2.13-2.0.0.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.0.0/scala-xml_2.13-2.0.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.13/2.0.0/scala-xml_2.13-2.0.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.0.0/scala-xml_2.13-2.0.0.jar" + ], + "sha256": "a39fc7991cc7fe21f42e2231f0c65c038367acd29b3888f7626e1f023dd67e57", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.0.0/scala-xml_2.13-2.0.0.jar" + }, + { + "coord": "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.0.0/scala-xml_2.13-2.0.0-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.0.0/scala-xml_2.13-2.0.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.13/2.0.0/scala-xml_2.13-2.0.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.0.0/scala-xml_2.13-2.0.0-sources.jar" + ], + "sha256": "7b9ad53f7cd785364dc8b4e2be73ec92f5bb6f954411086b24a57c8afde29f1f", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.0.0/scala-xml_2.13-2.0.0-sources.jar" + }, + { + "coord": "org.scala-lang:scala-compiler:2.13.14", + "dependencies": [ + "io.github.java-diff-utils:java-diff-utils:4.12", + "net.java.dev.jna:jna:5.14.0", + "org.jline:jline:3.25.1", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14" + ], + "directDependencies": [ + "io.github.java-diff-utils:java-diff-utils:4.12", + "net.java.dev.jna:jna:5.14.0", + "org.jline:jline:3.25.1", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14.jar" + ], + "sha256": "17b7e1dd95900420816a3bc2788c8c7358c2a3c42899765a5c463a46bfa569a6", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14.jar" + }, + { + "coord": "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "dependencies": [ + "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.jline:jline:jar:sources:3.25.1", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" + ], + "directDependencies": [ + "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.jline:jline:jar:sources:3.25.1", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14-sources.jar" + ], + "sha256": "d6fc2c62cb90e32d5c08a1fbd312e2c5995d2a128f89ce34a5181e52cbff0809", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14-sources.jar" + }, + { + "coord": "org.scala-lang:scala-library:2.13.14", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14.jar" + ], + "sha256": "43e0ca1583df1966eaf02f0fbddcfb3784b995dd06bfc907209347758ce4b7e3", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14.jar" + }, + { + "coord": "org.scala-lang:scala-library:jar:sources:2.13.14", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14-sources.jar" + ], + "sha256": "4be0650f427ebf6ff8a462fe634fdc02665d59ec3962c4d98dbf5ac766f1dd4f", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.14/scala-library-2.13.14-sources.jar" + }, + { + "coord": "org.scala-lang:scala-reflect:2.13.14", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14.jar" + ], + "sha256": "8846baaa8cf43b1b19725ab737abff145ca58d14a4d02e75d71ca8f7ca5f2926", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14.jar" + }, + { + "coord": "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14-sources.jar" + ], + "sha256": "94bf451e612d9460dbc7cee4beed84a7e5dd7b86bcb901ee8c78f7cf5e035e01", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14-sources.jar" + }, + { + "coord": "org.scala-sbt:compiler-interface:1.9.3", + "dependencies": [ + "org.scala-sbt:util-interface:1.9.2" + ], + "directDependencies": [ + "org.scala-sbt:util-interface:1.9.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar" + ], + "sha256": "fa586b4b1bdb61c48821cf9568507c1e4d57de3763d27ac2214523b00a173115", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar" + }, + { + "coord": "org.scala-sbt:compiler-interface:jar:sources:1.9.3", + "dependencies": [ + "org.scala-sbt:util-interface:jar:sources:1.9.2" + ], + "directDependencies": [ + "org.scala-sbt:util-interface:jar:sources:1.9.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar" + ], + "sha256": "22200c6be450ea4651088f1d43670d14ee7808aa0c1b07a1ff6bc1104a3d7488", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-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.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:util-interface:1.9.2", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar" + ], + "sha256": "cbf6c0db09223e4c6c41afc4c5d831c47e3564e83361df4ba3cb04e439f83675", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar" + }, + { + "coord": "org.scala-sbt:util-interface:jar:sources:1.9.2", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar" + ], + "sha256": "bed4331c842f3c8b1c198ec25ead990fd064e1a0672ae2856aafc2a7593ec1fe", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar" + }, + { + "coord": "org.scalacheck:scalacheck_2.13:1.15.4", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:test-interface:1.0" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:test-interface:1.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.13/1.15.4/scalacheck_2.13-1.15.4.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.13/1.15.4/scalacheck_2.13-1.15.4.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalacheck/scalacheck_2.13/1.15.4/scalacheck_2.13-1.15.4.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalacheck/scalacheck_2.13/1.15.4/scalacheck_2.13-1.15.4.jar" + ], + "sha256": "ebe8ffc5edeeafddddba810111bad7477a3cc31b59760bc3b4e24aaf53f69f72", + "url": "https://repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.13/1.15.4/scalacheck_2.13-1.15.4.jar" + }, + { + "coord": "org.scalacheck:scalacheck_2.13:jar:sources:1.15.4", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:test-interface:jar:sources:1.0" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:test-interface:jar:sources:1.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.13/1.15.4/scalacheck_2.13-1.15.4-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.13/1.15.4/scalacheck_2.13-1.15.4-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalacheck/scalacheck_2.13/1.15.4/scalacheck_2.13-1.15.4-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalacheck/scalacheck_2.13/1.15.4/scalacheck_2.13-1.15.4-sources.jar" + ], + "sha256": "9c429b216222c4837c68f0fcd418d76453e6fe18d0d9393fc9d3e00ce0f7501f", + "url": "https://repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.13/1.15.4/scalacheck_2.13-1.15.4-sources.jar" + }, + { + "coord": "org.scalactic:scalactic_2.13:3.2.9", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9.jar" + ], + "sha256": "dcb853409202fee6f8e7216b363aab5b68edc07a51d27b61d5bf3fdf4418c9da", + "url": "https://repo.maven.apache.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9.jar" + }, + { + "coord": "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9-sources.jar" + ], + "sha256": "c721a35914b328e30c2773de52b2e16a5565c136b4cec1692e6668e5c75d98b7", + "url": "https://repo.maven.apache.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-compatible:3.2.9", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar" + ], + "sha256": "7e5f1193af2fd88c432c4b80ce3641e4b1d062f421d8a0fcc43af9a19bb7c2eb", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar" + ], + "sha256": "2d2d8645e812f6acae111ea36f6f53a970692e8927a2846886a024286538217d", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-core_2.13:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:2.0.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9" + ], + "directDependencies": [ + "org.scala-lang.modules:scala-xml_2.13:2.0.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9.jar" + ], + "sha256": "b238f0e42edd471c8d066d25fa925d4c0cfae33b8db1ea79d14ff42047263e5d", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9-sources.jar" + ], + "sha256": "c1c1e7e939a43a59f1919c87b7574e6afb6911bce9ee54dc3a19e8c8a5074234", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-diagrams_2.13:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:2.0.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalatest:scalatest-core_2.13:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9.jar" + ], + "sha256": "803d4f2ce03b581ed5435a097a20882809dfe48b87ed232f13a98e718ceb731d", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-diagrams_2.13:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9-sources.jar" + ], + "sha256": "b6c5c8c1d658385a5508f495ad58bebae10623c5d04eb3c12ce08b80de9290e1", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-featurespec_2.13:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:2.0.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalatest:scalatest-core_2.13:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9.jar" + ], + "sha256": "f8ec83a39554c1e44f6ef5e13d9b87bf8257067b0dad8ee6012fec36e318036d", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-featurespec_2.13:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9-sources.jar" + ], + "sha256": "1099311e9e617be58951e474e8bec1580cd027996c3330a5d236a7d5b527f7ef", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-flatspec_2.13:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:2.0.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalatest:scalatest-core_2.13:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9.jar" + ], + "sha256": "6a1bc2f522105b4eda53c225f3d5cbdabbf3e9375136dde57a5b43846369f75a", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-flatspec_2.13:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9-sources.jar" + ], + "sha256": "81ab486a9418c0584b21d23ebe356c3dc5304728303254cd3ce71dc46c9a83f4", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-freespec_2.13:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:2.0.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalatest:scalatest-core_2.13:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9.jar" + ], + "sha256": "db3467bb0b34c1ca8d9830cf40179e2900ac01d5119f7a1b6bdcef30adb62214", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-freespec_2.13:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9-sources.jar" + ], + "sha256": "607f5aae82a6a342b14ba788188e6a0fbccea126e104370630e5513b976ebbf0", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-funspec_2.13:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:2.0.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalatest:scalatest-core_2.13:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9.jar" + ], + "sha256": "821d13ced0bf96d1470538cbcca3109694148f2637961e5c502639e16ab7eee9", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-funspec_2.13:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9-sources.jar" + ], + "sha256": "04414a6d5ca438f72fcf35ac91ced9c4e382a1a090a77146c7ff6f4902cd7f3a", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-funsuite_2.13:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:2.0.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalatest:scalatest-core_2.13:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9.jar" + ], + "sha256": "d6455470fabc9f3a5a7a50770f6e1a4f4d0114122885637f3df684e5bb501f9d", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-funsuite_2.13:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9-sources.jar" + ], + "sha256": "8faa4e26f7f86e518fa1743e0ea1f87c298525408b9f02b0e8f4fd8e36f02711", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-matchers-core_2.13:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:2.0.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalatest:scalatest-core_2.13:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9.jar" + ], + "sha256": "b86ed6f0986d005f4d54af5effdb73a18fe5741533f6663631d17a0731b9616f", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9-sources.jar" + ], + "sha256": "3f6eafe9c3ed756ac5b25641c6dfa354f49a88a845b73830490598a6607e36fc", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-mustmatchers_2.13:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:2.0.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9", + "org.scalatest:scalatest-matchers-core_2.13:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalatest:scalatest-matchers-core_2.13:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9.jar" + ], + "sha256": "e170d4ff75f0e96458b7ec072accd40ff585f9e444b5831ba84287ff2da70f2c", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-mustmatchers_2.13:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9-sources.jar" + ], + "sha256": "7c34f2459f03636999a1b1d1c6c76054901b43ce4e94d79e2c56b3f965476b35", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-propspec_2.13:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:2.0.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalatest:scalatest-core_2.13:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9.jar" + ], + "sha256": "f08355a14c5afece8130016a9f8e5bbc4196f4b612fefefb2acf223fb9f92607", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-propspec_2.13:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9-sources.jar" + ], + "sha256": "968b121c006575a83590edfc6909c992ee5b22ec99230ed53b53c21d06958826", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-refspec_2.13:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:2.0.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalatest:scalatest-core_2.13:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9.jar" + ], + "sha256": "edd37859e64c4f18ef266a28603ac7d85649f3f3cc26c14eb093d60199eaec03", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-refspec_2.13:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9-sources.jar" + ], + "sha256": "1959d3a0f9f9b117c7b09f9a69f589e3e904363912e7017c3a6e3e328a81c0f1", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-shouldmatchers_2.13:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:2.0.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9", + "org.scalatest:scalatest-matchers-core_2.13:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalatest:scalatest-matchers-core_2.13:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9.jar" + ], + "sha256": "39a4eefa409fed5a32eff3647aa4f80628202d966e3cb6a9f01e88dcfae75e4c", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-shouldmatchers_2.13:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9-sources.jar" + ], + "sha256": "0bf2b1b0143a9668bac6f2eedf3637bf223a4937c53818d193232f7d9d2f5ff2", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest-wordspec_2.13:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:2.0.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalatest:scalatest-core_2.13:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9.jar" + ], + "sha256": "c5d5424bc43f02df9720bd83c57daa982af02ad7ae468875956ebe183f836277", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest-wordspec_2.13:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9-sources.jar" + ], + "sha256": "8a6f23594cf387e6c30f188ea308752e6da469e0477b7a11423d9f9999f2b66f", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9-sources.jar" + }, + { + "coord": "org.scalatest:scalatest_2.13:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:2.0.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalactic:scalactic_2.13:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-core_2.13:3.2.9", + "org.scalatest:scalatest-diagrams_2.13:3.2.9", + "org.scalatest:scalatest-featurespec_2.13:3.2.9", + "org.scalatest:scalatest-flatspec_2.13:3.2.9", + "org.scalatest:scalatest-freespec_2.13:3.2.9", + "org.scalatest:scalatest-funspec_2.13:3.2.9", + "org.scalatest:scalatest-funsuite_2.13:3.2.9", + "org.scalatest:scalatest-matchers-core_2.13:3.2.9", + "org.scalatest:scalatest-mustmatchers_2.13:3.2.9", + "org.scalatest:scalatest-propspec_2.13:3.2.9", + "org.scalatest:scalatest-refspec_2.13:3.2.9", + "org.scalatest:scalatest-shouldmatchers_2.13:3.2.9", + "org.scalatest:scalatest-wordspec_2.13:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scalatest:scalatest-core_2.13:3.2.9", + "org.scalatest:scalatest-diagrams_2.13:3.2.9", + "org.scalatest:scalatest-featurespec_2.13:3.2.9", + "org.scalatest:scalatest-flatspec_2.13:3.2.9", + "org.scalatest:scalatest-freespec_2.13:3.2.9", + "org.scalatest:scalatest-funspec_2.13:3.2.9", + "org.scalatest:scalatest-funsuite_2.13:3.2.9", + "org.scalatest:scalatest-matchers-core_2.13:3.2.9", + "org.scalatest:scalatest-mustmatchers_2.13:3.2.9", + "org.scalatest:scalatest-propspec_2.13:3.2.9", + "org.scalatest:scalatest-refspec_2.13:3.2.9", + "org.scalatest:scalatest-shouldmatchers_2.13:3.2.9", + "org.scalatest:scalatest-wordspec_2.13:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9.jar" + ], + "sha256": "c5d283a5ec028bf06f83d70e2b88d70a149dd574d19e79e8389b49483914b08b", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9.jar" + }, + { + "coord": "org.scalatest:scalatest_2.13:jar:sources:3.2.9", + "dependencies": [ + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-diagrams_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-featurespec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-flatspec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-freespec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-funspec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-funsuite_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-mustmatchers_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-propspec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-refspec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-shouldmatchers_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-wordspec_2.13:jar:sources:3.2.9" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-diagrams_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-featurespec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-flatspec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-freespec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-funspec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-funsuite_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-mustmatchers_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-propspec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-refspec_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-shouldmatchers_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-wordspec_2.13:jar:sources:3.2.9" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9-sources.jar" + ], + "sha256": "825a948573fc0cd462a92b7efab0fd3f740e00947158a9afce53458cbb285611", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9-sources.jar" + }, + { + "coord": "org.specs2:specs2-common_2.13:4.12.3", + "dependencies": [ + "org.portable-scala:portable-scala-reflect_2.13:1.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:2.0.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt:test-interface:1.0", + "org.specs2:specs2-fp_2.13:4.12.3" + ], + "directDependencies": [ + "org.portable-scala:portable-scala-reflect_2.13:1.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:2.0.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt:test-interface:1.0", + "org.specs2:specs2-fp_2.13:4.12.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.12.3/specs2-common_2.13-4.12.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.12.3/specs2-common_2.13-4.12.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-common_2.13/4.12.3/specs2-common_2.13-4.12.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-common_2.13/4.12.3/specs2-common_2.13-4.12.3.jar" + ], + "sha256": "b505504e474747009660cb7ed679f015adaa7097f2b2e4b31a1a5085556333ea", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.12.3/specs2-common_2.13-4.12.3.jar" + }, + { + "coord": "org.specs2:specs2-common_2.13:jar:sources:4.12.3", + "dependencies": [ + "org.portable-scala:portable-scala-reflect_2.13:jar:sources:1.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt:test-interface:jar:sources:1.0", + "org.specs2:specs2-fp_2.13:jar:sources:4.12.3" + ], + "directDependencies": [ + "org.portable-scala:portable-scala-reflect_2.13:jar:sources:1.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt:test-interface:jar:sources:1.0", + "org.specs2:specs2-fp_2.13:jar:sources:4.12.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.12.3/specs2-common_2.13-4.12.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.12.3/specs2-common_2.13-4.12.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-common_2.13/4.12.3/specs2-common_2.13-4.12.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-common_2.13/4.12.3/specs2-common_2.13-4.12.3-sources.jar" + ], + "sha256": "9cc1a9a63ce25b58f53fd80ad5b15d59e0f95663cc835b4b756ac500ca950549", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.12.3/specs2-common_2.13-4.12.3-sources.jar" + }, + { + "coord": "org.specs2:specs2-core_2.13:4.12.3", + "dependencies": [ + "org.portable-scala:portable-scala-reflect_2.13:1.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:2.0.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt:test-interface:1.0", + "org.specs2:specs2-common_2.13:4.12.3", + "org.specs2:specs2-fp_2.13:4.12.3", + "org.specs2:specs2-matcher_2.13:4.12.3" + ], + "directDependencies": [ + "org.portable-scala:portable-scala-reflect_2.13:1.1.1", + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:test-interface:1.0", + "org.specs2:specs2-common_2.13:4.12.3", + "org.specs2:specs2-matcher_2.13:4.12.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.12.3/specs2-core_2.13-4.12.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.12.3/specs2-core_2.13-4.12.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-core_2.13/4.12.3/specs2-core_2.13-4.12.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-core_2.13/4.12.3/specs2-core_2.13-4.12.3.jar" + ], + "sha256": "23e68bf88d962e2a7154307ed9be65a7789acce7e1273ee363450f98fce146df", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.12.3/specs2-core_2.13-4.12.3.jar" + }, + { + "coord": "org.specs2:specs2-core_2.13:jar:sources:4.12.3", + "dependencies": [ + "org.portable-scala:portable-scala-reflect_2.13:jar:sources:1.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt:test-interface:jar:sources:1.0", + "org.specs2:specs2-common_2.13:jar:sources:4.12.3", + "org.specs2:specs2-fp_2.13:jar:sources:4.12.3", + "org.specs2:specs2-matcher_2.13:jar:sources:4.12.3" + ], + "directDependencies": [ + "org.portable-scala:portable-scala-reflect_2.13:jar:sources:1.1.1", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:test-interface:jar:sources:1.0", + "org.specs2:specs2-common_2.13:jar:sources:4.12.3", + "org.specs2:specs2-matcher_2.13:jar:sources:4.12.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.12.3/specs2-core_2.13-4.12.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.12.3/specs2-core_2.13-4.12.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-core_2.13/4.12.3/specs2-core_2.13-4.12.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-core_2.13/4.12.3/specs2-core_2.13-4.12.3-sources.jar" + ], + "sha256": "7eff91a3ed7b1394b962629700996e70664c3e5da36e92dd01c7e3d1f649bef7", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.12.3/specs2-core_2.13-4.12.3-sources.jar" + }, + { + "coord": "org.specs2:specs2-fp_2.13:4.12.3", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.12.3/specs2-fp_2.13-4.12.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.12.3/specs2-fp_2.13-4.12.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-fp_2.13/4.12.3/specs2-fp_2.13-4.12.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-fp_2.13/4.12.3/specs2-fp_2.13-4.12.3.jar" + ], + "sha256": "4b0dc6f8dcdd30e82f70f9fd9b9ac1c6f751de211b68a363c8efc70d4efa7b0a", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.12.3/specs2-fp_2.13-4.12.3.jar" + }, + { + "coord": "org.specs2:specs2-fp_2.13:jar:sources:4.12.3", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.12.3/specs2-fp_2.13-4.12.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.12.3/specs2-fp_2.13-4.12.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-fp_2.13/4.12.3/specs2-fp_2.13-4.12.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-fp_2.13/4.12.3/specs2-fp_2.13-4.12.3-sources.jar" + ], + "sha256": "94de88401362ab41c2c04a67ee93f80a9aa06ff99cc6a1829688e8224276e3b5", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.12.3/specs2-fp_2.13-4.12.3-sources.jar" + }, + { + "coord": "org.specs2:specs2-matcher_2.13:4.12.3", + "dependencies": [ + "org.portable-scala:portable-scala-reflect_2.13:1.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:2.0.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt:test-interface:1.0", + "org.specs2:specs2-common_2.13:4.12.3", + "org.specs2:specs2-fp_2.13:4.12.3" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.specs2:specs2-common_2.13:4.12.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.12.3/specs2-matcher_2.13-4.12.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.12.3/specs2-matcher_2.13-4.12.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-matcher_2.13/4.12.3/specs2-matcher_2.13-4.12.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-matcher_2.13/4.12.3/specs2-matcher_2.13-4.12.3.jar" + ], + "sha256": "050d2d9d826eae76f3d11dcaf799bf89dedb3a3fc38b64c88402e6015b7dbe8d", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.12.3/specs2-matcher_2.13-4.12.3.jar" + }, + { + "coord": "org.specs2:specs2-matcher_2.13:jar:sources:4.12.3", + "dependencies": [ + "org.portable-scala:portable-scala-reflect_2.13:jar:sources:1.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt:test-interface:jar:sources:1.0", + "org.specs2:specs2-common_2.13:jar:sources:4.12.3", + "org.specs2:specs2-fp_2.13:jar:sources:4.12.3" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.specs2:specs2-common_2.13:jar:sources:4.12.3" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.12.3/specs2-matcher_2.13-4.12.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.12.3/specs2-matcher_2.13-4.12.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-matcher_2.13/4.12.3/specs2-matcher_2.13-4.12.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-matcher_2.13/4.12.3/specs2-matcher_2.13-4.12.3-sources.jar" + ], + "sha256": "e7cbe383c479f07673ec133e110239a29e437f5515d9ab03c24b7b477198c714", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.12.3/specs2-matcher_2.13-4.12.3-sources.jar" + }, + { + "coord": "org.typelevel:kind-projector_2.13.14:0.13.3", + "dependencies": [ + "io.github.java-diff-utils:java-diff-utils:4.12", + "net.java.dev.jna:jna:5.14.0", + "org.jline:jline:3.25.1", + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala-reflect:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-compiler:2.13.14", + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/typelevel/kind-projector_2.13.14/0.13.3/kind-projector_2.13.14-0.13.3.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/typelevel/kind-projector_2.13.14/0.13.3/kind-projector_2.13.14-0.13.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/typelevel/kind-projector_2.13.14/0.13.3/kind-projector_2.13.14-0.13.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/typelevel/kind-projector_2.13.14/0.13.3/kind-projector_2.13.14-0.13.3.jar" + ], + "sha256": "569fec54deba82cd143f05a6a0456c9e3bf56bff310b0968f0adb5fb3b352d92", + "url": "https://repo.maven.apache.org/maven2/org/typelevel/kind-projector_2.13.14/0.13.3/kind-projector_2.13.14-0.13.3.jar" + }, + { + "coord": "org.typelevel:kind-projector_2.13.14:jar:sources:0.13.3", + "dependencies": [ + "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.jline:jline:jar:sources:3.25.1", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/typelevel/kind-projector_2.13.14/0.13.3/kind-projector_2.13.14-0.13.3-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/typelevel/kind-projector_2.13.14/0.13.3/kind-projector_2.13.14-0.13.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/typelevel/kind-projector_2.13.14/0.13.3/kind-projector_2.13.14-0.13.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/typelevel/kind-projector_2.13.14/0.13.3/kind-projector_2.13.14-0.13.3-sources.jar" + ], + "sha256": "baf8fbcbed5c19413cc87694f8d2208e4f92dedb8ff851bfdfc89a78025e1c5f", + "url": "https://repo.maven.apache.org/maven2/org/typelevel/kind-projector_2.13.14/0.13.3/kind-projector_2.13.14-0.13.3-sources.jar" + } + ], + "version": "0.1.0" } - }, - "dependencies": { - "com.thesamet.scalapb:lenses_2.13": [ - "org.scala-lang.modules:scala-collection-compat_2.13", - "org.scala-lang:scala-library" - ], - "com.thesamet.scalapb:scalapb-runtime_2.13": [ - "com.google.protobuf:protobuf-java", - "com.thesamet.scalapb:lenses_2.13", - "org.scala-lang.modules:scala-collection-compat_2.13", - "org.scala-lang:scala-library" - ], - "org.portable-scala:portable-scala-reflect_2.13": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang.modules:scala-collection-compat_2.13": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang.modules:scala-parser-combinators_2.13": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang.modules:scala-xml_2.13": [ - "org.scala-lang:scala-library" - ], - "org.scala-lang:scala-compiler": [ - "io.github.java-diff-utils:java-diff-utils", - "net.java.dev.jna:jna", - "org.jline:jline", - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect" - ], - "org.scala-lang:scala-reflect": [ - "org.scala-lang:scala-library" - ], - "org.scala-sbt:compiler-interface": [ - "org.scala-sbt:util-interface" - ], - "org.scalacheck:scalacheck_2.13": [ - "org.scala-lang:scala-library", - "org.scala-sbt:test-interface" - ], - "org.scalactic:scalactic_2.13": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect" - ], - "org.scalatest:scalatest-core_2.13": [ - "org.scala-lang.modules:scala-xml_2.13", - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalactic:scalactic_2.13", - "org.scalatest:scalatest-compatible" - ], - "org.scalatest:scalatest-diagrams_2.13": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-core_2.13" - ], - "org.scalatest:scalatest-featurespec_2.13": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-core_2.13" - ], - "org.scalatest:scalatest-flatspec_2.13": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-core_2.13" - ], - "org.scalatest:scalatest-freespec_2.13": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-core_2.13" - ], - "org.scalatest:scalatest-funspec_2.13": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-core_2.13" - ], - "org.scalatest:scalatest-funsuite_2.13": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-core_2.13" - ], - "org.scalatest:scalatest-matchers-core_2.13": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-core_2.13" - ], - "org.scalatest:scalatest-mustmatchers_2.13": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-matchers-core_2.13" - ], - "org.scalatest:scalatest-propspec_2.13": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-core_2.13" - ], - "org.scalatest:scalatest-refspec_2.13": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-core_2.13" - ], - "org.scalatest:scalatest-shouldmatchers_2.13": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-matchers-core_2.13" - ], - "org.scalatest:scalatest-wordspec_2.13": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-core_2.13" - ], - "org.scalatest:scalatest_2.13": [ - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scalatest:scalatest-core_2.13", - "org.scalatest:scalatest-diagrams_2.13", - "org.scalatest:scalatest-featurespec_2.13", - "org.scalatest:scalatest-flatspec_2.13", - "org.scalatest:scalatest-freespec_2.13", - "org.scalatest:scalatest-funspec_2.13", - "org.scalatest:scalatest-funsuite_2.13", - "org.scalatest:scalatest-matchers-core_2.13", - "org.scalatest:scalatest-mustmatchers_2.13", - "org.scalatest:scalatest-propspec_2.13", - "org.scalatest:scalatest-refspec_2.13", - "org.scalatest:scalatest-shouldmatchers_2.13", - "org.scalatest:scalatest-wordspec_2.13" - ], - "org.specs2:specs2-common_2.13": [ - "org.portable-scala:portable-scala-reflect_2.13", - "org.scala-lang.modules:scala-parser-combinators_2.13", - "org.scala-lang:scala-library", - "org.scala-lang:scala-reflect", - "org.scala-sbt:test-interface", - "org.specs2:specs2-fp_2.13" - ], - "org.specs2:specs2-core_2.13": [ - "org.portable-scala:portable-scala-reflect_2.13", - "org.scala-lang:scala-library", - "org.scala-sbt:test-interface", - "org.specs2:specs2-common_2.13", - "org.specs2:specs2-matcher_2.13" - ], - "org.specs2:specs2-fp_2.13": [ - "org.scala-lang:scala-library" - ], - "org.specs2:specs2-matcher_2.13": [ - "org.scala-lang:scala-library", - "org.specs2:specs2-common_2.13" - ], - "org.typelevel:kind-projector_2.13.14": [ - "org.scala-lang:scala-compiler", - "org.scala-lang:scala-library" - ] - }, - "packages": { - "com.google.protobuf:protobuf-java": [ - "com.google.protobuf", - "com.google.protobuf.compiler" - ], - "com.thesamet.scalapb:lenses_2.13": [ - "scalapb.lenses" - ], - "com.thesamet.scalapb:scalapb-runtime_2.13": [ - "com.google.protobuf.any", - "com.google.protobuf.api", - "com.google.protobuf.compiler.plugin", - "com.google.protobuf.descriptor", - "com.google.protobuf.duration", - "com.google.protobuf.empty", - "com.google.protobuf.field_mask", - "com.google.protobuf.source_context", - "com.google.protobuf.struct", - "com.google.protobuf.timestamp", - "com.google.protobuf.type", - "com.google.protobuf.wrappers", - "scalapb", - "scalapb.descriptors", - "scalapb.internal", - "scalapb.options", - "scalapb.textformat" - ], - "io.github.java-diff-utils:java-diff-utils": [ - "com.github.difflib", - "com.github.difflib.algorithm", - "com.github.difflib.algorithm.myers", - "com.github.difflib.patch", - "com.github.difflib.text", - "com.github.difflib.unifieddiff" - ], - "net.java.dev.jna:jna": [ - "com.sun.jna", - "com.sun.jna.internal", - "com.sun.jna.ptr", - "com.sun.jna.win32" - ], - "org.jline:jline": [ - "org.jline.builtins", - "org.jline.builtins.ssh", - "org.jline.builtins.telnet", - "org.jline.console", - "org.jline.console.impl", - "org.jline.jansi", - "org.jline.jansi.io", - "org.jline.keymap", - "org.jline.nativ", - "org.jline.reader", - "org.jline.reader.impl", - "org.jline.reader.impl.completer", - "org.jline.reader.impl.history", - "org.jline.style", - "org.jline.terminal", - "org.jline.terminal.impl", - "org.jline.terminal.impl.exec", - "org.jline.terminal.impl.ffm", - "org.jline.terminal.impl.jansi", - "org.jline.terminal.impl.jansi.freebsd", - "org.jline.terminal.impl.jansi.linux", - "org.jline.terminal.impl.jansi.osx", - "org.jline.terminal.impl.jansi.solaris", - "org.jline.terminal.impl.jansi.win", - "org.jline.terminal.impl.jna", - "org.jline.terminal.impl.jna.freebsd", - "org.jline.terminal.impl.jna.linux", - "org.jline.terminal.impl.jna.osx", - "org.jline.terminal.impl.jna.solaris", - "org.jline.terminal.impl.jna.win", - "org.jline.terminal.impl.jni", - "org.jline.terminal.impl.jni.freebsd", - "org.jline.terminal.impl.jni.linux", - "org.jline.terminal.impl.jni.osx", - "org.jline.terminal.impl.jni.solaris", - "org.jline.terminal.impl.jni.win", - "org.jline.terminal.spi", - "org.jline.utils", - "org.jline.widget" - ], - "org.portable-scala:portable-scala-reflect_2.13": [ - "org.portablescala.reflect", - "org.portablescala.reflect.annotation", - "org.portablescala.reflect.internal" - ], - "org.scala-lang.modules:scala-collection-compat_2.13": [ - "scala.collection.compat", - "scala.collection.compat.immutable", - "scala.util.control.compat" - ], - "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" - ], - "org.scala-lang.modules:scala-xml_2.13": [ - "scala.xml", - "scala.xml.dtd", - "scala.xml.dtd.impl", - "scala.xml.factory", - "scala.xml.include", - "scala.xml.include.sax", - "scala.xml.parsing", - "scala.xml.transform" - ], - "org.scala-lang:scala-compiler": [ - "com.github.difflib", - "com.github.difflib.algorithm", - "com.github.difflib.algorithm.myers", - "com.github.difflib.patch", - "com.github.difflib.text", - "com.github.difflib.unifieddiff", - "scala.reflect.macros.compiler", - "scala.reflect.macros.contexts", - "scala.reflect.macros.runtime", - "scala.reflect.macros.util", - "scala.reflect.quasiquotes", - "scala.reflect.reify", - "scala.reflect.reify.codegen", - "scala.reflect.reify.phases", - "scala.reflect.reify.utils", - "scala.tools.asm", - "scala.tools.asm.commons", - "scala.tools.asm.signature", - "scala.tools.asm.tree", - "scala.tools.asm.tree.analysis", - "scala.tools.asm.util", - "scala.tools.nsc", - "scala.tools.nsc.ast", - "scala.tools.nsc.ast.parser", - "scala.tools.nsc.ast.parser.xml", - "scala.tools.nsc.backend", - "scala.tools.nsc.backend.jvm", - "scala.tools.nsc.backend.jvm.analysis", - "scala.tools.nsc.backend.jvm.opt", - "scala.tools.nsc.classpath", - "scala.tools.nsc.doc", - "scala.tools.nsc.doc.base", - "scala.tools.nsc.doc.base.comment", - "scala.tools.nsc.doc.doclet", - "scala.tools.nsc.doc.html", - "scala.tools.nsc.doc.html.page", - "scala.tools.nsc.doc.html.page.diagram", - "scala.tools.nsc.doc.model", - "scala.tools.nsc.doc.model.diagram", - "scala.tools.nsc.fsc", - "scala.tools.nsc.interactive", - "scala.tools.nsc.interactive.tests", - "scala.tools.nsc.interactive.tests.core", - "scala.tools.nsc.interpreter", - "scala.tools.nsc.interpreter.jline", - "scala.tools.nsc.interpreter.shell", - "scala.tools.nsc.io", - "scala.tools.nsc.javac", - "scala.tools.nsc.plugins", - "scala.tools.nsc.profile", - "scala.tools.nsc.reporters", - "scala.tools.nsc.settings", - "scala.tools.nsc.symtab", - "scala.tools.nsc.symtab.classfile", - "scala.tools.nsc.tasty", - "scala.tools.nsc.tasty.bridge", - "scala.tools.nsc.transform", - "scala.tools.nsc.transform.async", - "scala.tools.nsc.transform.patmat", - "scala.tools.nsc.typechecker", - "scala.tools.nsc.typechecker.splain", - "scala.tools.nsc.util", - "scala.tools.reflect", - "scala.tools.tasty", - "scala.tools.util" - ], - "org.scala-lang:scala-library": [ - "scala", - "scala.annotation", - "scala.annotation.meta", - "scala.annotation.unchecked", - "scala.beans", - "scala.collection", - "scala.collection.concurrent", - "scala.collection.convert", - "scala.collection.convert.impl", - "scala.collection.generic", - "scala.collection.immutable", - "scala.collection.mutable", - "scala.compat", - "scala.concurrent", - "scala.concurrent.duration", - "scala.concurrent.impl", - "scala.io", - "scala.jdk", - "scala.jdk.javaapi", - "scala.math", - "scala.ref", - "scala.reflect", - "scala.reflect.macros.internal", - "scala.runtime", - "scala.runtime.java8", - "scala.sys", - "scala.sys.process", - "scala.util", - "scala.util.control", - "scala.util.hashing", - "scala.util.matching" - ], - "org.scala-lang:scala-reflect": [ - "scala.reflect.api", - "scala.reflect.internal", - "scala.reflect.internal.annotations", - "scala.reflect.internal.pickling", - "scala.reflect.internal.settings", - "scala.reflect.internal.tpe", - "scala.reflect.internal.transform", - "scala.reflect.internal.util", - "scala.reflect.io", - "scala.reflect.macros", - "scala.reflect.macros.blackbox", - "scala.reflect.macros.whitebox", - "scala.reflect.runtime" - ], - "org.scala-sbt:compiler-interface": [ - "xsbti", - "xsbti.api", - "xsbti.compile", - "xsbti.compile.analysis" - ], - "org.scala-sbt:test-interface": [ - "org.scalatools.testing", - "sbt.testing" - ], - "org.scala-sbt:util-interface": [ - "xsbti" - ], - "org.scalacheck:scalacheck_2.13": [ - "org.scalacheck", - "org.scalacheck.commands", - "org.scalacheck.rng", - "org.scalacheck.time", - "org.scalacheck.util" - ], - "org.scalactic:scalactic_2.13": [ - "org.scalactic", - "org.scalactic.anyvals", - "org.scalactic.exceptions", - "org.scalactic.source" - ], - "org.scalatest:scalatest-compatible": [ - "org.scalatest.compatible" - ], - "org.scalatest:scalatest-core_2.13": [ - "org.scalatest", - "org.scalatest.concurrent", - "org.scalatest.enablers", - "org.scalatest.events", - "org.scalatest.exceptions", - "org.scalatest.fixture", - "org.scalatest.prop", - "org.scalatest.tagobjects", - "org.scalatest.tags", - "org.scalatest.time", - "org.scalatest.tools", - "org.scalatest.verbs" - ], - "org.scalatest:scalatest-diagrams_2.13": [ - "org.scalatest.diagrams" - ], - "org.scalatest:scalatest-featurespec_2.13": [ - "org.scalatest.featurespec" - ], - "org.scalatest:scalatest-flatspec_2.13": [ - "org.scalatest.flatspec" - ], - "org.scalatest:scalatest-freespec_2.13": [ - "org.scalatest.freespec" - ], - "org.scalatest:scalatest-funspec_2.13": [ - "org.scalatest.funspec" - ], - "org.scalatest:scalatest-funsuite_2.13": [ - "org.scalatest.funsuite" - ], - "org.scalatest:scalatest-matchers-core_2.13": [ - "org.scalatest.matchers", - "org.scalatest.matchers.dsl" - ], - "org.scalatest:scalatest-mustmatchers_2.13": [ - "org.scalatest.matchers.must" - ], - "org.scalatest:scalatest-propspec_2.13": [ - "org.scalatest.propspec" - ], - "org.scalatest:scalatest-refspec_2.13": [ - "org.scalatest.refspec" - ], - "org.scalatest:scalatest-shouldmatchers_2.13": [ - "org.scalatest.matchers.should" - ], - "org.scalatest:scalatest-wordspec_2.13": [ - "org.scalatest.wordspec" - ], - "org.specs2:specs2-common_2.13": [ - "org.specs2.collection", - "org.specs2.concurrent", - "org.specs2.control", - "org.specs2.control.eff", - "org.specs2.control.eff.syntax", - "org.specs2.control.origami", - "org.specs2.control.producer", - "org.specs2.data", - "org.specs2.execute", - "org.specs2.io", - "org.specs2.main", - "org.specs2.reflect", - "org.specs2.text", - "org.specs2.time", - "specs2" - ], - "org.specs2:specs2-core_2.13": [ - "org.specs2", - "org.specs2.control", - "org.specs2.io", - "org.specs2.matcher", - "org.specs2.mutable", - "org.specs2.mutable.script", - "org.specs2.reporter", - "org.specs2.runner", - "org.specs2.specification", - "org.specs2.specification.core", - "org.specs2.specification.core.mutable", - "org.specs2.specification.create", - "org.specs2.specification.create.mutable", - "org.specs2.specification.dsl", - "org.specs2.specification.dsl.mutable", - "org.specs2.specification.mutable", - "org.specs2.specification.process", - "org.specs2.specification.script", - "specs2" - ], - "org.specs2:specs2-fp_2.13": [ - "org.specs2.fp" - ], - "org.specs2:specs2-matcher_2.13": [ - "org.specs2.matcher", - "org.specs2.matcher.describe" - ], - "org.typelevel:kind-projector_2.13.14": [ - "d_m" - ] - }, - "repositories": { - "https://repo.maven.apache.org/maven2/": [ - "com.google.protobuf:protobuf-java", - "com.google.protobuf:protobuf-java:jar:sources", - "com.thesamet.scalapb:lenses_2.13", - "com.thesamet.scalapb:lenses_2.13:jar:sources", - "com.thesamet.scalapb:scalapb-runtime_2.13", - "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources", - "io.github.java-diff-utils:java-diff-utils", - "io.github.java-diff-utils:java-diff-utils:jar:sources", - "net.java.dev.jna:jna", - "net.java.dev.jna:jna:jar:sources", - "org.jline:jline", - "org.jline:jline:jar:sources", - "org.portable-scala:portable-scala-reflect_2.13", - "org.portable-scala:portable-scala-reflect_2.13:jar:sources", - "org.scala-lang.modules:scala-collection-compat_2.13", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources", - "org.scala-lang.modules:scala-parser-combinators_2.13", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources", - "org.scala-lang.modules:scala-xml_2.13", - "org.scala-lang.modules:scala-xml_2.13:jar:sources", - "org.scala-lang:scala-compiler", - "org.scala-lang:scala-compiler:jar:sources", - "org.scala-lang:scala-library", - "org.scala-lang:scala-library:jar:sources", - "org.scala-lang:scala-reflect", - "org.scala-lang:scala-reflect:jar:sources", - "org.scala-sbt:compiler-interface", - "org.scala-sbt:compiler-interface:jar:sources", - "org.scala-sbt:test-interface", - "org.scala-sbt:test-interface:jar:sources", - "org.scala-sbt:util-interface", - "org.scala-sbt:util-interface:jar:sources", - "org.scalacheck:scalacheck_2.13", - "org.scalacheck:scalacheck_2.13:jar:sources", - "org.scalactic:scalactic_2.13", - "org.scalactic:scalactic_2.13:jar:sources", - "org.scalatest:scalatest-compatible", - "org.scalatest:scalatest-compatible:jar:sources", - "org.scalatest:scalatest-core_2.13", - "org.scalatest:scalatest-core_2.13:jar:sources", - "org.scalatest:scalatest-diagrams_2.13", - "org.scalatest:scalatest-diagrams_2.13:jar:sources", - "org.scalatest:scalatest-featurespec_2.13", - "org.scalatest:scalatest-featurespec_2.13:jar:sources", - "org.scalatest:scalatest-flatspec_2.13", - "org.scalatest:scalatest-flatspec_2.13:jar:sources", - "org.scalatest:scalatest-freespec_2.13", - "org.scalatest:scalatest-freespec_2.13:jar:sources", - "org.scalatest:scalatest-funspec_2.13", - "org.scalatest:scalatest-funspec_2.13:jar:sources", - "org.scalatest:scalatest-funsuite_2.13", - "org.scalatest:scalatest-funsuite_2.13:jar:sources", - "org.scalatest:scalatest-matchers-core_2.13", - "org.scalatest:scalatest-matchers-core_2.13:jar:sources", - "org.scalatest:scalatest-mustmatchers_2.13", - "org.scalatest:scalatest-mustmatchers_2.13:jar:sources", - "org.scalatest:scalatest-propspec_2.13", - "org.scalatest:scalatest-propspec_2.13:jar:sources", - "org.scalatest:scalatest-refspec_2.13", - "org.scalatest:scalatest-refspec_2.13:jar:sources", - "org.scalatest:scalatest-shouldmatchers_2.13", - "org.scalatest:scalatest-shouldmatchers_2.13:jar:sources", - "org.scalatest:scalatest-wordspec_2.13", - "org.scalatest:scalatest-wordspec_2.13:jar:sources", - "org.scalatest:scalatest_2.13", - "org.scalatest:scalatest_2.13:jar:sources", - "org.specs2:specs2-common_2.13", - "org.specs2:specs2-common_2.13:jar:sources", - "org.specs2:specs2-core_2.13", - "org.specs2:specs2-core_2.13:jar:sources", - "org.specs2:specs2-fp_2.13", - "org.specs2:specs2-fp_2.13:jar:sources", - "org.specs2:specs2-matcher_2.13", - "org.specs2:specs2-matcher_2.13:jar:sources", - "org.typelevel:kind-projector_2.13.14", - "org.typelevel:kind-projector_2.13.14:jar:sources" - ], - "https://maven-central.storage-download.googleapis.com/maven2/": [ - "com.google.protobuf:protobuf-java", - "com.google.protobuf:protobuf-java:jar:sources", - "com.thesamet.scalapb:lenses_2.13", - "com.thesamet.scalapb:lenses_2.13:jar:sources", - "com.thesamet.scalapb:scalapb-runtime_2.13", - "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources", - "io.github.java-diff-utils:java-diff-utils", - "io.github.java-diff-utils:java-diff-utils:jar:sources", - "net.java.dev.jna:jna", - "net.java.dev.jna:jna:jar:sources", - "org.jline:jline", - "org.jline:jline:jar:sources", - "org.portable-scala:portable-scala-reflect_2.13", - "org.portable-scala:portable-scala-reflect_2.13:jar:sources", - "org.scala-lang.modules:scala-collection-compat_2.13", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources", - "org.scala-lang.modules:scala-parser-combinators_2.13", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources", - "org.scala-lang.modules:scala-xml_2.13", - "org.scala-lang.modules:scala-xml_2.13:jar:sources", - "org.scala-lang:scala-compiler", - "org.scala-lang:scala-compiler:jar:sources", - "org.scala-lang:scala-library", - "org.scala-lang:scala-library:jar:sources", - "org.scala-lang:scala-reflect", - "org.scala-lang:scala-reflect:jar:sources", - "org.scala-sbt:compiler-interface", - "org.scala-sbt:compiler-interface:jar:sources", - "org.scala-sbt:test-interface", - "org.scala-sbt:test-interface:jar:sources", - "org.scala-sbt:util-interface", - "org.scala-sbt:util-interface:jar:sources", - "org.scalacheck:scalacheck_2.13", - "org.scalacheck:scalacheck_2.13:jar:sources", - "org.scalactic:scalactic_2.13", - "org.scalactic:scalactic_2.13:jar:sources", - "org.scalatest:scalatest-compatible", - "org.scalatest:scalatest-compatible:jar:sources", - "org.scalatest:scalatest-core_2.13", - "org.scalatest:scalatest-core_2.13:jar:sources", - "org.scalatest:scalatest-diagrams_2.13", - "org.scalatest:scalatest-diagrams_2.13:jar:sources", - "org.scalatest:scalatest-featurespec_2.13", - "org.scalatest:scalatest-featurespec_2.13:jar:sources", - "org.scalatest:scalatest-flatspec_2.13", - "org.scalatest:scalatest-flatspec_2.13:jar:sources", - "org.scalatest:scalatest-freespec_2.13", - "org.scalatest:scalatest-freespec_2.13:jar:sources", - "org.scalatest:scalatest-funspec_2.13", - "org.scalatest:scalatest-funspec_2.13:jar:sources", - "org.scalatest:scalatest-funsuite_2.13", - "org.scalatest:scalatest-funsuite_2.13:jar:sources", - "org.scalatest:scalatest-matchers-core_2.13", - "org.scalatest:scalatest-matchers-core_2.13:jar:sources", - "org.scalatest:scalatest-mustmatchers_2.13", - "org.scalatest:scalatest-mustmatchers_2.13:jar:sources", - "org.scalatest:scalatest-propspec_2.13", - "org.scalatest:scalatest-propspec_2.13:jar:sources", - "org.scalatest:scalatest-refspec_2.13", - "org.scalatest:scalatest-refspec_2.13:jar:sources", - "org.scalatest:scalatest-shouldmatchers_2.13", - "org.scalatest:scalatest-shouldmatchers_2.13:jar:sources", - "org.scalatest:scalatest-wordspec_2.13", - "org.scalatest:scalatest-wordspec_2.13:jar:sources", - "org.scalatest:scalatest_2.13", - "org.scalatest:scalatest_2.13:jar:sources", - "org.specs2:specs2-common_2.13", - "org.specs2:specs2-common_2.13:jar:sources", - "org.specs2:specs2-core_2.13", - "org.specs2:specs2-core_2.13:jar:sources", - "org.specs2:specs2-fp_2.13", - "org.specs2:specs2-fp_2.13:jar:sources", - "org.specs2:specs2-matcher_2.13", - "org.specs2:specs2-matcher_2.13:jar:sources", - "org.typelevel:kind-projector_2.13.14", - "org.typelevel:kind-projector_2.13.14:jar:sources" - ], - "https://mirror.bazel.build/repo1.maven.org/maven2/": [ - "com.google.protobuf:protobuf-java", - "com.google.protobuf:protobuf-java:jar:sources", - "com.thesamet.scalapb:lenses_2.13", - "com.thesamet.scalapb:lenses_2.13:jar:sources", - "com.thesamet.scalapb:scalapb-runtime_2.13", - "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources", - "io.github.java-diff-utils:java-diff-utils", - "io.github.java-diff-utils:java-diff-utils:jar:sources", - "net.java.dev.jna:jna", - "net.java.dev.jna:jna:jar:sources", - "org.jline:jline", - "org.jline:jline:jar:sources", - "org.portable-scala:portable-scala-reflect_2.13", - "org.portable-scala:portable-scala-reflect_2.13:jar:sources", - "org.scala-lang.modules:scala-collection-compat_2.13", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources", - "org.scala-lang.modules:scala-parser-combinators_2.13", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources", - "org.scala-lang.modules:scala-xml_2.13", - "org.scala-lang.modules:scala-xml_2.13:jar:sources", - "org.scala-lang:scala-compiler", - "org.scala-lang:scala-compiler:jar:sources", - "org.scala-lang:scala-library", - "org.scala-lang:scala-library:jar:sources", - "org.scala-lang:scala-reflect", - "org.scala-lang:scala-reflect:jar:sources", - "org.scala-sbt:compiler-interface", - "org.scala-sbt:compiler-interface:jar:sources", - "org.scala-sbt:test-interface", - "org.scala-sbt:test-interface:jar:sources", - "org.scala-sbt:util-interface", - "org.scala-sbt:util-interface:jar:sources", - "org.scalacheck:scalacheck_2.13", - "org.scalacheck:scalacheck_2.13:jar:sources", - "org.scalactic:scalactic_2.13", - "org.scalactic:scalactic_2.13:jar:sources", - "org.scalatest:scalatest-compatible", - "org.scalatest:scalatest-compatible:jar:sources", - "org.scalatest:scalatest-core_2.13", - "org.scalatest:scalatest-core_2.13:jar:sources", - "org.scalatest:scalatest-diagrams_2.13", - "org.scalatest:scalatest-diagrams_2.13:jar:sources", - "org.scalatest:scalatest-featurespec_2.13", - "org.scalatest:scalatest-featurespec_2.13:jar:sources", - "org.scalatest:scalatest-flatspec_2.13", - "org.scalatest:scalatest-flatspec_2.13:jar:sources", - "org.scalatest:scalatest-freespec_2.13", - "org.scalatest:scalatest-freespec_2.13:jar:sources", - "org.scalatest:scalatest-funspec_2.13", - "org.scalatest:scalatest-funspec_2.13:jar:sources", - "org.scalatest:scalatest-funsuite_2.13", - "org.scalatest:scalatest-funsuite_2.13:jar:sources", - "org.scalatest:scalatest-matchers-core_2.13", - "org.scalatest:scalatest-matchers-core_2.13:jar:sources", - "org.scalatest:scalatest-mustmatchers_2.13", - "org.scalatest:scalatest-mustmatchers_2.13:jar:sources", - "org.scalatest:scalatest-propspec_2.13", - "org.scalatest:scalatest-propspec_2.13:jar:sources", - "org.scalatest:scalatest-refspec_2.13", - "org.scalatest:scalatest-refspec_2.13:jar:sources", - "org.scalatest:scalatest-shouldmatchers_2.13", - "org.scalatest:scalatest-shouldmatchers_2.13:jar:sources", - "org.scalatest:scalatest-wordspec_2.13", - "org.scalatest:scalatest-wordspec_2.13:jar:sources", - "org.scalatest:scalatest_2.13", - "org.scalatest:scalatest_2.13:jar:sources", - "org.specs2:specs2-common_2.13", - "org.specs2:specs2-common_2.13:jar:sources", - "org.specs2:specs2-core_2.13", - "org.specs2:specs2-core_2.13:jar:sources", - "org.specs2:specs2-fp_2.13", - "org.specs2:specs2-fp_2.13:jar:sources", - "org.specs2:specs2-matcher_2.13", - "org.specs2:specs2-matcher_2.13:jar:sources", - "org.typelevel:kind-projector_2.13.14", - "org.typelevel:kind-projector_2.13.14:jar:sources" - ] - }, - "version": "2" } From e2017e07062626fa380a1626ab8b5624037c1de7 Mon Sep 17 00:00:00 2001 From: James Judd Date: Wed, 19 Jun 2024 21:05:48 -0600 Subject: [PATCH 04/21] Update CI to Ubuntu 24.04 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aba27ca45..ff7775403 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-20.04] + os: [ubuntu-24.04] bazel_version: [7.2.0] steps: - uses: actions/checkout@v3 From 96e738fc9356f23fabf7b2fba72835f7dce64cac Mon Sep 17 00:00:00 2001 From: James Judd Date: Mon, 1 Jul 2024 17:44:51 -0600 Subject: [PATCH 05/21] Make warnings errors for Scala targets in the rules --- rules/scala_proto/private/ScalaProtoWorker.scala | 2 +- src/main/scala/BUILD | 4 ++++ .../higherkindness/rules_scala/common/sbt-testing/Test.scala | 4 ++-- .../rules_scala/workers/zinc/doc/DocRunner.scala | 2 +- .../rules_scala/workers/zinc/repl/ReplRunner.scala | 2 +- .../rules_scala/workers/zinc/test/TestRunner.scala | 2 +- 6 files changed, 10 insertions(+), 6 deletions(-) diff --git a/rules/scala_proto/private/ScalaProtoWorker.scala b/rules/scala_proto/private/ScalaProtoWorker.scala index 78cf737c9..50ab2e825 100644 --- a/rules/scala_proto/private/ScalaProtoWorker.scala +++ b/rules/scala_proto/private/ScalaProtoWorker.scala @@ -10,7 +10,7 @@ import net.sourceforge.argparse4j.ArgumentParsers import net.sourceforge.argparse4j.impl.Arguments import net.sourceforge.argparse4j.inf.ArgumentParser import protocbridge.{ProtocBridge, ProtocRunner} -import scala.collection.JavaConverters._ +import scala.jdk.CollectionConverters._ import scalapb.ScalaPbCodeGenerator object ScalaProtoWorker extends WorkerMain[Unit] { diff --git a/src/main/scala/BUILD b/src/main/scala/BUILD index ef9bc0b68..01d1bbccb 100644 --- a/src/main/scala/BUILD +++ b/src/main/scala/BUILD @@ -54,6 +54,7 @@ configure_zinc_scala( compiler_classpath = compiler_classpath_2_13_14, global_scalacopts = [ "-Ytasty-reader", + "-Wconf:any:error", ], runtime_classpath = runtime_classpath_2_13_14, version = "2.13.14", @@ -99,6 +100,9 @@ configure_zinc_scala( name = "zinc_3_4_2", compiler_bridge = "@annex_3//:org_scala_lang_scala3_sbt_bridge_3_4_2", compiler_classpath = compiler_classpath_3_4_2, + global_scalacopts = [ + "-Wconf:any:error", + ], runtime_classpath = runtime_classpath_3_4_2, use_ijar = False, version = "3.4.2", diff --git a/src/main/scala/higherkindness/rules_scala/common/sbt-testing/Test.scala b/src/main/scala/higherkindness/rules_scala/common/sbt-testing/Test.scala index ba1d40699..b42e6b0e9 100644 --- a/src/main/scala/higherkindness/rules_scala/common/sbt-testing/Test.scala +++ b/src/main/scala/higherkindness/rules_scala/common/sbt-testing/Test.scala @@ -59,7 +59,7 @@ object TestHelper { } class TestReporter(logger: Logger) { - def post(failures: Traversable[String]) = if (failures.nonEmpty) { + def post(failures: Iterable[String]) = if (failures.nonEmpty) { logger.error(s"${failures.size} ${if (failures.size == 1) "failure" else "failures"}:") failures.toSeq.sorted.foreach(name => logger.error(s" $name")) logger.error("") @@ -67,7 +67,7 @@ class TestReporter(logger: Logger) { def postTask() = logger.info("") - def pre(framework: Framework, tasks: Traversable[Task]) = { + def pre(framework: Framework, tasks: Iterable[Task]) = { logger.info(s"${framework.getClass.getName}: ${tasks.size} tests") logger.info("") } diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/doc/DocRunner.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/doc/DocRunner.scala index 712679a05..7f5aa0193 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/doc/DocRunner.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/doc/DocRunner.scala @@ -16,7 +16,7 @@ import net.sourceforge.argparse4j.impl.Arguments import net.sourceforge.argparse4j.inf.Namespace import sbt.internal.inc.classpath.ClassLoaderCache import sbt.internal.inc.{LoggedReporter, PlainVirtualFile, PlainVirtualFileConverter, ZincUtil} -import scala.collection.JavaConverters._ +import scala.jdk.CollectionConverters._ import xsbti.Logger object DocRunner extends WorkerMain[Unit] { diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/repl/ReplRunner.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/repl/ReplRunner.scala index 1f99c99a6..8e8bbda23 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/repl/ReplRunner.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/repl/ReplRunner.scala @@ -12,7 +12,7 @@ import java.util.Collections import net.sourceforge.argparse4j.ArgumentParsers import net.sourceforge.argparse4j.impl.Arguments import sbt.internal.inc.{PlainVirtualFile, PlainVirtualFileConverter, ZincUtil} -import scala.collection.JavaConverters._ +import scala.jdk.CollectionConverters._ import xsbti.Logger object ReplRunner { diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestRunner.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestRunner.scala index 67dc8dfda..fce5fc619 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestRunner.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestRunner.scala @@ -21,7 +21,7 @@ import net.sourceforge.argparse4j.impl.Arguments import org.scalatools.testing.Framework import sbt.internal.inc.binary.converters.ProtobufReaders import sbt.internal.inc.Schema -import scala.collection.JavaConverters._ +import scala.jdk.CollectionConverters._ import scala.util.control.NonFatal import xsbti.compile.analysis.ReadMapper From 5e1e558c07880882e02d3b46240f2c8d9b591f14 Mon Sep 17 00:00:00 2001 From: James Judd Date: Mon, 1 Jul 2024 20:25:14 -0600 Subject: [PATCH 06/21] Turn back on disk caching and make it work better with tests --- .bazelrc_shared | 10 +++--- tests/compile/log_level/test | 11 ++++--- tests/format/scalafmt/BUILD | 10 ++++++ tests/format/scalafmt/test | 64 ++++++++++++++++++------------------ tests/plugins/classpath/test | 7 +++- 5 files changed, 59 insertions(+), 43 deletions(-) diff --git a/.bazelrc_shared b/.bazelrc_shared index ca327bebc..70780c316 100644 --- a/.bazelrc_shared +++ b/.bazelrc_shared @@ -1,6 +1,9 @@ common --announce_rc common --color=yes common --noenable_bzlmod +# Fix "Failed to fetch blobs because they do not exist remotely" errors +# https://github.com/bazelbuild/bazel/issues/18696#issuecomment-2175561503 +common --remote_download_all build --experimental_strict_action_env build --javacopt="-source 21 -target 21" @@ -22,11 +25,8 @@ build --verbose_failures test --test_output=all -# Disabling these in general. Feel free to turn them on during development. -# Having them on can make testing the rules challenging because, after a clean, -# you hit the disk cache instead of running actions again. -#build:rules --disk_cache=.bazel_cache -#build:tests --disk_cache=../.bazel_cache +build:rules --disk_cache=.bazel_cache +build:tests --disk_cache=../.bazel_cache common:rules_v7.2 --config=noop diff --git a/tests/compile/log_level/test b/tests/compile/log_level/test index 1b5600a05..1fc8397fe 100755 --- a/tests/compile/log_level/test +++ b/tests/compile/log_level/test @@ -1,8 +1,9 @@ #!/bin/bash -e . "$(dirname "$0")"/../../common.sh -bazel clean -bazel build :lib > output 2>&1 - -cat output | grep "compiling 1 Scala source" -rm output +# We use nouse_action_cache + bazel shutdown here in order to prevent the skyframe +# cache and the persistent action cache from being used and thus getting the +# warning we want printed, printed. The alternative is to bazel clean, which +# takes much longer. +bazel shutdown +bazel build :lib --nouse_action_cache |& grep "compiling 1 Scala source" diff --git a/tests/format/scalafmt/BUILD b/tests/format/scalafmt/BUILD index d000bd67d..767e8e460 100644 --- a/tests/format/scalafmt/BUILD +++ b/tests/format/scalafmt/BUILD @@ -22,18 +22,21 @@ scala_binary( name = "formatted-binary", srcs = ["formatted.scala"], format = True, + tags = ["no-cache"], ) scala_binary( name = "unformatted-binary", srcs = ["unformatted.scala"], format = True, + tags = ["no-cache"], ) scala_binary( name = "unformatted-binary-copy", srcs = ["unformatted.tmp.scala"], format = True, + tags = ["no-cache"], ) ### scala_library ### @@ -41,18 +44,21 @@ scala_library( name = "formatted-library", srcs = ["formatted.scala"], format = True, + tags = ["no-cache"], ) scala_library( name = "unformatted-library", srcs = ["unformatted.scala"], format = True, + tags = ["no-cache"], ) scala_library( name = "unformatted-library-copy", srcs = ["unformatted.tmp.scala"], format = True, + tags = ["no-cache"], ) ### scala_test ### @@ -60,18 +66,21 @@ scala_test( name = "formatted-test", srcs = ["formatted.scala"], format = True, + tags = ["no-cache"], ) scala_test( name = "unformatted-test", srcs = ["unformatted.scala"], format = True, + tags = ["no-cache"], ) scala_test( name = "unformatted-test-copy", srcs = ["unformatted.tmp.scala"], format = True, + tags = ["no-cache"], ) ### utf8 encoding test ### @@ -84,4 +93,5 @@ scala_binary( name = "utf8-encoding-test-non-default", srcs = ["utf8-unformatted.tmp.scala"], format = True, + tags = ["no-cache"], ) diff --git a/tests/format/scalafmt/test b/tests/format/scalafmt/test index 8e31ef297..a5cf7e525 100755 --- a/tests/format/scalafmt/test +++ b/tests/format/scalafmt/test @@ -7,7 +7,7 @@ bazel test :formatted ! bazel test :unformatted ## copy cp unformatted.template.scala unformatted.tmp.scala -! bazel test :unformatted-copy +! bazel test :unformatted-copy bazel run :unformatted-copy bazel test :unformatted-copy rm unformatted.tmp.scala @@ -23,36 +23,36 @@ bazel run :unformatted-binary-copy.format bazel run :unformatted-binary-copy.format-test rm unformatted.tmp.scala -# non-default output format test: library -## check -bazel run :formatted-library.format-test -! bazel run :unformatted-library.format-test -## copy -cp unformatted.template.scala unformatted.tmp.scala -! bazel run :unformatted-library-copy.format-test -bazel run :unformatted-library-copy.format -bazel run :unformatted-library-copy.format-test -rm unformatted.tmp.scala +# # non-default output format test: library +# ## check +# bazel run :formatted-library.format-test +# ! bazel run :unformatted-library.format-test +# ## copy +# cp unformatted.template.scala unformatted.tmp.scala +# ! bazel run :unformatted-library-copy.format-test +# bazel run :unformatted-library-copy.format +# bazel run :unformatted-library-copy.format-test +# rm unformatted.tmp.scala -# non-default output format test: test -## check -bazel run :formatted-test.format-test -! bazel run :unformatted-test.format-test -## copy -cp unformatted.template.scala unformatted.tmp.scala -! bazel run :unformatted-test-copy.format-test -bazel run :unformatted-test-copy.format -bazel run :unformatted-test-copy.format-test -rm unformatted.tmp.scala +# # non-default output format test: test +# ## check +# bazel run :formatted-test.format-test +# ! bazel run :unformatted-test.format-test +# ## copy +# cp unformatted.template.scala unformatted.tmp.scala +# ! bazel run :unformatted-test-copy.format-test +# bazel run :unformatted-test-copy.format +# bazel run :unformatted-test-copy.format-test +# rm unformatted.tmp.scala -# utf-8 encoding formatting test -## scala_format_test -cp utf8-unformatted.template.scala utf8-unformatted.tmp.scala -bazel run :utf8-encoding-test-default -diff utf8-unformatted.tmp.scala utf8-formatted.scala -rm utf8-unformatted.tmp.scala -## scala_binary (non-default) -cp utf8-unformatted.template.scala utf8-unformatted.tmp.scala -bazel run :utf8-encoding-test-non-default.format -diff utf8-unformatted.tmp.scala utf8-formatted.scala -rm utf8-unformatted.tmp.scala +# # utf-8 encoding formatting test +# ## scala_format_test +# cp utf8-unformatted.template.scala utf8-unformatted.tmp.scala +# bazel run :utf8-encoding-test-default +# diff utf8-unformatted.tmp.scala utf8-formatted.scala +# rm utf8-unformatted.tmp.scala +# ## scala_binary (non-default) +# cp utf8-unformatted.template.scala utf8-unformatted.tmp.scala +# bazel run :utf8-encoding-test-non-default.format +# diff utf8-unformatted.tmp.scala utf8-formatted.scala +# rm utf8-unformatted.tmp.scala diff --git a/tests/plugins/classpath/test b/tests/plugins/classpath/test index 46d6025d6..7b7b5eb7a 100755 --- a/tests/plugins/classpath/test +++ b/tests/plugins/classpath/test @@ -1,9 +1,14 @@ #!/bin/bash -e . "$(dirname "$0")"/../../common.sh +# We use nouse_action_cache + bazel shutdown here in order to prevent the skyframe +# cache and the persistent action cache from being used and thus getting the +# warning we want printed, printed. The alternative is to bazel clean, which +# takes much longer. +bazel shutdown # Using a worker here prevents a println this tests needs from making it # to the command line, so we use standalone instead. -bazel build :inefficient-usage --strategy=ScalaCompile=standalone 2>&1 | \ +bazel build :inefficient-usage --strategy=ScalaCompile=standalone --nouse_action_cache |& \ awk ' BEGIN {z = 2} /slightly inefficient/ {z -= 1} From 5a5e5a19e1b1ddfbad234e1ad31c60140deb7370 Mon Sep 17 00:00:00 2001 From: James Judd Date: Mon, 1 Jul 2024 20:26:22 -0600 Subject: [PATCH 07/21] Upgrade Zinc and other dependencies --- annex_2_12_install.json | 120 +- annex_3_install.json | 146 +- annex_install.json | 4450 ++++++++++++++-------------- annex_proto_install.json | 30 +- annex_scalafmt_install.json | 330 +-- rules/scala/workspace.bzl | 22 +- rules/scala/workspace_2_12.bzl | 2 +- rules/scala/workspace_3.bzl | 2 +- tests/annex_test_2_12_install.json | 432 +-- tests/annex_test_install.json | 1379 ++++----- tests/binary/reflect/BUILD | 5 +- tests/plugins/macros/BUILD | 4 +- tests/workspace.bzl | 14 +- 13 files changed, 3494 insertions(+), 3442 deletions(-) diff --git a/annex_2_12_install.json b/annex_2_12_install.json index 87904c502..3df1db7ae 100644 --- a/annex_2_12_install.json +++ b/annex_2_12_install.json @@ -1,8 +1,8 @@ { "dependency_tree": { "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": -498276511, - "__RESOLVED_ARTIFACTS_HASH": -839032726, + "__INPUT_ARTIFACTS_HASH": -1019123128, + "__RESOLVED_ARTIFACTS_HASH": 652555670, "conflict_resolution": {}, "dependencies": [ { @@ -40,14 +40,14 @@ { "coord": "org.scala-lang:scala-compiler:2.12.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:2.2.0", "org.scala-lang:scala-library:2.12.19", + "org.scala-lang.modules:scala-xml_2.12:2.2.0", "org.scala-lang:scala-reflect:2.12.19" ], "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.12:2.2.0", "org.scala-lang:scala-library:2.12.19", - "org.scala-lang:scala-reflect:2.12.19" + "org.scala-lang:scala-reflect:2.12.19", + "org.scala-lang.modules:scala-xml_2.12:2.2.0" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.12.19/scala-compiler-2.12.19.jar", "mirror_urls": [ @@ -61,14 +61,14 @@ { "coord": "org.scala-lang:scala-compiler:jar:sources:2.12.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:2.2.0", "org.scala-lang:scala-library:jar:sources:2.12.19", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:2.2.0", "org.scala-lang:scala-reflect:jar:sources:2.12.19" ], "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:2.2.0", "org.scala-lang:scala-library:jar:sources:2.12.19", - "org.scala-lang:scala-reflect:jar:sources:2.12.19" + "org.scala-lang:scala-reflect:jar:sources:2.12.19", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:2.2.0" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.12.19/scala-compiler-2.12.19-sources.jar", "mirror_urls": [ @@ -140,100 +140,100 @@ "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.19/scala-reflect-2.12.19-sources.jar" }, { - "coord": "org.scala-sbt:compiler-bridge_2.12:1.9.3", + "coord": "org.scala-sbt:compiler-bridge_2.12:1.10.0", "dependencies": [ - "org.scala-sbt:compiler-interface:1.9.3", - "org.scala-sbt:util-interface:1.9.2" + "org.scala-sbt:util-interface:1.10.0", + "org.scala-sbt:compiler-interface:1.10.0" ], "directDependencies": [ - "org.scala-sbt:compiler-interface:1.9.3" + "org.scala-sbt:compiler-interface:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.9.3/compiler-bridge_2.12-1.9.3.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.10.0/compiler-bridge_2.12-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.9.3/compiler-bridge_2.12-1.9.3.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-bridge_2.12/1.9.3/compiler-bridge_2.12-1.9.3.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.9.3/compiler-bridge_2.12-1.9.3.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.10.0/compiler-bridge_2.12-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-bridge_2.12/1.10.0/compiler-bridge_2.12-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.10.0/compiler-bridge_2.12-1.10.0.jar" ], - "sha256": "221b22e51225c96b3720a87d26470bfefbd512e5c5241bbd26e6d59c37d11068", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.9.3/compiler-bridge_2.12-1.9.3.jar" + "sha256": "60244a2295c103780989867978a82ce7ab3f8097d4d5151cbbc80152e5ed4c26", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.10.0/compiler-bridge_2.12-1.10.0.jar" }, { - "coord": "org.scala-sbt:compiler-bridge_2.12:jar:sources:1.9.3", + "coord": "org.scala-sbt:compiler-bridge_2.12:jar:sources:1.10.0", "dependencies": [ - "org.scala-sbt:compiler-interface:jar:sources:1.9.3", - "org.scala-sbt:util-interface:jar:sources:1.9.2" + "org.scala-sbt:util-interface:jar:sources:1.10.0", + "org.scala-sbt:compiler-interface:jar:sources:1.10.0" ], "directDependencies": [ - "org.scala-sbt:compiler-interface:jar:sources:1.9.3" + "org.scala-sbt:compiler-interface:jar:sources:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.9.3/compiler-bridge_2.12-1.9.3-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.10.0/compiler-bridge_2.12-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.9.3/compiler-bridge_2.12-1.9.3-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-bridge_2.12/1.9.3/compiler-bridge_2.12-1.9.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.9.3/compiler-bridge_2.12-1.9.3-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.10.0/compiler-bridge_2.12-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-bridge_2.12/1.10.0/compiler-bridge_2.12-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.10.0/compiler-bridge_2.12-1.10.0-sources.jar" ], - "sha256": "a3fb54dff8431e6654606dc39ae739afa070c1951eca7d67a3f81de893ea5964", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.9.3/compiler-bridge_2.12-1.9.3-sources.jar" + "sha256": "772fb16547989ce1fd6928d8757a70a3c66ff520aaf57ca0afdfedf3e8891ce5", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.10.0/compiler-bridge_2.12-1.10.0-sources.jar" }, { - "coord": "org.scala-sbt:compiler-interface:1.9.3", + "coord": "org.scala-sbt:compiler-interface:1.10.0", "dependencies": [ - "org.scala-sbt:util-interface:1.9.2" + "org.scala-sbt:util-interface:1.10.0" ], "directDependencies": [ - "org.scala-sbt:util-interface:1.9.2" + "org.scala-sbt:util-interface:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0.jar" ], - "sha256": "fa586b4b1bdb61c48821cf9568507c1e4d57de3763d27ac2214523b00a173115", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar" + "sha256": "333bbae5911442d4de4b6d45a782710b0ffbf82be1b9e73381abcb8c6e684b78", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0.jar" }, { - "coord": "org.scala-sbt:compiler-interface:jar:sources:1.9.3", + "coord": "org.scala-sbt:compiler-interface:jar:sources:1.10.0", "dependencies": [ - "org.scala-sbt:util-interface:jar:sources:1.9.2" + "org.scala-sbt:util-interface:jar:sources:1.10.0" ], "directDependencies": [ - "org.scala-sbt:util-interface:jar:sources:1.9.2" + "org.scala-sbt:util-interface:jar:sources:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0-sources.jar" ], - "sha256": "22200c6be450ea4651088f1d43670d14ee7808aa0c1b07a1ff6bc1104a3d7488", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar" + "sha256": "fe25aa0c8f0170474bcbac671a9f24ca7eab5da3c1a74854d11c81373a163c65", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0-sources.jar" }, { - "coord": "org.scala-sbt:util-interface:1.9.2", + "coord": "org.scala-sbt:util-interface:1.10.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0.jar" ], - "sha256": "cbf6c0db09223e4c6c41afc4c5d831c47e3564e83361df4ba3cb04e439f83675", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar" + "sha256": "30da2055573b80b88b39c934270fd610bc235782d0a0135bc3782623d6766567", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0.jar" }, { - "coord": "org.scala-sbt:util-interface:jar:sources:1.9.2", + "coord": "org.scala-sbt:util-interface:jar:sources:1.10.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0-sources.jar" ], - "sha256": "bed4331c842f3c8b1c198ec25ead990fd064e1a0672ae2856aafc2a7593ec1fe", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar" + "sha256": "bacdd15e1ea8e913829cd063cad0d333b696f5a4f53625f601ee9b91ab8a5330", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0-sources.jar" } ], "version": "0.1.0" diff --git a/annex_3_install.json b/annex_3_install.json index bb792c3b5..e08542efd 100644 --- a/annex_3_install.json +++ b/annex_3_install.json @@ -1,11 +1,9 @@ { "dependency_tree": { "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": -1422749170, - "__RESOLVED_ARTIFACTS_HASH": 708268627, - "conflict_resolution": { - "org.scala-sbt:compiler-interface:1.9.3": "org.scala-sbt:compiler-interface:1.9.6" - }, + "__INPUT_ARTIFACTS_HASH": -352472247, + "__RESOLVED_ARTIFACTS_HASH": 1799507172, + "conflict_resolution": {}, "dependencies": [ { "coord": "net.java.dev.jna:jna:5.14.0", @@ -62,8 +60,8 @@ { "coord": "org.jline:jline-reader:3.25.1", "dependencies": [ - "org.jline:jline-native:3.25.1", - "org.jline:jline-terminal:3.25.1" + "org.jline:jline-terminal:3.25.1", + "org.jline:jline-native:3.25.1" ], "directDependencies": [ "org.jline:jline-terminal:3.25.1" @@ -80,8 +78,8 @@ { "coord": "org.jline:jline-reader:jar:sources:3.25.1", "dependencies": [ - "org.jline:jline-native:jar:sources:3.25.1", - "org.jline:jline-terminal:jar:sources:3.25.1" + "org.jline:jline-terminal:jar:sources:3.25.1", + "org.jline:jline-native:jar:sources:3.25.1" ], "directDependencies": [ "org.jline:jline-terminal:jar:sources:3.25.1" @@ -98,9 +96,9 @@ { "coord": "org.jline:jline-terminal-jna:3.25.1", "dependencies": [ - "net.java.dev.jna:jna:5.14.0", + "org.jline:jline-terminal:3.25.1", "org.jline:jline-native:3.25.1", - "org.jline:jline-terminal:3.25.1" + "net.java.dev.jna:jna:5.14.0" ], "directDependencies": [ "net.java.dev.jna:jna:5.14.0", @@ -118,9 +116,9 @@ { "coord": "org.jline:jline-terminal-jna:jar:sources:3.25.1", "dependencies": [ - "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.jline:jline-terminal:jar:sources:3.25.1", "org.jline:jline-native:jar:sources:3.25.1", - "org.jline:jline-terminal:jar:sources:3.25.1" + "net.java.dev.jna:jna:jar:sources:5.14.0" ], "directDependencies": [ "net.java.dev.jna:jna:jar:sources:5.14.0", @@ -224,28 +222,27 @@ { "coord": "org.scala-lang:scala3-compiler_3:3.4.2", "dependencies": [ - "net.java.dev.jna:jna:5.14.0", - "org.jline:jline-native:3.25.1", - "org.jline:jline-reader:3.25.1", "org.jline:jline-terminal-jna:3.25.1", - "org.jline:jline-terminal:3.25.1", - "org.scala-lang.modules:scala-asm:9.6.0-scala-1", - "org.scala-lang:scala-library:2.13.12", "org.scala-lang:scala3-interfaces:3.4.2", + "net.java.dev.jna:jna:5.14.0", + "org.jline:jline-terminal:3.25.1", "org.scala-lang:scala3-library_3:3.4.2", + "org.scala-sbt:compiler-interface:1.10.0", + "org.scala-lang.modules:scala-asm:9.6.0-scala-1", + "org.jline:jline-native:3.25.1", "org.scala-lang:tasty-core_3:3.4.2", - "org.scala-sbt:compiler-interface:1.9.6", - "org.scala-sbt:util-interface:1.9.8" + "org.jline:jline-reader:3.25.1", + "org.scala-lang:scala-library:2.13.12" ], "directDependencies": [ - "org.jline:jline-reader:3.25.1", "org.jline:jline-terminal-jna:3.25.1", - "org.jline:jline-terminal:3.25.1", - "org.scala-lang.modules:scala-asm:9.6.0-scala-1", "org.scala-lang:scala3-interfaces:3.4.2", + "org.jline:jline-terminal:3.25.1", "org.scala-lang:scala3-library_3:3.4.2", + "org.scala-sbt:compiler-interface:1.10.0", + "org.scala-lang.modules:scala-asm:9.6.0-scala-1", "org.scala-lang:tasty-core_3:3.4.2", - "org.scala-sbt:compiler-interface:1.9.6" + "org.jline:jline-reader:3.25.1" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala3-compiler_3/3.4.2/scala3-compiler_3-3.4.2.jar", "mirror_urls": [ @@ -259,28 +256,27 @@ { "coord": "org.scala-lang:scala3-compiler_3:jar:sources:3.4.2", "dependencies": [ - "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.jline:jline-native:jar:sources:3.25.1", - "org.jline:jline-reader:jar:sources:3.25.1", - "org.jline:jline-terminal-jna:jar:sources:3.25.1", - "org.jline:jline-terminal:jar:sources:3.25.1", + "org.scala-lang:tasty-core_3:jar:sources:3.4.2", + "org.scala-lang:scala3-library_3:jar:sources:3.4.2", "org.scala-lang.modules:scala-asm:jar:sources:9.6.0-scala-1", - "org.scala-lang:scala-library:jar:sources:2.13.12", "org.scala-lang:scala3-interfaces:jar:sources:3.4.2", - "org.scala-lang:scala3-library_3:jar:sources:3.4.2", - "org.scala-lang:tasty-core_3:jar:sources:3.4.2", - "org.scala-sbt:compiler-interface:jar:sources:1.9.6", - "org.scala-sbt:util-interface:jar:sources:1.9.8" + "org.jline:jline-terminal:jar:sources:3.25.1", + "org.scala-lang:scala-library:jar:sources:2.13.12", + "org.jline:jline-terminal-jna:jar:sources:3.25.1", + "org.jline:jline-native:jar:sources:3.25.1", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.jline:jline-reader:jar:sources:3.25.1", + "org.scala-sbt:compiler-interface:jar:sources:1.10.0" ], "directDependencies": [ - "org.jline:jline-reader:jar:sources:3.25.1", - "org.jline:jline-terminal-jna:jar:sources:3.25.1", - "org.jline:jline-terminal:jar:sources:3.25.1", + "org.scala-lang:tasty-core_3:jar:sources:3.4.2", + "org.scala-lang:scala3-library_3:jar:sources:3.4.2", "org.scala-lang.modules:scala-asm:jar:sources:9.6.0-scala-1", "org.scala-lang:scala3-interfaces:jar:sources:3.4.2", - "org.scala-lang:scala3-library_3:jar:sources:3.4.2", - "org.scala-lang:tasty-core_3:jar:sources:3.4.2", - "org.scala-sbt:compiler-interface:jar:sources:1.9.6" + "org.jline:jline-terminal:jar:sources:3.25.1", + "org.jline:jline-terminal-jna:jar:sources:3.25.1", + "org.jline:jline-reader:jar:sources:3.25.1", + "org.scala-sbt:compiler-interface:jar:sources:1.10.0" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala3-compiler_3/3.4.2/scala3-compiler_3-3.4.2-sources.jar", "mirror_urls": [ @@ -380,8 +376,8 @@ { "coord": "org.scala-lang:tasty-core_3:3.4.2", "dependencies": [ - "org.scala-lang:scala-library:2.13.12", - "org.scala-lang:scala3-library_3:3.4.2" + "org.scala-lang:scala3-library_3:3.4.2", + "org.scala-lang:scala-library:2.13.12" ], "directDependencies": [ "org.scala-lang:scala3-library_3:3.4.2" @@ -414,64 +410,64 @@ "url": "https://repo.maven.apache.org/maven2/org/scala-lang/tasty-core_3/3.4.2/tasty-core_3-3.4.2-sources.jar" }, { - "coord": "org.scala-sbt:compiler-interface:1.9.6", + "coord": "org.scala-sbt:compiler-interface:1.10.0", "dependencies": [ - "org.scala-sbt:util-interface:1.9.8" + "org.scala-sbt:util-interface:1.10.0" ], "directDependencies": [ - "org.scala-sbt:util-interface:1.9.8" + "org.scala-sbt:util-interface:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.6/compiler-interface-1.9.6.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.6/compiler-interface-1.9.6.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.9.6/compiler-interface-1.9.6.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.9.6/compiler-interface-1.9.6.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0.jar" ], - "sha256": "b986ad1cfcef14c8abeaa3e788df28be9150acfbf587b5f7aa92c1b043c4fa8d", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.6/compiler-interface-1.9.6.jar" + "sha256": "333bbae5911442d4de4b6d45a782710b0ffbf82be1b9e73381abcb8c6e684b78", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0.jar" }, { - "coord": "org.scala-sbt:compiler-interface:jar:sources:1.9.6", + "coord": "org.scala-sbt:compiler-interface:jar:sources:1.10.0", "dependencies": [ - "org.scala-sbt:util-interface:jar:sources:1.9.8" + "org.scala-sbt:util-interface:jar:sources:1.10.0" ], "directDependencies": [ - "org.scala-sbt:util-interface:jar:sources:1.9.8" + "org.scala-sbt:util-interface:jar:sources:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.6/compiler-interface-1.9.6-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.6/compiler-interface-1.9.6-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.9.6/compiler-interface-1.9.6-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.9.6/compiler-interface-1.9.6-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0-sources.jar" ], - "sha256": "a31ff0dcd76779a3ce36c161a5fb2c9849929ee2b91a9baee4570c0641f5cfca", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.6/compiler-interface-1.9.6-sources.jar" + "sha256": "fe25aa0c8f0170474bcbac671a9f24ca7eab5da3c1a74854d11c81373a163c65", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0-sources.jar" }, { - "coord": "org.scala-sbt:util-interface:1.9.8", + "coord": "org.scala-sbt:util-interface:1.10.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.8/util-interface-1.9.8.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.8/util-interface-1.9.8.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.9.8/util-interface-1.9.8.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.9.8/util-interface-1.9.8.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0.jar" ], - "sha256": "1302b1a265688b7bc31796d41f93fbe548e5daf36ea4dc848ee0a6b15fc53904", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.8/util-interface-1.9.8.jar" + "sha256": "30da2055573b80b88b39c934270fd610bc235782d0a0135bc3782623d6766567", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0.jar" }, { - "coord": "org.scala-sbt:util-interface:jar:sources:1.9.8", + "coord": "org.scala-sbt:util-interface:jar:sources:1.10.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.8/util-interface-1.9.8-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.8/util-interface-1.9.8-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.9.8/util-interface-1.9.8-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.9.8/util-interface-1.9.8-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0-sources.jar" ], - "sha256": "e904a8c2f498a14b48ebc5e0e35b6c8844846b5ab9a4244042da4ec02811e561", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.8/util-interface-1.9.8-sources.jar" + "sha256": "bacdd15e1ea8e913829cd063cad0d333b696f5a4f53625f601ee9b91ab8a5330", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0-sources.jar" } ], "version": "0.1.0" diff --git a/annex_install.json b/annex_install.json index 70bd2fc83..05314822e 100644 --- a/annex_install.json +++ b/annex_install.json @@ -1,107 +1,107 @@ { "dependency_tree": { "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": -1529123589, - "__RESOLVED_ARTIFACTS_HASH": -1672915743, + "__INPUT_ARTIFACTS_HASH": -1383329296, + "__RESOLVED_ARTIFACTS_HASH": 1567561523, "conflict_resolution": {}, "dependencies": [ { "coord": "ch.epfl.scala:bloop-backend_2.12:1.0.0", "dependencies": [ - "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:nailgun-server:0c8b937b", - "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-compile-core_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-core_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-ivy-integration_2.12:1.1.7+62-0f4ad9d5", + "org.scalaz:scalaz-core_2.12:7.2.20", + "io.monix:monix_2.12:2.3.3", + "org.spire-math:jawn-parser_2.12:0.11.1", + "org.scalaz:scalaz-effect_2.12:7.2.20", + "com.google.code.findbugs:jsr305:1.3.9", + "org.scala-lang:scala-reflect:2.13.14", + "com.lmax:disruptor:3.4.2", + "org.scala-sbt:util-relation_2.12:1.1.3", + "org.scala-sbt:util-interface:1.10.0", + "io.monix:monix-execution_2.12:2.3.3", + "com.squareup.okhttp3:okhttp-urlconnection:3.7.0", + "org.jctools:jctools-core:2.0.1", + "org.scalaz:scalaz-concurrent_2.12:7.2.20", "ch.epfl.scala:zinc-persist_2.12:1.1.7+62-0f4ad9d5", + "io.get-coursier:coursier-cache_2.12:1.1.0-M3", + "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", + "io.monix:monix-eval_2.12:2.3.3", + "com.trueaccord.lenses:lenses_2.12:0.4.12", + "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "com.google.errorprone:error_prone_annotations:2.0.18", + "com.jcraft:jsch:0.1.54", + "io.github.soc:directories:10", + "org.scala-sbt:util-logging_2.12:1.1.3", + "net.java.dev.jna:jna:5.14.0", + "org.scala-sbt:util-control_2.12:1.1.3", + "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", "ch.epfl.scala:zinc_2.12:1.1.7+62-0f4ad9d5", - "com.eed3si9n:gigahorse-core_2.12:0.3.0", - "com.eed3si9n:gigahorse-okhttp_2.12:0.3.0", + "jline:jline:2.14.4", "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.12:0.8.2", - "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", - "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "com.eed3si9n:gigahorse-okhttp_2.12:0.3.0", + "org.scala-sbt:util-position_2.12:1.1.3", + "org.scala-sbt:sbinary_2.12:0.4.4", + "org.slf4j:slf4j-api:1.7.25", + "org.reactivestreams:reactive-streams:1.0.0", + "io.monix:monix-types_2.12:2.3.3", + "org.scala-sbt:librarymanagement-core_2.12:1.1.4", + "ch.epfl.scala:zinc-core_2.12:1.1.7+62-0f4ad9d5", + "com.squareup.okio:okio:1.12.0", "com.github.pathikrit:better-files_2.12:3.4.0", - "com.google.code.findbugs:jsr305:1.3.9", - "com.google.errorprone:error_prone_annotations:2.0.18", - "com.google.guava:guava:23.0", + "org.scala-sbt:test-agent:1.0.4", + "org.codehaus.mojo:animal-sniffer-annotations:1.14", + "com.typesafe:config:1.2.0", + "org.apache.logging.log4j:log4j-api:2.17.1", + "org.scala-sbt:test-interface:1.0", + "io.monix:monix-reactive_2.12:2.3.3", + "org.scala-sbt:librarymanagement-ivy_2.12:1.0.0", + "com.eed3si9n:gigahorse-core_2.12:0.3.0", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "com.trueaccord.scalapb:scalapb-runtime_2.12:0.6.0", + "ch.epfl.scala:zinc-compile-core_2.12:1.1.7+62-0f4ad9d5", + "org.scala-lang:scala-compiler:2.13.14", + "ch.epfl.scala:nailgun-server:0c8b937b", + "io.get-coursier:coursier_2.12:1.1.0-M3", + "net.java.dev.jna:jna-platform:5.13.0", "com.google.j2objc:j2objc-annotations:1.1", - "com.google.protobuf:protobuf-java:3.19.6", - "com.jcraft:jsch:0.1.54", + "org.scala-sbt:util-cache_2.12:1.1.3", + "org.scala-sbt:launcher-interface:1.4.2", "com.lihaoyi:fastparse-utils_2.12:0.4.2", - "com.lihaoyi:fastparse_2.12:0.4.2", - "com.lihaoyi:sourcecode_2.12:0.1.4", - "com.lmax:disruptor:3.4.2", - "com.squareup.okhttp3:okhttp-urlconnection:3.7.0", "com.squareup.okhttp3:okhttp:3.7.0", - "com.squareup.okio:okio:1.12.0", - "com.trueaccord.lenses:lenses_2.12:0.4.12", - "com.trueaccord.scalapb:scalapb-runtime_2.12:0.6.0", - "com.typesafe:config:1.2.0", - "com.typesafe:ssl-config-core_2.12:0.2.2", - "io.get-coursier:coursier-cache_2.12:1.1.0-M3", + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", + "com.google.guava:guava:23.0", + "com.google.protobuf:protobuf-java:3.19.6", "io.get-coursier:coursier-scalaz-interop_2.12:1.1.0-M3", - "io.get-coursier:coursier_2.12:1.1.0-M3", - "io.github.soc:directories:10", - "io.monix:monix-eval_2.12:2.3.3", - "io.monix:monix-execution_2.12:2.3.3", - "io.monix:monix-reactive_2.12:2.3.3", - "io.monix:monix-types_2.12:2.3.3", - "io.monix:monix_2.12:2.3.3", - "jline:jline:2.14.4", "me.vican.jorge:directory-watcher-better-files_2.12:0.5.2-a1c0e21c", "me.vican.jorge:directory-watcher:0.5.2-a1c0e21c", - "net.java.dev.jna:jna-platform:5.13.0", - "net.java.dev.jna:jna:5.14.0", - "org.apache.logging.log4j:log4j-api:2.17.1", + "org.scala-lang:scala-library:2.13.14", + "com.typesafe:ssl-config-core_2.12:0.2.2", + "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", "org.apache.logging.log4j:log4j-core:2.17.1", - "org.codehaus.mojo:animal-sniffer-annotations:1.14", - "org.jctools:jctools-core:2.0.1", - "org.reactivestreams:reactive-streams:1.0.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "ch.epfl.scala:zinc-ivy-integration_2.12:1.1.7+62-0f4ad9d5", "org.scala-lang.modules:scala-xml_2.12:1.0.6", - "org.scala-lang:scala-compiler:2.13.14", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scala-sbt.ivy:ivy:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd", + "com.lihaoyi:sourcecode_2.12:0.1.4", "org.scala-sbt:io_2.12:1.1.4", - "org.scala-sbt:launcher-interface:1.4.2", - "org.scala-sbt:librarymanagement-core_2.12:1.1.4", - "org.scala-sbt:librarymanagement-ivy_2.12:1.0.0", - "org.scala-sbt:sbinary_2.12:0.4.4", - "org.scala-sbt:test-agent:1.0.4", - "org.scala-sbt:test-interface:1.0", - "org.scala-sbt:util-cache_2.12:1.1.3", - "org.scala-sbt:util-control_2.12:1.1.3", - "org.scala-sbt:util-interface:1.9.2", - "org.scala-sbt:util-logging_2.12:1.1.3", - "org.scala-sbt:util-position_2.12:1.1.3", - "org.scala-sbt:util-relation_2.12:1.1.3", - "org.scalaz:scalaz-concurrent_2.12:7.2.20", - "org.scalaz:scalaz-core_2.12:7.2.20", - "org.scalaz:scalaz-effect_2.12:7.2.20", - "org.slf4j:slf4j-api:1.7.25", - "org.spire-math:jawn-parser_2.12:0.11.1" + "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", + "org.scala-sbt.ivy:ivy:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd", + "com.lihaoyi:fastparse_2.12:0.4.2" ], "directDependencies": [ - "ch.epfl.scala:nailgun-server:0c8b937b", - "ch.epfl.scala:zinc_2.12:1.1.7+62-0f4ad9d5", - "com.lihaoyi:sourcecode_2.12:0.1.4", + "org.scalaz:scalaz-core_2.12:7.2.20", + "io.monix:monix_2.12:2.3.3", + "org.scalaz:scalaz-concurrent_2.12:7.2.20", "io.get-coursier:coursier-cache_2.12:1.1.0-M3", - "io.get-coursier:coursier-scalaz-interop_2.12:1.1.0-M3", - "io.get-coursier:coursier_2.12:1.1.0-M3", "io.github.soc:directories:10", - "io.monix:monix_2.12:2.3.3", - "me.vican.jorge:directory-watcher-better-files_2.12:0.5.2-a1c0e21c", - "org.scala-lang:scala-library:2.13.14", - "org.scala-sbt:librarymanagement-ivy_2.12:1.0.0", + "ch.epfl.scala:zinc_2.12:1.1.7+62-0f4ad9d5", "org.scala-sbt:test-agent:1.0.4", "org.scala-sbt:test-interface:1.0", - "org.scalaz:scalaz-concurrent_2.12:7.2.20", - "org.scalaz:scalaz-core_2.12:7.2.20" + "org.scala-sbt:librarymanagement-ivy_2.12:1.0.0", + "ch.epfl.scala:nailgun-server:0c8b937b", + "io.get-coursier:coursier_2.12:1.1.0-M3", + "io.get-coursier:coursier-scalaz-interop_2.12:1.1.0-M3", + "me.vican.jorge:directory-watcher-better-files_2.12:0.5.2-a1c0e21c", + "org.scala-lang:scala-library:2.13.14", + "com.lihaoyi:sourcecode_2.12:0.1.4" ], "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/bloop-backend_2.12/1.0.0/bloop-backend_2.12-1.0.0.jar", "mirror_urls": [ @@ -115,100 +115,100 @@ { "coord": "ch.epfl.scala:bloop-backend_2.12:jar:sources:1.0.0", "dependencies": [ - "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:nailgun-server:jar:sources:0c8b937b", - "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", "ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "io.monix:monix-reactive_2.12:jar:sources:2.3.3", + "com.typesafe:config:jar:sources:1.2.0", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.slf4j:slf4j-api:jar:sources:1.7.25", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:util-position_2.12:jar:sources:1.1.3", + "me.vican.jorge:directory-watcher:jar:sources:0.5.2-a1c0e21c", + "com.google.errorprone:error_prone_annotations:jar:sources:2.0.18", + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "com.trueaccord.scalapb:scalapb-runtime_2.12:jar:sources:0.6.0", + "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "com.google.guava:guava:jar:sources:23.0", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "com.eed3si9n:gigahorse-okhttp_2.12:jar:sources:0.3.0", + "org.scala-sbt:util-relation_2.12:jar:sources:1.1.3", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", + "com.lihaoyi:fastparse-utils_2.12:jar:sources:0.4.2", + "org.scalaz:scalaz-effect_2.12:jar:sources:7.2.20", + "org.scala-sbt:test-agent:jar:sources:1.0.4", + "io.monix:monix-eval_2.12:jar:sources:2.3.3", + "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.14", + "org.scalaz:scalaz-concurrent_2.12:jar:sources:7.2.20", + "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", + "me.vican.jorge:directory-watcher-better-files_2.12:jar:sources:0.5.2-a1c0e21c", "ch.epfl.scala:zinc-compile-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "io.github.soc:directories:jar:sources:10", + "org.scala-sbt:util-interface:jar:sources:1.10.0", + "org.scala-sbt:sbinary_2.12:jar:sources:0.4.4", + "org.scala-sbt:librarymanagement-core_2.12:jar:sources:1.1.4", + "org.scalaz:scalaz-core_2.12:jar:sources:7.2.20", + "io.get-coursier:coursier-scalaz-interop_2.12:jar:sources:1.1.0-M3", "ch.epfl.scala:zinc-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-ivy-integration_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-persist_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "com.jcraft:jsch:jar:sources:0.1.54", + "com.google.code.findbugs:jsr305:jar:sources:1.3.9", + "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "com.squareup.okhttp3:okhttp-urlconnection:jar:sources:3.7.0", + "com.lmax:disruptor:jar:sources:3.4.2", + "jline:jline:jar:sources:2.14.4", + "com.google.j2objc:j2objc-annotations:jar:sources:1.1", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", + "com.squareup.okio:okio:jar:sources:1.12.0", + "org.scala-sbt.ivy:ivy:jar:sources:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd", + "net.java.dev.jna:jna:jar:sources:5.14.0", "com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0", - "com.eed3si9n:gigahorse-okhttp_2.12:jar:sources:0.3.0", - "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", + "org.scala-sbt:test-interface:jar:sources:1.0", + "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "io.monix:monix_2.12:jar:sources:2.3.3", + "ch.epfl.scala:nailgun-server:jar:sources:0c8b937b", + "io.get-coursier:coursier-cache_2.12:jar:sources:1.1.0-M3", + "com.github.pathikrit:better-files_2.12:jar:sources:3.4.0", + "com.squareup.okhttp3:okhttp:jar:sources:3.7.0", "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "ch.epfl.scala:zinc-persist_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2", - "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", - "com.github.pathikrit:better-files_2.12:jar:sources:3.4.0", - "com.google.code.findbugs:jsr305:jar:sources:1.3.9", - "com.google.errorprone:error_prone_annotations:jar:sources:2.0.18", - "com.google.guava:guava:jar:sources:23.0", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", + "org.scala-sbt:util-cache_2.12:jar:sources:1.1.3", + "ch.epfl.scala:zinc_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-sbt:librarymanagement-ivy_2.12:jar:sources:1.0.0", + "com.trueaccord.lenses:lenses_2.12:jar:sources:0.4.12", "com.google.protobuf:protobuf-java:jar:sources:3.19.6", - "com.jcraft:jsch:jar:sources:0.1.54", - "com.lihaoyi:fastparse-utils_2.12:jar:sources:0.4.2", + "org.jctools:jctools-core:jar:sources:2.0.1", + "org.reactivestreams:reactive-streams:jar:sources:1.0.0", + "ch.epfl.scala:zinc-ivy-integration_2.12:jar:sources:1.1.7+62-0f4ad9d5", "com.lihaoyi:fastparse_2.12:jar:sources:0.4.2", - "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", - "com.lmax:disruptor:jar:sources:3.4.2", - "com.squareup.okhttp3:okhttp-urlconnection:jar:sources:3.7.0", - "com.squareup.okhttp3:okhttp:jar:sources:3.7.0", - "com.squareup.okio:okio:jar:sources:1.12.0", - "com.trueaccord.lenses:lenses_2.12:jar:sources:0.4.12", - "com.trueaccord.scalapb:scalapb-runtime_2.12:jar:sources:0.6.0", - "com.typesafe:config:jar:sources:1.2.0", - "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", - "io.get-coursier:coursier-cache_2.12:jar:sources:1.1.0-M3", - "io.get-coursier:coursier-scalaz-interop_2.12:jar:sources:1.1.0-M3", - "io.get-coursier:coursier_2.12:jar:sources:1.1.0-M3", - "io.github.soc:directories:jar:sources:10", - "io.monix:monix-eval_2.12:jar:sources:2.3.3", + "org.scala-sbt:util-control_2.12:jar:sources:1.1.3", "io.monix:monix-execution_2.12:jar:sources:2.3.3", - "io.monix:monix-reactive_2.12:jar:sources:2.3.3", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", "io.monix:monix-types_2.12:jar:sources:2.3.3", - "io.monix:monix_2.12:jar:sources:2.3.3", - "jline:jline:jar:sources:2.14.4", + "io.get-coursier:coursier_2.12:jar:sources:1.1.0-M3" + ], + "directDependencies": [ + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:test-agent:jar:sources:1.0.4", + "org.scalaz:scalaz-concurrent_2.12:jar:sources:7.2.20", "me.vican.jorge:directory-watcher-better-files_2.12:jar:sources:0.5.2-a1c0e21c", - "me.vican.jorge:directory-watcher:jar:sources:0.5.2-a1c0e21c", - "net.java.dev.jna:jna-platform:jar:sources:5.13.0", - "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", - "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.14", - "org.jctools:jctools-core:jar:sources:2.0.1", - "org.reactivestreams:reactive-streams:jar:sources:1.0.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt.ivy:ivy:jar:sources:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd", - "org.scala-sbt:io_2.12:jar:sources:1.1.4", - "org.scala-sbt:launcher-interface:jar:sources:1.4.2", - "org.scala-sbt:librarymanagement-core_2.12:jar:sources:1.1.4", - "org.scala-sbt:librarymanagement-ivy_2.12:jar:sources:1.0.0", - "org.scala-sbt:sbinary_2.12:jar:sources:0.4.4", - "org.scala-sbt:test-agent:jar:sources:1.0.4", - "org.scala-sbt:test-interface:jar:sources:1.0", - "org.scala-sbt:util-cache_2.12:jar:sources:1.1.3", - "org.scala-sbt:util-control_2.12:jar:sources:1.1.3", - "org.scala-sbt:util-interface:jar:sources:1.9.2", - "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", - "org.scala-sbt:util-position_2.12:jar:sources:1.1.3", - "org.scala-sbt:util-relation_2.12:jar:sources:1.1.3", - "org.scalaz:scalaz-concurrent_2.12:jar:sources:7.2.20", + "io.github.soc:directories:jar:sources:10", "org.scalaz:scalaz-core_2.12:jar:sources:7.2.20", - "org.scalaz:scalaz-effect_2.12:jar:sources:7.2.20", - "org.slf4j:slf4j-api:jar:sources:1.7.25", - "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" - ], - "directDependencies": [ - "ch.epfl.scala:nailgun-server:jar:sources:0c8b937b", - "ch.epfl.scala:zinc_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", - "io.get-coursier:coursier-cache_2.12:jar:sources:1.1.0-M3", "io.get-coursier:coursier-scalaz-interop_2.12:jar:sources:1.1.0-M3", - "io.get-coursier:coursier_2.12:jar:sources:1.1.0-M3", - "io.github.soc:directories:jar:sources:10", + "org.scala-sbt:test-interface:jar:sources:1.0", "io.monix:monix_2.12:jar:sources:2.3.3", - "me.vican.jorge:directory-watcher-better-files_2.12:jar:sources:0.5.2-a1c0e21c", - "org.scala-lang:scala-library:jar:sources:2.13.14", + "ch.epfl.scala:nailgun-server:jar:sources:0c8b937b", + "io.get-coursier:coursier-cache_2.12:jar:sources:1.1.0-M3", + "ch.epfl.scala:zinc_2.12:jar:sources:1.1.7+62-0f4ad9d5", "org.scala-sbt:librarymanagement-ivy_2.12:jar:sources:1.0.0", - "org.scala-sbt:test-agent:jar:sources:1.0.4", - "org.scala-sbt:test-interface:jar:sources:1.0", - "org.scalaz:scalaz-concurrent_2.12:jar:sources:7.2.20", - "org.scalaz:scalaz-core_2.12:jar:sources:7.2.20" + "io.get-coursier:coursier_2.12:jar:sources:1.1.0-M3" ], "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/bloop-backend_2.12/1.0.0/bloop-backend_2.12-1.0.0-sources.jar", "mirror_urls": [ @@ -222,18 +222,18 @@ { "coord": "ch.epfl.scala:bloop-config_2.12:1.0.0", "dependencies": [ - "io.circe:circe-core_2.12:0.9.3", - "io.circe:circe-derivation_2.12:0.9.0-M3", - "io.circe:circe-jawn_2.12:0.9.3", - "io.circe:circe-numbers_2.12:0.9.3", - "io.circe:circe-parser_2.12:0.9.3", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", "org.spire-math:jawn-parser_2.12:0.11.1", + "org.scala-lang:scala-reflect:2.13.14", + "io.circe:circe-parser_2.12:0.9.3", + "io.circe:circe-numbers_2.12:0.9.3", + "io.circe:circe-jawn_2.12:0.9.3", + "org.typelevel:machinist_2.12:0.6.2", + "io.circe:circe-derivation_2.12:0.9.0-M3", "org.typelevel:cats-core_2.12:1.0.1", - "org.typelevel:cats-kernel_2.12:1.0.1", "org.typelevel:cats-macros_2.12:1.0.1", - "org.typelevel:machinist_2.12:0.6.2" + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.scala-lang:scala-library:2.13.14", + "io.circe:circe-core_2.12:0.9.3" ], "directDependencies": [ "io.circe:circe-derivation_2.12:0.9.0-M3", @@ -253,16 +253,16 @@ "coord": "ch.epfl.scala:bloop-config_2.12:jar:sources:1.0.0", "dependencies": [ "io.circe:circe-core_2.12:jar:sources:0.9.3", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", "io.circe:circe-derivation_2.12:jar:sources:0.9.0-M3", - "io.circe:circe-jawn_2.12:jar:sources:0.9.3", "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", "io.circe:circe-parser_2.12:jar:sources:0.9.3", - "org.scala-lang:scala-library:jar:sources:2.13.14", + "io.circe:circe-jawn_2.12:jar:sources:0.9.3", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", "org.typelevel:cats-core_2.12:jar:sources:1.0.1", - "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", - "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", "org.typelevel:machinist_2.12:jar:sources:0.6.2" ], "directDependencies": [ @@ -282,124 +282,124 @@ { "coord": "ch.epfl.scala:bloop-frontend_2.12:1.0.0", "dependencies": [ - "ch.epfl.scala:bloop-backend_2.12:1.0.0", + "org.scalaz:scalaz-core_2.12:7.2.20", + "io.monix:monix_2.12:2.3.3", + "org.spire-math:jawn-parser_2.12:0.11.1", + "org.scalaz:scalaz-effect_2.12:7.2.20", + "com.google.code.findbugs:jsr305:1.3.9", + "org.scala-lang:scala-reflect:2.13.14", + "com.lmax:disruptor:3.4.2", + "com.beachape:enumeratum-macros_2.12:1.5.9", + "org.scala-sbt:util-relation_2.12:1.1.3", + "org.scala-sbt:util-interface:1.10.0", + "io.monix:monix-execution_2.12:2.3.3", + "com.squareup.okhttp3:okhttp-urlconnection:3.7.0", + "com.lihaoyi:fansi_2.12:0.2.5", + "io.circe:circe-parser_2.12:0.9.3", + "org.jctools:jctools-core:2.0.1", + "org.scalaz:scalaz-concurrent_2.12:7.2.20", + "org.codehaus.groovy:groovy:2.4.0", + "ch.epfl.scala:zinc-persist_2.12:1.1.7+62-0f4ad9d5", + "io.get-coursier:coursier-cache_2.12:1.1.0-M3", + "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", + "io.monix:monix-eval_2.12:2.3.3", + "org.scalameta:lsp4s_2.12:0.1.0", + "io.circe:circe-generic_2.12:0.9.0", + "com.trueaccord.lenses:lenses_2.12:0.4.12", + "ch.qos.logback:logback-classic:1.2.3", + "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "com.google.errorprone:error_prone_annotations:2.0.18", + "com.chuusai:shapeless_2.12:2.3.3", + "com.jcraft:jsch:0.1.54", + "io.github.soc:directories:10", + "org.scala-sbt:util-logging_2.12:1.1.3", + "org.scalameta:jsonrpc_2.12:0.1.0", + "net.java.dev.jna:jna:5.14.0", "ch.epfl.scala:bloop-config_2.12:1.0.0", - "ch.epfl.scala:bsp_2.12:1.0.0-M4", - "ch.epfl.scala:case-app-annotations_2.12:1.2.0-faster-compile-time", - "ch.epfl.scala:case-app-util_2.12:1.2.0-faster-compile-time", - "ch.epfl.scala:case-app_2.12:1.2.0-faster-compile-time", - "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:nailgun-server:0c8b937b", - "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", + "org.scala-sbt:util-control_2.12:1.1.3", "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-compile-core_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-core_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-ivy-integration_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-persist_2.12:1.1.7+62-0f4ad9d5", "ch.epfl.scala:zinc_2.12:1.1.7+62-0f4ad9d5", - "ch.qos.logback:logback-classic:1.2.3", - "ch.qos.logback:logback-core:1.2.3", + "jline:jline:2.14.4", + "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", + "com.eed3si9n:gigahorse-okhttp_2.12:0.3.0", + "ch.epfl.scala:bloop-backend_2.12:1.0.0", + "io.circe:circe-generic-extras_2.12:0.9.0", + "io.circe:circe-numbers_2.12:0.9.3", "com.beachape:enumeratum-circe_2.12:1.5.15", - "com.beachape:enumeratum-macros_2.12:1.5.9", - "com.beachape:enumeratum_2.12:1.5.12", - "com.chuusai:shapeless_2.12:2.3.3", + "io.circe:circe-jawn_2.12:0.9.3", + "org.scala-sbt:util-position_2.12:1.1.3", + "org.typelevel:macro-compat_2.12:1.1.1", + "org.scala-sbt:sbinary_2.12:0.4.4", + "org.slf4j:slf4j-api:1.7.25", + "org.reactivestreams:reactive-streams:1.0.0", + "io.monix:monix-types_2.12:2.3.3", + "ch.epfl.scala:case-app-annotations_2.12:1.2.0-faster-compile-time", + "org.scala-sbt:librarymanagement-core_2.12:1.1.4", + "ch.epfl.scala:zinc-core_2.12:1.1.7+62-0f4ad9d5", + "com.squareup.okio:okio:1.12.0", + "com.github.pathikrit:better-files_2.12:3.4.0", + "org.scala-sbt:test-agent:1.0.4", + "org.codehaus.mojo:animal-sniffer-annotations:1.14", + "com.typesafe:config:1.2.0", + "org.apache.logging.log4j:log4j-api:2.17.1", + "org.scala-sbt:test-interface:1.0", + "io.monix:monix-reactive_2.12:2.3.3", + "org.scala-sbt:librarymanagement-ivy_2.12:1.0.0", "com.eed3si9n:gigahorse-core_2.12:0.3.0", - "com.eed3si9n:gigahorse-okhttp_2.12:0.3.0", - "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", "com.eed3si9n:sjson-new-core_2.12:0.8.2", - "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", - "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", - "com.github.pathikrit:better-files_2.12:3.4.0", - "com.google.code.findbugs:jsr305:1.3.9", - "com.google.errorprone:error_prone_annotations:2.0.18", - "com.google.guava:guava:23.0", + "ch.epfl.scala:case-app_2.12:1.2.0-faster-compile-time", + "com.trueaccord.scalapb:scalapb-runtime_2.12:0.6.0", + "org.typelevel:machinist_2.12:0.6.2", + "ch.epfl.scala:zinc-compile-core_2.12:1.1.7+62-0f4ad9d5", + "org.scala-lang:scala-compiler:2.13.14", + "ch.epfl.scala:nailgun-server:0c8b937b", + "io.get-coursier:coursier_2.12:1.1.0-M3", + "net.java.dev.jna:jna-platform:5.13.0", + "io.circe:circe-derivation_2.12:0.9.0-M3", + "org.typelevel:cats-core_2.12:1.0.1", "com.google.j2objc:j2objc-annotations:1.1", - "com.google.protobuf:protobuf-java:3.19.6", - "com.jcraft:jsch:0.1.54", - "com.lihaoyi:fansi_2.12:0.2.5", + "org.scala-sbt:util-cache_2.12:1.1.3", + "org.scala-sbt:launcher-interface:1.4.2", "com.lihaoyi:fastparse-utils_2.12:0.4.2", - "com.lihaoyi:fastparse_2.12:0.4.2", - "com.lihaoyi:pprint_2.12:0.5.3", - "com.lihaoyi:sourcecode_2.12:0.1.4", - "com.lmax:disruptor:3.4.2", - "com.squareup.okhttp3:okhttp-urlconnection:3.7.0", "com.squareup.okhttp3:okhttp:3.7.0", - "com.squareup.okio:okio:1.12.0", - "com.trueaccord.lenses:lenses_2.12:0.4.12", - "com.trueaccord.scalapb:scalapb-runtime_2.12:0.6.0", - "com.typesafe.scala-logging:scala-logging_2.12:3.7.2", - "com.typesafe:config:1.2.0", - "com.typesafe:ssl-config-core_2.12:0.2.2", + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", + "com.google.guava:guava:23.0", + "ch.epfl.scala:bsp_2.12:1.0.0-M4", + "org.typelevel:cats-macros_2.12:1.0.1", "com.zaxxer:nuprocess:1.2.4", - "io.circe:circe-core_2.12:0.9.3", - "io.circe:circe-derivation_2.12:0.9.0-M3", - "io.circe:circe-generic-extras_2.12:0.9.0", - "io.circe:circe-generic_2.12:0.9.0", - "io.circe:circe-jawn_2.12:0.9.3", - "io.circe:circe-numbers_2.12:0.9.3", - "io.circe:circe-parser_2.12:0.9.3", - "io.get-coursier:coursier-cache_2.12:1.1.0-M3", + "com.google.protobuf:protobuf-java:3.19.6", "io.get-coursier:coursier-scalaz-interop_2.12:1.1.0-M3", - "io.get-coursier:coursier_2.12:1.1.0-M3", - "io.github.soc:directories:10", - "io.monix:monix-eval_2.12:2.3.3", - "io.monix:monix-execution_2.12:2.3.3", - "io.monix:monix-reactive_2.12:2.3.3", - "io.monix:monix-types_2.12:2.3.3", - "io.monix:monix_2.12:2.3.3", - "jline:jline:2.14.4", "me.vican.jorge:directory-watcher-better-files_2.12:0.5.2-a1c0e21c", + "org.typelevel:cats-kernel_2.12:1.0.1", "me.vican.jorge:directory-watcher:0.5.2-a1c0e21c", - "net.java.dev.jna:jna-platform:5.13.0", - "net.java.dev.jna:jna:5.14.0", - "org.apache.logging.log4j:log4j-api:2.17.1", + "ch.epfl.scala:case-app-util_2.12:1.2.0-faster-compile-time", + "org.scala-lang:scala-library:2.13.14", + "com.typesafe:ssl-config-core_2.12:0.2.2", + "ch.qos.logback:logback-core:1.2.3", + "io.circe:circe-core_2.12:0.9.3", + "com.typesafe.scala-logging:scala-logging_2.12:3.7.2", + "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", "org.apache.logging.log4j:log4j-core:2.17.1", - "org.codehaus.groovy:groovy:2.4.0", - "org.codehaus.mojo:animal-sniffer-annotations:1.14", - "org.jctools:jctools-core:2.0.1", - "org.reactivestreams:reactive-streams:1.0.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "ch.epfl.scala:zinc-ivy-integration_2.12:1.1.7+62-0f4ad9d5", "org.scala-lang.modules:scala-xml_2.12:1.0.6", - "org.scala-lang:scala-compiler:2.13.14", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scala-sbt.ivy:ivy:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd", + "com.lihaoyi:sourcecode_2.12:0.1.4", "org.scala-sbt:io_2.12:1.1.4", - "org.scala-sbt:launcher-interface:1.4.2", - "org.scala-sbt:librarymanagement-core_2.12:1.1.4", - "org.scala-sbt:librarymanagement-ivy_2.12:1.0.0", - "org.scala-sbt:sbinary_2.12:0.4.4", - "org.scala-sbt:test-agent:1.0.4", - "org.scala-sbt:test-interface:1.0", - "org.scala-sbt:util-cache_2.12:1.1.3", - "org.scala-sbt:util-control_2.12:1.1.3", - "org.scala-sbt:util-interface:1.9.2", - "org.scala-sbt:util-logging_2.12:1.1.3", - "org.scala-sbt:util-position_2.12:1.1.3", - "org.scala-sbt:util-relation_2.12:1.1.3", - "org.scalameta:jsonrpc_2.12:0.1.0", - "org.scalameta:lsp4s_2.12:0.1.0", - "org.scalaz:scalaz-concurrent_2.12:7.2.20", - "org.scalaz:scalaz-core_2.12:7.2.20", - "org.scalaz:scalaz-effect_2.12:7.2.20", - "org.slf4j:slf4j-api:1.7.25", - "org.spire-math:jawn-parser_2.12:0.11.1", - "org.typelevel:cats-core_2.12:1.0.1", - "org.typelevel:cats-kernel_2.12:1.0.1", - "org.typelevel:cats-macros_2.12:1.0.1", - "org.typelevel:machinist_2.12:0.6.2", - "org.typelevel:macro-compat_2.12:1.1.1" + "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", + "org.scala-sbt.ivy:ivy:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd", + "com.lihaoyi:pprint_2.12:0.5.3", + "com.beachape:enumeratum_2.12:1.5.12", + "com.lihaoyi:fastparse_2.12:0.4.2" ], "directDependencies": [ - "ch.epfl.scala:bloop-backend_2.12:1.0.0", + "org.scalaz:scalaz-core_2.12:7.2.20", + "io.monix:monix_2.12:2.3.3", "ch.epfl.scala:bloop-config_2.12:1.0.0", - "ch.epfl.scala:bsp_2.12:1.0.0-M4", + "ch.epfl.scala:bloop-backend_2.12:1.0.0", "ch.epfl.scala:case-app_2.12:1.2.0-faster-compile-time", + "ch.epfl.scala:bsp_2.12:1.0.0-M4", "com.zaxxer:nuprocess:1.2.4", - "io.monix:monix_2.12:2.3.3", - "org.scala-lang:scala-library:2.13.14", - "org.scalaz:scalaz-core_2.12:7.2.20" + "org.scala-lang:scala-library:2.13.14" ], "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/bloop-frontend_2.12/1.0.0/bloop-frontend_2.12-1.0.0.jar", "mirror_urls": [ @@ -413,124 +413,124 @@ { "coord": "ch.epfl.scala:bloop-frontend_2.12:jar:sources:1.0.0", "dependencies": [ - "ch.epfl.scala:bloop-backend_2.12:jar:sources:1.0.0", - "ch.epfl.scala:bloop-config_2.12:jar:sources:1.0.0", + "ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "io.monix:monix-reactive_2.12:jar:sources:2.3.3", + "com.typesafe:config:jar:sources:1.2.0", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.slf4j:slf4j-api:jar:sources:1.7.25", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:util-position_2.12:jar:sources:1.1.3", "ch.epfl.scala:bsp_2.12:jar:sources:1.0.0-M4", - "ch.epfl.scala:case-app-annotations_2.12:jar:sources:1.2.0-faster-compile-time", - "ch.epfl.scala:case-app-util_2.12:jar:sources:1.2.0-faster-compile-time", - "ch.epfl.scala:case-app_2.12:jar:sources:1.2.0-faster-compile-time", - "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:nailgun-server:jar:sources:0c8b937b", + "me.vican.jorge:directory-watcher:jar:sources:0.5.2-a1c0e21c", + "com.google.errorprone:error_prone_annotations:jar:sources:2.0.18", + "com.typesafe.scala-logging:scala-logging_2.12:jar:sources:3.7.2", + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "com.trueaccord.scalapb:scalapb-runtime_2.12:jar:sources:0.6.0", + "ch.epfl.scala:bloop-config_2.12:jar:sources:1.0.0", "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-compile-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-ivy-integration_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-persist_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.qos.logback:logback-classic:jar:sources:1.2.3", - "ch.qos.logback:logback-core:jar:sources:1.2.3", - "com.beachape:enumeratum-circe_2.12:jar:sources:1.5.15", + "io.circe:circe-core_2.12:jar:sources:0.9.3", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.chuusai:shapeless_2.12:jar:sources:2.3.3", + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", "com.beachape:enumeratum-macros_2.12:jar:sources:1.5.9", + "com.google.guava:guava:jar:sources:23.0", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", "com.beachape:enumeratum_2.12:jar:sources:1.5.12", - "com.chuusai:shapeless_2.12:jar:sources:2.3.3", - "com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0", + "com.zaxxer:nuprocess:jar:sources:1.2.4", "com.eed3si9n:gigahorse-okhttp_2.12:jar:sources:0.3.0", - "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", - "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2", - "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", - "com.github.pathikrit:better-files_2.12:jar:sources:3.4.0", - "com.google.code.findbugs:jsr305:jar:sources:1.3.9", - "com.google.errorprone:error_prone_annotations:jar:sources:2.0.18", - "com.google.guava:guava:jar:sources:23.0", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "com.google.protobuf:protobuf-java:jar:sources:3.19.6", - "com.jcraft:jsch:jar:sources:0.1.54", - "com.lihaoyi:fansi_2.12:jar:sources:0.2.5", + "org.scala-sbt:util-relation_2.12:jar:sources:1.1.3", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", "com.lihaoyi:fastparse-utils_2.12:jar:sources:0.4.2", - "com.lihaoyi:fastparse_2.12:jar:sources:0.4.2", - "com.lihaoyi:pprint_2.12:jar:sources:0.5.3", - "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", - "com.lmax:disruptor:jar:sources:3.4.2", - "com.squareup.okhttp3:okhttp-urlconnection:jar:sources:3.7.0", - "com.squareup.okhttp3:okhttp:jar:sources:3.7.0", - "com.squareup.okio:okio:jar:sources:1.12.0", - "com.trueaccord.lenses:lenses_2.12:jar:sources:0.4.12", - "com.trueaccord.scalapb:scalapb-runtime_2.12:jar:sources:0.6.0", - "com.typesafe.scala-logging:scala-logging_2.12:jar:sources:3.7.2", - "com.typesafe:config:jar:sources:1.2.0", - "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", - "com.zaxxer:nuprocess:jar:sources:1.2.4", - "io.circe:circe-core_2.12:jar:sources:0.9.3", - "io.circe:circe-derivation_2.12:jar:sources:0.9.0-M3", + "org.scalaz:scalaz-effect_2.12:jar:sources:7.2.20", + "org.scala-sbt:test-agent:jar:sources:1.0.4", + "io.monix:monix-eval_2.12:jar:sources:2.3.3", "io.circe:circe-generic-extras_2.12:jar:sources:0.9.0", - "io.circe:circe-generic_2.12:jar:sources:0.9.0", - "io.circe:circe-jawn_2.12:jar:sources:0.9.3", + "org.scalameta:jsonrpc_2.12:jar:sources:0.1.0", + "ch.qos.logback:logback-core:jar:sources:1.2.3", + "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.14", + "org.scalaz:scalaz-concurrent_2.12:jar:sources:7.2.20", + "io.circe:circe-derivation_2.12:jar:sources:0.9.0-M3", + "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", + "me.vican.jorge:directory-watcher-better-files_2.12:jar:sources:0.5.2-a1c0e21c", "io.circe:circe-numbers_2.12:jar:sources:0.9.3", - "io.circe:circe-parser_2.12:jar:sources:0.9.3", - "io.get-coursier:coursier-cache_2.12:jar:sources:1.1.0-M3", - "io.get-coursier:coursier-scalaz-interop_2.12:jar:sources:1.1.0-M3", - "io.get-coursier:coursier_2.12:jar:sources:1.1.0-M3", + "ch.epfl.scala:zinc-compile-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", "io.github.soc:directories:jar:sources:10", - "io.monix:monix-eval_2.12:jar:sources:2.3.3", - "io.monix:monix-execution_2.12:jar:sources:2.3.3", - "io.monix:monix-reactive_2.12:jar:sources:2.3.3", - "io.monix:monix-types_2.12:jar:sources:2.3.3", - "io.monix:monix_2.12:jar:sources:2.3.3", + "org.scala-sbt:util-interface:jar:sources:1.10.0", + "org.scala-sbt:sbinary_2.12:jar:sources:0.4.4", + "ch.qos.logback:logback-classic:jar:sources:1.2.3", + "com.lihaoyi:pprint_2.12:jar:sources:0.5.3", + "org.scala-sbt:librarymanagement-core_2.12:jar:sources:1.1.4", + "org.scalaz:scalaz-core_2.12:jar:sources:7.2.20", + "com.beachape:enumeratum-circe_2.12:jar:sources:1.5.15", + "io.get-coursier:coursier-scalaz-interop_2.12:jar:sources:1.1.0-M3", + "ch.epfl.scala:zinc-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "com.jcraft:jsch:jar:sources:0.1.54", + "com.google.code.findbugs:jsr305:jar:sources:1.3.9", + "io.circe:circe-generic_2.12:jar:sources:0.9.0", + "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "com.squareup.okhttp3:okhttp-urlconnection:jar:sources:3.7.0", + "com.lmax:disruptor:jar:sources:3.4.2", "jline:jline:jar:sources:2.14.4", - "me.vican.jorge:directory-watcher-better-files_2.12:jar:sources:0.5.2-a1c0e21c", - "me.vican.jorge:directory-watcher:jar:sources:0.5.2-a1c0e21c", - "net.java.dev.jna:jna-platform:jar:sources:5.13.0", - "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", - "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", - "org.codehaus.groovy:groovy:jar:sources:2.4.0", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.14", - "org.jctools:jctools-core:jar:sources:2.0.1", - "org.reactivestreams:reactive-streams:jar:sources:1.0.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "com.google.j2objc:j2objc-annotations:jar:sources:1.1", "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "com.lihaoyi:fansi_2.12:jar:sources:0.2.5", + "com.squareup.okio:okio:jar:sources:1.12.0", "org.scala-sbt.ivy:ivy:jar:sources:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd", - "org.scala-sbt:io_2.12:jar:sources:1.1.4", - "org.scala-sbt:launcher-interface:jar:sources:1.4.2", - "org.scala-sbt:librarymanagement-core_2.12:jar:sources:1.1.4", - "org.scala-sbt:librarymanagement-ivy_2.12:jar:sources:1.0.0", - "org.scala-sbt:sbinary_2.12:jar:sources:0.4.4", - "org.scala-sbt:test-agent:jar:sources:1.0.4", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0", + "ch.epfl.scala:bloop-backend_2.12:jar:sources:1.0.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", "org.scala-sbt:test-interface:jar:sources:1.0", - "org.scala-sbt:util-cache_2.12:jar:sources:1.1.3", - "org.scala-sbt:util-control_2.12:jar:sources:1.1.3", - "org.scala-sbt:util-interface:jar:sources:1.9.2", - "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", - "org.scala-sbt:util-position_2.12:jar:sources:1.1.3", - "org.scala-sbt:util-relation_2.12:jar:sources:1.1.3", - "org.scalameta:jsonrpc_2.12:jar:sources:0.1.0", + "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "io.monix:monix_2.12:jar:sources:2.3.3", + "io.circe:circe-parser_2.12:jar:sources:0.9.3", + "ch.epfl.scala:nailgun-server:jar:sources:0c8b937b", + "io.get-coursier:coursier-cache_2.12:jar:sources:1.1.0-M3", + "com.github.pathikrit:better-files_2.12:jar:sources:3.4.0", + "com.squareup.okhttp3:okhttp:jar:sources:3.7.0", + "io.circe:circe-jawn_2.12:jar:sources:0.9.3", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", "org.scalameta:lsp4s_2.12:jar:sources:0.1.0", - "org.scalaz:scalaz-concurrent_2.12:jar:sources:7.2.20", - "org.scalaz:scalaz-core_2.12:jar:sources:7.2.20", - "org.scalaz:scalaz-effect_2.12:jar:sources:7.2.20", - "org.slf4j:slf4j-api:jar:sources:1.7.25", - "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", + "ch.epfl.scala:zinc-persist_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "ch.epfl.scala:case-app-util_2.12:jar:sources:1.2.0-faster-compile-time", "org.typelevel:cats-core_2.12:jar:sources:1.0.1", - "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", - "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2", + "org.scala-sbt:util-cache_2.12:jar:sources:1.1.3", + "ch.epfl.scala:zinc_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-sbt:librarymanagement-ivy_2.12:jar:sources:1.0.0", + "com.trueaccord.lenses:lenses_2.12:jar:sources:0.4.12", + "ch.epfl.scala:case-app_2.12:jar:sources:1.2.0-faster-compile-time", + "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "org.jctools:jctools-core:jar:sources:2.0.1", + "org.reactivestreams:reactive-streams:jar:sources:1.0.0", + "ch.epfl.scala:case-app-annotations_2.12:jar:sources:1.2.0-faster-compile-time", + "org.codehaus.groovy:groovy:jar:sources:2.4.0", + "ch.epfl.scala:zinc-ivy-integration_2.12:jar:sources:1.1.7+62-0f4ad9d5", "org.typelevel:machinist_2.12:jar:sources:0.6.2", + "com.lihaoyi:fastparse_2.12:jar:sources:0.4.2", + "org.scala-sbt:util-control_2.12:jar:sources:1.1.3", + "io.monix:monix-execution_2.12:jar:sources:2.3.3", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "io.monix:monix-types_2.12:jar:sources:2.3.3", + "io.get-coursier:coursier_2.12:jar:sources:1.1.0-M3", "org.typelevel:macro-compat_2.12:jar:sources:1.1.1" ], "directDependencies": [ - "ch.epfl.scala:bloop-backend_2.12:jar:sources:1.0.0", - "ch.epfl.scala:bloop-config_2.12:jar:sources:1.0.0", "ch.epfl.scala:bsp_2.12:jar:sources:1.0.0-M4", - "ch.epfl.scala:case-app_2.12:jar:sources:1.2.0-faster-compile-time", + "ch.epfl.scala:bloop-config_2.12:jar:sources:1.0.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", "com.zaxxer:nuprocess:jar:sources:1.2.4", + "org.scalaz:scalaz-core_2.12:jar:sources:7.2.20", + "ch.epfl.scala:bloop-backend_2.12:jar:sources:1.0.0", "io.monix:monix_2.12:jar:sources:2.3.3", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scalaz:scalaz-core_2.12:jar:sources:7.2.20" + "ch.epfl.scala:case-app_2.12:jar:sources:1.2.0-faster-compile-time" ], "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/bloop-frontend_2.12/1.0.0/bloop-frontend_2.12-1.0.0-sources.jar", "mirror_urls": [ @@ -544,33 +544,33 @@ { "coord": "ch.epfl.scala:bsp_2.12:1.0.0-M4", "dependencies": [ - "ch.qos.logback:logback-classic:1.2.3", - "ch.qos.logback:logback-core:1.2.3", - "com.beachape:enumeratum-circe_2.12:1.5.15", + "io.monix:monix_2.12:2.3.3", + "org.scala-lang:scala-reflect:2.13.14", "com.beachape:enumeratum-macros_2.12:1.5.9", - "com.beachape:enumeratum_2.12:1.5.12", - "com.chuusai:shapeless_2.12:2.3.3", "com.lihaoyi:fansi_2.12:0.2.5", - "com.lihaoyi:pprint_2.12:0.5.3", - "com.lihaoyi:sourcecode_2.12:0.1.4", - "com.typesafe.scala-logging:scala-logging_2.12:3.7.2", - "io.circe:circe-core_2.12:0.9.3", - "io.circe:circe-generic-extras_2.12:0.9.0", - "io.circe:circe-generic_2.12:0.9.0", - "io.circe:circe-numbers_2.12:0.9.3", "io.circe:circe-parser_2.12:0.9.3", - "io.monix:monix_2.12:2.3.3", "org.codehaus.groovy:groovy:2.4.0", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scalameta:jsonrpc_2.12:0.1.0", "org.scalameta:lsp4s_2.12:0.1.0", + "io.circe:circe-generic_2.12:0.9.0", + "ch.qos.logback:logback-classic:1.2.3", + "com.chuusai:shapeless_2.12:2.3.3", + "org.scalameta:jsonrpc_2.12:0.1.0", + "io.circe:circe-generic-extras_2.12:0.9.0", + "io.circe:circe-numbers_2.12:0.9.3", + "com.beachape:enumeratum-circe_2.12:1.5.15", + "org.typelevel:macro-compat_2.12:1.1.1", "org.slf4j:slf4j-api:1.7.25", + "org.typelevel:machinist_2.12:0.6.2", "org.typelevel:cats-core_2.12:1.0.1", - "org.typelevel:cats-kernel_2.12:1.0.1", "org.typelevel:cats-macros_2.12:1.0.1", - "org.typelevel:machinist_2.12:0.6.2", - "org.typelevel:macro-compat_2.12:1.1.1" + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.scala-lang:scala-library:2.13.14", + "ch.qos.logback:logback-core:1.2.3", + "io.circe:circe-core_2.12:0.9.3", + "com.typesafe.scala-logging:scala-logging_2.12:3.7.2", + "com.lihaoyi:sourcecode_2.12:0.1.4", + "com.lihaoyi:pprint_2.12:0.5.3", + "com.beachape:enumeratum_2.12:1.5.12" ], "directDependencies": [ "io.circe:circe-core_2.12:0.9.3", @@ -589,31 +589,31 @@ { "coord": "ch.epfl.scala:bsp_2.12:jar:sources:1.0.0-M4", "dependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.3", - "ch.qos.logback:logback-core:jar:sources:1.2.3", - "com.beachape:enumeratum-circe_2.12:jar:sources:1.5.15", - "com.beachape:enumeratum-macros_2.12:jar:sources:1.5.9", - "com.beachape:enumeratum_2.12:jar:sources:1.5.12", - "com.chuusai:shapeless_2.12:jar:sources:2.3.3", - "com.lihaoyi:fansi_2.12:jar:sources:0.2.5", - "com.lihaoyi:pprint_2.12:jar:sources:0.5.3", - "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "org.slf4j:slf4j-api:jar:sources:1.7.25", "com.typesafe.scala-logging:scala-logging_2.12:jar:sources:3.7.2", + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", "io.circe:circe-core_2.12:jar:sources:0.9.3", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.chuusai:shapeless_2.12:jar:sources:2.3.3", + "com.beachape:enumeratum-macros_2.12:jar:sources:1.5.9", + "com.beachape:enumeratum_2.12:jar:sources:1.5.12", "io.circe:circe-generic-extras_2.12:jar:sources:0.9.0", - "io.circe:circe-generic_2.12:jar:sources:0.9.0", + "org.scalameta:jsonrpc_2.12:jar:sources:0.1.0", + "ch.qos.logback:logback-core:jar:sources:1.2.3", "io.circe:circe-numbers_2.12:jar:sources:0.9.3", - "io.circe:circe-parser_2.12:jar:sources:0.9.3", + "ch.qos.logback:logback-classic:jar:sources:1.2.3", + "com.lihaoyi:pprint_2.12:jar:sources:0.5.3", + "com.beachape:enumeratum-circe_2.12:jar:sources:1.5.15", + "io.circe:circe-generic_2.12:jar:sources:0.9.0", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "com.lihaoyi:fansi_2.12:jar:sources:0.2.5", "io.monix:monix_2.12:jar:sources:2.3.3", - "org.codehaus.groovy:groovy:jar:sources:2.4.0", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalameta:jsonrpc_2.12:jar:sources:0.1.0", + "io.circe:circe-parser_2.12:jar:sources:0.9.3", "org.scalameta:lsp4s_2.12:jar:sources:0.1.0", - "org.slf4j:slf4j-api:jar:sources:1.7.25", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", "org.typelevel:cats-core_2.12:jar:sources:1.0.1", - "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", - "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "org.codehaus.groovy:groovy:jar:sources:2.4.0", "org.typelevel:machinist_2.12:jar:sources:0.6.2", "org.typelevel:macro-compat_2.12:jar:sources:1.1.1" ], @@ -668,8 +668,8 @@ { "coord": "ch.epfl.scala:case-app-util_2.12:1.2.0-faster-compile-time", "dependencies": [ - "com.chuusai:shapeless_2.12:2.3.3", "org.scala-lang:scala-library:2.13.14", + "com.chuusai:shapeless_2.12:2.3.3", "org.typelevel:macro-compat_2.12:1.1.1" ], "directDependencies": [ @@ -690,8 +690,8 @@ "coord": "ch.epfl.scala:case-app-util_2.12:jar:sources:1.2.0-faster-compile-time", "dependencies": [ "com.chuusai:shapeless_2.12:jar:sources:2.3.3", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.typelevel:macro-compat_2.12:jar:sources:1.1.1" + "org.typelevel:macro-compat_2.12:jar:sources:1.1.1", + "org.scala-lang:scala-library:jar:sources:2.13.14" ], "directDependencies": [ "com.chuusai:shapeless_2.12:jar:sources:2.3.3", @@ -710,11 +710,11 @@ { "coord": "ch.epfl.scala:case-app_2.12:1.2.0-faster-compile-time", "dependencies": [ + "com.chuusai:shapeless_2.12:2.3.3", + "org.typelevel:macro-compat_2.12:1.1.1", "ch.epfl.scala:case-app-annotations_2.12:1.2.0-faster-compile-time", "ch.epfl.scala:case-app-util_2.12:1.2.0-faster-compile-time", - "com.chuusai:shapeless_2.12:2.3.3", - "org.scala-lang:scala-library:2.13.14", - "org.typelevel:macro-compat_2.12:1.1.1" + "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ "ch.epfl.scala:case-app-annotations_2.12:1.2.0-faster-compile-time", @@ -733,10 +733,10 @@ { "coord": "ch.epfl.scala:case-app_2.12:jar:sources:1.2.0-faster-compile-time", "dependencies": [ - "ch.epfl.scala:case-app-annotations_2.12:jar:sources:1.2.0-faster-compile-time", - "ch.epfl.scala:case-app-util_2.12:jar:sources:1.2.0-faster-compile-time", - "com.chuusai:shapeless_2.12:jar:sources:2.3.3", "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.chuusai:shapeless_2.12:jar:sources:2.3.3", + "ch.epfl.scala:case-app-util_2.12:jar:sources:1.2.0-faster-compile-time", + "ch.epfl.scala:case-app-annotations_2.12:jar:sources:1.2.0-faster-compile-time", "org.typelevel:macro-compat_2.12:jar:sources:1.1.1" ], "directDependencies": [ @@ -756,10 +756,10 @@ { "coord": "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", "dependencies": [ - "org.scala-sbt:util-interface:1.9.2" + "org.scala-sbt:util-interface:1.10.0" ], "directDependencies": [ - "org.scala-sbt:util-interface:1.9.2" + "org.scala-sbt:util-interface:1.10.0" ], "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/compiler-interface/1.1.7%2B62-0f4ad9d5/compiler-interface-1.1.7%2B62-0f4ad9d5.jar", "mirror_urls": [ @@ -773,10 +773,10 @@ { "coord": "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", "dependencies": [ - "org.scala-sbt:util-interface:jar:sources:1.9.2" + "org.scala-sbt:util-interface:jar:sources:1.10.0" ], "directDependencies": [ - "org.scala-sbt:util-interface:jar:sources:1.9.2" + "org.scala-sbt:util-interface:jar:sources:1.10.0" ], "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/compiler-interface/1.1.7%2B62-0f4ad9d5/compiler-interface-1.1.7%2B62-0f4ad9d5-sources.jar", "mirror_urls": [ @@ -790,13 +790,13 @@ { "coord": "ch.epfl.scala:nailgun-server:0c8b937b", "dependencies": [ - "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-lang:scala-library:2.13.14", "net.java.dev.jna:jna:5.14.0", - "org.scala-lang:scala-library:2.13.14" + "net.java.dev.jna:jna-platform:5.13.0" ], "directDependencies": [ - "net.java.dev.jna:jna-platform:5.13.0", "net.java.dev.jna:jna:5.14.0", + "net.java.dev.jna:jna-platform:5.13.0", "org.scala-lang:scala-library:2.13.14" ], "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/nailgun-server/0c8b937b/nailgun-server-0c8b937b.jar", @@ -811,13 +811,13 @@ { "coord": "ch.epfl.scala:nailgun-server:jar:sources:0c8b937b", "dependencies": [ - "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "net.java.dev.jna:jna-platform:jar:sources:5.13.0" ], "directDependencies": [ - "net.java.dev.jna:jna-platform:jar:sources:5.13.0", "net.java.dev.jna:jna:jar:sources:5.14.0", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", "org.scala-lang:scala-library:jar:sources:2.13.14" ], "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/nailgun-server/0c8b937b/nailgun-server-0c8b937b-sources.jar", @@ -832,23 +832,23 @@ { "coord": "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", "dependencies": [ - "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", - "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.12:0.8.2", - "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "org.spire-math:jawn-parser_2.12:0.11.1", + "org.scala-lang:scala-reflect:2.13.14", "com.lmax:disruptor:3.4.2", - "jline:jline:2.14.4", - "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt:util-interface:1.10.0", + "org.scala-sbt:util-logging_2.12:1.1.3", "net.java.dev.jna:jna:5.14.0", + "jline:jline:2.14.4", + "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", "org.apache.logging.log4j:log4j-api:2.17.1", - "org.apache.logging.log4j:log4j-core:2.17.1", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "net.java.dev.jna:jna-platform:5.13.0", + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scala-sbt:io_2.12:1.1.4", - "org.scala-sbt:util-interface:1.9.2", - "org.scala-sbt:util-logging_2.12:1.1.3", - "org.spire-math:jawn-parser_2.12:0.11.1" + "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", + "org.apache.logging.log4j:log4j-core:2.17.1", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "org.scala-sbt:io_2.12:1.1.4" ], "directDependencies": [ "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", @@ -867,23 +867,23 @@ { "coord": "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", "dependencies": [ + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "org.scala-sbt:util-interface:jar:sources:1.10.0", "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", "com.lmax:disruptor:jar:sources:3.4.2", "jline:jline:jar:sources:2.14.4", - "net.java.dev.jna:jna-platform:jar:sources:5.13.0", "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", - "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", - "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt:io_2.12:jar:sources:1.1.4", - "org.scala-sbt:util-interface:jar:sources:1.9.2", - "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", - "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1" ], "directDependencies": [ "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", @@ -902,22 +902,22 @@ { "coord": "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", "dependencies": [ - "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", - "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.12:0.8.2", - "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "org.spire-math:jawn-parser_2.12:0.11.1", + "org.scala-lang:scala-reflect:2.13.14", "com.lmax:disruptor:3.4.2", - "jline:jline:2.14.4", - "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt:util-interface:1.10.0", + "org.scala-sbt:util-logging_2.12:1.1.3", "net.java.dev.jna:jna:5.14.0", + "jline:jline:2.14.4", + "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", "org.apache.logging.log4j:log4j-api:2.17.1", - "org.apache.logging.log4j:log4j-core:2.17.1", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "net.java.dev.jna:jna-platform:5.13.0", + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scala-sbt:io_2.12:1.1.4", - "org.scala-sbt:util-interface:1.9.2", - "org.scala-sbt:util-logging_2.12:1.1.3", - "org.spire-math:jawn-parser_2.12:0.11.1" + "org.apache.logging.log4j:log4j-core:2.17.1", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "org.scala-sbt:io_2.12:1.1.4" ], "directDependencies": [ "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", @@ -937,22 +937,22 @@ { "coord": "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", "dependencies": [ + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "org.scala-sbt:util-interface:jar:sources:1.10.0", "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", "com.lmax:disruptor:jar:sources:3.4.2", "jline:jline:jar:sources:2.14.4", - "net.java.dev.jna:jna-platform:jar:sources:5.13.0", "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", - "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", - "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt:io_2.12:jar:sources:1.1.4", - "org.scala-sbt:util-interface:jar:sources:1.9.2", - "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", - "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1" ], "directDependencies": [ "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", @@ -972,21 +972,21 @@ { "coord": "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", "dependencies": [ - "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", - "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt:util-interface:1.10.0", "net.java.dev.jna:jna:5.14.0", "org.scala-lang:scala-compiler:2.13.14", - "org.scala-lang:scala-library:2.13.14", - "org.scala-sbt:io_2.12:1.1.4", + "net.java.dev.jna:jna-platform:5.13.0", "org.scala-sbt:launcher-interface:1.4.2", - "org.scala-sbt:util-interface:1.9.2" + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:io_2.12:1.1.4" ], "directDependencies": [ - "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", "org.scala-lang:scala-compiler:2.13.14", + "org.scala-sbt:launcher-interface:1.4.2", + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", "org.scala-lang:scala-library:2.13.14", - "org.scala-sbt:io_2.12:1.1.4", - "org.scala-sbt:launcher-interface:1.4.2" + "org.scala-sbt:io_2.12:1.1.4" ], "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-classpath_2.12/1.1.7%2B62-0f4ad9d5/zinc-classpath_2.12-1.1.7%2B62-0f4ad9d5.jar", "mirror_urls": [ @@ -1000,21 +1000,21 @@ { "coord": "ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5", "dependencies": [ + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-lang:scala-library:jar:sources:2.13.14", "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "org.scala-sbt:util-interface:jar:sources:1.10.0", "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-sbt:io_2.12:jar:sources:1.1.4", "org.scala-sbt:launcher-interface:jar:sources:1.4.2", - "org.scala-sbt:util-interface:jar:sources:1.9.2" + "org.scala-lang:scala-compiler:jar:sources:2.13.14" ], "directDependencies": [ - "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-sbt:io_2.12:jar:sources:1.1.4", - "org.scala-sbt:launcher-interface:jar:sources:1.4.2" + "org.scala-lang:scala-library:jar:sources:2.13.14", + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "org.scala-lang:scala-compiler:jar:sources:2.13.14" ], "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-classpath_2.12/1.1.7%2B62-0f4ad9d5/zinc-classpath_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", "mirror_urls": [ @@ -1028,41 +1028,41 @@ { "coord": "ch.epfl.scala:zinc-compile-core_2.12:1.1.7+62-0f4ad9d5", "dependencies": [ - "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", + "org.spire-math:jawn-parser_2.12:0.11.1", + "org.scala-lang:scala-reflect:2.13.14", + "com.lmax:disruptor:3.4.2", + "org.scala-sbt:util-interface:1.10.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "org.scala-sbt:util-logging_2.12:1.1.3", + "net.java.dev.jna:jna:5.14.0", + "org.scala-sbt:util-control_2.12:1.1.3", "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", - "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.12:0.8.2", - "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", - "com.lmax:disruptor:3.4.2", "jline:jline:2.14.4", - "net.java.dev.jna:jna-platform:5.13.0", - "net.java.dev.jna:jna:5.14.0", + "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", "org.apache.logging.log4j:log4j-api:2.17.1", - "org.apache.logging.log4j:log4j-core:2.17.1", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", "org.scala-lang:scala-compiler:2.13.14", + "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt:launcher-interface:1.4.2", + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", + "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", + "org.apache.logging.log4j:log4j-core:2.17.1", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", "org.scala-sbt:io_2.12:1.1.4", - "org.scala-sbt:launcher-interface:1.4.2", - "org.scala-sbt:util-control_2.12:1.1.3", - "org.scala-sbt:util-interface:1.9.2", - "org.scala-sbt:util-logging_2.12:1.1.3", - "org.spire-math:jawn-parser_2.12:0.11.1" + "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5" ], "directDependencies": [ - "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "org.scala-sbt:util-logging_2.12:1.1.3", + "org.scala-sbt:util-control_2.12:1.1.3", + "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", + "org.scala-sbt:launcher-interface:1.4.2", + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", "org.scala-lang:scala-library:2.13.14", + "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", "org.scala-sbt:io_2.12:1.1.4", - "org.scala-sbt:launcher-interface:1.4.2", - "org.scala-sbt:util-control_2.12:1.1.3", - "org.scala-sbt:util-logging_2.12:1.1.3" + "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5" ], "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-compile-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-compile-core_2.12-1.1.7%2B62-0f4ad9d5.jar", "mirror_urls": [ @@ -1076,41 +1076,41 @@ { "coord": "ch.epfl.scala:zinc-compile-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", "dependencies": [ - "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", "ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "org.scala-sbt:util-interface:jar:sources:1.10.0", "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", "com.lmax:disruptor:jar:sources:3.4.2", "jline:jline:jar:sources:2.14.4", - "net.java.dev.jna:jna-platform:jar:sources:5.13.0", "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", - "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt:io_2.12:jar:sources:1.1.4", "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", "org.scala-sbt:util-control_2.12:jar:sources:1.1.3", - "org.scala-sbt:util-interface:jar:sources:1.9.2", - "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", - "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1" ], "directDependencies": [ - "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5", "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-sbt:io_2.12:jar:sources:1.1.4", "org.scala-sbt:launcher-interface:jar:sources:1.4.2", - "org.scala-sbt:util-control_2.12:jar:sources:1.1.3", - "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3" + "org.scala-sbt:util-control_2.12:jar:sources:1.1.3" ], "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-compile-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-compile-core_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", "mirror_urls": [ @@ -1124,37 +1124,37 @@ { "coord": "ch.epfl.scala:zinc-core_2.12:1.1.7+62-0f4ad9d5", "dependencies": [ - "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", - "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.12:0.8.2", - "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "org.spire-math:jawn-parser_2.12:0.11.1", + "org.scala-lang:scala-reflect:2.13.14", "com.lmax:disruptor:3.4.2", - "jline:jline:2.14.4", - "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt:util-relation_2.12:1.1.3", + "org.scala-sbt:util-interface:1.10.0", + "org.scala-sbt:util-logging_2.12:1.1.3", "net.java.dev.jna:jna:5.14.0", + "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", + "jline:jline:2.14.4", + "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", "org.apache.logging.log4j:log4j-api:2.17.1", - "org.apache.logging.log4j:log4j-core:2.17.1", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", "org.scala-lang:scala-compiler:2.13.14", + "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt:launcher-interface:1.4.2", + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", + "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", + "org.apache.logging.log4j:log4j-core:2.17.1", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", "org.scala-sbt:io_2.12:1.1.4", - "org.scala-sbt:launcher-interface:1.4.2", - "org.scala-sbt:util-interface:1.9.2", - "org.scala-sbt:util-logging_2.12:1.1.3", - "org.scala-sbt:util-relation_2.12:1.1.3", - "org.spire-math:jawn-parser_2.12:0.11.1" + "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5" ], "directDependencies": [ - "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", + "org.scala-sbt:util-relation_2.12:1.1.3", + "org.scala-sbt:util-logging_2.12:1.1.3", "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", "org.scala-lang:scala-library:2.13.14", "org.scala-sbt:io_2.12:1.1.4", - "org.scala-sbt:util-logging_2.12:1.1.3", - "org.scala-sbt:util-relation_2.12:1.1.3" + "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5" ], "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-core_2.12-1.1.7%2B62-0f4ad9d5.jar", "mirror_urls": [ @@ -1168,36 +1168,36 @@ { "coord": "ch.epfl.scala:zinc-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", "dependencies": [ - "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", "ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "org.scala-sbt:util-relation_2.12:jar:sources:1.1.3", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "org.scala-sbt:util-interface:jar:sources:1.10.0", "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", "com.lmax:disruptor:jar:sources:3.4.2", "jline:jline:jar:sources:2.14.4", - "net.java.dev.jna:jna-platform:jar:sources:5.13.0", "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", - "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt:io_2.12:jar:sources:1.1.4", "org.scala-sbt:launcher-interface:jar:sources:1.4.2", - "org.scala-sbt:util-interface:jar:sources:1.9.2", - "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", - "org.scala-sbt:util-relation_2.12:jar:sources:1.1.3", - "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1" ], "directDependencies": [ - "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", "ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", "org.scala-sbt:util-relation_2.12:jar:sources:1.1.3" ], "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-core_2.12/1.1.7%2B62-0f4ad9d5/zinc-core_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", @@ -1212,45 +1212,45 @@ { "coord": "ch.epfl.scala:zinc-ivy-integration_2.12:1.1.7+62-0f4ad9d5", "dependencies": [ - "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-compile-core_2.12:1.1.7+62-0f4ad9d5", - "com.eed3si9n:gigahorse-core_2.12:0.3.0", - "com.eed3si9n:gigahorse-okhttp_2.12:0.3.0", - "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.12:0.8.2", - "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", - "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", - "com.jcraft:jsch:0.1.54", + "org.spire-math:jawn-parser_2.12:0.11.1", + "org.scala-lang:scala-reflect:2.13.14", "com.lmax:disruptor:3.4.2", + "org.scala-sbt:util-interface:1.10.0", "com.squareup.okhttp3:okhttp-urlconnection:3.7.0", - "com.squareup.okhttp3:okhttp:3.7.0", + "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", + "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "com.jcraft:jsch:0.1.54", + "org.scala-sbt:util-logging_2.12:1.1.3", + "net.java.dev.jna:jna:5.14.0", + "org.scala-sbt:util-control_2.12:1.1.3", + "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", + "jline:jline:2.14.4", + "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", + "com.eed3si9n:gigahorse-okhttp_2.12:0.3.0", + "org.scala-sbt:util-position_2.12:1.1.3", + "org.slf4j:slf4j-api:1.7.25", + "org.reactivestreams:reactive-streams:1.0.0", + "org.scala-sbt:librarymanagement-core_2.12:1.1.4", "com.squareup.okio:okio:1.12.0", "com.typesafe:config:1.2.0", - "com.typesafe:ssl-config-core_2.12:0.2.2", - "jline:jline:2.14.4", - "net.java.dev.jna:jna-platform:5.13.0", - "net.java.dev.jna:jna:5.14.0", "org.apache.logging.log4j:log4j-api:2.17.1", - "org.apache.logging.log4j:log4j-core:2.17.1", - "org.reactivestreams:reactive-streams:1.0.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", - "org.scala-lang.modules:scala-xml_2.12:1.0.6", + "com.eed3si9n:gigahorse-core_2.12:0.3.0", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "ch.epfl.scala:zinc-compile-core_2.12:1.1.7+62-0f4ad9d5", "org.scala-lang:scala-compiler:2.13.14", + "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt:util-cache_2.12:1.1.3", + "org.scala-sbt:launcher-interface:1.4.2", + "com.squareup.okhttp3:okhttp:3.7.0", + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", + "com.typesafe:ssl-config-core_2.12:0.2.2", + "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", + "org.apache.logging.log4j:log4j-core:2.17.1", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "org.scala-lang.modules:scala-xml_2.12:1.0.6", "org.scala-sbt:io_2.12:1.1.4", - "org.scala-sbt:launcher-interface:1.4.2", - "org.scala-sbt:librarymanagement-core_2.12:1.1.4", - "org.scala-sbt:util-cache_2.12:1.1.3", - "org.scala-sbt:util-control_2.12:1.1.3", - "org.scala-sbt:util-interface:1.9.2", - "org.scala-sbt:util-logging_2.12:1.1.3", - "org.scala-sbt:util-position_2.12:1.1.3", - "org.slf4j:slf4j-api:1.7.25", - "org.spire-math:jawn-parser_2.12:0.11.1" + "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5" ], "directDependencies": [ "ch.epfl.scala:zinc-compile-core_2.12:1.1.7+62-0f4ad9d5", @@ -1269,45 +1269,45 @@ { "coord": "ch.epfl.scala:zinc-ivy-integration_2.12:jar:sources:1.1.7+62-0f4ad9d5", "dependencies": [ - "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", "ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-compile-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0", + "com.typesafe:config:jar:sources:1.2.0", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.slf4j:slf4j-api:jar:sources:1.7.25", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:util-position_2.12:jar:sources:1.1.3", + "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", "com.eed3si9n:gigahorse-okhttp_2.12:jar:sources:0.3.0", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", - "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2", - "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "ch.epfl.scala:zinc-compile-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "org.scala-sbt:util-interface:jar:sources:1.10.0", + "org.scala-sbt:librarymanagement-core_2.12:jar:sources:1.1.4", "com.jcraft:jsch:jar:sources:0.1.54", - "com.lmax:disruptor:jar:sources:3.4.2", + "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", "com.squareup.okhttp3:okhttp-urlconnection:jar:sources:3.7.0", - "com.squareup.okhttp3:okhttp:jar:sources:3.7.0", - "com.squareup.okio:okio:jar:sources:1.12.0", - "com.typesafe:config:jar:sources:1.2.0", - "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", + "com.lmax:disruptor:jar:sources:3.4.2", "jline:jline:jar:sources:2.14.4", - "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", + "com.squareup.okio:okio:jar:sources:1.12.0", "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", - "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", - "org.reactivestreams:reactive-streams:jar:sources:1.0.0", + "com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0", "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt:io_2.12:jar:sources:1.1.4", "org.scala-sbt:launcher-interface:jar:sources:1.4.2", - "org.scala-sbt:librarymanagement-core_2.12:jar:sources:1.1.4", + "com.squareup.okhttp3:okhttp:jar:sources:3.7.0", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2", "org.scala-sbt:util-cache_2.12:jar:sources:1.1.3", + "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.reactivestreams:reactive-streams:jar:sources:1.0.0", "org.scala-sbt:util-control_2.12:jar:sources:1.1.3", - "org.scala-sbt:util-interface:jar:sources:1.9.2", - "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", - "org.scala-sbt:util-position_2.12:jar:sources:1.1.3", - "org.slf4j:slf4j-api:jar:sources:1.7.25", - "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1" ], "directDependencies": [ "ch.epfl.scala:zinc-compile-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", @@ -1326,37 +1326,37 @@ { "coord": "ch.epfl.scala:zinc-persist_2.12:1.1.7+62-0f4ad9d5", "dependencies": [ - "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", + "org.spire-math:jawn-parser_2.12:0.11.1", + "org.scala-lang:scala-reflect:2.13.14", + "com.lmax:disruptor:3.4.2", + "org.scala-sbt:util-relation_2.12:1.1.3", + "org.scala-sbt:util-interface:1.10.0", + "com.trueaccord.lenses:lenses_2.12:0.4.12", + "org.scala-sbt:util-logging_2.12:1.1.3", + "net.java.dev.jna:jna:5.14.0", "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-core_2.12:1.1.7+62-0f4ad9d5", + "jline:jline:2.14.4", "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", + "org.scala-sbt:sbinary_2.12:0.4.4", + "ch.epfl.scala:zinc-core_2.12:1.1.7+62-0f4ad9d5", + "org.apache.logging.log4j:log4j-api:2.17.1", "com.eed3si9n:sjson-new-core_2.12:0.8.2", - "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", - "com.google.protobuf:protobuf-java:3.19.6", - "com.lihaoyi:fastparse-utils_2.12:0.4.2", - "com.lihaoyi:fastparse_2.12:0.4.2", - "com.lihaoyi:sourcecode_2.12:0.1.4", - "com.lmax:disruptor:3.4.2", - "com.trueaccord.lenses:lenses_2.12:0.4.12", "com.trueaccord.scalapb:scalapb-runtime_2.12:0.6.0", - "jline:jline:2.14.4", + "org.scala-lang:scala-compiler:2.13.14", "net.java.dev.jna:jna-platform:5.13.0", - "net.java.dev.jna:jna:5.14.0", - "org.apache.logging.log4j:log4j-api:2.17.1", + "org.scala-sbt:launcher-interface:1.4.2", + "com.lihaoyi:fastparse-utils_2.12:0.4.2", + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", + "com.google.protobuf:protobuf-java:3.19.6", + "org.scala-lang:scala-library:2.13.14", + "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", "org.apache.logging.log4j:log4j-core:2.17.1", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", "org.scala-lang.modules:scala-xml_2.12:1.0.6", - "org.scala-lang:scala-compiler:2.13.14", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", + "com.lihaoyi:sourcecode_2.12:0.1.4", "org.scala-sbt:io_2.12:1.1.4", - "org.scala-sbt:launcher-interface:1.4.2", - "org.scala-sbt:sbinary_2.12:0.4.4", - "org.scala-sbt:util-interface:1.9.2", - "org.scala-sbt:util-logging_2.12:1.1.3", - "org.scala-sbt:util-relation_2.12:1.1.3", - "org.spire-math:jawn-parser_2.12:0.11.1" + "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", + "com.lihaoyi:fastparse_2.12:0.4.2" ], "directDependencies": [ "ch.epfl.scala:zinc-core_2.12:1.1.7+62-0f4ad9d5", @@ -1376,37 +1376,37 @@ { "coord": "ch.epfl.scala:zinc-persist_2.12:jar:sources:1.1.7+62-0f4ad9d5", "dependencies": [ - "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", "ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "com.trueaccord.scalapb:scalapb-runtime_2.12:jar:sources:0.6.0", + "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "org.scala-sbt:util-relation_2.12:jar:sources:1.1.3", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", + "com.lihaoyi:fastparse-utils_2.12:jar:sources:0.4.2", "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "org.scala-sbt:util-interface:jar:sources:1.10.0", + "org.scala-sbt:sbinary_2.12:jar:sources:0.4.4", + "ch.epfl.scala:zinc-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", - "com.google.protobuf:protobuf-java:jar:sources:3.19.6", - "com.lihaoyi:fastparse-utils_2.12:jar:sources:0.4.2", - "com.lihaoyi:fastparse_2.12:jar:sources:0.4.2", - "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", "com.lmax:disruptor:jar:sources:3.4.2", - "com.trueaccord.lenses:lenses_2.12:jar:sources:0.4.12", - "com.trueaccord.scalapb:scalapb-runtime_2.12:jar:sources:0.6.0", "jline:jline:jar:sources:2.14.4", - "net.java.dev.jna:jna-platform:jar:sources:5.13.0", - "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", - "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "net.java.dev.jna:jna:jar:sources:5.14.0", "org.scala-sbt:launcher-interface:jar:sources:1.4.2", - "org.scala-sbt:sbinary_2.12:jar:sources:0.4.4", - "org.scala-sbt:util-interface:jar:sources:1.9.2", - "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", - "org.scala-sbt:util-relation_2.12:jar:sources:1.1.3", - "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "com.trueaccord.lenses:lenses_2.12:jar:sources:0.4.12", + "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "com.lihaoyi:fastparse_2.12:jar:sources:0.4.2", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1" ], "directDependencies": [ "ch.epfl.scala:zinc-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", @@ -1426,64 +1426,64 @@ { "coord": "ch.epfl.scala:zinc_2.12:1.1.7+62-0f4ad9d5", "dependencies": [ - "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", + "org.spire-math:jawn-parser_2.12:0.11.1", + "org.scala-lang:scala-reflect:2.13.14", + "com.lmax:disruptor:3.4.2", + "org.scala-sbt:util-relation_2.12:1.1.3", + "org.scala-sbt:util-interface:1.10.0", + "com.squareup.okhttp3:okhttp-urlconnection:3.7.0", + "ch.epfl.scala:zinc-persist_2.12:1.1.7+62-0f4ad9d5", + "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", + "com.trueaccord.lenses:lenses_2.12:0.4.12", + "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "com.jcraft:jsch:0.1.54", + "org.scala-sbt:util-logging_2.12:1.1.3", + "net.java.dev.jna:jna:5.14.0", + "org.scala-sbt:util-control_2.12:1.1.3", "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-compile-core_2.12:1.1.7+62-0f4ad9d5", + "jline:jline:2.14.4", + "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", + "com.eed3si9n:gigahorse-okhttp_2.12:0.3.0", + "org.scala-sbt:util-position_2.12:1.1.3", + "org.scala-sbt:sbinary_2.12:0.4.4", + "org.slf4j:slf4j-api:1.7.25", + "org.reactivestreams:reactive-streams:1.0.0", + "org.scala-sbt:librarymanagement-core_2.12:1.1.4", "ch.epfl.scala:zinc-core_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-ivy-integration_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-persist_2.12:1.1.7+62-0f4ad9d5", + "com.squareup.okio:okio:1.12.0", + "com.typesafe:config:1.2.0", + "org.apache.logging.log4j:log4j-api:2.17.1", "com.eed3si9n:gigahorse-core_2.12:0.3.0", - "com.eed3si9n:gigahorse-okhttp_2.12:0.3.0", - "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", "com.eed3si9n:sjson-new-core_2.12:0.8.2", - "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", - "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", - "com.google.protobuf:protobuf-java:3.19.6", - "com.jcraft:jsch:0.1.54", + "com.trueaccord.scalapb:scalapb-runtime_2.12:0.6.0", + "ch.epfl.scala:zinc-compile-core_2.12:1.1.7+62-0f4ad9d5", + "org.scala-lang:scala-compiler:2.13.14", + "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt:util-cache_2.12:1.1.3", + "org.scala-sbt:launcher-interface:1.4.2", "com.lihaoyi:fastparse-utils_2.12:0.4.2", - "com.lihaoyi:fastparse_2.12:0.4.2", - "com.lihaoyi:sourcecode_2.12:0.1.4", - "com.lmax:disruptor:3.4.2", - "com.squareup.okhttp3:okhttp-urlconnection:3.7.0", "com.squareup.okhttp3:okhttp:3.7.0", - "com.squareup.okio:okio:1.12.0", - "com.trueaccord.lenses:lenses_2.12:0.4.12", - "com.trueaccord.scalapb:scalapb-runtime_2.12:0.6.0", - "com.typesafe:config:1.2.0", + "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5", + "com.google.protobuf:protobuf-java:3.19.6", + "org.scala-lang:scala-library:2.13.14", "com.typesafe:ssl-config-core_2.12:0.2.2", - "jline:jline:2.14.4", - "net.java.dev.jna:jna-platform:5.13.0", - "net.java.dev.jna:jna:5.14.0", - "org.apache.logging.log4j:log4j-api:2.17.1", + "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", "org.apache.logging.log4j:log4j-core:2.17.1", - "org.reactivestreams:reactive-streams:1.0.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "ch.epfl.scala:zinc-ivy-integration_2.12:1.1.7+62-0f4ad9d5", "org.scala-lang.modules:scala-xml_2.12:1.0.6", - "org.scala-lang:scala-compiler:2.13.14", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", + "com.lihaoyi:sourcecode_2.12:0.1.4", "org.scala-sbt:io_2.12:1.1.4", - "org.scala-sbt:launcher-interface:1.4.2", - "org.scala-sbt:librarymanagement-core_2.12:1.1.4", - "org.scala-sbt:sbinary_2.12:0.4.4", - "org.scala-sbt:util-cache_2.12:1.1.3", - "org.scala-sbt:util-control_2.12:1.1.3", - "org.scala-sbt:util-interface:1.9.2", - "org.scala-sbt:util-logging_2.12:1.1.3", - "org.scala-sbt:util-position_2.12:1.1.3", - "org.scala-sbt:util-relation_2.12:1.1.3", - "org.slf4j:slf4j-api:1.7.25", - "org.spire-math:jawn-parser_2.12:0.11.1" + "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5", + "com.lihaoyi:fastparse_2.12:0.4.2" ], "directDependencies": [ - "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-compile-core_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-core_2.12:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-ivy-integration_2.12:1.1.7+62-0f4ad9d5", "ch.epfl.scala:zinc-persist_2.12:1.1.7+62-0f4ad9d5", - "org.scala-lang:scala-library:2.13.14" + "ch.epfl.scala:zinc-core_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-compile-core_2.12:1.1.7+62-0f4ad9d5", + "org.scala-lang:scala-library:2.13.14", + "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-ivy-integration_2.12:1.1.7+62-0f4ad9d5" ], "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc_2.12/1.1.7%2B62-0f4ad9d5/zinc_2.12-1.1.7%2B62-0f4ad9d5.jar", "mirror_urls": [ @@ -1497,64 +1497,64 @@ { "coord": "ch.epfl.scala:zinc_2.12:jar:sources:1.1.7+62-0f4ad9d5", "dependencies": [ - "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", "ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-compile-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-ivy-integration_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-persist_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0", + "com.typesafe:config:jar:sources:1.2.0", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.slf4j:slf4j-api:jar:sources:1.7.25", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:util-position_2.12:jar:sources:1.1.3", + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "com.trueaccord.scalapb:scalapb-runtime_2.12:jar:sources:0.6.0", + "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", "com.eed3si9n:gigahorse-okhttp_2.12:jar:sources:0.3.0", + "org.scala-sbt:util-relation_2.12:jar:sources:1.1.3", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", + "com.lihaoyi:fastparse-utils_2.12:jar:sources:0.4.2", "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", - "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2", - "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", - "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "ch.epfl.scala:zinc-compile-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "org.scala-sbt:util-interface:jar:sources:1.10.0", + "org.scala-sbt:sbinary_2.12:jar:sources:0.4.4", + "org.scala-sbt:librarymanagement-core_2.12:jar:sources:1.1.4", + "ch.epfl.scala:zinc-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", "com.jcraft:jsch:jar:sources:0.1.54", - "com.lihaoyi:fastparse-utils_2.12:jar:sources:0.4.2", - "com.lihaoyi:fastparse_2.12:jar:sources:0.4.2", - "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", - "com.lmax:disruptor:jar:sources:3.4.2", + "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", "com.squareup.okhttp3:okhttp-urlconnection:jar:sources:3.7.0", - "com.squareup.okhttp3:okhttp:jar:sources:3.7.0", - "com.squareup.okio:okio:jar:sources:1.12.0", - "com.trueaccord.lenses:lenses_2.12:jar:sources:0.4.12", - "com.trueaccord.scalapb:scalapb-runtime_2.12:jar:sources:0.6.0", - "com.typesafe:config:jar:sources:1.2.0", - "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", + "com.lmax:disruptor:jar:sources:3.4.2", "jline:jline:jar:sources:2.14.4", - "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", + "com.squareup.okio:okio:jar:sources:1.12.0", "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", - "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", - "org.reactivestreams:reactive-streams:jar:sources:1.0.0", + "com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0", "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt:io_2.12:jar:sources:1.1.4", "org.scala-sbt:launcher-interface:jar:sources:1.4.2", - "org.scala-sbt:librarymanagement-core_2.12:jar:sources:1.1.4", - "org.scala-sbt:sbinary_2.12:jar:sources:0.4.4", + "com.squareup.okhttp3:okhttp:jar:sources:3.7.0", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "ch.epfl.scala:zinc-persist_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2", "org.scala-sbt:util-cache_2.12:jar:sources:1.1.3", + "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "com.trueaccord.lenses:lenses_2.12:jar:sources:0.4.12", + "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "org.reactivestreams:reactive-streams:jar:sources:1.0.0", + "ch.epfl.scala:zinc-ivy-integration_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "com.lihaoyi:fastparse_2.12:jar:sources:0.4.2", "org.scala-sbt:util-control_2.12:jar:sources:1.1.3", - "org.scala-sbt:util-interface:jar:sources:1.9.2", - "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", - "org.scala-sbt:util-position_2.12:jar:sources:1.1.3", - "org.scala-sbt:util-relation_2.12:jar:sources:1.1.3", - "org.slf4j:slf4j-api:jar:sources:1.7.25", - "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1" ], "directDependencies": [ - "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "org.scala-lang:scala-library:jar:sources:2.13.14", "ch.epfl.scala:zinc-compile-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", "ch.epfl.scala:zinc-core_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "ch.epfl.scala:zinc-ivy-integration_2.12:jar:sources:1.1.7+62-0f4ad9d5", + "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5", "ch.epfl.scala:zinc-persist_2.12:jar:sources:1.1.7+62-0f4ad9d5", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "ch.epfl.scala:zinc-ivy-integration_2.12:jar:sources:1.1.7+62-0f4ad9d5" ], "file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc_2.12/1.1.7%2B62-0f4ad9d5/zinc_2.12-1.1.7%2B62-0f4ad9d5-sources.jar", "mirror_urls": [ @@ -1632,16 +1632,16 @@ { "coord": "com.beachape:enumeratum-circe_2.12:1.5.15", "dependencies": [ + "org.scala-lang:scala-reflect:2.13.14", "com.beachape:enumeratum-macros_2.12:1.5.9", - "com.beachape:enumeratum_2.12:1.5.12", - "io.circe:circe-core_2.12:0.9.3", "io.circe:circe-numbers_2.12:0.9.3", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", + "org.typelevel:machinist_2.12:0.6.2", "org.typelevel:cats-core_2.12:1.0.1", - "org.typelevel:cats-kernel_2.12:1.0.1", "org.typelevel:cats-macros_2.12:1.0.1", - "org.typelevel:machinist_2.12:0.6.2" + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.scala-lang:scala-library:2.13.14", + "io.circe:circe-core_2.12:0.9.3", + "com.beachape:enumeratum_2.12:1.5.12" ], "directDependencies": [ "com.beachape:enumeratum_2.12:1.5.12", @@ -1660,15 +1660,15 @@ { "coord": "com.beachape:enumeratum-circe_2.12:jar:sources:1.5.15", "dependencies": [ + "io.circe:circe-core_2.12:jar:sources:0.9.3", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", + "org.scala-lang:scala-library:jar:sources:2.13.14", "com.beachape:enumeratum-macros_2.12:jar:sources:1.5.9", "com.beachape:enumeratum_2.12:jar:sources:1.5.12", - "io.circe:circe-core_2.12:jar:sources:0.9.3", "io.circe:circe-numbers_2.12:jar:sources:0.9.3", - "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", "org.scala-lang:scala-reflect:jar:sources:2.13.14", "org.typelevel:cats-core_2.12:jar:sources:1.0.1", - "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", - "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", "org.typelevel:machinist_2.12:jar:sources:0.6.2" ], "directDependencies": [ @@ -1707,8 +1707,8 @@ { "coord": "com.beachape:enumeratum-macros_2.12:jar:sources:1.5.9", "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14" + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", @@ -1726,8 +1726,8 @@ { "coord": "com.beachape:enumeratum_2.12:1.5.12", "dependencies": [ - "com.beachape:enumeratum-macros_2.12:1.5.9", "org.scala-lang:scala-library:2.13.14", + "com.beachape:enumeratum-macros_2.12:1.5.9", "org.scala-lang:scala-reflect:2.13.14" ], "directDependencies": [ @@ -1747,8 +1747,8 @@ "coord": "com.beachape:enumeratum_2.12:jar:sources:1.5.12", "dependencies": [ "com.beachape:enumeratum-macros_2.12:jar:sources:1.5.9", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14" + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14" ], "directDependencies": [ "com.beachape:enumeratum-macros_2.12:jar:sources:1.5.9", @@ -1785,8 +1785,8 @@ { "coord": "com.chuusai:shapeless_2.12:jar:sources:2.3.3", "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.typelevel:macro-compat_2.12:jar:sources:1.1.1" + "org.typelevel:macro-compat_2.12:jar:sources:1.1.1", + "org.scala-lang:scala-library:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", @@ -1804,12 +1804,12 @@ { "coord": "com.eed3si9n:gigahorse-core_2.12:0.3.0", "dependencies": [ - "com.typesafe:config:1.2.0", - "com.typesafe:ssl-config-core_2.12:0.2.2", - "org.reactivestreams:reactive-streams:1.0.0", "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "org.slf4j:slf4j-api:1.7.25", + "org.reactivestreams:reactive-streams:1.0.0", + "com.typesafe:config:1.2.0", "org.scala-lang:scala-library:2.13.14", - "org.slf4j:slf4j-api:1.7.25" + "com.typesafe:ssl-config-core_2.12:0.2.2" ], "directDependencies": [ "com.typesafe:ssl-config-core_2.12:0.2.2", @@ -1830,11 +1830,11 @@ "coord": "com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0", "dependencies": [ "com.typesafe:config:jar:sources:1.2.0", - "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", - "org.reactivestreams:reactive-streams:jar:sources:1.0.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", + "org.slf4j:slf4j-api:jar:sources:1.7.25", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.slf4j:slf4j-api:jar:sources:1.7.25" + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", + "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", + "org.reactivestreams:reactive-streams:jar:sources:1.0.0" ], "directDependencies": [ "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", @@ -1854,15 +1854,15 @@ { "coord": "com.eed3si9n:gigahorse-okhttp_2.12:0.3.0", "dependencies": [ - "com.eed3si9n:gigahorse-core_2.12:0.3.0", - "com.squareup.okhttp3:okhttp:3.7.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "org.slf4j:slf4j-api:1.7.25", + "org.reactivestreams:reactive-streams:1.0.0", "com.squareup.okio:okio:1.12.0", "com.typesafe:config:1.2.0", - "com.typesafe:ssl-config-core_2.12:0.2.2", - "org.reactivestreams:reactive-streams:1.0.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "com.eed3si9n:gigahorse-core_2.12:0.3.0", + "com.squareup.okhttp3:okhttp:3.7.0", "org.scala-lang:scala-library:2.13.14", - "org.slf4j:slf4j-api:1.7.25" + "com.typesafe:ssl-config-core_2.12:0.2.2" ], "directDependencies": [ "com.eed3si9n:gigahorse-core_2.12:0.3.0", @@ -1881,15 +1881,15 @@ { "coord": "com.eed3si9n:gigahorse-okhttp_2.12:jar:sources:0.3.0", "dependencies": [ + "com.typesafe:config:jar:sources:1.2.0", + "org.slf4j:slf4j-api:jar:sources:1.7.25", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.squareup.okio:okio:jar:sources:1.12.0", "com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", "com.squareup.okhttp3:okhttp:jar:sources:3.7.0", - "com.squareup.okio:okio:jar:sources:1.12.0", - "com.typesafe:config:jar:sources:1.2.0", "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", - "org.reactivestreams:reactive-streams:jar:sources:1.0.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.slf4j:slf4j-api:jar:sources:1.7.25" + "org.reactivestreams:reactive-streams:jar:sources:1.0.0" ], "directDependencies": [ "com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0", @@ -2078,8 +2078,8 @@ { "coord": "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", "dependencies": [ - "com.eed3si9n:sjson-new-core_2.12:0.8.2", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "com.eed3si9n:sjson-new-core_2.12:0.8.2" ], "directDependencies": [ "com.eed3si9n:sjson-new-core_2.12:0.8.2", @@ -2097,8 +2097,8 @@ { "coord": "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2", "dependencies": [ - "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2" ], "directDependencies": [ "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", @@ -2116,9 +2116,9 @@ { "coord": "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", "dependencies": [ + "org.scala-lang:scala-library:2.13.14", "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", "com.eed3si9n:sjson-new-core_2.12:0.8.2", - "org.scala-lang:scala-library:2.13.14", "org.spire-math:jawn-parser_2.12:0.11.1" ], "directDependencies": [ @@ -2140,9 +2140,9 @@ "coord": "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", "dependencies": [ "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2" ], "directDependencies": [ "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", @@ -2162,10 +2162,10 @@ { "coord": "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", "dependencies": [ - "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", - "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", + "org.scala-lang:scala-library:2.13.14", "com.eed3si9n:sjson-new-core_2.13:0.9.1", - "org.scala-lang:scala-library:2.13.14" + "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4" ], "directDependencies": [ "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", @@ -2185,10 +2185,10 @@ { "coord": "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", "dependencies": [ - "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", - "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1" ], "directDependencies": [ "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", @@ -2252,12 +2252,6 @@ "sha256": "905721a0eea90a81534abb7ee6ef4ea2e5e645fa1def0a5cd88402df1b46c9ed", "url": "https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar" }, - { - "coord": "com.google.code.findbugs:jsr305:jar:sources:1.3.9", - "dependencies": [], - "directDependencies": [], - "file": null - }, { "coord": "com.google.errorprone:error_prone_annotations:2.0.18", "dependencies": [], @@ -2287,9 +2281,9 @@ { "coord": "com.google.guava:guava:23.0", "dependencies": [ - "com.google.code.findbugs:jsr305:1.3.9", "com.google.errorprone:error_prone_annotations:2.0.18", "com.google.j2objc:j2objc-annotations:1.1", + "com.google.code.findbugs:jsr305:1.3.9", "org.codehaus.mojo:animal-sniffer-annotations:1.14" ], "directDependencies": [ @@ -2310,10 +2304,10 @@ { "coord": "com.google.guava:guava:jar:sources:23.0", "dependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:1.3.9", - "com.google.errorprone:error_prone_annotations:jar:sources:2.0.18", "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.14" + "com.google.errorprone:error_prone_annotations:jar:sources:2.0.18", + "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.14", + "com.google.code.findbugs:jsr305:jar:sources:1.3.9" ], "directDependencies": [ "com.google.code.findbugs:jsr305:jar:sources:1.3.9", @@ -2411,8 +2405,8 @@ { "coord": "com.lihaoyi:fansi_2.12:0.2.5", "dependencies": [ - "com.lihaoyi:sourcecode_2.12:0.1.4", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "com.lihaoyi:sourcecode_2.12:0.1.4" ], "directDependencies": [ "com.lihaoyi:sourcecode_2.12:0.1.4", @@ -2430,8 +2424,8 @@ { "coord": "com.lihaoyi:fansi_2.12:jar:sources:0.2.5", "dependencies": [ - "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4" ], "directDependencies": [ "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", @@ -2449,8 +2443,8 @@ { "coord": "com.lihaoyi:fastparse-utils_2.12:0.4.2", "dependencies": [ - "com.lihaoyi:sourcecode_2.12:0.1.4", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "com.lihaoyi:sourcecode_2.12:0.1.4" ], "directDependencies": [ "com.lihaoyi:sourcecode_2.12:0.1.4", @@ -2468,8 +2462,8 @@ { "coord": "com.lihaoyi:fastparse-utils_2.12:jar:sources:0.4.2", "dependencies": [ - "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4" ], "directDependencies": [ "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", @@ -2487,9 +2481,9 @@ { "coord": "com.lihaoyi:fastparse_2.12:0.4.2", "dependencies": [ + "org.scala-lang:scala-library:2.13.14", "com.lihaoyi:fastparse-utils_2.12:0.4.2", - "com.lihaoyi:sourcecode_2.12:0.1.4", - "org.scala-lang:scala-library:2.13.14" + "com.lihaoyi:sourcecode_2.12:0.1.4" ], "directDependencies": [ "com.lihaoyi:fastparse-utils_2.12:0.4.2", @@ -2508,9 +2502,9 @@ { "coord": "com.lihaoyi:fastparse_2.12:jar:sources:0.4.2", "dependencies": [ - "com.lihaoyi:fastparse-utils_2.12:jar:sources:0.4.2", + "org.scala-lang:scala-library:jar:sources:2.13.14", "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "com.lihaoyi:fastparse-utils_2.12:jar:sources:0.4.2" ], "directDependencies": [ "com.lihaoyi:fastparse-utils_2.12:jar:sources:0.4.2", @@ -2529,9 +2523,9 @@ { "coord": "com.lihaoyi:pprint_2.12:0.5.3", "dependencies": [ - "com.lihaoyi:fansi_2.12:0.2.5", + "org.scala-lang:scala-library:2.13.14", "com.lihaoyi:sourcecode_2.12:0.1.4", - "org.scala-lang:scala-library:2.13.14" + "com.lihaoyi:fansi_2.12:0.2.5" ], "directDependencies": [ "com.lihaoyi:fansi_2.12:0.2.5", @@ -2551,8 +2545,8 @@ "coord": "com.lihaoyi:pprint_2.12:jar:sources:0.5.3", "dependencies": [ "com.lihaoyi:fansi_2.12:jar:sources:0.2.5", - "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4" ], "directDependencies": [ "com.lihaoyi:fansi_2.12:jar:sources:0.2.5", @@ -2657,8 +2651,8 @@ { "coord": "com.squareup.okhttp3:okhttp-urlconnection:3.7.0", "dependencies": [ - "com.squareup.okhttp3:okhttp:3.7.0", - "com.squareup.okio:okio:1.12.0" + "com.squareup.okio:okio:1.12.0", + "com.squareup.okhttp3:okhttp:3.7.0" ], "directDependencies": [ "com.squareup.okhttp3:okhttp:3.7.0" @@ -2751,40 +2745,40 @@ "url": "https://repo.maven.apache.org/maven2/com/squareup/okio/okio/1.12.0/okio-1.12.0-sources.jar" }, { - "coord": "com.swoval:file-tree-views:2.1.10", + "coord": "com.swoval:file-tree-views:2.1.12", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/swoval/file-tree-views/2.1.10/file-tree-views-2.1.10.jar", + "file": "v1/https/repo.maven.apache.org/maven2/com/swoval/file-tree-views/2.1.12/file-tree-views-2.1.12.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/swoval/file-tree-views/2.1.10/file-tree-views-2.1.10.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/swoval/file-tree-views/2.1.10/file-tree-views-2.1.10.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.10/file-tree-views-2.1.10.jar" + "https://repo.maven.apache.org/maven2/com/swoval/file-tree-views/2.1.12/file-tree-views-2.1.12.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/swoval/file-tree-views/2.1.12/file-tree-views-2.1.12.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.12/file-tree-views-2.1.12.jar" ], - "sha256": "3eccd3cff2d7694aa3969d3a2f3a390dd8ec75243f9b672b2237f77308839273", - "url": "https://repo.maven.apache.org/maven2/com/swoval/file-tree-views/2.1.10/file-tree-views-2.1.10.jar" + "sha256": "fd7373889b7a92cf3e97db36c920ba272aec158a9387b3259fca9f2dfaeda914", + "url": "https://repo.maven.apache.org/maven2/com/swoval/file-tree-views/2.1.12/file-tree-views-2.1.12.jar" }, { - "coord": "com.swoval:file-tree-views:jar:sources:2.1.10", + "coord": "com.swoval:file-tree-views:jar:sources:2.1.12", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/com/swoval/file-tree-views/2.1.10/file-tree-views-2.1.10-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/com/swoval/file-tree-views/2.1.12/file-tree-views-2.1.12-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/com/swoval/file-tree-views/2.1.10/file-tree-views-2.1.10-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/com/swoval/file-tree-views/2.1.10/file-tree-views-2.1.10-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.10/file-tree-views-2.1.10-sources.jar" + "https://repo.maven.apache.org/maven2/com/swoval/file-tree-views/2.1.12/file-tree-views-2.1.12-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/com/swoval/file-tree-views/2.1.12/file-tree-views-2.1.12-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.12/file-tree-views-2.1.12-sources.jar" ], - "sha256": "d0802d4038e9693d8f06d76f441a2f899fea4ff5b9155fb03f10c02b5782c0f9", - "url": "https://repo.maven.apache.org/maven2/com/swoval/file-tree-views/2.1.10/file-tree-views-2.1.10-sources.jar" + "sha256": "9cb6411980a3a2d5ae372568b3d201ca47a850227ef7f87a8cb5ad51e2f1f8d5", + "url": "https://repo.maven.apache.org/maven2/com/swoval/file-tree-views/2.1.12/file-tree-views-2.1.12-sources.jar" }, { "coord": "com.thesamet.scalapb:lenses_2.13:0.11.17", "dependencies": [ - "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0" ], "directDependencies": [ - "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0" ], "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17.jar", "mirror_urls": [ @@ -2798,12 +2792,12 @@ { "coord": "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.17", "dependencies": [ - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0" ], "directDependencies": [ - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0" ], "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17-sources.jar", "mirror_urls": [ @@ -2819,14 +2813,14 @@ "dependencies": [ "com.google.protobuf:protobuf-java:3.19.6", "com.thesamet.scalapb:lenses_2.13:0.11.17", - "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0" ], "directDependencies": [ "com.google.protobuf:protobuf-java:3.19.6", "com.thesamet.scalapb:lenses_2.13:0.11.17", - "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0" ], "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17.jar", "mirror_urls": [ @@ -2840,16 +2834,16 @@ { "coord": "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.17", "dependencies": [ - "com.google.protobuf:protobuf-java:jar:sources:3.19.6", "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.17", + "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "com.google.protobuf:protobuf-java:jar:sources:3.19.6" ], "directDependencies": [ "com.google.protobuf:protobuf-java:jar:sources:3.19.6", "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.17", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0" ], "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17-sources.jar", "mirror_urls": [ @@ -2897,12 +2891,12 @@ { "coord": "com.trueaccord.scalapb:scalapb-runtime_2.12:0.6.0", "dependencies": [ - "com.google.protobuf:protobuf-java:3.19.6", + "com.trueaccord.lenses:lenses_2.12:0.4.12", "com.lihaoyi:fastparse-utils_2.12:0.4.2", - "com.lihaoyi:fastparse_2.12:0.4.2", + "com.google.protobuf:protobuf-java:3.19.6", + "org.scala-lang:scala-library:2.13.14", "com.lihaoyi:sourcecode_2.12:0.1.4", - "com.trueaccord.lenses:lenses_2.12:0.4.12", - "org.scala-lang:scala-library:2.13.14" + "com.lihaoyi:fastparse_2.12:0.4.2" ], "directDependencies": [ "com.google.protobuf:protobuf-java:3.19.6", @@ -2922,12 +2916,12 @@ { "coord": "com.trueaccord.scalapb:scalapb-runtime_2.12:jar:sources:0.6.0", "dependencies": [ - "com.google.protobuf:protobuf-java:jar:sources:3.19.6", - "com.lihaoyi:fastparse-utils_2.12:jar:sources:0.4.2", - "com.lihaoyi:fastparse_2.12:jar:sources:0.4.2", "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.lihaoyi:fastparse-utils_2.12:jar:sources:0.4.2", "com.trueaccord.lenses:lenses_2.12:jar:sources:0.4.12", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "com.lihaoyi:fastparse_2.12:jar:sources:0.4.2" ], "directDependencies": [ "com.google.protobuf:protobuf-java:jar:sources:3.19.6", @@ -2948,8 +2942,8 @@ "coord": "com.typesafe.scala-logging:scala-logging_2.12:3.7.2", "dependencies": [ "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.slf4j:slf4j-api:1.7.25" + "org.slf4j:slf4j-api:1.7.25", + "org.scala-lang:scala-reflect:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14", @@ -2968,8 +2962,8 @@ { "coord": "com.typesafe.scala-logging:scala-logging_2.12:jar:sources:3.7.2", "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", "org.slf4j:slf4j-api:jar:sources:1.7.25" ], "directDependencies": [ @@ -3015,14 +3009,14 @@ { "coord": "com.typesafe:ssl-config-core_2.12:0.2.2", "dependencies": [ - "com.typesafe:config:1.2.0", "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "com.typesafe:config:1.2.0" ], "directDependencies": [ "com.typesafe:config:1.2.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5" ], "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/ssl-config-core_2.12/0.2.2/ssl-config-core_2.12-0.2.2.jar", "mirror_urls": [ @@ -3042,8 +3036,8 @@ ], "directDependencies": [ "com.typesafe:config:jar:sources:1.2.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5" ], "file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/ssl-config-core_2.12/0.2.2/ssl-config-core_2.12-0.2.2-sources.jar", "mirror_urls": [ @@ -3091,13 +3085,13 @@ { "coord": "io.circe:circe-core_2.12:0.9.3", "dependencies": [ - "io.circe:circe-numbers_2.12:0.9.3", - "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", + "io.circe:circe-numbers_2.12:0.9.3", + "org.typelevel:machinist_2.12:0.6.2", "org.typelevel:cats-core_2.12:1.0.1", - "org.typelevel:cats-kernel_2.12:1.0.1", "org.typelevel:cats-macros_2.12:1.0.1", - "org.typelevel:machinist_2.12:0.6.2" + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ "io.circe:circe-numbers_2.12:0.9.3", @@ -3116,12 +3110,12 @@ { "coord": "io.circe:circe-core_2.12:jar:sources:0.9.3", "dependencies": [ - "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", "org.scala-lang:scala-library:jar:sources:2.13.14", + "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", "org.scala-lang:scala-reflect:jar:sources:2.13.14", "org.typelevel:cats-core_2.12:jar:sources:1.0.1", - "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", - "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", "org.typelevel:machinist_2.12:jar:sources:0.6.2" ], "directDependencies": [ @@ -3141,14 +3135,14 @@ { "coord": "io.circe:circe-derivation_2.12:0.9.0-M3", "dependencies": [ - "io.circe:circe-core_2.12:0.9.3", - "io.circe:circe-numbers_2.12:0.9.3", - "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", + "io.circe:circe-numbers_2.12:0.9.3", + "org.typelevel:machinist_2.12:0.6.2", "org.typelevel:cats-core_2.12:1.0.1", - "org.typelevel:cats-kernel_2.12:1.0.1", "org.typelevel:cats-macros_2.12:1.0.1", - "org.typelevel:machinist_2.12:0.6.2" + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.scala-lang:scala-library:2.13.14", + "io.circe:circe-core_2.12:0.9.3" ], "directDependencies": [ "io.circe:circe-core_2.12:0.9.3", @@ -3167,12 +3161,12 @@ "coord": "io.circe:circe-derivation_2.12:jar:sources:0.9.0-M3", "dependencies": [ "io.circe:circe-core_2.12:jar:sources:0.9.3", - "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", "org.scala-lang:scala-library:jar:sources:2.13.14", + "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", "org.scala-lang:scala-reflect:jar:sources:2.13.14", "org.typelevel:cats-core_2.12:jar:sources:1.0.1", - "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", - "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", "org.typelevel:machinist_2.12:jar:sources:0.6.2" ], "directDependencies": [ @@ -3191,17 +3185,17 @@ { "coord": "io.circe:circe-generic-extras_2.12:0.9.0", "dependencies": [ - "com.chuusai:shapeless_2.12:2.3.3", - "io.circe:circe-core_2.12:0.9.3", + "org.scala-lang:scala-reflect:2.13.14", "io.circe:circe-generic_2.12:0.9.0", + "com.chuusai:shapeless_2.12:2.3.3", "io.circe:circe-numbers_2.12:0.9.3", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", + "org.typelevel:macro-compat_2.12:1.1.1", + "org.typelevel:machinist_2.12:0.6.2", "org.typelevel:cats-core_2.12:1.0.1", - "org.typelevel:cats-kernel_2.12:1.0.1", "org.typelevel:cats-macros_2.12:1.0.1", - "org.typelevel:machinist_2.12:0.6.2", - "org.typelevel:macro-compat_2.12:1.1.1" + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.scala-lang:scala-library:2.13.14", + "io.circe:circe-core_2.12:0.9.3" ], "directDependencies": [ "io.circe:circe-generic_2.12:0.9.0", @@ -3220,15 +3214,15 @@ { "coord": "io.circe:circe-generic-extras_2.12:jar:sources:0.9.0", "dependencies": [ - "com.chuusai:shapeless_2.12:jar:sources:2.3.3", "io.circe:circe-core_2.12:jar:sources:0.9.3", - "io.circe:circe-generic_2.12:jar:sources:0.9.0", - "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.chuusai:shapeless_2.12:jar:sources:2.3.3", + "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "io.circe:circe-generic_2.12:jar:sources:0.9.0", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", "org.scala-lang:scala-reflect:jar:sources:2.13.14", "org.typelevel:cats-core_2.12:jar:sources:1.0.1", - "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", - "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", "org.typelevel:machinist_2.12:jar:sources:0.6.2", "org.typelevel:macro-compat_2.12:jar:sources:1.1.1" ], @@ -3249,16 +3243,16 @@ { "coord": "io.circe:circe-generic_2.12:0.9.0", "dependencies": [ + "org.scala-lang:scala-reflect:2.13.14", "com.chuusai:shapeless_2.12:2.3.3", - "io.circe:circe-core_2.12:0.9.3", "io.circe:circe-numbers_2.12:0.9.3", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", + "org.typelevel:macro-compat_2.12:1.1.1", + "org.typelevel:machinist_2.12:0.6.2", "org.typelevel:cats-core_2.12:1.0.1", - "org.typelevel:cats-kernel_2.12:1.0.1", "org.typelevel:cats-macros_2.12:1.0.1", - "org.typelevel:machinist_2.12:0.6.2", - "org.typelevel:macro-compat_2.12:1.1.1" + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.scala-lang:scala-library:2.13.14", + "io.circe:circe-core_2.12:0.9.3" ], "directDependencies": [ "com.chuusai:shapeless_2.12:2.3.3", @@ -3278,14 +3272,14 @@ { "coord": "io.circe:circe-generic_2.12:jar:sources:0.9.0", "dependencies": [ - "com.chuusai:shapeless_2.12:jar:sources:2.3.3", "io.circe:circe-core_2.12:jar:sources:0.9.3", - "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.chuusai:shapeless_2.12:jar:sources:2.3.3", + "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", "org.scala-lang:scala-reflect:jar:sources:2.13.14", "org.typelevel:cats-core_2.12:jar:sources:1.0.1", - "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", - "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", "org.typelevel:machinist_2.12:jar:sources:0.6.2", "org.typelevel:macro-compat_2.12:jar:sources:1.1.1" ], @@ -3307,15 +3301,15 @@ { "coord": "io.circe:circe-jawn_2.12:0.9.3", "dependencies": [ - "io.circe:circe-core_2.12:0.9.3", - "io.circe:circe-numbers_2.12:0.9.3", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", "org.spire-math:jawn-parser_2.12:0.11.1", + "org.scala-lang:scala-reflect:2.13.14", + "io.circe:circe-numbers_2.12:0.9.3", + "org.typelevel:machinist_2.12:0.6.2", "org.typelevel:cats-core_2.12:1.0.1", - "org.typelevel:cats-kernel_2.12:1.0.1", "org.typelevel:cats-macros_2.12:1.0.1", - "org.typelevel:machinist_2.12:0.6.2" + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.scala-lang:scala-library:2.13.14", + "io.circe:circe-core_2.12:0.9.3" ], "directDependencies": [ "io.circe:circe-core_2.12:0.9.3", @@ -3335,13 +3329,13 @@ "coord": "io.circe:circe-jawn_2.12:jar:sources:0.9.3", "dependencies": [ "io.circe:circe-core_2.12:jar:sources:0.9.3", - "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", + "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", "org.typelevel:cats-core_2.12:jar:sources:1.0.1", - "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", - "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", "org.typelevel:machinist_2.12:jar:sources:0.6.2" ], "directDependencies": [ @@ -3395,16 +3389,16 @@ { "coord": "io.circe:circe-parser_2.12:0.9.3", "dependencies": [ - "io.circe:circe-core_2.12:0.9.3", - "io.circe:circe-jawn_2.12:0.9.3", - "io.circe:circe-numbers_2.12:0.9.3", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", "org.spire-math:jawn-parser_2.12:0.11.1", + "org.scala-lang:scala-reflect:2.13.14", + "io.circe:circe-numbers_2.12:0.9.3", + "io.circe:circe-jawn_2.12:0.9.3", + "org.typelevel:machinist_2.12:0.6.2", "org.typelevel:cats-core_2.12:1.0.1", - "org.typelevel:cats-kernel_2.12:1.0.1", "org.typelevel:cats-macros_2.12:1.0.1", - "org.typelevel:machinist_2.12:0.6.2" + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.scala-lang:scala-library:2.13.14", + "io.circe:circe-core_2.12:0.9.3" ], "directDependencies": [ "io.circe:circe-core_2.12:0.9.3", @@ -3424,14 +3418,14 @@ "coord": "io.circe:circe-parser_2.12:jar:sources:0.9.3", "dependencies": [ "io.circe:circe-core_2.12:jar:sources:0.9.3", - "io.circe:circe-jawn_2.12:jar:sources:0.9.3", - "io.circe:circe-numbers_2.12:jar:sources:0.9.3", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", - "org.typelevel:cats-core_2.12:jar:sources:1.0.1", - "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", + "io.circe:circe-numbers_2.12:jar:sources:0.9.3", "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "io.circe:circe-jawn_2.12:jar:sources:0.9.3", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.typelevel:cats-core_2.12:jar:sources:1.0.1", "org.typelevel:machinist_2.12:jar:sources:0.6.2" ], "directDependencies": [ @@ -3451,9 +3445,9 @@ { "coord": "io.get-coursier:coursier-cache_2.12:1.1.0-M3", "dependencies": [ - "io.get-coursier:coursier_2.12:1.1.0-M3", + "org.scala-lang:scala-library:2.13.14", "org.scala-lang.modules:scala-xml_2.12:1.0.6", - "org.scala-lang:scala-library:2.13.14" + "io.get-coursier:coursier_2.12:1.1.0-M3" ], "directDependencies": [ "io.get-coursier:coursier_2.12:1.1.0-M3", @@ -3471,9 +3465,9 @@ { "coord": "io.get-coursier:coursier-cache_2.12:jar:sources:1.1.0-M3", "dependencies": [ - "io.get-coursier:coursier_2.12:jar:sources:1.1.0-M3", "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "org.scala-lang:scala-library:jar:sources:2.13.14", + "io.get-coursier:coursier_2.12:jar:sources:1.1.0-M3" ], "directDependencies": [ "io.get-coursier:coursier_2.12:jar:sources:1.1.0-M3", @@ -3491,13 +3485,13 @@ { "coord": "io.get-coursier:coursier-scalaz-interop_2.12:1.1.0-M3", "dependencies": [ + "org.scalaz:scalaz-core_2.12:7.2.20", + "org.scalaz:scalaz-effect_2.12:7.2.20", + "org.scalaz:scalaz-concurrent_2.12:7.2.20", "io.get-coursier:coursier-cache_2.12:1.1.0-M3", "io.get-coursier:coursier_2.12:1.1.0-M3", - "org.scala-lang.modules:scala-xml_2.12:1.0.6", "org.scala-lang:scala-library:2.13.14", - "org.scalaz:scalaz-concurrent_2.12:7.2.20", - "org.scalaz:scalaz-core_2.12:7.2.20", - "org.scalaz:scalaz-effect_2.12:7.2.20" + "org.scala-lang.modules:scala-xml_2.12:1.0.6" ], "directDependencies": [ "io.get-coursier:coursier-cache_2.12:1.1.0-M3", @@ -3516,13 +3510,13 @@ { "coord": "io.get-coursier:coursier-scalaz-interop_2.12:jar:sources:1.1.0-M3", "dependencies": [ - "io.get-coursier:coursier-cache_2.12:jar:sources:1.1.0-M3", - "io.get-coursier:coursier_2.12:jar:sources:1.1.0-M3", - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scalaz:scalaz-effect_2.12:jar:sources:7.2.20", "org.scalaz:scalaz-concurrent_2.12:jar:sources:7.2.20", "org.scalaz:scalaz-core_2.12:jar:sources:7.2.20", - "org.scalaz:scalaz-effect_2.12:jar:sources:7.2.20" + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", + "io.get-coursier:coursier-cache_2.12:jar:sources:1.1.0-M3", + "io.get-coursier:coursier_2.12:jar:sources:1.1.0-M3" ], "directDependencies": [ "io.get-coursier:coursier-cache_2.12:jar:sources:1.1.0-M3", @@ -3541,12 +3535,12 @@ { "coord": "io.get-coursier:coursier_2.12:1.1.0-M3", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.0.6", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-xml_2.12:1.0.6" ], "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.0.6", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-xml_2.12:1.0.6" ], "file": "v1/https/repo.maven.apache.org/maven2/io/get-coursier/coursier_2.12/1.1.0-M3/coursier_2.12-1.1.0-M3.jar", "mirror_urls": [ @@ -3564,8 +3558,8 @@ "org.scala-lang:scala-library:jar:sources:2.13.14" ], "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6" ], "file": "v1/https/repo.maven.apache.org/maven2/io/get-coursier/coursier_2.12/1.1.0-M3/coursier_2.12-1.1.0-M3-sources.jar", "mirror_urls": [ @@ -3631,10 +3625,10 @@ { "coord": "io.monix:monix-eval_2.12:2.3.3", "dependencies": [ - "io.monix:monix-execution_2.12:2.3.3", "io.monix:monix-types_2.12:2.3.3", - "org.reactivestreams:reactive-streams:1.0.0", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "io.monix:monix-execution_2.12:2.3.3", + "org.reactivestreams:reactive-streams:1.0.0" ], "directDependencies": [ "io.monix:monix-execution_2.12:2.3.3", @@ -3654,9 +3648,9 @@ "coord": "io.monix:monix-eval_2.12:jar:sources:2.3.3", "dependencies": [ "io.monix:monix-execution_2.12:jar:sources:2.3.3", - "io.monix:monix-types_2.12:jar:sources:2.3.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", "org.reactivestreams:reactive-streams:jar:sources:1.0.0", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "io.monix:monix-types_2.12:jar:sources:2.3.3" ], "directDependencies": [ "io.monix:monix-execution_2.12:jar:sources:2.3.3", @@ -3675,8 +3669,8 @@ { "coord": "io.monix:monix-execution_2.12:2.3.3", "dependencies": [ - "org.reactivestreams:reactive-streams:1.0.0", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "org.reactivestreams:reactive-streams:1.0.0" ], "directDependencies": [ "org.reactivestreams:reactive-streams:1.0.0", @@ -3694,8 +3688,8 @@ { "coord": "io.monix:monix-execution_2.12:jar:sources:2.3.3", "dependencies": [ - "org.reactivestreams:reactive-streams:jar:sources:1.0.0", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.reactivestreams:reactive-streams:jar:sources:1.0.0" ], "directDependencies": [ "org.reactivestreams:reactive-streams:jar:sources:1.0.0", @@ -3713,18 +3707,18 @@ { "coord": "io.monix:monix-reactive_2.12:2.3.3", "dependencies": [ - "io.monix:monix-eval_2.12:2.3.3", "io.monix:monix-execution_2.12:2.3.3", - "io.monix:monix-types_2.12:2.3.3", "org.jctools:jctools-core:2.0.1", + "io.monix:monix-eval_2.12:2.3.3", "org.reactivestreams:reactive-streams:1.0.0", + "io.monix:monix-types_2.12:2.3.3", "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ - "io.monix:monix-eval_2.12:2.3.3", "io.monix:monix-execution_2.12:2.3.3", - "io.monix:monix-types_2.12:2.3.3", "org.jctools:jctools-core:2.0.1", + "io.monix:monix-eval_2.12:2.3.3", + "io.monix:monix-types_2.12:2.3.3", "org.scala-lang:scala-library:2.13.14" ], "file": "v1/https/repo.maven.apache.org/maven2/io/monix/monix-reactive_2.12/2.3.3/monix-reactive_2.12-2.3.3.jar", @@ -3739,19 +3733,19 @@ { "coord": "io.monix:monix-reactive_2.12:jar:sources:2.3.3", "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", "io.monix:monix-eval_2.12:jar:sources:2.3.3", - "io.monix:monix-execution_2.12:jar:sources:2.3.3", - "io.monix:monix-types_2.12:jar:sources:2.3.3", "org.jctools:jctools-core:jar:sources:2.0.1", "org.reactivestreams:reactive-streams:jar:sources:1.0.0", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "io.monix:monix-execution_2.12:jar:sources:2.3.3", + "io.monix:monix-types_2.12:jar:sources:2.3.3" ], "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", "io.monix:monix-eval_2.12:jar:sources:2.3.3", - "io.monix:monix-execution_2.12:jar:sources:2.3.3", - "io.monix:monix-types_2.12:jar:sources:2.3.3", "org.jctools:jctools-core:jar:sources:2.0.1", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "io.monix:monix-execution_2.12:jar:sources:2.3.3", + "io.monix:monix-types_2.12:jar:sources:2.3.3" ], "file": "v1/https/repo.maven.apache.org/maven2/io/monix/monix-reactive_2.12/2.3.3/monix-reactive_2.12-2.3.3-sources.jar", "mirror_urls": [ @@ -3799,19 +3793,19 @@ { "coord": "io.monix:monix_2.12:2.3.3", "dependencies": [ - "io.monix:monix-eval_2.12:2.3.3", "io.monix:monix-execution_2.12:2.3.3", - "io.monix:monix-reactive_2.12:2.3.3", - "io.monix:monix-types_2.12:2.3.3", "org.jctools:jctools-core:2.0.1", + "io.monix:monix-eval_2.12:2.3.3", "org.reactivestreams:reactive-streams:1.0.0", + "io.monix:monix-types_2.12:2.3.3", + "io.monix:monix-reactive_2.12:2.3.3", "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ - "io.monix:monix-eval_2.12:2.3.3", "io.monix:monix-execution_2.12:2.3.3", - "io.monix:monix-reactive_2.12:2.3.3", + "io.monix:monix-eval_2.12:2.3.3", "io.monix:monix-types_2.12:2.3.3", + "io.monix:monix-reactive_2.12:2.3.3", "org.scala-lang:scala-library:2.13.14" ], "file": "v1/https/repo.maven.apache.org/maven2/io/monix/monix_2.12/2.3.3/monix_2.12-2.3.3.jar", @@ -3826,20 +3820,20 @@ { "coord": "io.monix:monix_2.12:jar:sources:2.3.3", "dependencies": [ - "io.monix:monix-eval_2.12:jar:sources:2.3.3", - "io.monix:monix-execution_2.12:jar:sources:2.3.3", "io.monix:monix-reactive_2.12:jar:sources:2.3.3", - "io.monix:monix-types_2.12:jar:sources:2.3.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "io.monix:monix-eval_2.12:jar:sources:2.3.3", "org.jctools:jctools-core:jar:sources:2.0.1", "org.reactivestreams:reactive-streams:jar:sources:1.0.0", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "io.monix:monix-execution_2.12:jar:sources:2.3.3", + "io.monix:monix-types_2.12:jar:sources:2.3.3" ], "directDependencies": [ + "io.monix:monix-reactive_2.12:jar:sources:2.3.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", "io.monix:monix-eval_2.12:jar:sources:2.3.3", "io.monix:monix-execution_2.12:jar:sources:2.3.3", - "io.monix:monix-reactive_2.12:jar:sources:2.3.3", - "io.monix:monix-types_2.12:jar:sources:2.3.3", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "io.monix:monix-types_2.12:jar:sources:2.3.3" ], "file": "v1/https/repo.maven.apache.org/maven2/io/monix/monix_2.12/2.3.3/monix_2.12-2.3.3-sources.jar", "mirror_urls": [ @@ -3879,16 +3873,16 @@ { "coord": "me.vican.jorge:directory-watcher-better-files_2.12:0.5.2-a1c0e21c", "dependencies": [ - "com.github.pathikrit:better-files_2.12:3.4.0", "com.google.code.findbugs:jsr305:1.3.9", "com.google.errorprone:error_prone_annotations:2.0.18", - "com.google.guava:guava:23.0", - "com.google.j2objc:j2objc-annotations:1.1", - "me.vican.jorge:directory-watcher:0.5.2-a1c0e21c", "net.java.dev.jna:jna:5.14.0", + "org.slf4j:slf4j-api:1.7.25", + "com.github.pathikrit:better-files_2.12:3.4.0", "org.codehaus.mojo:animal-sniffer-annotations:1.14", - "org.scala-lang:scala-library:2.13.14", - "org.slf4j:slf4j-api:1.7.25" + "com.google.j2objc:j2objc-annotations:1.1", + "com.google.guava:guava:23.0", + "me.vican.jorge:directory-watcher:0.5.2-a1c0e21c", + "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ "com.github.pathikrit:better-files_2.12:3.4.0", @@ -3907,16 +3901,16 @@ { "coord": "me.vican.jorge:directory-watcher-better-files_2.12:jar:sources:0.5.2-a1c0e21c", "dependencies": [ - "com.github.pathikrit:better-files_2.12:jar:sources:3.4.0", - "com.google.code.findbugs:jsr305:jar:sources:1.3.9", + "org.slf4j:slf4j-api:jar:sources:1.7.25", + "me.vican.jorge:directory-watcher:jar:sources:0.5.2-a1c0e21c", "com.google.errorprone:error_prone_annotations:jar:sources:2.0.18", + "org.scala-lang:scala-library:jar:sources:2.13.14", "com.google.guava:guava:jar:sources:23.0", + "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.14", + "com.google.code.findbugs:jsr305:jar:sources:1.3.9", "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "me.vican.jorge:directory-watcher:jar:sources:0.5.2-a1c0e21c", "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.slf4j:slf4j-api:jar:sources:1.7.25" + "com.github.pathikrit:better-files_2.12:jar:sources:3.4.0" ], "directDependencies": [ "com.github.pathikrit:better-files_2.12:jar:sources:3.4.0", @@ -3937,11 +3931,11 @@ "dependencies": [ "com.google.code.findbugs:jsr305:1.3.9", "com.google.errorprone:error_prone_annotations:2.0.18", - "com.google.guava:guava:23.0", - "com.google.j2objc:j2objc-annotations:1.1", "net.java.dev.jna:jna:5.14.0", + "org.slf4j:slf4j-api:1.7.25", "org.codehaus.mojo:animal-sniffer-annotations:1.14", - "org.slf4j:slf4j-api:1.7.25" + "com.google.j2objc:j2objc-annotations:1.1", + "com.google.guava:guava:23.0" ], "directDependencies": [ "com.google.guava:guava:23.0", @@ -3960,13 +3954,13 @@ { "coord": "me.vican.jorge:directory-watcher:jar:sources:0.5.2-a1c0e21c", "dependencies": [ - "com.google.code.findbugs:jsr305:jar:sources:1.3.9", + "org.slf4j:slf4j-api:jar:sources:1.7.25", "com.google.errorprone:error_prone_annotations:jar:sources:2.0.18", "com.google.guava:guava:jar:sources:23.0", - "com.google.j2objc:j2objc-annotations:jar:sources:1.1", - "net.java.dev.jna:jna:jar:sources:5.14.0", "org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.14", - "org.slf4j:slf4j-api:jar:sources:1.7.25" + "com.google.code.findbugs:jsr305:jar:sources:1.3.9", + "com.google.j2objc:j2objc-annotations:jar:sources:1.1", + "net.java.dev.jna:jna:jar:sources:5.14.0" ], "directDependencies": [ "com.google.guava:guava:jar:sources:23.0", @@ -4043,30 +4037,30 @@ "url": "https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0-sources.jar" }, { - "coord": "net.openhft:zero-allocation-hashing:0.10.1", + "coord": "net.openhft:zero-allocation-hashing:0.16", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1.jar", + "file": "v1/https/repo.maven.apache.org/maven2/net/openhft/zero-allocation-hashing/0.16/zero-allocation-hashing-0.16.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1.jar", - "https://maven-central.storage-download.googleapis.com/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1.jar" + "https://repo.maven.apache.org/maven2/net/openhft/zero-allocation-hashing/0.16/zero-allocation-hashing-0.16.jar", + "https://maven-central.storage-download.googleapis.com/maven2/net/openhft/zero-allocation-hashing/0.16/zero-allocation-hashing-0.16.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.16/zero-allocation-hashing-0.16.jar" ], - "sha256": "83636838b75e001a061414f6737141e6200d5e21293842a7a08201ada8988d32", - "url": "https://repo.maven.apache.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1.jar" + "sha256": "3bc39c640cc8314575de4ebcb1a0bca540516d3c60d49f8de7d638b09868553d", + "url": "https://repo.maven.apache.org/maven2/net/openhft/zero-allocation-hashing/0.16/zero-allocation-hashing-0.16.jar" }, { - "coord": "net.openhft:zero-allocation-hashing:jar:sources:0.10.1", + "coord": "net.openhft:zero-allocation-hashing:jar:sources:0.16", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/net/openhft/zero-allocation-hashing/0.16/zero-allocation-hashing-0.16-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1-sources.jar" + "https://repo.maven.apache.org/maven2/net/openhft/zero-allocation-hashing/0.16/zero-allocation-hashing-0.16-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/net/openhft/zero-allocation-hashing/0.16/zero-allocation-hashing-0.16-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.16/zero-allocation-hashing-0.16-sources.jar" ], - "sha256": "d402059ea626c31ccd7006bfa1c39ae934b468e6166aa314178e85eebb0481dd", - "url": "https://repo.maven.apache.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1-sources.jar" + "sha256": "4606c9b35ccf0b661b617a0278b42547758c0f15c161bfbeacb2054cd7f57109", + "url": "https://repo.maven.apache.org/maven2/net/openhft/zero-allocation-hashing/0.16/zero-allocation-hashing-0.16-sources.jar" }, { "coord": "net.sourceforge.argparse4j:argparse4j:0.8.1", @@ -4207,30 +4201,30 @@ "url": "https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14-sources.jar" }, { - "coord": "org.fusesource.jansi:jansi:2.1.0", + "coord": "org.fusesource.jansi:jansi:2.4.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0.jar" + "https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar" ], - "sha256": "d207c1114741e7544a8f17c07b53d91689c0716c54eaf8f3b7149e73b0ec1b09", - "url": "https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0.jar" + "sha256": "2e5e775a9dc58ffa6bbd6aa6f099d62f8b62dcdeb4c3c3bbbe5cf2301bc2dcc1", + "url": "https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar" }, { - "coord": "org.fusesource.jansi:jansi:jar:sources:2.1.0", + "coord": "org.fusesource.jansi:jansi:jar:sources:2.4.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0-sources.jar" + "https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1-sources.jar" ], - "sha256": "c5f4a5fb41546f9c7b0dd0d5d8ff6dfa396e8cc11049f64f7a96fe24436c59eb", - "url": "https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0-sources.jar" + "sha256": "f707511567a13ebf8c51164133770eb5a8e023e1d391bfbc6e7a0591c71729b8", + "url": "https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1-sources.jar" }, { "coord": "org.jacoco:org.jacoco.core:0.7.5.201505241946", @@ -4293,106 +4287,144 @@ "url": "https://repo.maven.apache.org/maven2/org/jctools/jctools-core/2.0.1/jctools-core-2.0.1-sources.jar" }, { - "coord": "org.jline:jline-terminal-jansi:3.19.0", + "coord": "org.jline:jline-native:3.24.1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-native/3.24.1/jline-native-3.24.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline-native/3.24.1/jline-native-3.24.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-native/3.24.1/jline-native-3.24.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-native/3.24.1/jline-native-3.24.1.jar" + ], + "sha256": "4337237502d3b647b981b007e14e75d79ec51497f52e9871baf6e2c6c9dfbd17", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-native/3.24.1/jline-native-3.24.1.jar" + }, + { + "coord": "org.jline:jline-native:jar:sources:3.24.1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-native/3.24.1/jline-native-3.24.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline-native/3.24.1/jline-native-3.24.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-native/3.24.1/jline-native-3.24.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-native/3.24.1/jline-native-3.24.1-sources.jar" + ], + "sha256": "32f10b4233f529e9741650f7d652be92d07e8d2278b5af3fc4a19b460fabcc14", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-native/3.24.1/jline-native-3.24.1-sources.jar" + }, + { + "coord": "org.jline:jline-terminal-jansi:3.24.1", "dependencies": [ - "org.fusesource.jansi:jansi:2.1.0", - "org.jline:jline-terminal:3.19.0" + "org.jline:jline-terminal:3.24.1", + "org.jline:jline-native:3.24.1", + "org.fusesource.jansi:jansi:2.4.1" ], "directDependencies": [ - "org.fusesource.jansi:jansi:2.1.0", - "org.jline:jline-terminal:3.19.0" + "org.fusesource.jansi:jansi:2.4.1", + "org.jline:jline-terminal:3.24.1" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal-jansi/3.24.1/jline-terminal-jansi-3.24.1.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0.jar" + "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jansi/3.24.1/jline-terminal-jansi-3.24.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal-jansi/3.24.1/jline-terminal-jansi-3.24.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.24.1/jline-terminal-jansi-3.24.1.jar" ], - "sha256": "09566aa3af952a83e2fc2582865b9afe20ad2c6afcafd78c52ae7eacdeb736c9", - "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0.jar" + "sha256": "1e53923725972413765093aac3cc5eb7d4690eaf758f4067a4972bd59d9e85a5", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jansi/3.24.1/jline-terminal-jansi-3.24.1.jar" }, { - "coord": "org.jline:jline-terminal-jansi:jar:sources:3.19.0", + "coord": "org.jline:jline-terminal-jansi:jar:sources:3.24.1", "dependencies": [ - "org.fusesource.jansi:jansi:jar:sources:2.1.0", - "org.jline:jline-terminal:jar:sources:3.19.0" + "org.fusesource.jansi:jansi:jar:sources:2.4.1", + "org.jline:jline-terminal:jar:sources:3.24.1", + "org.jline:jline-native:jar:sources:3.24.1" ], "directDependencies": [ - "org.fusesource.jansi:jansi:jar:sources:2.1.0", - "org.jline:jline-terminal:jar:sources:3.19.0" + "org.fusesource.jansi:jansi:jar:sources:2.4.1", + "org.jline:jline-terminal:jar:sources:3.24.1" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal-jansi/3.24.1/jline-terminal-jansi-3.24.1-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0-sources.jar" + "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jansi/3.24.1/jline-terminal-jansi-3.24.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal-jansi/3.24.1/jline-terminal-jansi-3.24.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.24.1/jline-terminal-jansi-3.24.1-sources.jar" ], - "sha256": "1c68b6d3c2cbb44e7fd04232ff81d5ea760bdb8005ae0f76a803608a88ddaa26", - "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0-sources.jar" + "sha256": "985de41839e641b005cc07b7a92553129757804df7b0318356a6a3515a2306ca", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jansi/3.24.1/jline-terminal-jansi-3.24.1-sources.jar" }, { - "coord": "org.jline:jline-terminal-jna:3.19.0", + "coord": "org.jline:jline-terminal-jna:3.24.1", "dependencies": [ - "net.java.dev.jna:jna:5.14.0", - "org.jline:jline-terminal:3.19.0" + "org.jline:jline-terminal:3.24.1", + "org.jline:jline-native:3.24.1", + "net.java.dev.jna:jna:5.14.0" ], "directDependencies": [ "net.java.dev.jna:jna:5.14.0", - "org.jline:jline-terminal:3.19.0" + "org.jline:jline-terminal:3.24.1" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.24.1/jline-terminal-jna-3.24.1.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0.jar" + "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.24.1/jline-terminal-jna-3.24.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal-jna/3.24.1/jline-terminal-jna-3.24.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.24.1/jline-terminal-jna-3.24.1.jar" ], - "sha256": "4a86975ba94756eaf70dea642d8d4c32535b65479050b56c476dc8c6b0519331", - "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0.jar" + "sha256": "ec59d38160b0faa720472ff3f168564d22af4d991316ba30bffe2c163ae4040c", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.24.1/jline-terminal-jna-3.24.1.jar" }, { - "coord": "org.jline:jline-terminal-jna:jar:sources:3.19.0", + "coord": "org.jline:jline-terminal-jna:jar:sources:3.24.1", "dependencies": [ - "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.jline:jline-terminal:jar:sources:3.19.0" + "org.jline:jline-terminal:jar:sources:3.24.1", + "org.jline:jline-native:jar:sources:3.24.1", + "net.java.dev.jna:jna:jar:sources:5.14.0" ], "directDependencies": [ "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.jline:jline-terminal:jar:sources:3.19.0" + "org.jline:jline-terminal:jar:sources:3.24.1" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.24.1/jline-terminal-jna-3.24.1-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0-sources.jar" + "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.24.1/jline-terminal-jna-3.24.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal-jna/3.24.1/jline-terminal-jna-3.24.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.24.1/jline-terminal-jna-3.24.1-sources.jar" ], - "sha256": "8bb10c163466591935b8accdf3b1793cc83478a56fa2a767f11810f110c2de30", - "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0-sources.jar" + "sha256": "d83c3350fbd261f6540d9557585cde1d1395b23922173f9898ecb6aefcd054ca", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.24.1/jline-terminal-jna-3.24.1-sources.jar" }, { - "coord": "org.jline:jline-terminal:3.19.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0.jar", + "coord": "org.jline:jline-terminal:3.24.1", + "dependencies": [ + "org.jline:jline-native:3.24.1" + ], + "directDependencies": [ + "org.jline:jline-native:3.24.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal/3.24.1/jline-terminal-3.24.1.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0.jar" + "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.24.1/jline-terminal-3.24.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal/3.24.1/jline-terminal-3.24.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal/3.24.1/jline-terminal-3.24.1.jar" ], - "sha256": "abdbeafa38c4ccd82578c1f3d08ea48af439eff194d23aa3bae18fbe93b4dcf0", - "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0.jar" + "sha256": "d9e32b47e134718eec9adcfaebf838130a163999ced820fc32795d4420f159e2", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.24.1/jline-terminal-3.24.1.jar" }, { - "coord": "org.jline:jline-terminal:jar:sources:3.19.0", - "dependencies": [], - "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0-sources.jar", + "coord": "org.jline:jline-terminal:jar:sources:3.24.1", + "dependencies": [ + "org.jline:jline-native:jar:sources:3.24.1" + ], + "directDependencies": [ + "org.jline:jline-native:jar:sources:3.24.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal/3.24.1/jline-terminal-3.24.1-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0-sources.jar" + "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.24.1/jline-terminal-3.24.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal/3.24.1/jline-terminal-3.24.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal/3.24.1/jline-terminal-3.24.1-sources.jar" ], - "sha256": "249e29e67e300d978491fcfbdbced5c9ecabec8aeaaf36145edfd5e890f34ac6", - "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0-sources.jar" + "sha256": "bd361fd088ec3b0bbbbab3744c73689129278d368949aa6606a5f5a60314ef87", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.24.1/jline-terminal-3.24.1-sources.jar" }, { "coord": "org.jline:jline:3.25.1", @@ -4643,54 +4675,54 @@ "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.13:2.1.0", + "coord": "org.scala-lang.modules:scala-xml_2.13:2.3.0", "dependencies": [ "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.3.0/scala-xml_2.13-2.3.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0.jar" + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.3.0/scala-xml_2.13-2.3.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.13/2.3.0/scala-xml_2.13-2.3.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.3.0/scala-xml_2.13-2.3.0.jar" ], - "sha256": "d122cbf93115ee714570de6a9c18e53001fedb474911d4cb5091758ee51f053a", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0.jar" + "sha256": "4b4d6698c74bff84a105102bbf58390980dc7bb8c40bdea4bc727040b3f966bd", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.3.0/scala-xml_2.13-2.3.0.jar" }, { - "coord": "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.1.0", + "coord": "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.3.0", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.3.0/scala-xml_2.13-2.3.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.3.0/scala-xml_2.13-2.3.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.13/2.3.0/scala-xml_2.13-2.3.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.3.0/scala-xml_2.13-2.3.0-sources.jar" ], - "sha256": "b2f5f01c669f29dc03a8127f7a8ca2cdb40dff3e29ba416e3de4f6bef0480aca", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0-sources.jar" + "sha256": "8701800048e4b4ca7367f30b8e0b55dccd5181c7dd49657a75671ca798f8007f", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.3.0/scala-xml_2.13-2.3.0-sources.jar" }, { "coord": "org.scala-lang:scala-compiler:2.13.14", "dependencies": [ - "io.github.java-diff-utils:java-diff-utils:4.12", + "org.scala-lang:scala-reflect:2.13.14", "net.java.dev.jna:jna:5.14.0", + "io.github.java-diff-utils:java-diff-utils:4.12", "org.jline:jline:3.25.1", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14" + "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ - "io.github.java-diff-utils:java-diff-utils:4.12", + "org.scala-lang:scala-reflect:2.13.14", "net.java.dev.jna:jna:5.14.0", + "io.github.java-diff-utils:java-diff-utils:4.12", "org.jline:jline:3.25.1", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14" + "org.scala-lang:scala-library:2.13.14" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14.jar", "mirror_urls": [ @@ -4704,17 +4736,17 @@ { "coord": "org.scala-lang:scala-compiler:jar:sources:2.13.14", "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", "net.java.dev.jna:jna:jar:sources:5.14.0", "org.jline:jline:jar:sources:3.25.1", - "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", "net.java.dev.jna:jna:jar:sources:5.14.0", "org.jline:jline:jar:sources:3.25.1", - "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14-sources.jar", @@ -4813,229 +4845,229 @@ "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd/ivy-2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd-sources.jar" }, { - "coord": "org.scala-sbt.jline:jline:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", + "coord": "org.scala-sbt.jline:jline:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", "dependencies": [ - "org.fusesource.jansi:jansi:2.1.0" + "org.fusesource.jansi:jansi:2.4.1" ], "directDependencies": [ - "org.fusesource.jansi:jansi:2.1.0" + "org.fusesource.jansi:jansi:2.4.1" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79/jline-2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79/jline-2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79/jline-2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79/jline-2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79.jar" ], - "sha256": "6d725b356cbfc1131ef2ae3c3555fa4952bf273f245b174a45413f03372f7239", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.jar" + "sha256": "40b12ae99b7dc5ae9043f5859ba6e8ecb420afdb7d6ae681243d8448ce5f89f1", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79/jline-2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79.jar" }, { - "coord": "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", + "coord": "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", "dependencies": [ - "org.fusesource.jansi:jansi:jar:sources:2.1.0" + "org.fusesource.jansi:jansi:jar:sources:2.4.1" ], "directDependencies": [ - "org.fusesource.jansi:jansi:jar:sources:2.1.0" + "org.fusesource.jansi:jansi:jar:sources:2.4.1" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79/jline-2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79/jline-2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79/jline-2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79/jline-2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79-sources.jar" ], - "sha256": "e2d0fffa3f8ee802a1bcb043f24f1c9026107d055e58910cefc2ed6dcf567a82", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493-sources.jar" + "sha256": "2986d0ce812334f0cf73a174eaa2198b1c3cb9f37f04232712f5477723d1fbb7", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79/jline-2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79-sources.jar" }, { - "coord": "org.scala-sbt:collections_2.13:1.9.2", + "coord": "org.scala-sbt:collections_2.13:1.10.0", "dependencies": [ - "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", + "org.scala-lang:scala-reflect:2.13.14", + "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", + "org.scala-sbt:util-position_2.13:1.10.0", "com.eed3si9n:sjson-new-core_2.13:0.9.1", - "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", - "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scala-sbt:util-position_2.13:1.9.2" + "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0" ], "directDependencies": [ "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", - "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", "org.scala-lang:scala-library:2.13.14", - "org.scala-sbt:util-position_2.13:1.9.2" + "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", + "org.scala-sbt:util-position_2.13:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/collections_2.13/1.9.2/collections_2.13-1.9.2.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/collections_2.13/1.10.0/collections_2.13-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/collections_2.13/1.9.2/collections_2.13-1.9.2.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/collections_2.13/1.9.2/collections_2.13-1.9.2.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/collections_2.13/1.9.2/collections_2.13-1.9.2.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/collections_2.13/1.10.0/collections_2.13-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/collections_2.13/1.10.0/collections_2.13-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/collections_2.13/1.10.0/collections_2.13-1.10.0.jar" ], - "sha256": "fff72dd495411fcb8a3a83452f47a8971f0c6aa1afddfd954a6c487858dc15b4", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/collections_2.13/1.9.2/collections_2.13-1.9.2.jar" + "sha256": "cd46a99bd4b2a3804eb116fc4685de2fc1c3ed774f0d18fc356ae9474ef71dde", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/collections_2.13/1.10.0/collections_2.13-1.10.0.jar" }, { - "coord": "org.scala-sbt:collections_2.13:jar:sources:1.9.2", + "coord": "org.scala-sbt:collections_2.13:jar:sources:1.10.0", "dependencies": [ - "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", - "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", - "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", + "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt:util-position_2.13:jar:sources:1.9.2" + "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", + "org.scala-sbt:util-position_2.13:jar:sources:1.10.0" ], "directDependencies": [ "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", - "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-sbt:util-position_2.13:jar:sources:1.9.2" + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", + "org.scala-sbt:util-position_2.13:jar:sources:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/collections_2.13/1.9.2/collections_2.13-1.9.2-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/collections_2.13/1.10.0/collections_2.13-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/collections_2.13/1.9.2/collections_2.13-1.9.2-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/collections_2.13/1.9.2/collections_2.13-1.9.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/collections_2.13/1.9.2/collections_2.13-1.9.2-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/collections_2.13/1.10.0/collections_2.13-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/collections_2.13/1.10.0/collections_2.13-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/collections_2.13/1.10.0/collections_2.13-1.10.0-sources.jar" ], - "sha256": "e1920052f99a02f2c7c0c62721aed79ebc4664512b8b46351037a9e741fd70e8", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/collections_2.13/1.9.2/collections_2.13-1.9.2-sources.jar" + "sha256": "609384b481ff6eb67cdc95869b26b32072c3968e603ef68175cbc85a9d532f95", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/collections_2.13/1.10.0/collections_2.13-1.10.0-sources.jar" }, { - "coord": "org.scala-sbt:compiler-bridge_2.13:1.9.3", + "coord": "org.scala-sbt:compiler-bridge_2.13:1.10.0", "dependencies": [ - "org.scala-sbt:compiler-interface:1.9.3", - "org.scala-sbt:util-interface:1.9.2" + "org.scala-sbt:util-interface:1.10.0", + "org.scala-sbt:compiler-interface:1.10.0" ], "directDependencies": [ - "org.scala-sbt:compiler-interface:1.9.3" + "org.scala-sbt:compiler-interface:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.9.3/compiler-bridge_2.13-1.9.3.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.10.0/compiler-bridge_2.13-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.9.3/compiler-bridge_2.13-1.9.3.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-bridge_2.13/1.9.3/compiler-bridge_2.13-1.9.3.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.9.3/compiler-bridge_2.13-1.9.3.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.10.0/compiler-bridge_2.13-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-bridge_2.13/1.10.0/compiler-bridge_2.13-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.10.0/compiler-bridge_2.13-1.10.0.jar" ], - "sha256": "706b9c2dd76437521475506e250317fa6aa22d88bbfc7435a6cfcba45961a8b1", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.9.3/compiler-bridge_2.13-1.9.3.jar" + "sha256": "104a9514abe0cc448f8a81d2e4e29db06f025f8fe4403dcac330aa4d4344d40a", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.10.0/compiler-bridge_2.13-1.10.0.jar" }, { - "coord": "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.9.3", + "coord": "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.10.0", "dependencies": [ - "org.scala-sbt:compiler-interface:jar:sources:1.9.3", - "org.scala-sbt:util-interface:jar:sources:1.9.2" + "org.scala-sbt:util-interface:jar:sources:1.10.0", + "org.scala-sbt:compiler-interface:jar:sources:1.10.0" ], "directDependencies": [ - "org.scala-sbt:compiler-interface:jar:sources:1.9.3" + "org.scala-sbt:compiler-interface:jar:sources:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.9.3/compiler-bridge_2.13-1.9.3-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.10.0/compiler-bridge_2.13-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.9.3/compiler-bridge_2.13-1.9.3-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-bridge_2.13/1.9.3/compiler-bridge_2.13-1.9.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.9.3/compiler-bridge_2.13-1.9.3-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.10.0/compiler-bridge_2.13-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-bridge_2.13/1.10.0/compiler-bridge_2.13-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.10.0/compiler-bridge_2.13-1.10.0-sources.jar" ], - "sha256": "4e7414d70e3567acf78002fa99fc9bf3ef3e68543c481d8a7b292f7bc9d0f542", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.9.3/compiler-bridge_2.13-1.9.3-sources.jar" + "sha256": "5056c879c24c3f35728ac25e904d160c03646da1ed71b5b4d4cb77708d4df414", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.10.0/compiler-bridge_2.13-1.10.0-sources.jar" }, { - "coord": "org.scala-sbt:compiler-interface:1.9.3", + "coord": "org.scala-sbt:compiler-interface:1.10.0", "dependencies": [ - "org.scala-sbt:util-interface:1.9.2" + "org.scala-sbt:util-interface:1.10.0" ], "directDependencies": [ - "org.scala-sbt:util-interface:1.9.2" + "org.scala-sbt:util-interface:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0.jar" ], - "sha256": "fa586b4b1bdb61c48821cf9568507c1e4d57de3763d27ac2214523b00a173115", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar" + "sha256": "333bbae5911442d4de4b6d45a782710b0ffbf82be1b9e73381abcb8c6e684b78", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0.jar" }, { - "coord": "org.scala-sbt:compiler-interface:jar:sources:1.9.3", + "coord": "org.scala-sbt:compiler-interface:jar:sources:1.10.0", "dependencies": [ - "org.scala-sbt:util-interface:jar:sources:1.9.2" + "org.scala-sbt:util-interface:jar:sources:1.10.0" ], "directDependencies": [ - "org.scala-sbt:util-interface:jar:sources:1.9.2" + "org.scala-sbt:util-interface:jar:sources:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0-sources.jar" ], - "sha256": "22200c6be450ea4651088f1d43670d14ee7808aa0c1b07a1ff6bc1104a3d7488", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar" + "sha256": "fe25aa0c8f0170474bcbac671a9f24ca7eab5da3c1a74854d11c81373a163c65", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0-sources.jar" }, { - "coord": "org.scala-sbt:core-macros_2.13:1.9.2", + "coord": "org.scala-sbt:core-macros_2.13:1.10.0", "dependencies": [ - "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", - "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.13:0.9.1", + "org.scala-lang:scala-reflect:2.13.14", + "org.scala-sbt:collections_2.13:1.10.0", "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", - "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", + "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", "org.scala-lang:scala-compiler:2.13.14", + "org.scala-sbt:util-position_2.13:1.10.0", + "com.eed3si9n:sjson-new-core_2.13:0.9.1", "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scala-sbt:collections_2.13:1.9.2", - "org.scala-sbt:util-position_2.13:1.9.2" + "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0" ], "directDependencies": [ "org.scala-lang:scala-compiler:2.13.14", "org.scala-lang:scala-library:2.13.14", - "org.scala-sbt:collections_2.13:1.9.2" + "org.scala-sbt:collections_2.13:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/core-macros_2.13/1.9.2/core-macros_2.13-1.9.2.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/core-macros_2.13/1.10.0/core-macros_2.13-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/core-macros_2.13/1.9.2/core-macros_2.13-1.9.2.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/core-macros_2.13/1.9.2/core-macros_2.13-1.9.2.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.13/1.9.2/core-macros_2.13-1.9.2.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/core-macros_2.13/1.10.0/core-macros_2.13-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/core-macros_2.13/1.10.0/core-macros_2.13-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.13/1.10.0/core-macros_2.13-1.10.0.jar" ], - "sha256": "1de3a6b6b7bb51b7c576c4d3cadd000d91ec871c16532dac57a1812800f4e1e3", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/core-macros_2.13/1.9.2/core-macros_2.13-1.9.2.jar" + "sha256": "fb041b6950843bc6156b5c18a7b82860c0c23d93ae88729c36d184abab0672f1", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/core-macros_2.13/1.10.0/core-macros_2.13-1.10.0.jar" }, { - "coord": "org.scala-sbt:core-macros_2.13:jar:sources:1.9.2", + "coord": "org.scala-sbt:core-macros_2.13:jar:sources:1.10.0", "dependencies": [ - "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", - "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", - "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", + "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt:collections_2.13:jar:sources:1.9.2", - "org.scala-sbt:util-position_2.13:jar:sources:1.9.2" + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", + "org.scala-sbt:util-position_2.13:jar:sources:1.10.0", + "org.scala-sbt:collections_2.13:jar:sources:1.10.0" ], "directDependencies": [ "org.scala-lang:scala-compiler:jar:sources:2.13.14", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-sbt:collections_2.13:jar:sources:1.9.2" + "org.scala-sbt:collections_2.13:jar:sources:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/core-macros_2.13/1.9.2/core-macros_2.13-1.9.2-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/core-macros_2.13/1.10.0/core-macros_2.13-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/core-macros_2.13/1.9.2/core-macros_2.13-1.9.2-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/core-macros_2.13/1.9.2/core-macros_2.13-1.9.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.13/1.9.2/core-macros_2.13-1.9.2-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/core-macros_2.13/1.10.0/core-macros_2.13-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/core-macros_2.13/1.10.0/core-macros_2.13-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.13/1.10.0/core-macros_2.13-1.10.0-sources.jar" ], - "sha256": "6041b933faf51796d06a44b7b77a5511d526b974117b4037c30917070d1d6207", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/core-macros_2.13/1.9.2/core-macros_2.13-1.9.2-sources.jar" + "sha256": "400909352a1124b742a19a699fb98c0ce50a80ffb5aeefe5173b3d212faa3218", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/core-macros_2.13/1.10.0/core-macros_2.13-1.10.0-sources.jar" }, { "coord": "org.scala-sbt:io_2.12:1.1.4", "dependencies": [ - "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-lang:scala-library:2.13.14", "net.java.dev.jna:jna:5.14.0", - "org.scala-lang:scala-library:2.13.14" + "net.java.dev.jna:jna-platform:5.13.0" ], "directDependencies": [ - "net.java.dev.jna:jna-platform:5.13.0", "net.java.dev.jna:jna:5.14.0", + "net.java.dev.jna:jna-platform:5.13.0", "org.scala-lang:scala-library:2.13.14" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/io_2.12/1.1.4/io_2.12-1.1.4.jar", @@ -5050,13 +5082,13 @@ { "coord": "org.scala-sbt:io_2.12:jar:sources:1.1.4", "dependencies": [ - "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "net.java.dev.jna:jna-platform:jar:sources:5.13.0" ], "directDependencies": [ - "net.java.dev.jna:jna-platform:jar:sources:5.13.0", "net.java.dev.jna:jna:jar:sources:5.14.0", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", "org.scala-lang:scala-library:jar:sources:2.13.14" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/io_2.12/1.1.4/io_2.12-1.1.4-sources.jar", @@ -5069,50 +5101,50 @@ "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/io_2.12/1.1.4/io_2.12-1.1.4-sources.jar" }, { - "coord": "org.scala-sbt:io_2.13:1.9.1", + "coord": "org.scala-sbt:io_2.13:1.10.0", "dependencies": [ - "com.swoval:file-tree-views:2.1.10", - "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-lang:scala-library:2.13.14", + "com.swoval:file-tree-views:2.1.12", "net.java.dev.jna:jna:5.14.0", - "org.scala-lang:scala-library:2.13.14" + "net.java.dev.jna:jna-platform:5.13.0" ], "directDependencies": [ - "com.swoval:file-tree-views:2.1.10", - "net.java.dev.jna:jna-platform:5.13.0", + "com.swoval:file-tree-views:2.1.12", "net.java.dev.jna:jna:5.14.0", + "net.java.dev.jna:jna-platform:5.13.0", "org.scala-lang:scala-library:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/io_2.13/1.9.1/io_2.13-1.9.1.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/io_2.13/1.10.0/io_2.13-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/io_2.13/1.9.1/io_2.13-1.9.1.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/io_2.13/1.9.1/io_2.13-1.9.1.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/io_2.13/1.9.1/io_2.13-1.9.1.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/io_2.13/1.10.0/io_2.13-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/io_2.13/1.10.0/io_2.13-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/io_2.13/1.10.0/io_2.13-1.10.0.jar" ], - "sha256": "e3df340735a8fac686355bddf0175deb2819a7f79776f2c82d322e236b3389e8", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/io_2.13/1.9.1/io_2.13-1.9.1.jar" + "sha256": "1bf7adeb86285466824a2dd4aadb44035ea0c3401dbbaf71af4229129de06764", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/io_2.13/1.10.0/io_2.13-1.10.0.jar" }, { - "coord": "org.scala-sbt:io_2.13:jar:sources:1.9.1", + "coord": "org.scala-sbt:io_2.13:jar:sources:1.10.0", "dependencies": [ - "com.swoval:file-tree-views:jar:sources:2.1.10", - "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "com.swoval:file-tree-views:jar:sources:2.1.12", + "org.scala-lang:scala-library:jar:sources:2.13.14", "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "net.java.dev.jna:jna-platform:jar:sources:5.13.0" ], "directDependencies": [ - "com.swoval:file-tree-views:jar:sources:2.1.10", - "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "com.swoval:file-tree-views:jar:sources:2.1.12", "net.java.dev.jna:jna:jar:sources:5.14.0", + "net.java.dev.jna:jna-platform:jar:sources:5.13.0", "org.scala-lang:scala-library:jar:sources:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/io_2.13/1.9.1/io_2.13-1.9.1-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/io_2.13/1.10.0/io_2.13-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/io_2.13/1.9.1/io_2.13-1.9.1-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/io_2.13/1.9.1/io_2.13-1.9.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/io_2.13/1.9.1/io_2.13-1.9.1-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/io_2.13/1.10.0/io_2.13-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/io_2.13/1.10.0/io_2.13-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/io_2.13/1.10.0/io_2.13-1.10.0-sources.jar" ], - "sha256": "7d418af86861c74a0225f667e0aa6a2dbc577a5577da42a7329017b91e311d00", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/io_2.13/1.9.1/io_2.13-1.9.1-sources.jar" + "sha256": "3a978b4f436c9d88ebd8ea07b688ac26cf79abfebcb94d87c71bdb933851c809", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/io_2.13/1.10.0/io_2.13-1.10.0-sources.jar" }, { "coord": "org.scala-sbt:launcher-interface:1.4.2", @@ -5143,51 +5175,51 @@ { "coord": "org.scala-sbt:librarymanagement-core_2.12:1.1.4", "dependencies": [ - "com.eed3si9n:gigahorse-core_2.12:0.3.0", - "com.eed3si9n:gigahorse-okhttp_2.12:0.3.0", - "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.12:0.8.2", - "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", - "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", - "com.jcraft:jsch:0.1.54", + "org.spire-math:jawn-parser_2.12:0.11.1", + "org.scala-lang:scala-reflect:2.13.14", "com.lmax:disruptor:3.4.2", + "org.scala-sbt:util-interface:1.10.0", "com.squareup.okhttp3:okhttp-urlconnection:3.7.0", - "com.squareup.okhttp3:okhttp:3.7.0", + "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", + "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", + "com.jcraft:jsch:0.1.54", + "org.scala-sbt:util-logging_2.12:1.1.3", + "jline:jline:2.14.4", + "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", + "com.eed3si9n:gigahorse-okhttp_2.12:0.3.0", + "org.scala-sbt:util-position_2.12:1.1.3", + "org.slf4j:slf4j-api:1.7.25", + "org.reactivestreams:reactive-streams:1.0.0", "com.squareup.okio:okio:1.12.0", "com.typesafe:config:1.2.0", - "com.typesafe:ssl-config-core_2.12:0.2.2", - "jline:jline:2.14.4", "org.apache.logging.log4j:log4j-api:2.17.1", - "org.apache.logging.log4j:log4j-core:2.17.1", - "org.reactivestreams:reactive-streams:1.0.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", - "org.scala-lang.modules:scala-xml_2.12:1.0.6", + "com.eed3si9n:gigahorse-core_2.12:0.3.0", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", "org.scala-lang:scala-compiler:2.13.14", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scala-sbt:io_2.12:1.1.4", - "org.scala-sbt:launcher-interface:1.4.2", "org.scala-sbt:util-cache_2.12:1.1.3", - "org.scala-sbt:util-interface:1.9.2", - "org.scala-sbt:util-logging_2.12:1.1.3", - "org.scala-sbt:util-position_2.12:1.1.3", - "org.slf4j:slf4j-api:1.7.25", - "org.spire-math:jawn-parser_2.12:0.11.1" + "org.scala-sbt:launcher-interface:1.4.2", + "com.squareup.okhttp3:okhttp:3.7.0", + "org.scala-lang:scala-library:2.13.14", + "com.typesafe:ssl-config-core_2.12:0.2.2", + "org.apache.logging.log4j:log4j-core:2.17.1", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "org.scala-lang.modules:scala-xml_2.12:1.0.6", + "org.scala-sbt:io_2.12:1.1.4" ], "directDependencies": [ + "org.scala-lang:scala-reflect:2.13.14", + "com.squareup.okhttp3:okhttp-urlconnection:3.7.0", + "com.jcraft:jsch:0.1.54", + "org.scala-sbt:util-logging_2.12:1.1.3", "com.eed3si9n:gigahorse-okhttp_2.12:0.3.0", + "org.scala-sbt:util-position_2.12:1.1.3", "com.eed3si9n:sjson-new-core_2.12:0.8.2", - "com.jcraft:jsch:0.1.54", - "com.squareup.okhttp3:okhttp-urlconnection:3.7.0", - "org.scala-lang.modules:scala-xml_2.12:1.0.6", "org.scala-lang:scala-compiler:2.13.14", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scala-sbt:io_2.12:1.1.4", - "org.scala-sbt:launcher-interface:1.4.2", "org.scala-sbt:util-cache_2.12:1.1.3", - "org.scala-sbt:util-logging_2.12:1.1.3", - "org.scala-sbt:util-position_2.12:1.1.3" + "org.scala-sbt:launcher-interface:1.4.2", + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-xml_2.12:1.0.6", + "org.scala-sbt:io_2.12:1.1.4" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.1.4/librarymanagement-core_2.12-1.1.4.jar", "mirror_urls": [ @@ -5201,51 +5233,51 @@ { "coord": "org.scala-sbt:librarymanagement-core_2.12:jar:sources:1.1.4", "dependencies": [ - "com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0", + "com.typesafe:config:jar:sources:1.2.0", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.slf4j:slf4j-api:jar:sources:1.7.25", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:util-position_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", "com.eed3si9n:gigahorse-okhttp_2.12:jar:sources:0.3.0", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", - "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2", - "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "org.scala-sbt:util-interface:jar:sources:1.10.0", "com.jcraft:jsch:jar:sources:0.1.54", - "com.lmax:disruptor:jar:sources:3.4.2", + "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", "com.squareup.okhttp3:okhttp-urlconnection:jar:sources:3.7.0", - "com.squareup.okhttp3:okhttp:jar:sources:3.7.0", - "com.squareup.okio:okio:jar:sources:1.12.0", - "com.typesafe:config:jar:sources:1.2.0", - "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", + "com.lmax:disruptor:jar:sources:3.4.2", "jline:jline:jar:sources:2.14.4", - "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", - "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", - "org.reactivestreams:reactive-streams:jar:sources:1.0.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "com.squareup.okio:okio:jar:sources:1.12.0", + "com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "com.squareup.okhttp3:okhttp:jar:sources:3.7.0", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2", "org.scala-sbt:util-cache_2.12:jar:sources:1.1.3", - "org.scala-sbt:util-interface:jar:sources:1.9.2", - "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", - "org.scala-sbt:util-position_2.12:jar:sources:1.1.3", - "org.slf4j:slf4j-api:jar:sources:1.7.25", - "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.reactivestreams:reactive-streams:jar:sources:1.0.0", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1" ], "directDependencies": [ + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:util-position_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", "com.eed3si9n:gigahorse-okhttp_2.12:jar:sources:0.3.0", - "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", "com.jcraft:jsch:jar:sources:0.1.54", "com.squareup.okhttp3:okhttp-urlconnection:jar:sources:3.7.0", "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt:io_2.12:jar:sources:1.1.4", "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", "org.scala-sbt:util-cache_2.12:jar:sources:1.1.3", - "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", - "org.scala-sbt:util-position_2.12:jar:sources:1.1.3" + "org.scala-lang:scala-compiler:jar:sources:2.13.14" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.1.4/librarymanagement-core_2.12-1.1.4-sources.jar", "mirror_urls": [ @@ -5259,37 +5291,37 @@ { "coord": "org.scala-sbt:librarymanagement-ivy_2.12:1.0.0", "dependencies": [ - "com.eed3si9n:gigahorse-core_2.12:0.3.0", - "com.eed3si9n:gigahorse-okhttp_2.12:0.3.0", - "com.eed3si9n:sjson-new-core_2.12:0.8.2", + "org.scala-lang:scala-reflect:2.13.14", + "com.squareup.okhttp3:okhttp-urlconnection:3.7.0", "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", - "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", "com.jcraft:jsch:0.1.54", - "com.squareup.okhttp3:okhttp-urlconnection:3.7.0", - "com.squareup.okhttp3:okhttp:3.7.0", + "org.scala-sbt:util-logging_2.12:1.1.3", + "com.eed3si9n:gigahorse-okhttp_2.12:0.3.0", + "org.scala-sbt:util-position_2.12:1.1.3", + "org.slf4j:slf4j-api:1.7.25", + "org.reactivestreams:reactive-streams:1.0.0", + "org.scala-sbt:librarymanagement-core_2.12:1.1.4", "com.squareup.okio:okio:1.12.0", "com.typesafe:config:1.2.0", - "com.typesafe:ssl-config-core_2.12:0.2.2", - "org.reactivestreams:reactive-streams:1.0.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:1.0.5", - "org.scala-lang.modules:scala-xml_2.12:1.0.6", + "com.eed3si9n:gigahorse-core_2.12:0.3.0", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", "org.scala-lang:scala-compiler:2.13.14", + "org.scala-sbt:util-cache_2.12:1.1.3", + "org.scala-sbt:launcher-interface:1.4.2", + "com.squareup.okhttp3:okhttp:3.7.0", "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scala-sbt.ivy:ivy:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd", + "com.typesafe:ssl-config-core_2.12:0.2.2", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "org.scala-lang.modules:scala-xml_2.12:1.0.6", "org.scala-sbt:io_2.12:1.1.4", - "org.scala-sbt:launcher-interface:1.4.2", - "org.scala-sbt:librarymanagement-core_2.12:1.1.4", - "org.scala-sbt:util-cache_2.12:1.1.3", - "org.scala-sbt:util-logging_2.12:1.1.3", - "org.scala-sbt:util-position_2.12:1.1.3", - "org.slf4j:slf4j-api:1.7.25" + "org.scala-sbt.ivy:ivy:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd" ], "directDependencies": [ "com.eed3si9n:sjson-new-core_2.12:0.8.2", "org.scala-lang:scala-library:2.13.14", - "org.scala-sbt.ivy:ivy:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd", - "org.scala-sbt:librarymanagement-core_2.12:1.1.4" + "org.scala-sbt:librarymanagement-core_2.12:1.1.4", + "org.scala-sbt.ivy:ivy:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.0.0/librarymanagement-ivy_2.12-1.0.0.jar", "mirror_urls": [ @@ -5303,37 +5335,37 @@ { "coord": "org.scala-sbt:librarymanagement-ivy_2.12:jar:sources:1.0.0", "dependencies": [ - "com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0", + "com.typesafe:config:jar:sources:1.2.0", + "org.slf4j:slf4j-api:jar:sources:1.7.25", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-sbt:util-position_2.12:jar:sources:1.1.3", + "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", "com.eed3si9n:gigahorse-okhttp_2.12:jar:sources:0.3.0", - "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", - "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2", - "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "org.scala-sbt:librarymanagement-core_2.12:jar:sources:1.1.4", "com.jcraft:jsch:jar:sources:0.1.54", + "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", "com.squareup.okhttp3:okhttp-urlconnection:jar:sources:3.7.0", - "com.squareup.okhttp3:okhttp:jar:sources:3.7.0", - "com.squareup.okio:okio:jar:sources:1.12.0", - "com.typesafe:config:jar:sources:1.2.0", - "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", - "org.reactivestreams:reactive-streams:jar:sources:1.0.0", - "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "com.squareup.okio:okio:jar:sources:1.12.0", "org.scala-sbt.ivy:ivy:jar:sources:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd", - "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0", + "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.0.5", "org.scala-sbt:launcher-interface:jar:sources:1.4.2", - "org.scala-sbt:librarymanagement-core_2.12:jar:sources:1.1.4", + "com.squareup.okhttp3:okhttp:jar:sources:3.7.0", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2", "org.scala-sbt:util-cache_2.12:jar:sources:1.1.3", - "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", - "org.scala-sbt:util-position_2.12:jar:sources:1.1.3", - "org.slf4j:slf4j-api:jar:sources:1.7.25" + "com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.reactivestreams:reactive-streams:jar:sources:1.0.0" ], "directDependencies": [ "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-sbt.ivy:ivy:jar:sources:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd", - "org.scala-sbt:librarymanagement-core_2.12:jar:sources:1.1.4" + "org.scala-sbt:librarymanagement-core_2.12:jar:sources:1.1.4", + "org.scala-sbt.ivy:ivy:jar:sources:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.0.0/librarymanagement-ivy_2.12-1.0.0-sources.jar", "mirror_urls": [ @@ -5347,12 +5379,12 @@ { "coord": "org.scala-sbt:sbinary_2.12:0.4.4", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.0.6", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-xml_2.12:1.0.6" ], "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.0.6", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-xml_2.12:1.0.6" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/sbinary_2.12/0.4.4/sbinary_2.12-0.4.4.jar", "mirror_urls": [ @@ -5370,8 +5402,8 @@ "org.scala-lang:scala-library:jar:sources:2.13.14" ], "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/sbinary_2.12/0.4.4/sbinary_2.12-0.4.4-sources.jar", "mirror_urls": [ @@ -5485,20 +5517,20 @@ { "coord": "org.scala-sbt:util-cache_2.12:1.1.3", "dependencies": [ + "org.spire-math:jawn-parser_2.12:0.11.1", + "org.scala-lang:scala-reflect:2.13.14", + "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", "com.eed3si9n:sjson-new-core_2.12:0.8.2", - "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", - "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scala-sbt:io_2.12:1.1.4", - "org.spire-math:jawn-parser_2.12:0.11.1" + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "org.scala-sbt:io_2.12:1.1.4" ], "directDependencies": [ + "org.scala-lang:scala-reflect:2.13.14", "com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2", - "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", "org.scala-sbt:io_2.12:1.1.4" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-cache_2.12/1.1.3/util-cache_2.12-1.1.3.jar", @@ -5513,21 +5545,21 @@ { "coord": "org.scala-sbt:util-cache_2.12:jar:sources:1.1.3", "dependencies": [ + "org.scala-sbt:io_2.12:jar:sources:1.1.4", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", - "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2", "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", - "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt:io_2.12:jar:sources:1.1.4", - "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2" ], "directDependencies": [ - "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2", - "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", + "org.scala-sbt:io_2.12:jar:sources:1.1.4", "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt:io_2.12:jar:sources:1.1.4" + "com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-cache_2.12/1.1.3/util-cache_2.12-1.1.3-sources.jar", "mirror_urls": [ @@ -5573,90 +5605,90 @@ "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.12/1.1.3/util-control_2.12-1.1.3-sources.jar" }, { - "coord": "org.scala-sbt:util-control_2.13:1.9.2", + "coord": "org.scala-sbt:util-control_2.13:1.10.0", "dependencies": [ "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.13/1.9.2/util-control_2.13-1.9.2.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.13/1.10.0/util-control_2.13-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.13/1.9.2/util-control_2.13-1.9.2.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-control_2.13/1.9.2/util-control_2.13-1.9.2.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-control_2.13/1.9.2/util-control_2.13-1.9.2.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.13/1.10.0/util-control_2.13-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-control_2.13/1.10.0/util-control_2.13-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-control_2.13/1.10.0/util-control_2.13-1.10.0.jar" ], - "sha256": "d435d93a26c7024944299d0e263181a4de19220f7bbd850844a5e7f849119321", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.13/1.9.2/util-control_2.13-1.9.2.jar" + "sha256": "1c2c0ca02c9f3d2d3ae57d500fe01ec9cbccd8b1b27f3a4cfddb1f75a8a9cfb2", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.13/1.10.0/util-control_2.13-1.10.0.jar" }, { - "coord": "org.scala-sbt:util-control_2.13:jar:sources:1.9.2", + "coord": "org.scala-sbt:util-control_2.13:jar:sources:1.10.0", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.13/1.9.2/util-control_2.13-1.9.2-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.13/1.10.0/util-control_2.13-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.13/1.9.2/util-control_2.13-1.9.2-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-control_2.13/1.9.2/util-control_2.13-1.9.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-control_2.13/1.9.2/util-control_2.13-1.9.2-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.13/1.10.0/util-control_2.13-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-control_2.13/1.10.0/util-control_2.13-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-control_2.13/1.10.0/util-control_2.13-1.10.0-sources.jar" ], - "sha256": "ae2fa7ad077142e5b31af61756957d5483934e5c59b8e714e7a7c84cec4d34ec", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.13/1.9.2/util-control_2.13-1.9.2-sources.jar" + "sha256": "7b0f7831b16aca4cb7633decbd1dd3a00d29d463d60a3109e67de928e3812aa3", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-control_2.13/1.10.0/util-control_2.13-1.10.0-sources.jar" }, { - "coord": "org.scala-sbt:util-interface:1.9.2", + "coord": "org.scala-sbt:util-interface:1.10.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0.jar" ], - "sha256": "cbf6c0db09223e4c6c41afc4c5d831c47e3564e83361df4ba3cb04e439f83675", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar" + "sha256": "30da2055573b80b88b39c934270fd610bc235782d0a0135bc3782623d6766567", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0.jar" }, { - "coord": "org.scala-sbt:util-interface:jar:sources:1.9.2", + "coord": "org.scala-sbt:util-interface:jar:sources:1.10.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0-sources.jar" ], - "sha256": "bed4331c842f3c8b1c198ec25ead990fd064e1a0672ae2856aafc2a7593ec1fe", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar" + "sha256": "bacdd15e1ea8e913829cd063cad0d333b696f5a4f53625f601ee9b91ab8a5330", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0-sources.jar" }, { "coord": "org.scala-sbt:util-logging_2.12:1.1.3", "dependencies": [ - "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.12:0.8.2", - "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "org.spire-math:jawn-parser_2.12:0.11.1", + "org.scala-lang:scala-reflect:2.13.14", "com.lmax:disruptor:3.4.2", + "org.scala-sbt:util-interface:1.10.0", "jline:jline:2.14.4", + "com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4", "org.apache.logging.log4j:log4j-api:2.17.1", - "org.apache.logging.log4j:log4j-core:2.17.1", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scala-sbt:util-interface:1.9.2", - "org.spire-math:jawn-parser_2.12:0.11.1" + "org.apache.logging.log4j:log4j-core:2.17.1", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2" ], "directDependencies": [ - "com.eed3si9n:sjson-new-core_2.12:0.8.2", - "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2", + "org.scala-lang:scala-reflect:2.13.14", "com.lmax:disruptor:3.4.2", + "org.scala-sbt:util-interface:1.10.0", "jline:jline:2.14.4", "org.apache.logging.log4j:log4j-api:2.17.1", - "org.apache.logging.log4j:log4j-core:2.17.1", + "com.eed3si9n:sjson-new-core_2.12:0.8.2", "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scala-sbt:util-interface:1.9.2" + "org.apache.logging.log4j:log4j-core:2.17.1", + "com.eed3si9n:sjson-new-scalajson_2.12:0.8.2" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.12/1.1.3/util-logging_2.12-1.1.3.jar", "mirror_urls": [ @@ -5670,28 +5702,28 @@ { "coord": "org.scala-sbt:util-logging_2.12:jar:sources:1.1.3", "dependencies": [ + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1", "com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "org.scala-sbt:util-interface:jar:sources:1.10.0", "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", "com.lmax:disruptor:jar:sources:3.4.2", "jline:jline:jar:sources:2.14.4", - "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", - "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", - "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt:util-interface:jar:sources:1.9.2", - "org.spire-math:jawn-parser_2.12:jar:sources:0.11.1" + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1" ], "directDependencies": [ - "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:util-interface:jar:sources:1.10.0", "com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.2", "com.lmax:disruptor:jar:sources:3.4.2", "jline:jline:jar:sources:2.14.4", - "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", - "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", - "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.2", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt:util-interface:jar:sources:1.9.2" + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.12/1.1.3/util-logging_2.12-1.1.3-sources.jar", "mirror_urls": [ @@ -5703,112 +5735,114 @@ "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.12/1.1.3/util-logging_2.12-1.1.3-sources.jar" }, { - "coord": "org.scala-sbt:util-logging_2.13:1.9.2", - "dependencies": [ - "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", - "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.13:0.9.1", - "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "coord": "org.scala-sbt:util-logging_2.13:1.10.0", + "dependencies": [ + "org.scala-lang:scala-reflect:2.13.14", "com.lmax:disruptor:3.4.2", - "com.swoval:file-tree-views:2.1.10", - "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt:util-interface:1.10.0", + "org.jline:jline-terminal:3.24.1", + "org.fusesource.jansi:jansi:2.4.1", "net.java.dev.jna:jna:5.14.0", + "com.swoval:file-tree-views:2.1.12", + "org.scala-sbt:core-macros_2.13:1.10.0", + "org.jline:jline-terminal-jansi:3.24.1", + "org.scala-sbt:collections_2.13:1.10.0", "org.apache.logging.log4j:log4j-api:2.17.1", - "org.apache.logging.log4j:log4j-core:2.17.1", - "org.fusesource.jansi:jansi:2.1.0", - "org.jline:jline-terminal-jansi:3.19.0", - "org.jline:jline-terminal-jna:3.19.0", - "org.jline:jline-terminal:3.19.0", - "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", + "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", + "org.jline:jline-native:3.24.1", "org.scala-lang:scala-compiler:2.13.14", + "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt.jline:jline:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", + "org.scala-sbt:util-position_2.13:1.10.0", + "com.eed3si9n:sjson-new-core_2.13:0.9.1", "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scala-sbt.jline:jline:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", - "org.scala-sbt:collections_2.13:1.9.2", - "org.scala-sbt:core-macros_2.13:1.9.2", - "org.scala-sbt:io_2.13:1.9.1", - "org.scala-sbt:util-interface:1.9.2", - "org.scala-sbt:util-position_2.13:1.9.2" + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.scala-sbt:io_2.13:1.10.0", + "org.jline:jline-terminal-jna:3.24.1", + "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0" ], "directDependencies": [ - "com.eed3si9n:sjson-new-core_2.13:0.9.1", - "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "org.scala-lang:scala-reflect:2.13.14", "com.lmax:disruptor:3.4.2", + "org.scala-sbt:util-interface:1.10.0", + "org.jline:jline-terminal:3.24.1", + "org.scala-sbt:core-macros_2.13:1.10.0", + "org.jline:jline-terminal-jansi:3.24.1", + "org.scala-sbt:collections_2.13:1.10.0", "org.apache.logging.log4j:log4j-api:2.17.1", - "org.apache.logging.log4j:log4j-core:2.17.1", - "org.jline:jline-terminal-jansi:3.19.0", - "org.jline:jline-terminal-jna:3.19.0", - "org.jline:jline-terminal:3.19.0", + "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "org.scala-sbt.jline:jline:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", + "com.eed3si9n:sjson-new-core_2.13:0.9.1", "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scala-sbt.jline:jline:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", - "org.scala-sbt:collections_2.13:1.9.2", - "org.scala-sbt:core-macros_2.13:1.9.2", - "org.scala-sbt:io_2.13:1.9.1", - "org.scala-sbt:util-interface:1.9.2" + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.scala-sbt:io_2.13:1.10.0", + "org.jline:jline-terminal-jna:3.24.1" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.13/1.9.2/util-logging_2.13-1.9.2.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.13/1.10.0/util-logging_2.13-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.13/1.9.2/util-logging_2.13-1.9.2.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-logging_2.13/1.9.2/util-logging_2.13-1.9.2.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.13/1.9.2/util-logging_2.13-1.9.2.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.13/1.10.0/util-logging_2.13-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-logging_2.13/1.10.0/util-logging_2.13-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.13/1.10.0/util-logging_2.13-1.10.0.jar" ], - "sha256": "8f798079c7aed6d9f282493a75b6b1e82c48834f1d03b58d5fc82c2d59ca83a3", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.13/1.9.2/util-logging_2.13-1.9.2.jar" + "sha256": "5cde6b3258b60c7afc56826c3704eb82b4b38a4fb0aa1d1674463bfac290680a", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.13/1.10.0/util-logging_2.13-1.10.0.jar" }, { - "coord": "org.scala-sbt:util-logging_2.13:jar:sources:1.9.2", + "coord": "org.scala-sbt:util-logging_2.13:jar:sources:1.10.0", "dependencies": [ - "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", - "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", - "com.lmax:disruptor:jar:sources:3.4.2", - "com.swoval:file-tree-views:jar:sources:2.1.10", + "org.scala-sbt:io_2.13:jar:sources:1.10.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", + "org.jline:jline-native:jar:sources:3.24.1", + "org.scala-sbt:util-interface:jar:sources:1.10.0", + "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", + "com.lmax:disruptor:jar:sources:3.4.2", "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", - "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", - "org.fusesource.jansi:jansi:jar:sources:2.1.0", - "org.jline:jline-terminal-jansi:jar:sources:3.19.0", - "org.jline:jline-terminal-jna:jar:sources:3.19.0", - "org.jline:jline-terminal:jar:sources:3.19.0", - "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.jline:jline-terminal-jna:jar:sources:3.24.1", + "org.jline:jline-terminal-jansi:jar:sources:3.24.1", + "org.jline:jline-terminal:jar:sources:3.24.1", + "com.swoval:file-tree-views:jar:sources:2.1.12", + "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", - "org.scala-sbt:collections_2.13:jar:sources:1.9.2", - "org.scala-sbt:core-macros_2.13:jar:sources:1.9.2", - "org.scala-sbt:io_2.13:jar:sources:1.9.1", - "org.scala-sbt:util-interface:jar:sources:1.9.2", - "org.scala-sbt:util-position_2.13:jar:sources:1.9.2" + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-sbt:core-macros_2.13:jar:sources:1.10.0", + "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "org.fusesource.jansi:jansi:jar:sources:2.4.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.scala-sbt:util-position_2.13:jar:sources:1.10.0", + "org.scala-sbt:collections_2.13:jar:sources:1.10.0" ], "directDependencies": [ - "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", - "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", - "com.lmax:disruptor:jar:sources:3.4.2", "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", - "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", - "org.jline:jline-terminal-jansi:jar:sources:3.19.0", - "org.jline:jline-terminal-jna:jar:sources:3.19.0", - "org.jline:jline-terminal:jar:sources:3.19.0", + "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", + "org.scala-sbt:io_2.13:jar:sources:1.10.0", "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:util-interface:jar:sources:1.10.0", + "com.lmax:disruptor:jar:sources:3.4.2", + "org.jline:jline-terminal-jna:jar:sources:3.24.1", + "org.jline:jline-terminal-jansi:jar:sources:3.24.1", + "org.jline:jline-terminal:jar:sources:3.24.1", + "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", - "org.scala-sbt:collections_2.13:jar:sources:1.9.2", - "org.scala-sbt:core-macros_2.13:jar:sources:1.9.2", - "org.scala-sbt:io_2.13:jar:sources:1.9.1", - "org.scala-sbt:util-interface:jar:sources:1.9.2" + "org.scala-sbt:core-macros_2.13:jar:sources:1.10.0", + "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.scala-sbt:collections_2.13:jar:sources:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.13/1.9.2/util-logging_2.13-1.9.2-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.13/1.10.0/util-logging_2.13-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.13/1.9.2/util-logging_2.13-1.9.2-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-logging_2.13/1.9.2/util-logging_2.13-1.9.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.13/1.9.2/util-logging_2.13-1.9.2-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.13/1.10.0/util-logging_2.13-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-logging_2.13/1.10.0/util-logging_2.13-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.13/1.10.0/util-logging_2.13-1.10.0-sources.jar" ], - "sha256": "1f9cb26c90beb88bdc7106b44f5f94ece40ab7ed75920845ee48e19da5b73f7e", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.13/1.9.2/util-logging_2.13-1.9.2-sources.jar" + "sha256": "4f8e09cf4ee0eea1b2a48ad46b62d8a4454fca8398bbdbc078c9c3291302bd77", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.13/1.10.0/util-logging_2.13-1.10.0-sources.jar" }, { "coord": "org.scala-sbt:util-position_2.12:1.1.3", @@ -5845,7 +5879,7 @@ "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.12/1.1.3/util-position_2.12-1.1.3-sources.jar" }, { - "coord": "org.scala-sbt:util-position_2.13:1.9.2", + "coord": "org.scala-sbt:util-position_2.13:1.10.0", "dependencies": [ "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14" @@ -5854,33 +5888,33 @@ "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.13/1.9.2/util-position_2.13-1.9.2.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.13/1.10.0/util-position_2.13-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.13/1.9.2/util-position_2.13-1.9.2.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-position_2.13/1.9.2/util-position_2.13-1.9.2.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-position_2.13/1.9.2/util-position_2.13-1.9.2.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.13/1.10.0/util-position_2.13-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-position_2.13/1.10.0/util-position_2.13-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-position_2.13/1.10.0/util-position_2.13-1.10.0.jar" ], - "sha256": "43f4c6ec9371d8f7d888e90379bcf9d7ee08f5b7ac1fb25aaef2693d25d53c78", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.13/1.9.2/util-position_2.13-1.9.2.jar" + "sha256": "dba13b3fa0e231461f3574829ee0e76a16af45d292b9bb08c59e4988c2a820eb", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.13/1.10.0/util-position_2.13-1.10.0.jar" }, { - "coord": "org.scala-sbt:util-position_2.13:jar:sources:1.9.2", + "coord": "org.scala-sbt:util-position_2.13:jar:sources:1.10.0", "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14" + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.13/1.9.2/util-position_2.13-1.9.2-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.13/1.10.0/util-position_2.13-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.13/1.9.2/util-position_2.13-1.9.2-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-position_2.13/1.9.2/util-position_2.13-1.9.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-position_2.13/1.9.2/util-position_2.13-1.9.2-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.13/1.10.0/util-position_2.13-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-position_2.13/1.10.0/util-position_2.13-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-position_2.13/1.10.0/util-position_2.13-1.10.0-sources.jar" ], - "sha256": "c3db60905dea3716cb0796219c901419fddaeb7540c8a1cc41a0663b8a417fda", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.13/1.9.2/util-position_2.13-1.9.2-sources.jar" + "sha256": "215dc6e981a9957efa8f49e78db8f819dbccbd8fe144b1b1928c43ee5dc8e7c9", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-position_2.13/1.10.0/util-position_2.13-1.10.0-sources.jar" }, { "coord": "org.scala-sbt:util-relation_2.12:1.1.3", @@ -5917,839 +5951,851 @@ "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.12/1.1.3/util-relation_2.12-1.1.3-sources.jar" }, { - "coord": "org.scala-sbt:util-relation_2.13:1.9.2", + "coord": "org.scala-sbt:util-relation_2.13:1.10.0", "dependencies": [ "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.13/1.9.2/util-relation_2.13-1.9.2.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.13/1.10.0/util-relation_2.13-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.13/1.9.2/util-relation_2.13-1.9.2.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-relation_2.13/1.9.2/util-relation_2.13-1.9.2.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.13/1.9.2/util-relation_2.13-1.9.2.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.13/1.10.0/util-relation_2.13-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-relation_2.13/1.10.0/util-relation_2.13-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.13/1.10.0/util-relation_2.13-1.10.0.jar" ], - "sha256": "96bae2ea13946da72059ad1e5658b869d1982b85558f42cfddc9c21e5b04a2fe", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.13/1.9.2/util-relation_2.13-1.9.2.jar" + "sha256": "c4299affb9296cd83c18de9f282d664581262fe35e944f41cc627a93f32d64e2", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.13/1.10.0/util-relation_2.13-1.10.0.jar" }, { - "coord": "org.scala-sbt:util-relation_2.13:jar:sources:1.9.2", + "coord": "org.scala-sbt:util-relation_2.13:jar:sources:1.10.0", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.13/1.9.2/util-relation_2.13-1.9.2-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.13/1.10.0/util-relation_2.13-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.13/1.9.2/util-relation_2.13-1.9.2-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-relation_2.13/1.9.2/util-relation_2.13-1.9.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.13/1.9.2/util-relation_2.13-1.9.2-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.13/1.10.0/util-relation_2.13-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-relation_2.13/1.10.0/util-relation_2.13-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.13/1.10.0/util-relation_2.13-1.10.0-sources.jar" ], - "sha256": "02acfad7f6f521e22c9237c6f845c63567a279d3930c5515b797b6f617a3281a", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.13/1.9.2/util-relation_2.13-1.9.2-sources.jar" + "sha256": "2c6a965520b7517202d76a11198558ce9f73ec8a120249c29ba41b6b0bad302e", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-relation_2.13/1.10.0/util-relation_2.13-1.10.0-sources.jar" }, { - "coord": "org.scala-sbt:zinc-apiinfo_2.13:1.9.3", + "coord": "org.scala-sbt:zinc-apiinfo_2.13:1.10.0", "dependencies": [ - "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", - "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.13:0.9.1", - "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "org.scala-lang:scala-reflect:2.13.14", "com.lmax:disruptor:3.4.2", - "com.swoval:file-tree-views:2.1.10", - "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt:util-interface:1.10.0", + "org.jline:jline-terminal:3.24.1", + "org.fusesource.jansi:jansi:2.4.1", "net.java.dev.jna:jna:5.14.0", + "com.swoval:file-tree-views:2.1.12", + "org.scala-sbt:core-macros_2.13:1.10.0", + "org.scala-sbt:zinc-classfile_2.13:1.10.0", + "org.jline:jline-terminal-jansi:3.24.1", + "org.scala-sbt:collections_2.13:1.10.0", "org.apache.logging.log4j:log4j-api:2.17.1", - "org.apache.logging.log4j:log4j-core:2.17.1", - "org.fusesource.jansi:jansi:2.1.0", - "org.jline:jline-terminal-jansi:3.19.0", - "org.jline:jline-terminal-jna:3.19.0", - "org.jline:jline-terminal:3.19.0", - "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", + "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", + "org.jline:jline-native:3.24.1", "org.scala-lang:scala-compiler:2.13.14", + "org.scala-sbt:util-logging_2.13:1.10.0", + "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt.jline:jline:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", + "org.scala-sbt:util-position_2.13:1.10.0", + "com.eed3si9n:sjson-new-core_2.13:0.9.1", + "org.scala-sbt:compiler-interface:1.10.0", + "org.scala-sbt:compiler-bridge_2.13:1.10.0", "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scala-sbt.jline:jline:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", - "org.scala-sbt:collections_2.13:1.9.2", - "org.scala-sbt:compiler-bridge_2.13:1.9.3", - "org.scala-sbt:compiler-interface:1.9.3", - "org.scala-sbt:core-macros_2.13:1.9.2", - "org.scala-sbt:io_2.13:1.9.1", - "org.scala-sbt:util-interface:1.9.2", - "org.scala-sbt:util-logging_2.13:1.9.2", - "org.scala-sbt:util-position_2.13:1.9.2", - "org.scala-sbt:zinc-classfile_2.13:1.9.3" + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.scala-sbt:io_2.13:1.10.0", + "org.jline:jline-terminal-jna:3.24.1", + "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14", - "org.scala-sbt:compiler-bridge_2.13:1.9.3", - "org.scala-sbt:compiler-interface:1.9.3", - "org.scala-sbt:zinc-classfile_2.13:1.9.3" + "org.scala-sbt:compiler-bridge_2.13:1.10.0", + "org.scala-sbt:compiler-interface:1.10.0", + "org.scala-sbt:zinc-classfile_2.13:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.9.3/zinc-apiinfo_2.13-1.9.3.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.10.0/zinc-apiinfo_2.13-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.9.3/zinc-apiinfo_2.13-1.9.3.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.9.3/zinc-apiinfo_2.13-1.9.3.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.9.3/zinc-apiinfo_2.13-1.9.3.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.10.0/zinc-apiinfo_2.13-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.10.0/zinc-apiinfo_2.13-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.10.0/zinc-apiinfo_2.13-1.10.0.jar" ], - "sha256": "a9ac1985193d0b1581b6b8a64bda22b84c30290f0304d0de07d050b90eda9982", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.9.3/zinc-apiinfo_2.13-1.9.3.jar" + "sha256": "d2e36385cab2c7c07bf7b235528a38d11a1d6787860bd3c2bf5d9e109a98f2a5", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.10.0/zinc-apiinfo_2.13-1.10.0.jar" }, { - "coord": "org.scala-sbt:zinc-apiinfo_2.13:jar:sources:1.9.3", + "coord": "org.scala-sbt:zinc-apiinfo_2.13:jar:sources:1.10.0", "dependencies": [ - "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", - "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", - "com.lmax:disruptor:jar:sources:3.4.2", - "com.swoval:file-tree-views:jar:sources:2.1.10", + "org.scala-sbt:io_2.13:jar:sources:1.10.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", + "org.jline:jline-native:jar:sources:3.24.1", + "org.scala-sbt:util-interface:jar:sources:1.10.0", + "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", + "com.lmax:disruptor:jar:sources:3.4.2", "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", - "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", - "org.fusesource.jansi:jansi:jar:sources:2.1.0", - "org.jline:jline-terminal-jansi:jar:sources:3.19.0", - "org.jline:jline-terminal-jna:jar:sources:3.19.0", - "org.jline:jline-terminal:jar:sources:3.19.0", - "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.jline:jline-terminal-jna:jar:sources:3.24.1", + "org.jline:jline-terminal-jansi:jar:sources:3.24.1", + "org.jline:jline-terminal:jar:sources:3.24.1", + "com.swoval:file-tree-views:jar:sources:2.1.12", + "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.10.0", + "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", - "org.scala-sbt:collections_2.13:jar:sources:1.9.2", - "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.9.3", - "org.scala-sbt:compiler-interface:jar:sources:1.9.3", - "org.scala-sbt:core-macros_2.13:jar:sources:1.9.2", - "org.scala-sbt:io_2.13:jar:sources:1.9.1", - "org.scala-sbt:util-interface:jar:sources:1.9.2", - "org.scala-sbt:util-logging_2.13:jar:sources:1.9.2", - "org.scala-sbt:util-position_2.13:jar:sources:1.9.2", - "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.9.3" + "org.scala-sbt:util-logging_2.13:jar:sources:1.10.0", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-sbt:core-macros_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.10.0", + "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "org.scala-sbt:compiler-interface:jar:sources:1.10.0", + "org.fusesource.jansi:jansi:jar:sources:2.4.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.scala-sbt:util-position_2.13:jar:sources:1.10.0", + "org.scala-sbt:collections_2.13:jar:sources:1.10.0" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.9.3", - "org.scala-sbt:compiler-interface:jar:sources:1.9.3", - "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.9.3" + "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.10.0", + "org.scala-sbt:compiler-interface:jar:sources:1.10.0", + "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.9.3/zinc-apiinfo_2.13-1.9.3-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.10.0/zinc-apiinfo_2.13-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.9.3/zinc-apiinfo_2.13-1.9.3-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.9.3/zinc-apiinfo_2.13-1.9.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.9.3/zinc-apiinfo_2.13-1.9.3-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.10.0/zinc-apiinfo_2.13-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.10.0/zinc-apiinfo_2.13-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.10.0/zinc-apiinfo_2.13-1.10.0-sources.jar" ], - "sha256": "86d98a01c56ffb56834218104dfe1d8f18c17d6f55822983c313878f60c728e7", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.9.3/zinc-apiinfo_2.13-1.9.3-sources.jar" + "sha256": "b1a8f5a0e8d3bb24f65ebfe66c4bb2249d16ef6eb94e60c5e6cbea59b78e70af", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.10.0/zinc-apiinfo_2.13-1.10.0-sources.jar" }, { - "coord": "org.scala-sbt:zinc-classfile_2.13:1.9.3", + "coord": "org.scala-sbt:zinc-classfile_2.13:1.10.0", "dependencies": [ - "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", - "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.13:0.9.1", - "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "org.scala-lang:scala-reflect:2.13.14", "com.lmax:disruptor:3.4.2", - "com.swoval:file-tree-views:2.1.10", - "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt:util-interface:1.10.0", + "org.jline:jline-terminal:3.24.1", + "org.fusesource.jansi:jansi:2.4.1", "net.java.dev.jna:jna:5.14.0", + "com.swoval:file-tree-views:2.1.12", + "org.scala-sbt:core-macros_2.13:1.10.0", + "org.jline:jline-terminal-jansi:3.24.1", + "org.scala-sbt:collections_2.13:1.10.0", "org.apache.logging.log4j:log4j-api:2.17.1", - "org.apache.logging.log4j:log4j-core:2.17.1", - "org.fusesource.jansi:jansi:2.1.0", - "org.jline:jline-terminal-jansi:3.19.0", - "org.jline:jline-terminal-jna:3.19.0", - "org.jline:jline-terminal:3.19.0", - "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", + "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", + "org.jline:jline-native:3.24.1", "org.scala-lang:scala-compiler:2.13.14", + "org.scala-sbt:util-logging_2.13:1.10.0", + "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt.jline:jline:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", + "org.scala-sbt:util-position_2.13:1.10.0", + "com.eed3si9n:sjson-new-core_2.13:0.9.1", + "org.scala-sbt:compiler-interface:1.10.0", "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scala-sbt.jline:jline:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", - "org.scala-sbt:collections_2.13:1.9.2", - "org.scala-sbt:compiler-interface:1.9.3", - "org.scala-sbt:core-macros_2.13:1.9.2", - "org.scala-sbt:io_2.13:1.9.1", - "org.scala-sbt:util-interface:1.9.2", - "org.scala-sbt:util-logging_2.13:1.9.2", - "org.scala-sbt:util-position_2.13:1.9.2" + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.scala-sbt:io_2.13:1.10.0", + "org.jline:jline-terminal-jna:3.24.1", + "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14", - "org.scala-sbt:compiler-interface:1.9.3", - "org.scala-sbt:io_2.13:1.9.1", - "org.scala-sbt:util-logging_2.13:1.9.2" + "org.scala-sbt:compiler-interface:1.10.0", + "org.scala-sbt:io_2.13:1.10.0", + "org.scala-sbt:util-logging_2.13:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.9.3/zinc-classfile_2.13-1.9.3.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.10.0/zinc-classfile_2.13-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.9.3/zinc-classfile_2.13-1.9.3.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-classfile_2.13/1.9.3/zinc-classfile_2.13-1.9.3.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.9.3/zinc-classfile_2.13-1.9.3.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.10.0/zinc-classfile_2.13-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-classfile_2.13/1.10.0/zinc-classfile_2.13-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.10.0/zinc-classfile_2.13-1.10.0.jar" ], - "sha256": "80ae2c88dbf55540ecdf692efccd7af5e9bc945f2245cbb580fae3a5eba19a4f", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.9.3/zinc-classfile_2.13-1.9.3.jar" + "sha256": "2eb93fd54081aa58e3b76ec03437e3b886f2d3742e5bf83d5f68d008dd23b611", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.10.0/zinc-classfile_2.13-1.10.0.jar" }, { - "coord": "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.9.3", + "coord": "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.10.0", "dependencies": [ - "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", - "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", - "com.lmax:disruptor:jar:sources:3.4.2", - "com.swoval:file-tree-views:jar:sources:2.1.10", + "org.scala-sbt:io_2.13:jar:sources:1.10.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", + "org.jline:jline-native:jar:sources:3.24.1", + "org.scala-sbt:util-interface:jar:sources:1.10.0", + "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", + "com.lmax:disruptor:jar:sources:3.4.2", "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", - "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", - "org.fusesource.jansi:jansi:jar:sources:2.1.0", - "org.jline:jline-terminal-jansi:jar:sources:3.19.0", - "org.jline:jline-terminal-jna:jar:sources:3.19.0", - "org.jline:jline-terminal:jar:sources:3.19.0", - "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.jline:jline-terminal-jna:jar:sources:3.24.1", + "org.jline:jline-terminal-jansi:jar:sources:3.24.1", + "org.jline:jline-terminal:jar:sources:3.24.1", + "com.swoval:file-tree-views:jar:sources:2.1.12", + "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", - "org.scala-sbt:collections_2.13:jar:sources:1.9.2", - "org.scala-sbt:compiler-interface:jar:sources:1.9.3", - "org.scala-sbt:core-macros_2.13:jar:sources:1.9.2", - "org.scala-sbt:io_2.13:jar:sources:1.9.1", - "org.scala-sbt:util-interface:jar:sources:1.9.2", - "org.scala-sbt:util-logging_2.13:jar:sources:1.9.2", - "org.scala-sbt:util-position_2.13:jar:sources:1.9.2" + "org.scala-sbt:util-logging_2.13:jar:sources:1.10.0", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-sbt:core-macros_2.13:jar:sources:1.10.0", + "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "org.scala-sbt:compiler-interface:jar:sources:1.10.0", + "org.fusesource.jansi:jansi:jar:sources:2.4.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.scala-sbt:util-position_2.13:jar:sources:1.10.0", + "org.scala-sbt:collections_2.13:jar:sources:1.10.0" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-sbt:compiler-interface:jar:sources:1.9.3", - "org.scala-sbt:io_2.13:jar:sources:1.9.1", - "org.scala-sbt:util-logging_2.13:jar:sources:1.9.2" + "org.scala-sbt:compiler-interface:jar:sources:1.10.0", + "org.scala-sbt:io_2.13:jar:sources:1.10.0", + "org.scala-sbt:util-logging_2.13:jar:sources:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.9.3/zinc-classfile_2.13-1.9.3-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.10.0/zinc-classfile_2.13-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.9.3/zinc-classfile_2.13-1.9.3-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-classfile_2.13/1.9.3/zinc-classfile_2.13-1.9.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.9.3/zinc-classfile_2.13-1.9.3-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.10.0/zinc-classfile_2.13-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-classfile_2.13/1.10.0/zinc-classfile_2.13-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.10.0/zinc-classfile_2.13-1.10.0-sources.jar" ], - "sha256": "5d5fdd033650562a4c93d2e3a7f7ef126b98a477e3503898969ecb5725bc0971", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.9.3/zinc-classfile_2.13-1.9.3-sources.jar" + "sha256": "01572757640e9d808c6bba39b3569c8a849f7938aff5ab2fbaadf4083dc5179f", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.10.0/zinc-classfile_2.13-1.10.0-sources.jar" }, { - "coord": "org.scala-sbt:zinc-classpath_2.13:1.9.3", + "coord": "org.scala-sbt:zinc-classpath_2.13:1.10.0", "dependencies": [ - "com.swoval:file-tree-views:2.1.10", - "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt:util-interface:1.10.0", "net.java.dev.jna:jna:5.14.0", + "com.swoval:file-tree-views:2.1.12", "org.scala-lang:scala-compiler:2.13.14", - "org.scala-lang:scala-library:2.13.14", - "org.scala-sbt:compiler-interface:1.9.3", - "org.scala-sbt:io_2.13:1.9.1", + "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt:compiler-interface:1.10.0", "org.scala-sbt:launcher-interface:1.4.2", - "org.scala-sbt:util-interface:1.9.2" + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:io_2.13:1.10.0" ], "directDependencies": [ "org.scala-lang:scala-compiler:2.13.14", + "org.scala-sbt:compiler-interface:1.10.0", + "org.scala-sbt:launcher-interface:1.4.2", "org.scala-lang:scala-library:2.13.14", - "org.scala-sbt:compiler-interface:1.9.3", - "org.scala-sbt:io_2.13:1.9.1", - "org.scala-sbt:launcher-interface:1.4.2" + "org.scala-sbt:io_2.13:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.9.3/zinc-classpath_2.13-1.9.3.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.10.0/zinc-classpath_2.13-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.9.3/zinc-classpath_2.13-1.9.3.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-classpath_2.13/1.9.3/zinc-classpath_2.13-1.9.3.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.9.3/zinc-classpath_2.13-1.9.3.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.10.0/zinc-classpath_2.13-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-classpath_2.13/1.10.0/zinc-classpath_2.13-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.10.0/zinc-classpath_2.13-1.10.0.jar" ], - "sha256": "a93e75690525b5489c5de3d06d83a5b16b85f138011161751b25e448513e3d49", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.9.3/zinc-classpath_2.13-1.9.3.jar" + "sha256": "5a4b1c86764cc85f46c30407276f4c5ead7fcc0bf83090477c809c6e3acb8f2d", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.10.0/zinc-classpath_2.13-1.10.0.jar" }, { - "coord": "org.scala-sbt:zinc-classpath_2.13:jar:sources:1.9.3", + "coord": "org.scala-sbt:zinc-classpath_2.13:jar:sources:1.10.0", "dependencies": [ - "com.swoval:file-tree-views:jar:sources:2.1.10", + "org.scala-sbt:io_2.13:jar:sources:1.10.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "org.scala-sbt:util-interface:jar:sources:1.10.0", "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-sbt:compiler-interface:jar:sources:1.9.3", - "org.scala-sbt:io_2.13:jar:sources:1.9.1", "org.scala-sbt:launcher-interface:jar:sources:1.4.2", - "org.scala-sbt:util-interface:jar:sources:1.9.2" + "com.swoval:file-tree-views:jar:sources:2.1.12", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-sbt:compiler-interface:jar:sources:1.10.0" ], "directDependencies": [ - "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-sbt:io_2.13:jar:sources:1.10.0", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-sbt:compiler-interface:jar:sources:1.9.3", - "org.scala-sbt:io_2.13:jar:sources:1.9.1", - "org.scala-sbt:launcher-interface:jar:sources:1.4.2" + "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-sbt:compiler-interface:jar:sources:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.9.3/zinc-classpath_2.13-1.9.3-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.10.0/zinc-classpath_2.13-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.9.3/zinc-classpath_2.13-1.9.3-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-classpath_2.13/1.9.3/zinc-classpath_2.13-1.9.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.9.3/zinc-classpath_2.13-1.9.3-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.10.0/zinc-classpath_2.13-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-classpath_2.13/1.10.0/zinc-classpath_2.13-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.10.0/zinc-classpath_2.13-1.10.0-sources.jar" ], - "sha256": "b19c9fa3a9eb25aa0f169499704c680cd9b10bc04132988f2458aaa5ff495cab", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.9.3/zinc-classpath_2.13-1.9.3-sources.jar" + "sha256": "a424df1d2250fc68b83207dc129e68fb1dbc40c91c6015839c27c8ba69ea341d", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.10.0/zinc-classpath_2.13-1.10.0-sources.jar" }, { - "coord": "org.scala-sbt:zinc-compile-core_2.13:1.9.3", + "coord": "org.scala-sbt:zinc-compile-core_2.13:1.10.0", "dependencies": [ - "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", - "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.13:0.9.1", - "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", + "org.scala-lang:scala-reflect:2.13.14", "com.lmax:disruptor:3.4.2", - "com.swoval:file-tree-views:2.1.10", - "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt:util-interface:1.10.0", + "org.jline:jline-terminal:3.24.1", + "org.fusesource.jansi:jansi:2.4.1", + "net.openhft:zero-allocation-hashing:0.16", "net.java.dev.jna:jna:5.14.0", - "net.openhft:zero-allocation-hashing:0.10.1", + "com.swoval:file-tree-views:2.1.12", + "org.scala-sbt:core-macros_2.13:1.10.0", + "org.scala-sbt:zinc-classfile_2.13:1.10.0", + "org.jline:jline-terminal-jansi:3.24.1", + "org.scala-sbt:collections_2.13:1.10.0", "org.apache.logging.log4j:log4j-api:2.17.1", - "org.apache.logging.log4j:log4j-core:2.17.1", - "org.fusesource.jansi:jansi:2.1.0", - "org.jline:jline-terminal-jansi:3.19.0", - "org.jline:jline-terminal-jna:3.19.0", - "org.jline:jline-terminal:3.19.0", - "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", + "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", + "org.scala-sbt:util-control_2.13:1.10.0", + "org.jline:jline-native:3.24.1", "org.scala-lang:scala-compiler:2.13.14", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scala-sbt.jline:jline:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", - "org.scala-sbt:collections_2.13:1.9.2", - "org.scala-sbt:compiler-bridge_2.13:1.9.3", - "org.scala-sbt:compiler-interface:1.9.3", - "org.scala-sbt:core-macros_2.13:1.9.2", - "org.scala-sbt:io_2.13:1.9.1", + "org.scala-sbt:zinc-classpath_2.13:1.10.0", + "org.scala-sbt:util-logging_2.13:1.10.0", + "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt.jline:jline:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", + "org.scala-sbt:util-position_2.13:1.10.0", + "com.eed3si9n:sjson-new-core_2.13:0.9.1", + "org.scala-sbt:compiler-interface:1.10.0", "org.scala-sbt:launcher-interface:1.4.2", - "org.scala-sbt:util-control_2.13:1.9.2", - "org.scala-sbt:util-interface:1.9.2", - "org.scala-sbt:util-logging_2.13:1.9.2", - "org.scala-sbt:util-position_2.13:1.9.2", - "org.scala-sbt:zinc-apiinfo_2.13:1.9.3", - "org.scala-sbt:zinc-classfile_2.13:1.9.3", - "org.scala-sbt:zinc-classpath_2.13:1.9.3" + "org.scala-sbt:compiler-bridge_2.13:1.10.0", + "org.scala-lang:scala-library:2.13.14", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.scala-sbt:io_2.13:1.10.0", + "org.jline:jline-terminal-jna:3.24.1", + "org.scala-sbt:zinc-apiinfo_2.13:1.10.0", + "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0" ], "directDependencies": [ - "net.openhft:zero-allocation-hashing:0.10.1", "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "org.scala-lang:scala-library:2.13.14", - "org.scala-sbt:compiler-interface:1.9.3", - "org.scala-sbt:io_2.13:1.9.1", + "net.openhft:zero-allocation-hashing:0.16", + "org.scala-sbt:zinc-classfile_2.13:1.10.0", + "org.scala-sbt:util-control_2.13:1.10.0", + "org.scala-sbt:zinc-classpath_2.13:1.10.0", + "org.scala-sbt:util-logging_2.13:1.10.0", + "org.scala-sbt:compiler-interface:1.10.0", "org.scala-sbt:launcher-interface:1.4.2", - "org.scala-sbt:util-control_2.13:1.9.2", - "org.scala-sbt:util-logging_2.13:1.9.2", - "org.scala-sbt:zinc-apiinfo_2.13:1.9.3", - "org.scala-sbt:zinc-classfile_2.13:1.9.3", - "org.scala-sbt:zinc-classpath_2.13:1.9.3" + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:io_2.13:1.10.0", + "org.scala-sbt:zinc-apiinfo_2.13:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.9.3/zinc-compile-core_2.13-1.9.3.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.10.0/zinc-compile-core_2.13-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.9.3/zinc-compile-core_2.13-1.9.3.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-compile-core_2.13/1.9.3/zinc-compile-core_2.13-1.9.3.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.9.3/zinc-compile-core_2.13-1.9.3.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.10.0/zinc-compile-core_2.13-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-compile-core_2.13/1.10.0/zinc-compile-core_2.13-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.10.0/zinc-compile-core_2.13-1.10.0.jar" ], - "sha256": "7153b283aa6d351b9628ed909e35492cd301a51bd42abd2f60657083d085f752", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.9.3/zinc-compile-core_2.13-1.9.3.jar" + "sha256": "cd4da1d352a230d26e6f6a5e9b5c5d573e0b2703063c0a86bcbf56f2fca1e18d", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.10.0/zinc-compile-core_2.13-1.10.0.jar" }, { - "coord": "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.9.3", + "coord": "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.10.0", "dependencies": [ - "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", - "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "net.openhft:zero-allocation-hashing:jar:sources:0.16", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", - "com.lmax:disruptor:jar:sources:3.4.2", - "com.swoval:file-tree-views:jar:sources:2.1.10", + "org.scala-sbt:io_2.13:jar:sources:1.10.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", + "org.jline:jline-native:jar:sources:3.24.1", + "org.scala-sbt:util-interface:jar:sources:1.10.0", + "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", + "com.lmax:disruptor:jar:sources:3.4.2", "net.java.dev.jna:jna:jar:sources:5.14.0", - "net.openhft:zero-allocation-hashing:jar:sources:0.10.1", - "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", - "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", - "org.fusesource.jansi:jansi:jar:sources:2.1.0", - "org.jline:jline-terminal-jansi:jar:sources:3.19.0", - "org.jline:jline-terminal-jna:jar:sources:3.19.0", - "org.jline:jline-terminal:jar:sources:3.19.0", - "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", - "org.scala-sbt:collections_2.13:jar:sources:1.9.2", - "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.9.3", - "org.scala-sbt:compiler-interface:jar:sources:1.9.3", - "org.scala-sbt:core-macros_2.13:jar:sources:1.9.2", - "org.scala-sbt:io_2.13:jar:sources:1.9.1", + "org.jline:jline-terminal-jna:jar:sources:3.24.1", "org.scala-sbt:launcher-interface:jar:sources:1.4.2", - "org.scala-sbt:util-control_2.13:jar:sources:1.9.2", - "org.scala-sbt:util-interface:jar:sources:1.9.2", - "org.scala-sbt:util-logging_2.13:jar:sources:1.9.2", - "org.scala-sbt:util-position_2.13:jar:sources:1.9.2", - "org.scala-sbt:zinc-apiinfo_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-classpath_2.13:jar:sources:1.9.3" + "org.jline:jline-terminal-jansi:jar:sources:3.24.1", + "org.jline:jline-terminal:jar:sources:3.24.1", + "com.swoval:file-tree-views:jar:sources:2.1.12", + "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.10.0", + "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt:util-logging_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-classpath_2.13:jar:sources:1.10.0", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-sbt:core-macros_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-apiinfo_2.13:jar:sources:1.10.0", + "org.scala-sbt:util-control_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.10.0", + "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "org.scala-sbt:compiler-interface:jar:sources:1.10.0", + "org.fusesource.jansi:jansi:jar:sources:2.4.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.scala-sbt:util-position_2.13:jar:sources:1.10.0", + "org.scala-sbt:collections_2.13:jar:sources:1.10.0" ], "directDependencies": [ - "net.openhft:zero-allocation-hashing:jar:sources:0.10.1", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", + "net.openhft:zero-allocation-hashing:jar:sources:0.16", + "org.scala-sbt:io_2.13:jar:sources:1.10.0", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-sbt:compiler-interface:jar:sources:1.9.3", - "org.scala-sbt:io_2.13:jar:sources:1.9.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "org.scala-sbt:launcher-interface:jar:sources:1.4.2", - "org.scala-sbt:util-control_2.13:jar:sources:1.9.2", - "org.scala-sbt:util-logging_2.13:jar:sources:1.9.2", - "org.scala-sbt:zinc-apiinfo_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-classpath_2.13:jar:sources:1.9.3" + "org.scala-sbt:util-logging_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-classpath_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-apiinfo_2.13:jar:sources:1.10.0", + "org.scala-sbt:util-control_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.10.0", + "org.scala-sbt:compiler-interface:jar:sources:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.9.3/zinc-compile-core_2.13-1.9.3-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.10.0/zinc-compile-core_2.13-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.9.3/zinc-compile-core_2.13-1.9.3-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-compile-core_2.13/1.9.3/zinc-compile-core_2.13-1.9.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.9.3/zinc-compile-core_2.13-1.9.3-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.10.0/zinc-compile-core_2.13-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-compile-core_2.13/1.10.0/zinc-compile-core_2.13-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.10.0/zinc-compile-core_2.13-1.10.0-sources.jar" ], - "sha256": "8a9878016e95f93b2f09b539da34a0992675e3563db5811485ebd4fea3073204", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.9.3/zinc-compile-core_2.13-1.9.3-sources.jar" + "sha256": "02304d90aaaa35721fd1936859fbe16055ff0ba14af724e4cc0064163e4d725e", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.10.0/zinc-compile-core_2.13-1.10.0-sources.jar" }, { - "coord": "org.scala-sbt:zinc-core_2.13:1.9.3", + "coord": "org.scala-sbt:zinc-core_2.13:1.10.0", "dependencies": [ - "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", - "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.13:0.9.1", - "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", + "org.scala-lang:scala-reflect:2.13.14", "com.lmax:disruptor:3.4.2", - "com.swoval:file-tree-views:2.1.10", - "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt:util-interface:1.10.0", + "org.jline:jline-terminal:3.24.1", + "org.fusesource.jansi:jansi:2.4.1", + "net.openhft:zero-allocation-hashing:0.16", "net.java.dev.jna:jna:5.14.0", - "net.openhft:zero-allocation-hashing:0.10.1", + "org.scala-sbt:util-relation_2.13:1.10.0", + "com.swoval:file-tree-views:2.1.12", + "org.scala-sbt:core-macros_2.13:1.10.0", + "org.scala-sbt:zinc-classfile_2.13:1.10.0", + "org.jline:jline-terminal-jansi:3.24.1", + "org.scala-sbt:collections_2.13:1.10.0", "org.apache.logging.log4j:log4j-api:2.17.1", - "org.apache.logging.log4j:log4j-core:2.17.1", - "org.fusesource.jansi:jansi:2.1.0", - "org.jline:jline-terminal-jansi:3.19.0", - "org.jline:jline-terminal-jna:3.19.0", - "org.jline:jline-terminal:3.19.0", - "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", + "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", + "org.scala-sbt:util-control_2.13:1.10.0", + "org.jline:jline-native:3.24.1", "org.scala-lang:scala-compiler:2.13.14", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scala-sbt.jline:jline:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", - "org.scala-sbt:collections_2.13:1.9.2", - "org.scala-sbt:compiler-bridge_2.13:1.9.3", - "org.scala-sbt:compiler-interface:1.9.3", - "org.scala-sbt:core-macros_2.13:1.9.2", - "org.scala-sbt:io_2.13:1.9.1", + "org.scala-sbt:zinc-classpath_2.13:1.10.0", + "org.scala-sbt:util-logging_2.13:1.10.0", + "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt.jline:jline:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", + "org.scala-sbt:util-position_2.13:1.10.0", + "com.eed3si9n:sjson-new-core_2.13:0.9.1", + "org.scala-sbt:compiler-interface:1.10.0", "org.scala-sbt:launcher-interface:1.4.2", - "org.scala-sbt:util-control_2.13:1.9.2", - "org.scala-sbt:util-interface:1.9.2", - "org.scala-sbt:util-logging_2.13:1.9.2", - "org.scala-sbt:util-position_2.13:1.9.2", - "org.scala-sbt:util-relation_2.13:1.9.2", - "org.scala-sbt:zinc-apiinfo_2.13:1.9.3", - "org.scala-sbt:zinc-classfile_2.13:1.9.3", - "org.scala-sbt:zinc-classpath_2.13:1.9.3", - "org.scala-sbt:zinc-compile-core_2.13:1.9.3", - "org.scala-sbt:zinc-persist-core-assembly:1.9.3" + "org.scala-sbt:compiler-bridge_2.13:1.10.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:zinc-compile-core_2.13:1.10.0", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.scala-sbt:zinc-persist-core-assembly:1.10.0", + "org.scala-sbt:io_2.13:1.10.0", + "org.jline:jline-terminal-jna:3.24.1", + "org.scala-sbt:zinc-apiinfo_2.13:1.10.0", + "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0" ], "directDependencies": [ - "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", + "org.scala-sbt:util-relation_2.13:1.10.0", + "org.scala-sbt:zinc-classpath_2.13:1.10.0", + "org.scala-sbt:util-logging_2.13:1.10.0", + "org.scala-sbt:compiler-interface:1.10.0", "org.scala-lang:scala-library:2.13.14", - "org.scala-sbt:compiler-interface:1.9.3", - "org.scala-sbt:io_2.13:1.9.1", - "org.scala-sbt:util-logging_2.13:1.9.2", - "org.scala-sbt:util-relation_2.13:1.9.2", - "org.scala-sbt:zinc-apiinfo_2.13:1.9.3", - "org.scala-sbt:zinc-classpath_2.13:1.9.3", - "org.scala-sbt:zinc-compile-core_2.13:1.9.3", - "org.scala-sbt:zinc-persist-core-assembly:1.9.3" + "org.scala-sbt:zinc-compile-core_2.13:1.10.0", + "org.scala-sbt:zinc-persist-core-assembly:1.10.0", + "org.scala-sbt:io_2.13:1.10.0", + "org.scala-sbt:zinc-apiinfo_2.13:1.10.0", + "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-core_2.13/1.9.3/zinc-core_2.13-1.9.3.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-core_2.13/1.10.0/zinc-core_2.13-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-core_2.13/1.9.3/zinc-core_2.13-1.9.3.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-core_2.13/1.9.3/zinc-core_2.13-1.9.3.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.13/1.9.3/zinc-core_2.13-1.9.3.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-core_2.13/1.10.0/zinc-core_2.13-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-core_2.13/1.10.0/zinc-core_2.13-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.13/1.10.0/zinc-core_2.13-1.10.0.jar" ], - "sha256": "dfe60b5d52336ca16ee7df42dea0fc056cce97db643773e941c515cfb2ee783d", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-core_2.13/1.9.3/zinc-core_2.13-1.9.3.jar" + "sha256": "bf84b3b9e51e9360c5adf246638558d82e006dffd6f79865d3847574729aa274", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-core_2.13/1.10.0/zinc-core_2.13-1.10.0.jar" }, { - "coord": "org.scala-sbt:zinc-core_2.13:jar:sources:1.9.3", + "coord": "org.scala-sbt:zinc-core_2.13:jar:sources:1.10.0", "dependencies": [ - "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", - "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "net.openhft:zero-allocation-hashing:jar:sources:0.16", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", - "com.lmax:disruptor:jar:sources:3.4.2", - "com.swoval:file-tree-views:jar:sources:2.1.10", + "org.scala-sbt:io_2.13:jar:sources:1.10.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "org.scala-sbt:util-relation_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.10.0", + "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", + "org.jline:jline-native:jar:sources:3.24.1", + "org.scala-sbt:util-interface:jar:sources:1.10.0", + "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", + "com.lmax:disruptor:jar:sources:3.4.2", "net.java.dev.jna:jna:jar:sources:5.14.0", - "net.openhft:zero-allocation-hashing:jar:sources:0.10.1", - "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", - "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", - "org.fusesource.jansi:jansi:jar:sources:2.1.0", - "org.jline:jline-terminal-jansi:jar:sources:3.19.0", - "org.jline:jline-terminal-jna:jar:sources:3.19.0", - "org.jline:jline-terminal:jar:sources:3.19.0", - "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", - "org.scala-sbt:collections_2.13:jar:sources:1.9.2", - "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.9.3", - "org.scala-sbt:compiler-interface:jar:sources:1.9.3", - "org.scala-sbt:core-macros_2.13:jar:sources:1.9.2", - "org.scala-sbt:io_2.13:jar:sources:1.9.1", + "org.jline:jline-terminal-jna:jar:sources:3.24.1", "org.scala-sbt:launcher-interface:jar:sources:1.4.2", - "org.scala-sbt:util-control_2.13:jar:sources:1.9.2", - "org.scala-sbt:util-interface:jar:sources:1.9.2", - "org.scala-sbt:util-logging_2.13:jar:sources:1.9.2", - "org.scala-sbt:util-position_2.13:jar:sources:1.9.2", - "org.scala-sbt:util-relation_2.13:jar:sources:1.9.2", - "org.scala-sbt:zinc-apiinfo_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-classpath_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-persist-core-assembly:jar:sources:1.9.3" + "org.jline:jline-terminal-jansi:jar:sources:3.24.1", + "org.jline:jline-terminal:jar:sources:3.24.1", + "com.swoval:file-tree-views:jar:sources:2.1.12", + "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.10.0", + "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt:util-logging_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-classpath_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-persist-core-assembly:jar:sources:1.10.0", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-sbt:core-macros_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-apiinfo_2.13:jar:sources:1.10.0", + "org.scala-sbt:util-control_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.10.0", + "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "org.scala-sbt:compiler-interface:jar:sources:1.10.0", + "org.fusesource.jansi:jansi:jar:sources:2.4.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.scala-sbt:util-position_2.13:jar:sources:1.10.0", + "org.scala-sbt:collections_2.13:jar:sources:1.10.0" ], "directDependencies": [ - "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", + "org.scala-sbt:io_2.13:jar:sources:1.10.0", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-sbt:compiler-interface:jar:sources:1.9.3", - "org.scala-sbt:io_2.13:jar:sources:1.9.1", - "org.scala-sbt:util-logging_2.13:jar:sources:1.9.2", - "org.scala-sbt:util-relation_2.13:jar:sources:1.9.2", - "org.scala-sbt:zinc-apiinfo_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-classpath_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-persist-core-assembly:jar:sources:1.9.3" + "org.scala-sbt:util-relation_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.10.0", + "org.scala-sbt:util-logging_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-classpath_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-persist-core-assembly:jar:sources:1.10.0", + "org.scala-sbt:zinc-apiinfo_2.13:jar:sources:1.10.0", + "org.scala-sbt:compiler-interface:jar:sources:1.10.0", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-core_2.13/1.9.3/zinc-core_2.13-1.9.3-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-core_2.13/1.10.0/zinc-core_2.13-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-core_2.13/1.9.3/zinc-core_2.13-1.9.3-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-core_2.13/1.9.3/zinc-core_2.13-1.9.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.13/1.9.3/zinc-core_2.13-1.9.3-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-core_2.13/1.10.0/zinc-core_2.13-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-core_2.13/1.10.0/zinc-core_2.13-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.13/1.10.0/zinc-core_2.13-1.10.0-sources.jar" ], - "sha256": "95b328e46e3ed197d76ce6205829c35bfb4f637bc79f955a92459671a0874a36", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-core_2.13/1.9.3/zinc-core_2.13-1.9.3-sources.jar" + "sha256": "8d29f8e792c3a2a30a56bf69b9b4d3a01262ba2f48fabdff1c4be1cee5e9391b", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-core_2.13/1.10.0/zinc-core_2.13-1.10.0-sources.jar" }, { - "coord": "org.scala-sbt:zinc-persist-core-assembly:1.9.3", + "coord": "org.scala-sbt:zinc-persist-core-assembly:1.10.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.9.3/zinc-persist-core-assembly-1.9.3.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.10.0/zinc-persist-core-assembly-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.9.3/zinc-persist-core-assembly-1.9.3.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-persist-core-assembly/1.9.3/zinc-persist-core-assembly-1.9.3.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.9.3/zinc-persist-core-assembly-1.9.3.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.10.0/zinc-persist-core-assembly-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-persist-core-assembly/1.10.0/zinc-persist-core-assembly-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.10.0/zinc-persist-core-assembly-1.10.0.jar" ], - "sha256": "a039032dd2ddd6c82ec76012a9972fda0a9e35c2481ec791b82a60c8fef54807", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.9.3/zinc-persist-core-assembly-1.9.3.jar" + "sha256": "5b42ea2673d7f536f803762f00f870f4d9bec1d8ffa2a02c912abed8d8192567", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.10.0/zinc-persist-core-assembly-1.10.0.jar" }, { - "coord": "org.scala-sbt:zinc-persist-core-assembly:jar:sources:1.9.3", + "coord": "org.scala-sbt:zinc-persist-core-assembly:jar:sources:1.10.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.9.3/zinc-persist-core-assembly-1.9.3-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.10.0/zinc-persist-core-assembly-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.9.3/zinc-persist-core-assembly-1.9.3-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-persist-core-assembly/1.9.3/zinc-persist-core-assembly-1.9.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.9.3/zinc-persist-core-assembly-1.9.3-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.10.0/zinc-persist-core-assembly-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-persist-core-assembly/1.10.0/zinc-persist-core-assembly-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.10.0/zinc-persist-core-assembly-1.10.0-sources.jar" ], - "sha256": "bd69ac85da555f56edab763c13500563d278f7d80f45aed6f3e39a55c7ed9e1b", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.9.3/zinc-persist-core-assembly-1.9.3-sources.jar" + "sha256": "27f2c741c32f75c8cc27bcef5c501ae61c4ea313f922856ef9c64f4edd95d6d6", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.10.0/zinc-persist-core-assembly-1.10.0-sources.jar" }, { - "coord": "org.scala-sbt:zinc-persist_2.13:1.9.3", + "coord": "org.scala-sbt:zinc-persist_2.13:1.10.0", "dependencies": [ - "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", - "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.13:0.9.1", - "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", + "org.scala-lang:scala-reflect:2.13.14", "com.lmax:disruptor:3.4.2", - "com.swoval:file-tree-views:2.1.10", - "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt:util-interface:1.10.0", + "org.jline:jline-terminal:3.24.1", + "org.fusesource.jansi:jansi:2.4.1", + "net.openhft:zero-allocation-hashing:0.16", "net.java.dev.jna:jna:5.14.0", - "net.openhft:zero-allocation-hashing:0.10.1", + "org.scala-sbt:util-relation_2.13:1.10.0", + "com.swoval:file-tree-views:2.1.12", + "org.scala-sbt:sbinary_2.13:0.5.1", + "org.scala-sbt:core-macros_2.13:1.10.0", + "org.scala-sbt:zinc-classfile_2.13:1.10.0", + "org.jline:jline-terminal-jansi:3.24.1", + "org.scala-sbt:zinc-core_2.13:1.10.0", + "org.scala-sbt:collections_2.13:1.10.0", + "org.scala-lang.modules:scala-xml_2.13:2.3.0", "org.apache.logging.log4j:log4j-api:2.17.1", - "org.apache.logging.log4j:log4j-core:2.17.1", - "org.fusesource.jansi:jansi:2.1.0", - "org.jline:jline-terminal-jansi:3.19.0", - "org.jline:jline-terminal-jna:3.19.0", - "org.jline:jline-terminal:3.19.0", - "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "org.scala-lang.modules:scala-xml_2.13:2.1.0", + "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", + "org.scala-sbt:util-control_2.13:1.10.0", + "org.jline:jline-native:3.24.1", "org.scala-lang:scala-compiler:2.13.14", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scala-sbt.jline:jline:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", - "org.scala-sbt:collections_2.13:1.9.2", - "org.scala-sbt:compiler-bridge_2.13:1.9.3", - "org.scala-sbt:compiler-interface:1.9.3", - "org.scala-sbt:core-macros_2.13:1.9.2", - "org.scala-sbt:io_2.13:1.9.1", + "org.scala-sbt:zinc-classpath_2.13:1.10.0", + "org.scala-sbt:util-logging_2.13:1.10.0", + "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt.jline:jline:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", + "org.scala-sbt:util-position_2.13:1.10.0", + "com.eed3si9n:sjson-new-core_2.13:0.9.1", + "org.scala-sbt:compiler-interface:1.10.0", "org.scala-sbt:launcher-interface:1.4.2", - "org.scala-sbt:sbinary_2.13:0.5.1", - "org.scala-sbt:util-control_2.13:1.9.2", - "org.scala-sbt:util-interface:1.9.2", - "org.scala-sbt:util-logging_2.13:1.9.2", - "org.scala-sbt:util-position_2.13:1.9.2", - "org.scala-sbt:util-relation_2.13:1.9.2", - "org.scala-sbt:zinc-apiinfo_2.13:1.9.3", - "org.scala-sbt:zinc-classfile_2.13:1.9.3", - "org.scala-sbt:zinc-classpath_2.13:1.9.3", - "org.scala-sbt:zinc-compile-core_2.13:1.9.3", - "org.scala-sbt:zinc-core_2.13:1.9.3", - "org.scala-sbt:zinc-persist-core-assembly:1.9.3" - ], - "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.13:2.1.0", + "org.scala-sbt:compiler-bridge_2.13:1.10.0", "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:zinc-compile-core_2.13:1.10.0", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.scala-sbt:zinc-persist-core-assembly:1.10.0", + "org.scala-sbt:io_2.13:1.10.0", + "org.jline:jline-terminal-jna:3.24.1", + "org.scala-sbt:zinc-apiinfo_2.13:1.10.0", + "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0" + ], + "directDependencies": [ "org.scala-sbt:sbinary_2.13:0.5.1", - "org.scala-sbt:zinc-compile-core_2.13:1.9.3", - "org.scala-sbt:zinc-core_2.13:1.9.3", - "org.scala-sbt:zinc-persist-core-assembly:1.9.3" + "org.scala-sbt:zinc-core_2.13:1.10.0", + "org.scala-lang.modules:scala-xml_2.13:2.3.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:zinc-compile-core_2.13:1.10.0", + "org.scala-sbt:zinc-persist-core-assembly:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist_2.13/1.9.3/zinc-persist_2.13-1.9.3.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist_2.13/1.10.0/zinc-persist_2.13-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist_2.13/1.9.3/zinc-persist_2.13-1.9.3.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-persist_2.13/1.9.3/zinc-persist_2.13-1.9.3.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.13/1.9.3/zinc-persist_2.13-1.9.3.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist_2.13/1.10.0/zinc-persist_2.13-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-persist_2.13/1.10.0/zinc-persist_2.13-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.13/1.10.0/zinc-persist_2.13-1.10.0.jar" ], - "sha256": "1d9df73c7b40247f13db6325e417c1d062ba98e7689a10f57d1d1d9a7904cd59", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist_2.13/1.9.3/zinc-persist_2.13-1.9.3.jar" + "sha256": "0b711e8056d39707f8ef669161a426acf03f98474d97c6d73d84bdf7082d6bdd", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist_2.13/1.10.0/zinc-persist_2.13-1.10.0.jar" }, { - "coord": "org.scala-sbt:zinc-persist_2.13:jar:sources:1.9.3", + "coord": "org.scala-sbt:zinc-persist_2.13:jar:sources:1.10.0", "dependencies": [ - "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", - "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "net.openhft:zero-allocation-hashing:jar:sources:0.16", + "org.scala-sbt:zinc-core_2.13:jar:sources:1.10.0", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", - "com.lmax:disruptor:jar:sources:3.4.2", - "com.swoval:file-tree-views:jar:sources:2.1.10", + "org.scala-sbt:io_2.13:jar:sources:1.10.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "org.scala-sbt:util-relation_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.10.0", + "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", + "org.jline:jline-native:jar:sources:3.24.1", + "org.scala-sbt:util-interface:jar:sources:1.10.0", + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.3.0", + "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", + "com.lmax:disruptor:jar:sources:3.4.2", "net.java.dev.jna:jna:jar:sources:5.14.0", - "net.openhft:zero-allocation-hashing:jar:sources:0.10.1", - "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", - "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", - "org.fusesource.jansi:jansi:jar:sources:2.1.0", - "org.jline:jline-terminal-jansi:jar:sources:3.19.0", - "org.jline:jline-terminal-jna:jar:sources:3.19.0", - "org.jline:jline-terminal:jar:sources:3.19.0", - "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.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:2.1.0", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", - "org.scala-sbt:collections_2.13:jar:sources:1.9.2", - "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.9.3", - "org.scala-sbt:compiler-interface:jar:sources:1.9.3", - "org.scala-sbt:core-macros_2.13:jar:sources:1.9.2", - "org.scala-sbt:io_2.13:jar:sources:1.9.1", + "org.jline:jline-terminal-jna:jar:sources:3.24.1", "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "org.jline:jline-terminal-jansi:jar:sources:3.24.1", + "org.jline:jline-terminal:jar:sources:3.24.1", + "com.swoval:file-tree-views:jar:sources:2.1.12", + "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.10.0", + "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", "org.scala-sbt:sbinary_2.13:jar:sources:0.5.1", - "org.scala-sbt:util-control_2.13:jar:sources:1.9.2", - "org.scala-sbt:util-interface:jar:sources:1.9.2", - "org.scala-sbt:util-logging_2.13:jar:sources:1.9.2", - "org.scala-sbt:util-position_2.13:jar:sources:1.9.2", - "org.scala-sbt:util-relation_2.13:jar:sources:1.9.2", - "org.scala-sbt:zinc-apiinfo_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-classpath_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-core_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-persist-core-assembly:jar:sources:1.9.3" - ], - "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.1.0", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt:util-logging_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-classpath_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-persist-core-assembly:jar:sources:1.10.0", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-sbt:core-macros_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-apiinfo_2.13:jar:sources:1.10.0", + "org.scala-sbt:util-control_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.10.0", + "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "org.scala-sbt:compiler-interface:jar:sources:1.10.0", + "org.fusesource.jansi:jansi:jar:sources:2.4.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.scala-sbt:util-position_2.13:jar:sources:1.10.0", + "org.scala-sbt:collections_2.13:jar:sources:1.10.0" + ], + "directDependencies": [ + "org.scala-sbt:zinc-core_2.13:jar:sources:1.10.0", "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.10.0", + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.3.0", "org.scala-sbt:sbinary_2.13:jar:sources:0.5.1", - "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-core_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-persist-core-assembly:jar:sources:1.9.3" + "org.scala-sbt:zinc-persist-core-assembly:jar:sources:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist_2.13/1.9.3/zinc-persist_2.13-1.9.3-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist_2.13/1.10.0/zinc-persist_2.13-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist_2.13/1.9.3/zinc-persist_2.13-1.9.3-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-persist_2.13/1.9.3/zinc-persist_2.13-1.9.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.13/1.9.3/zinc-persist_2.13-1.9.3-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist_2.13/1.10.0/zinc-persist_2.13-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc-persist_2.13/1.10.0/zinc-persist_2.13-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.13/1.10.0/zinc-persist_2.13-1.10.0-sources.jar" ], - "sha256": "2f9d7a4d67ff05da8dfec9de9497fac794ec82e596c36747ba82f7271845183f", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist_2.13/1.9.3/zinc-persist_2.13-1.9.3-sources.jar" + "sha256": "5ebe3c3f152701fa17a2440d563ecfef4d2d49fcf19327d4c53ad242f5cb1bf3", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc-persist_2.13/1.10.0/zinc-persist_2.13-1.10.0-sources.jar" }, { - "coord": "org.scala-sbt:zinc_2.13:1.9.3", + "coord": "org.scala-sbt:zinc_2.13:1.10.0", "dependencies": [ - "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", - "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.13:0.9.1", - "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", + "org.scala-lang:scala-reflect:2.13.14", "com.lmax:disruptor:3.4.2", - "com.swoval:file-tree-views:2.1.10", - "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt:util-interface:1.10.0", + "org.jline:jline-terminal:3.24.1", + "org.fusesource.jansi:jansi:2.4.1", + "net.openhft:zero-allocation-hashing:0.16", "net.java.dev.jna:jna:5.14.0", - "net.openhft:zero-allocation-hashing:0.10.1", + "org.scala-sbt:util-relation_2.13:1.10.0", + "com.swoval:file-tree-views:2.1.12", + "org.scala-sbt:sbinary_2.13:0.5.1", + "org.scala-sbt:core-macros_2.13:1.10.0", + "org.scala-sbt:zinc-classfile_2.13:1.10.0", + "org.jline:jline-terminal-jansi:3.24.1", + "org.scala-sbt:zinc-core_2.13:1.10.0", + "org.scala-sbt:collections_2.13:1.10.0", + "org.scala-lang.modules:scala-xml_2.13:2.3.0", "org.apache.logging.log4j:log4j-api:2.17.1", - "org.apache.logging.log4j:log4j-core:2.17.1", - "org.fusesource.jansi:jansi:2.1.0", - "org.jline:jline-terminal-jansi:3.19.0", - "org.jline:jline-terminal-jna:3.19.0", - "org.jline:jline-terminal:3.19.0", - "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0", - "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "org.scala-lang.modules:scala-xml_2.13:2.1.0", + "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", + "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", + "org.scala-sbt:util-control_2.13:1.10.0", + "org.jline:jline-native:3.24.1", "org.scala-lang:scala-compiler:2.13.14", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scala-sbt.jline:jline:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", - "org.scala-sbt:collections_2.13:1.9.2", - "org.scala-sbt:compiler-bridge_2.13:1.9.3", - "org.scala-sbt:compiler-interface:1.9.3", - "org.scala-sbt:core-macros_2.13:1.9.2", - "org.scala-sbt:io_2.13:1.9.1", + "org.scala-sbt:zinc-classpath_2.13:1.10.0", + "org.scala-sbt:util-logging_2.13:1.10.0", + "net.java.dev.jna:jna-platform:5.13.0", + "org.scala-sbt.jline:jline:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", + "org.scala-sbt:util-position_2.13:1.10.0", + "com.eed3si9n:sjson-new-core_2.13:0.9.1", + "org.scala-sbt:compiler-interface:1.10.0", "org.scala-sbt:launcher-interface:1.4.2", - "org.scala-sbt:sbinary_2.13:0.5.1", - "org.scala-sbt:util-control_2.13:1.9.2", - "org.scala-sbt:util-interface:1.9.2", - "org.scala-sbt:util-logging_2.13:1.9.2", - "org.scala-sbt:util-position_2.13:1.9.2", - "org.scala-sbt:util-relation_2.13:1.9.2", - "org.scala-sbt:zinc-apiinfo_2.13:1.9.3", - "org.scala-sbt:zinc-classfile_2.13:1.9.3", - "org.scala-sbt:zinc-classpath_2.13:1.9.3", - "org.scala-sbt:zinc-compile-core_2.13:1.9.3", - "org.scala-sbt:zinc-core_2.13:1.9.3", - "org.scala-sbt:zinc-persist-core-assembly:1.9.3", - "org.scala-sbt:zinc-persist_2.13:1.9.3" + "org.scala-sbt:compiler-bridge_2.13:1.10.0", + "org.scala-lang:scala-library:2.13.14", + "org.scala-sbt:zinc-compile-core_2.13:1.10.0", + "org.apache.logging.log4j:log4j-core:2.17.1", + "org.scala-sbt:zinc-persist-core-assembly:1.10.0", + "org.scala-sbt:zinc-persist_2.13:1.10.0", + "org.scala-sbt:io_2.13:1.10.0", + "org.jline:jline-terminal-jna:3.24.1", + "org.scala-sbt:zinc-apiinfo_2.13:1.10.0", + "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0" ], "directDependencies": [ + "org.scala-sbt:zinc-classfile_2.13:1.10.0", + "org.scala-sbt:zinc-core_2.13:1.10.0", "org.scala-lang:scala-library:2.13.14", - "org.scala-sbt:zinc-classfile_2.13:1.9.3", - "org.scala-sbt:zinc-compile-core_2.13:1.9.3", - "org.scala-sbt:zinc-core_2.13:1.9.3", - "org.scala-sbt:zinc-persist_2.13:1.9.3" + "org.scala-sbt:zinc-compile-core_2.13:1.10.0", + "org.scala-sbt:zinc-persist_2.13:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc_2.13/1.9.3/zinc_2.13-1.9.3.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc_2.13/1.10.0/zinc_2.13-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc_2.13/1.9.3/zinc_2.13-1.9.3.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc_2.13/1.9.3/zinc_2.13-1.9.3.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc_2.13/1.9.3/zinc_2.13-1.9.3.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc_2.13/1.10.0/zinc_2.13-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc_2.13/1.10.0/zinc_2.13-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc_2.13/1.10.0/zinc_2.13-1.10.0.jar" ], - "sha256": "41eee1dae30599627287303ddb7b3ab5de1147aba20867fb4419dfee605d8a92", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc_2.13/1.9.3/zinc_2.13-1.9.3.jar" + "sha256": "689d4d48d95e5189eb5e3e52cec1ca98a5b1073326492e16ee16ea8d4aab7779", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc_2.13/1.10.0/zinc_2.13-1.10.0.jar" }, { - "coord": "org.scala-sbt:zinc_2.13:jar:sources:1.9.3", + "coord": "org.scala-sbt:zinc_2.13:jar:sources:1.10.0", "dependencies": [ - "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", - "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", - "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "net.openhft:zero-allocation-hashing:jar:sources:0.16", + "org.scala-sbt:zinc-core_2.13:jar:sources:1.10.0", + "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", - "com.lmax:disruptor:jar:sources:3.4.2", - "com.swoval:file-tree-views:jar:sources:2.1.10", + "org.scala-sbt:io_2.13:jar:sources:1.10.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "net.java.dev.jna:jna-platform:jar:sources:5.13.0", + "org.scala-sbt:util-relation_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.10.0", + "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", + "org.jline:jline-native:jar:sources:3.24.1", + "org.scala-sbt:util-interface:jar:sources:1.10.0", + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.3.0", + "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", + "com.lmax:disruptor:jar:sources:3.4.2", "net.java.dev.jna:jna:jar:sources:5.14.0", - "net.openhft:zero-allocation-hashing:jar:sources:0.10.1", - "org.apache.logging.log4j:log4j-api:jar:sources:2.17.1", - "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", - "org.fusesource.jansi:jansi:jar:sources:2.1.0", - "org.jline:jline-terminal-jansi:jar:sources:3.19.0", - "org.jline:jline-terminal-jna:jar:sources:3.19.0", - "org.jline:jline-terminal:jar:sources:3.19.0", - "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.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:2.1.0", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493", - "org.scala-sbt:collections_2.13:jar:sources:1.9.2", - "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.9.3", - "org.scala-sbt:compiler-interface:jar:sources:1.9.3", - "org.scala-sbt:core-macros_2.13:jar:sources:1.9.2", - "org.scala-sbt:io_2.13:jar:sources:1.9.1", + "org.jline:jline-terminal-jna:jar:sources:3.24.1", "org.scala-sbt:launcher-interface:jar:sources:1.4.2", + "org.jline:jline-terminal-jansi:jar:sources:3.24.1", + "org.jline:jline-terminal:jar:sources:3.24.1", + "com.swoval:file-tree-views:jar:sources:2.1.12", + "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.10.0", + "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", "org.scala-sbt:sbinary_2.13:jar:sources:0.5.1", - "org.scala-sbt:util-control_2.13:jar:sources:1.9.2", - "org.scala-sbt:util-interface:jar:sources:1.9.2", - "org.scala-sbt:util-logging_2.13:jar:sources:1.9.2", - "org.scala-sbt:util-position_2.13:jar:sources:1.9.2", - "org.scala-sbt:util-relation_2.13:jar:sources:1.9.2", - "org.scala-sbt:zinc-apiinfo_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-classpath_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-core_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-persist-core-assembly:jar:sources:1.9.3", - "org.scala-sbt:zinc-persist_2.13:jar:sources:1.9.3" + "org.scala-sbt:zinc-persist_2.13:jar:sources:1.10.0", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-sbt:util-logging_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-classpath_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-persist-core-assembly:jar:sources:1.10.0", + "org.scala-lang:scala-compiler:jar:sources:2.13.14", + "org.scala-sbt:core-macros_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-apiinfo_2.13:jar:sources:1.10.0", + "org.scala-sbt:util-control_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.10.0", + "com.eed3si9n:sjson-new-core_2.13:jar:sources:0.9.1", + "org.scala-sbt:compiler-interface:jar:sources:1.10.0", + "org.fusesource.jansi:jansi:jar:sources:2.4.1", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:0.2.0", + "org.apache.logging.log4j:log4j-core:jar:sources:2.17.1", + "org.scala-sbt:util-position_2.13:jar:sources:1.10.0", + "org.scala-sbt:collections_2.13:jar:sources:1.10.0" ], "directDependencies": [ + "org.scala-sbt:zinc-core_2.13:jar:sources:1.10.0", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-core_2.13:jar:sources:1.9.3", - "org.scala-sbt:zinc-persist_2.13:jar:sources:1.9.3" + "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-persist_2.13:jar:sources:1.10.0", + "org.scala-sbt:zinc-classfile_2.13:jar:sources:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc_2.13/1.9.3/zinc_2.13-1.9.3-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/zinc_2.13/1.10.0/zinc_2.13-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc_2.13/1.9.3/zinc_2.13-1.9.3-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc_2.13/1.9.3/zinc_2.13-1.9.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc_2.13/1.9.3/zinc_2.13-1.9.3-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc_2.13/1.10.0/zinc_2.13-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/zinc_2.13/1.10.0/zinc_2.13-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/zinc_2.13/1.10.0/zinc_2.13-1.10.0-sources.jar" ], - "sha256": "d20c3cf6861a43b1cda0f1ea452ed79aa4a92b49e67eb974e4e2c2e7b40e0fa1", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc_2.13/1.9.3/zinc_2.13-1.9.3-sources.jar" + "sha256": "bd8bb5c9ff18593a20be062c72e39e6fe4835e95becdd379ba4df45f514fba85", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/zinc_2.13/1.10.0/zinc_2.13-1.10.0-sources.jar" }, { "coord": "org.scalameta:jsonrpc_2.12:0.1.0", "dependencies": [ - "ch.qos.logback:logback-classic:1.2.3", - "ch.qos.logback:logback-core:1.2.3", - "com.beachape:enumeratum-circe_2.12:1.5.15", + "io.monix:monix_2.12:2.3.3", + "org.scala-lang:scala-reflect:2.13.14", "com.beachape:enumeratum-macros_2.12:1.5.9", - "com.beachape:enumeratum_2.12:1.5.12", - "com.chuusai:shapeless_2.12:2.3.3", "com.lihaoyi:fansi_2.12:0.2.5", - "com.lihaoyi:pprint_2.12:0.5.3", - "com.lihaoyi:sourcecode_2.12:0.1.4", - "com.typesafe.scala-logging:scala-logging_2.12:3.7.2", - "io.circe:circe-core_2.12:0.9.3", - "io.circe:circe-generic-extras_2.12:0.9.0", - "io.circe:circe-generic_2.12:0.9.0", - "io.circe:circe-numbers_2.12:0.9.3", "io.circe:circe-parser_2.12:0.9.3", - "io.monix:monix_2.12:2.3.3", "org.codehaus.groovy:groovy:2.4.0", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", + "io.circe:circe-generic_2.12:0.9.0", + "ch.qos.logback:logback-classic:1.2.3", + "com.chuusai:shapeless_2.12:2.3.3", + "io.circe:circe-generic-extras_2.12:0.9.0", + "io.circe:circe-numbers_2.12:0.9.3", + "com.beachape:enumeratum-circe_2.12:1.5.15", + "org.typelevel:macro-compat_2.12:1.1.1", "org.slf4j:slf4j-api:1.7.25", + "org.typelevel:machinist_2.12:0.6.2", "org.typelevel:cats-core_2.12:1.0.1", - "org.typelevel:cats-kernel_2.12:1.0.1", "org.typelevel:cats-macros_2.12:1.0.1", - "org.typelevel:machinist_2.12:0.6.2", - "org.typelevel:macro-compat_2.12:1.1.1" + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.scala-lang:scala-library:2.13.14", + "ch.qos.logback:logback-core:1.2.3", + "io.circe:circe-core_2.12:0.9.3", + "com.typesafe.scala-logging:scala-logging_2.12:3.7.2", + "com.lihaoyi:sourcecode_2.12:0.1.4", + "com.lihaoyi:pprint_2.12:0.5.3", + "com.beachape:enumeratum_2.12:1.5.12" ], "directDependencies": [ - "ch.qos.logback:logback-classic:1.2.3", - "com.beachape:enumeratum-circe_2.12:1.5.15", - "com.beachape:enumeratum_2.12:1.5.12", - "com.lihaoyi:pprint_2.12:0.5.3", - "com.typesafe.scala-logging:scala-logging_2.12:3.7.2", - "io.circe:circe-core_2.12:0.9.3", - "io.circe:circe-generic-extras_2.12:0.9.0", - "io.circe:circe-generic_2.12:0.9.0", - "io.circe:circe-parser_2.12:0.9.3", "io.monix:monix_2.12:2.3.3", + "io.circe:circe-parser_2.12:0.9.3", "org.codehaus.groovy:groovy:2.4.0", - "org.scala-lang:scala-library:2.13.14", + "io.circe:circe-generic_2.12:0.9.0", + "ch.qos.logback:logback-classic:1.2.3", + "io.circe:circe-generic-extras_2.12:0.9.0", + "com.beachape:enumeratum-circe_2.12:1.5.15", "org.slf4j:slf4j-api:1.7.25", - "org.typelevel:cats-core_2.12:1.0.1" + "org.typelevel:cats-core_2.12:1.0.1", + "org.scala-lang:scala-library:2.13.14", + "io.circe:circe-core_2.12:0.9.3", + "com.typesafe.scala-logging:scala-logging_2.12:3.7.2", + "com.lihaoyi:pprint_2.12:0.5.3", + "com.beachape:enumeratum_2.12:1.5.12" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/jsonrpc_2.12/0.1.0/jsonrpc_2.12-0.1.0.jar", "mirror_urls": [ @@ -6763,47 +6809,47 @@ { "coord": "org.scalameta:jsonrpc_2.12:jar:sources:0.1.0", "dependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.3", - "ch.qos.logback:logback-core:jar:sources:1.2.3", - "com.beachape:enumeratum-circe_2.12:jar:sources:1.5.15", - "com.beachape:enumeratum-macros_2.12:jar:sources:1.5.9", - "com.beachape:enumeratum_2.12:jar:sources:1.5.12", - "com.chuusai:shapeless_2.12:jar:sources:2.3.3", - "com.lihaoyi:fansi_2.12:jar:sources:0.2.5", - "com.lihaoyi:pprint_2.12:jar:sources:0.5.3", - "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "org.slf4j:slf4j-api:jar:sources:1.7.25", "com.typesafe.scala-logging:scala-logging_2.12:jar:sources:3.7.2", + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", "io.circe:circe-core_2.12:jar:sources:0.9.3", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.chuusai:shapeless_2.12:jar:sources:2.3.3", + "com.beachape:enumeratum-macros_2.12:jar:sources:1.5.9", + "com.beachape:enumeratum_2.12:jar:sources:1.5.12", "io.circe:circe-generic-extras_2.12:jar:sources:0.9.0", - "io.circe:circe-generic_2.12:jar:sources:0.9.0", + "ch.qos.logback:logback-core:jar:sources:1.2.3", "io.circe:circe-numbers_2.12:jar:sources:0.9.3", - "io.circe:circe-parser_2.12:jar:sources:0.9.3", + "ch.qos.logback:logback-classic:jar:sources:1.2.3", + "com.lihaoyi:pprint_2.12:jar:sources:0.5.3", + "com.beachape:enumeratum-circe_2.12:jar:sources:1.5.15", + "io.circe:circe-generic_2.12:jar:sources:0.9.0", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "com.lihaoyi:fansi_2.12:jar:sources:0.2.5", "io.monix:monix_2.12:jar:sources:2.3.3", - "org.codehaus.groovy:groovy:jar:sources:2.4.0", - "org.scala-lang:scala-library:jar:sources:2.13.14", + "io.circe:circe-parser_2.12:jar:sources:0.9.3", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.slf4j:slf4j-api:jar:sources:1.7.25", "org.typelevel:cats-core_2.12:jar:sources:1.0.1", - "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", - "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "org.codehaus.groovy:groovy:jar:sources:2.4.0", "org.typelevel:machinist_2.12:jar:sources:0.6.2", "org.typelevel:macro-compat_2.12:jar:sources:1.1.1" ], "directDependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.3", - "com.beachape:enumeratum-circe_2.12:jar:sources:1.5.15", - "com.beachape:enumeratum_2.12:jar:sources:1.5.12", - "com.lihaoyi:pprint_2.12:jar:sources:0.5.3", + "org.slf4j:slf4j-api:jar:sources:1.7.25", "com.typesafe.scala-logging:scala-logging_2.12:jar:sources:3.7.2", "io.circe:circe-core_2.12:jar:sources:0.9.3", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.beachape:enumeratum_2.12:jar:sources:1.5.12", "io.circe:circe-generic-extras_2.12:jar:sources:0.9.0", + "ch.qos.logback:logback-classic:jar:sources:1.2.3", + "com.lihaoyi:pprint_2.12:jar:sources:0.5.3", + "com.beachape:enumeratum-circe_2.12:jar:sources:1.5.15", "io.circe:circe-generic_2.12:jar:sources:0.9.0", - "io.circe:circe-parser_2.12:jar:sources:0.9.3", "io.monix:monix_2.12:jar:sources:2.3.3", - "org.codehaus.groovy:groovy:jar:sources:2.4.0", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.slf4j:slf4j-api:jar:sources:1.7.25", - "org.typelevel:cats-core_2.12:jar:sources:1.0.1" + "io.circe:circe-parser_2.12:jar:sources:0.9.3", + "org.typelevel:cats-core_2.12:jar:sources:1.0.1", + "org.codehaus.groovy:groovy:jar:sources:2.4.0" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/jsonrpc_2.12/0.1.0/jsonrpc_2.12-0.1.0-sources.jar", "mirror_urls": [ @@ -6817,32 +6863,32 @@ { "coord": "org.scalameta:lsp4s_2.12:0.1.0", "dependencies": [ - "ch.qos.logback:logback-classic:1.2.3", - "ch.qos.logback:logback-core:1.2.3", - "com.beachape:enumeratum-circe_2.12:1.5.15", + "io.monix:monix_2.12:2.3.3", + "org.scala-lang:scala-reflect:2.13.14", "com.beachape:enumeratum-macros_2.12:1.5.9", - "com.beachape:enumeratum_2.12:1.5.12", - "com.chuusai:shapeless_2.12:2.3.3", "com.lihaoyi:fansi_2.12:0.2.5", - "com.lihaoyi:pprint_2.12:0.5.3", - "com.lihaoyi:sourcecode_2.12:0.1.4", - "com.typesafe.scala-logging:scala-logging_2.12:3.7.2", - "io.circe:circe-core_2.12:0.9.3", - "io.circe:circe-generic-extras_2.12:0.9.0", - "io.circe:circe-generic_2.12:0.9.0", - "io.circe:circe-numbers_2.12:0.9.3", "io.circe:circe-parser_2.12:0.9.3", - "io.monix:monix_2.12:2.3.3", "org.codehaus.groovy:groovy:2.4.0", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", + "io.circe:circe-generic_2.12:0.9.0", + "ch.qos.logback:logback-classic:1.2.3", + "com.chuusai:shapeless_2.12:2.3.3", "org.scalameta:jsonrpc_2.12:0.1.0", + "io.circe:circe-generic-extras_2.12:0.9.0", + "io.circe:circe-numbers_2.12:0.9.3", + "com.beachape:enumeratum-circe_2.12:1.5.15", + "org.typelevel:macro-compat_2.12:1.1.1", "org.slf4j:slf4j-api:1.7.25", + "org.typelevel:machinist_2.12:0.6.2", "org.typelevel:cats-core_2.12:1.0.1", - "org.typelevel:cats-kernel_2.12:1.0.1", "org.typelevel:cats-macros_2.12:1.0.1", - "org.typelevel:machinist_2.12:0.6.2", - "org.typelevel:macro-compat_2.12:1.1.1" + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.scala-lang:scala-library:2.13.14", + "ch.qos.logback:logback-core:1.2.3", + "io.circe:circe-core_2.12:0.9.3", + "com.typesafe.scala-logging:scala-logging_2.12:3.7.2", + "com.lihaoyi:sourcecode_2.12:0.1.4", + "com.lihaoyi:pprint_2.12:0.5.3", + "com.beachape:enumeratum_2.12:1.5.12" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14", @@ -6860,30 +6906,30 @@ { "coord": "org.scalameta:lsp4s_2.12:jar:sources:0.1.0", "dependencies": [ - "ch.qos.logback:logback-classic:jar:sources:1.2.3", - "ch.qos.logback:logback-core:jar:sources:1.2.3", - "com.beachape:enumeratum-circe_2.12:jar:sources:1.5.15", - "com.beachape:enumeratum-macros_2.12:jar:sources:1.5.9", - "com.beachape:enumeratum_2.12:jar:sources:1.5.12", - "com.chuusai:shapeless_2.12:jar:sources:2.3.3", - "com.lihaoyi:fansi_2.12:jar:sources:0.2.5", - "com.lihaoyi:pprint_2.12:jar:sources:0.5.3", - "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", + "org.slf4j:slf4j-api:jar:sources:1.7.25", "com.typesafe.scala-logging:scala-logging_2.12:jar:sources:3.7.2", + "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.4", "io.circe:circe-core_2.12:jar:sources:0.9.3", + "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.chuusai:shapeless_2.12:jar:sources:2.3.3", + "com.beachape:enumeratum-macros_2.12:jar:sources:1.5.9", + "com.beachape:enumeratum_2.12:jar:sources:1.5.12", "io.circe:circe-generic-extras_2.12:jar:sources:0.9.0", - "io.circe:circe-generic_2.12:jar:sources:0.9.0", + "org.scalameta:jsonrpc_2.12:jar:sources:0.1.0", + "ch.qos.logback:logback-core:jar:sources:1.2.3", "io.circe:circe-numbers_2.12:jar:sources:0.9.3", - "io.circe:circe-parser_2.12:jar:sources:0.9.3", + "ch.qos.logback:logback-classic:jar:sources:1.2.3", + "com.lihaoyi:pprint_2.12:jar:sources:0.5.3", + "com.beachape:enumeratum-circe_2.12:jar:sources:1.5.15", + "io.circe:circe-generic_2.12:jar:sources:0.9.0", + "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "com.lihaoyi:fansi_2.12:jar:sources:0.2.5", "io.monix:monix_2.12:jar:sources:2.3.3", - "org.codehaus.groovy:groovy:jar:sources:2.4.0", - "org.scala-lang:scala-library:jar:sources:2.13.14", + "io.circe:circe-parser_2.12:jar:sources:0.9.3", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalameta:jsonrpc_2.12:jar:sources:0.1.0", - "org.slf4j:slf4j-api:jar:sources:1.7.25", "org.typelevel:cats-core_2.12:jar:sources:1.0.1", - "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", - "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "org.codehaus.groovy:groovy:jar:sources:2.4.0", "org.typelevel:machinist_2.12:jar:sources:0.6.2", "org.typelevel:macro-compat_2.12:jar:sources:1.1.1" ], @@ -6903,8 +6949,8 @@ { "coord": "org.scalaz:scalaz-concurrent_2.12:7.2.20", "dependencies": [ - "org.scala-lang:scala-library:2.13.14", "org.scalaz:scalaz-core_2.12:7.2.20", + "org.scala-lang:scala-library:2.13.14", "org.scalaz:scalaz-effect_2.12:7.2.20" ], "directDependencies": [ @@ -6924,8 +6970,8 @@ { "coord": "org.scalaz:scalaz-concurrent_2.12:jar:sources:7.2.20", "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scalaz:scalaz-core_2.12:jar:sources:7.2.20", + "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scalaz:scalaz-effect_2.12:jar:sources:7.2.20" ], "directDependencies": [ @@ -6979,8 +7025,8 @@ { "coord": "org.scalaz:scalaz-effect_2.12:7.2.20", "dependencies": [ - "org.scala-lang:scala-library:2.13.14", - "org.scalaz:scalaz-core_2.12:7.2.20" + "org.scalaz:scalaz-core_2.12:7.2.20", + "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14", @@ -6998,8 +7044,8 @@ { "coord": "org.scalaz:scalaz-effect_2.12:jar:sources:7.2.20", "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scalaz:scalaz-core_2.12:jar:sources:7.2.20" + "org.scalaz:scalaz-core_2.12:jar:sources:7.2.20", + "org.scala-lang:scala-library:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", @@ -7077,11 +7123,11 @@ { "coord": "org.typelevel:cats-core_2.12:1.0.1", "dependencies": [ - "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.typelevel:cats-kernel_2.12:1.0.1", + "org.typelevel:machinist_2.12:0.6.2", "org.typelevel:cats-macros_2.12:1.0.1", - "org.typelevel:machinist_2.12:0.6.2" + "org.typelevel:cats-kernel_2.12:1.0.1", + "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14", @@ -7101,10 +7147,10 @@ { "coord": "org.typelevel:cats-core_2.12:jar:sources:1.0.1", "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", "org.typelevel:cats-kernel_2.12:jar:sources:1.0.1", + "org.scala-lang:scala-library:jar:sources:2.13.14", "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", + "org.scala-lang:scala-reflect:jar:sources:2.13.14", "org.typelevel:machinist_2.12:jar:sources:0.6.2" ], "directDependencies": [ @@ -7179,8 +7225,8 @@ { "coord": "org.typelevel:cats-macros_2.12:jar:sources:1.0.1", "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", "org.typelevel:machinist_2.12:jar:sources:0.6.2" ], "directDependencies": [ @@ -7218,8 +7264,8 @@ { "coord": "org.typelevel:machinist_2.12:jar:sources:0.6.2", "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14" + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", @@ -7267,6 +7313,12 @@ ], "sha256": "c748cbcda2e8828dd25e788617a4c559abf92960ef0f92f9f5d3ea67774c34c8", "url": "https://repo.maven.apache.org/maven2/org/typelevel/macro-compat_2.12/1.1.1/macro-compat_2.12-1.1.1-sources.jar" + }, + { + "coord": "com.google.code.findbugs:jsr305:jar:sources:1.3.9", + "dependencies": [], + "directDependencies": [], + "file": null } ], "version": "0.1.0" diff --git a/annex_proto_install.json b/annex_proto_install.json index 293dfe901..948bf468e 100644 --- a/annex_proto_install.json +++ b/annex_proto_install.json @@ -60,18 +60,18 @@ { "coord": "com.thesamet.scalapb:compilerplugin_2.13:0.11.17", "dependencies": [ + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "com.thesamet.scalapb:protoc-gen_2.13:0.9.7", "com.google.protobuf:protobuf-java:3.19.6", "com.thesamet.scalapb:protoc-bridge_2.13:0.9.7", - "com.thesamet.scalapb:protoc-gen_2.13:0.9.7", "dev.dirs:directories:26", - "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ "com.google.protobuf:protobuf-java:3.19.6", "com.thesamet.scalapb:protoc-gen_2.13:0.9.7", - "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0" ], "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.17/compilerplugin_2.13-0.11.17.jar", "mirror_urls": [ @@ -85,18 +85,18 @@ { "coord": "com.thesamet.scalapb:compilerplugin_2.13:jar:sources:0.11.17", "dependencies": [ - "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "org.scala-lang:scala-library:jar:sources:2.13.14", "com.thesamet.scalapb:protoc-bridge_2.13:jar:sources:0.9.7", - "com.thesamet.scalapb:protoc-gen_2.13:jar:sources:0.9.7", + "com.google.protobuf:protobuf-java:jar:sources:3.19.6", "dev.dirs:directories:jar:sources:26", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "com.thesamet.scalapb:protoc-gen_2.13:jar:sources:0.9.7" ], "directDependencies": [ "com.google.protobuf:protobuf-java:jar:sources:3.19.6", "com.thesamet.scalapb:protoc-gen_2.13:jar:sources:0.9.7", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0" ], "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/compilerplugin_2.13/0.11.17/compilerplugin_2.13-0.11.17-sources.jar", "mirror_urls": [ @@ -110,8 +110,8 @@ { "coord": "com.thesamet.scalapb:protoc-bridge_2.13:0.9.7", "dependencies": [ - "dev.dirs:directories:26", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "dev.dirs:directories:26" ], "directDependencies": [ "dev.dirs:directories:26", @@ -148,9 +148,9 @@ { "coord": "com.thesamet.scalapb:protoc-gen_2.13:0.9.7", "dependencies": [ - "com.thesamet.scalapb:protoc-bridge_2.13:0.9.7", + "org.scala-lang:scala-library:2.13.14", "dev.dirs:directories:26", - "org.scala-lang:scala-library:2.13.14" + "com.thesamet.scalapb:protoc-bridge_2.13:0.9.7" ], "directDependencies": [ "com.thesamet.scalapb:protoc-bridge_2.13:0.9.7", @@ -171,8 +171,8 @@ { "coord": "com.thesamet.scalapb:protoc-gen_2.13:jar:sources:0.9.7", "dependencies": [ - "com.thesamet.scalapb:protoc-bridge_2.13:jar:sources:0.9.7", "dev.dirs:directories:jar:sources:26", + "com.thesamet.scalapb:protoc-bridge_2.13:jar:sources:0.9.7", "org.scala-lang:scala-library:jar:sources:2.13.14" ], "directDependencies": [ diff --git a/annex_scalafmt_install.json b/annex_scalafmt_install.json index fabb53b9c..710ac224b 100644 --- a/annex_scalafmt_install.json +++ b/annex_scalafmt_install.json @@ -8,23 +8,23 @@ { "coord": "com.geirsson:metaconfig-core_2.13:0.12.0", "dependencies": [ - "com.geirsson:metaconfig-pprint_2.13:0.12.0", - "com.lihaoyi:fansi_2.13:0.4.0", "com.lihaoyi:sourcecode_2.13:0.4.2", - "net.java.dev.jna:jna:5.14.0", - "org.jline:jline:3.25.1", "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", - "org.scala-lang:scala-compiler:2.13.14", - "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.typelevel:paiges-core_2.13:0.4.3" + "net.java.dev.jna:jna:5.14.0", + "com.geirsson:metaconfig-pprint_2.13:0.12.0", + "org.scala-lang:scala-compiler:2.13.14", + "org.typelevel:paiges-core_2.13:0.4.3", + "com.lihaoyi:fansi_2.13:0.4.0", + "org.jline:jline:3.25.1", + "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ - "com.geirsson:metaconfig-pprint_2.13:0.12.0", "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", - "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.typelevel:paiges-core_2.13:0.4.3" + "com.geirsson:metaconfig-pprint_2.13:0.12.0", + "org.typelevel:paiges-core_2.13:0.4.3", + "org.scala-lang:scala-library:2.13.14" ], "file": "v1/https/repo.maven.apache.org/maven2/com/geirsson/metaconfig-core_2.13/0.12.0/metaconfig-core_2.13-0.12.0.jar", "mirror_urls": [ @@ -38,23 +38,23 @@ { "coord": "com.geirsson:metaconfig-core_2.13:jar:sources:0.12.0", "dependencies": [ + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.typelevel:paiges-core_2.13:jar:sources:0.4.3", "com.geirsson:metaconfig-pprint_2.13:jar:sources:0.12.0", "com.lihaoyi:fansi_2.13:jar:sources:0.4.0", - "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", "net.java.dev.jna:jna:jar:sources:5.14.0", "org.jline:jline:jar:sources:3.25.1", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.typelevel:paiges-core_2.13:jar:sources:0.4.3" + "org.scala-lang:scala-compiler:jar:sources:2.13.14" ], "directDependencies": [ - "com.geirsson:metaconfig-pprint_2.13:jar:sources:0.12.0", "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.typelevel:paiges-core_2.13:jar:sources:0.4.3" + "org.typelevel:paiges-core_2.13:jar:sources:0.4.3", + "com.geirsson:metaconfig-pprint_2.13:jar:sources:0.12.0", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "file": "v1/https/repo.maven.apache.org/maven2/com/geirsson/metaconfig-core_2.13/0.12.0/metaconfig-core_2.13-0.12.0-sources.jar", "mirror_urls": [ @@ -68,13 +68,13 @@ { "coord": "com.geirsson:metaconfig-pprint_2.13:0.12.0", "dependencies": [ - "com.lihaoyi:fansi_2.13:0.4.0", "com.lihaoyi:sourcecode_2.13:0.4.2", + "org.scala-lang:scala-reflect:2.13.14", "net.java.dev.jna:jna:5.14.0", - "org.jline:jline:3.25.1", "org.scala-lang:scala-compiler:2.13.14", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14" + "com.lihaoyi:fansi_2.13:0.4.0", + "org.jline:jline:3.25.1", + "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ "com.lihaoyi:fansi_2.13:0.4.0", @@ -94,13 +94,13 @@ { "coord": "com.geirsson:metaconfig-pprint_2.13:jar:sources:0.12.0", "dependencies": [ - "com.lihaoyi:fansi_2.13:jar:sources:0.4.0", "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.lihaoyi:fansi_2.13:jar:sources:0.4.0", "net.java.dev.jna:jna:jar:sources:5.14.0", "org.jline:jline:jar:sources:3.25.1", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14" + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-lang:scala-compiler:jar:sources:2.13.14" ], "directDependencies": [ "com.lihaoyi:fansi_2.13:jar:sources:0.4.0", @@ -120,18 +120,18 @@ { "coord": "com.geirsson:metaconfig-typesafe-config_2.13:0.12.0", "dependencies": [ - "com.geirsson:metaconfig-core_2.13:0.12.0", - "com.geirsson:metaconfig-pprint_2.13:0.12.0", - "com.lihaoyi:fansi_2.13:0.4.0", "com.lihaoyi:sourcecode_2.13:0.4.2", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "org.scala-lang:scala-reflect:2.13.14", "com.typesafe:config:1.4.1", "net.java.dev.jna:jna:5.14.0", - "org.jline:jline:3.25.1", - "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "com.geirsson:metaconfig-pprint_2.13:0.12.0", + "com.geirsson:metaconfig-core_2.13:0.12.0", "org.scala-lang:scala-compiler:2.13.14", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.typelevel:paiges-core_2.13:0.4.3" + "org.typelevel:paiges-core_2.13:0.4.3", + "com.lihaoyi:fansi_2.13:0.4.0", + "org.jline:jline:3.25.1", + "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ "com.geirsson:metaconfig-core_2.13:0.12.0", @@ -150,18 +150,18 @@ { "coord": "com.geirsson:metaconfig-typesafe-config_2.13:jar:sources:0.12.0", "dependencies": [ - "com.geirsson:metaconfig-core_2.13:jar:sources:0.12.0", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.typelevel:paiges-core_2.13:jar:sources:0.4.3", "com.geirsson:metaconfig-pprint_2.13:jar:sources:0.12.0", "com.lihaoyi:fansi_2.13:jar:sources:0.4.0", - "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", "com.typesafe:config:jar:sources:1.4.1", "net.java.dev.jna:jna:jar:sources:5.14.0", + "com.geirsson:metaconfig-core_2.13:jar:sources:0.12.0", "org.jline:jline:jar:sources:3.25.1", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.typelevel:paiges-core_2.13:jar:sources:0.4.3" + "org.scala-lang:scala-compiler:jar:sources:2.13.14" ], "directDependencies": [ "com.geirsson:metaconfig-core_2.13:jar:sources:0.12.0", @@ -225,8 +225,8 @@ { "coord": "com.lihaoyi:fansi_2.13:jar:sources:0.4.0", "dependencies": [ - "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "org.scala-lang:scala-library:jar:sources:2.13.14", + "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2" ], "directDependencies": [ "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", @@ -278,12 +278,12 @@ { "coord": "com.thesamet.scalapb:lenses_2.13:0.11.17", "dependencies": [ - "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0" ], "directDependencies": [ - "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0" ], "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17.jar", "mirror_urls": [ @@ -297,12 +297,12 @@ { "coord": "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.17", "dependencies": [ - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0" ], "directDependencies": [ - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0" ], "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.17/lenses_2.13-0.11.17-sources.jar", "mirror_urls": [ @@ -318,14 +318,14 @@ "dependencies": [ "com.google.protobuf:protobuf-java:3.19.6", "com.thesamet.scalapb:lenses_2.13:0.11.17", - "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0" ], "directDependencies": [ "com.google.protobuf:protobuf-java:3.19.6", "com.thesamet.scalapb:lenses_2.13:0.11.17", - "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0" ], "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17.jar", "mirror_urls": [ @@ -339,16 +339,16 @@ { "coord": "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.17", "dependencies": [ - "com.google.protobuf:protobuf-java:jar:sources:3.19.6", "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.17", + "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "com.google.protobuf:protobuf-java:jar:sources:3.19.6" ], "directDependencies": [ "com.google.protobuf:protobuf-java:jar:sources:3.19.6", "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.17", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0" ], "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.17/scalapb-runtime_2.13-0.11.17-sources.jar", "mirror_urls": [ @@ -534,18 +534,18 @@ { "coord": "org.scala-lang:scala-compiler:2.13.14", "dependencies": [ - "io.github.java-diff-utils:java-diff-utils:4.12", + "org.scala-lang:scala-reflect:2.13.14", "net.java.dev.jna:jna:5.14.0", + "io.github.java-diff-utils:java-diff-utils:4.12", "org.jline:jline:3.25.1", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14" + "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ - "io.github.java-diff-utils:java-diff-utils:4.12", + "org.scala-lang:scala-reflect:2.13.14", "net.java.dev.jna:jna:5.14.0", + "io.github.java-diff-utils:java-diff-utils:4.12", "org.jline:jline:3.25.1", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14" + "org.scala-lang:scala-library:2.13.14" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14.jar", "mirror_urls": [ @@ -559,17 +559,17 @@ { "coord": "org.scala-lang:scala-compiler:jar:sources:2.13.14", "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", "net.java.dev.jna:jna:jar:sources:5.14.0", "org.jline:jline:jar:sources:3.25.1", - "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", "net.java.dev.jna:jna:jar:sources:5.14.0", "org.jline:jline:jar:sources:3.25.1", - "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14-sources.jar", @@ -644,12 +644,12 @@ { "coord": "org.scala-lang:scalap:2.13.14", "dependencies": [ - "io.github.java-diff-utils:java-diff-utils:4.12", + "org.scala-lang:scala-reflect:2.13.14", "net.java.dev.jna:jna:5.14.0", - "org.jline:jline:3.25.1", "org.scala-lang:scala-compiler:2.13.14", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14" + "io.github.java-diff-utils:java-diff-utils:4.12", + "org.jline:jline:3.25.1", + "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-compiler:2.13.14" @@ -669,12 +669,12 @@ { "coord": "org.scala-lang:scalap:jar:sources:2.13.14", "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", "net.java.dev.jna:jna:jar:sources:5.14.0", "org.jline:jline:jar:sources:3.25.1", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14" + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-lang:scala-compiler:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-compiler:jar:sources:2.13.14" @@ -694,12 +694,12 @@ { "coord": "org.scalameta:common_2.13:4.9.7", "dependencies": [ - "com.google.protobuf:protobuf-java:3.19.6", "com.lihaoyi:sourcecode_2.13:0.4.2", - "com.thesamet.scalapb:lenses_2.13:0.11.17", - "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.17", "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", - "org.scala-lang:scala-library:2.13.14" + "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.17", + "com.google.protobuf:protobuf-java:3.19.6", + "org.scala-lang:scala-library:2.13.14", + "com.thesamet.scalapb:lenses_2.13:0.11.17" ], "directDependencies": [ "com.lihaoyi:sourcecode_2.13:0.4.2", @@ -718,12 +718,12 @@ { "coord": "org.scalameta:common_2.13:jar:sources:4.9.7", "dependencies": [ - "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", + "org.scala-lang:scala-library:jar:sources:2.13.14", "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.17", "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.17", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "com.google.protobuf:protobuf-java:jar:sources:3.19.6" ], "directDependencies": [ "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", @@ -776,14 +776,14 @@ { "coord": "org.scalameta:parsers_2.13:4.9.7", "dependencies": [ - "com.google.protobuf:protobuf-java:3.19.6", "com.lihaoyi:sourcecode_2.13:0.4.2", - "com.thesamet.scalapb:lenses_2.13:0.11.17", - "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.17", "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", - "org.scala-lang:scala-library:2.13.14", + "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.17", "org.scalameta:common_2.13:4.9.7", - "org.scalameta:trees_2.13:4.9.7" + "com.google.protobuf:protobuf-java:3.19.6", + "org.scalameta:trees_2.13:4.9.7", + "org.scala-lang:scala-library:2.13.14", + "com.thesamet.scalapb:lenses_2.13:0.11.17" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14", @@ -801,13 +801,13 @@ { "coord": "org.scalameta:parsers_2.13:jar:sources:4.9.7", "dependencies": [ - "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", + "org.scala-lang:scala-library:jar:sources:2.13.14", "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.17", "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.17", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", - "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scalameta:common_2.13:jar:sources:4.9.7", + "com.google.protobuf:protobuf-java:jar:sources:3.19.6", "org.scalameta:trees_2.13:jar:sources:4.9.7" ], "directDependencies": [ @@ -826,19 +826,19 @@ { "coord": "org.scalameta:scalafmt-config_2.13:3.8.2", "dependencies": [ - "com.geirsson:metaconfig-core_2.13:0.12.0", - "com.geirsson:metaconfig-pprint_2.13:0.12.0", - "com.geirsson:metaconfig-typesafe-config_2.13:0.12.0", - "com.lihaoyi:fansi_2.13:0.4.0", "com.lihaoyi:sourcecode_2.13:0.4.2", + "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "org.scala-lang:scala-reflect:2.13.14", "com.typesafe:config:1.4.1", "net.java.dev.jna:jna:5.14.0", - "org.jline:jline:3.25.1", - "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "com.geirsson:metaconfig-pprint_2.13:0.12.0", + "com.geirsson:metaconfig-typesafe-config_2.13:0.12.0", + "com.geirsson:metaconfig-core_2.13:0.12.0", "org.scala-lang:scala-compiler:2.13.14", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.typelevel:paiges-core_2.13:0.4.3" + "org.typelevel:paiges-core_2.13:0.4.3", + "com.lihaoyi:fansi_2.13:0.4.0", + "org.jline:jline:3.25.1", + "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ "com.geirsson:metaconfig-core_2.13:0.12.0", @@ -857,19 +857,19 @@ { "coord": "org.scalameta:scalafmt-config_2.13:jar:sources:3.8.2", "dependencies": [ - "com.geirsson:metaconfig-core_2.13:jar:sources:0.12.0", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.typelevel:paiges-core_2.13:jar:sources:0.4.3", "com.geirsson:metaconfig-pprint_2.13:jar:sources:0.12.0", - "com.geirsson:metaconfig-typesafe-config_2.13:jar:sources:0.12.0", "com.lihaoyi:fansi_2.13:jar:sources:0.4.0", - "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", "com.typesafe:config:jar:sources:1.4.1", "net.java.dev.jna:jna:jar:sources:5.14.0", + "com.geirsson:metaconfig-core_2.13:jar:sources:0.12.0", "org.jline:jline:jar:sources:3.25.1", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.typelevel:paiges-core_2.13:jar:sources:0.4.3" + "com.geirsson:metaconfig-typesafe-config_2.13:jar:sources:0.12.0", + "org.scala-lang:scala-compiler:jar:sources:2.13.14" ], "directDependencies": [ "com.geirsson:metaconfig-core_2.13:jar:sources:0.12.0", @@ -888,35 +888,35 @@ { "coord": "org.scalameta:scalafmt-core_2.13:3.8.2", "dependencies": [ - "com.geirsson:metaconfig-core_2.13:0.12.0", - "com.geirsson:metaconfig-pprint_2.13:0.12.0", - "com.geirsson:metaconfig-typesafe-config_2.13:0.12.0", - "com.lihaoyi:fansi_2.13:0.4.0", "com.lihaoyi:sourcecode_2.13:0.4.2", - "com.typesafe:config:1.4.1", - "io.github.java-diff-utils:java-diff-utils:4.12", - "net.java.dev.jna:jna:5.14.0", - "org.jline:jline:3.25.1", "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "org.scala-lang:scala-reflect:2.13.14", + "com.typesafe:config:1.4.1", "org.scala-lang.modules:scala-parallel-collections_2.13:1.0.4", + "net.java.dev.jna:jna:5.14.0", + "com.geirsson:metaconfig-pprint_2.13:0.12.0", + "org.scalameta:scalafmt-sysops_2.13:3.8.2", + "org.scalameta:scalafmt-config_2.13:3.8.2", + "org.scala-lang:scalap:2.13.14", + "com.geirsson:metaconfig-typesafe-config_2.13:0.12.0", + "com.geirsson:metaconfig-core_2.13:0.12.0", "org.scala-lang:scala-compiler:2.13.14", + "io.github.java-diff-utils:java-diff-utils:4.12", + "org.typelevel:paiges-core_2.13:0.4.3", + "com.lihaoyi:fansi_2.13:0.4.0", + "org.jline:jline:3.25.1", "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scala-lang:scalap:2.13.14", - "org.scalameta:mdoc-parser_2.13:2.5.2", - "org.scalameta:parsers_2.13:4.9.7", - "org.scalameta:scalafmt-config_2.13:3.8.2", - "org.scalameta:scalafmt-sysops_2.13:3.8.2", "org.scalameta:scalameta_2.13:4.9.6", - "org.typelevel:paiges-core_2.13:0.4.3" + "org.scalameta:mdoc-parser_2.13:2.5.2", + "org.scalameta:parsers_2.13:4.9.7" ], "directDependencies": [ - "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalameta:mdoc-parser_2.13:2.5.2", - "org.scalameta:scalafmt-config_2.13:3.8.2", "org.scalameta:scalafmt-sysops_2.13:3.8.2", - "org.scalameta:scalameta_2.13:4.9.6" + "org.scalameta:scalafmt-config_2.13:3.8.2", + "org.scala-lang:scala-library:2.13.14", + "org.scalameta:scalameta_2.13:4.9.6", + "org.scalameta:mdoc-parser_2.13:2.5.2" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/scalafmt-core_2.13/3.8.2/scalafmt-core_2.13-3.8.2.jar", "mirror_urls": [ @@ -930,35 +930,35 @@ { "coord": "org.scalameta:scalafmt-core_2.13:jar:sources:3.8.2", "dependencies": [ - "com.geirsson:metaconfig-core_2.13:jar:sources:0.12.0", + "org.scala-lang:scalap:jar:sources:2.13.14", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", + "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.typelevel:paiges-core_2.13:jar:sources:0.4.3", + "org.scalameta:scalafmt-config_2.13:jar:sources:3.8.2", + "org.scalameta:scalameta_2.13:jar:sources:4.9.6", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:1.0.4", + "org.scalameta:parsers_2.13:jar:sources:4.9.7", "com.geirsson:metaconfig-pprint_2.13:jar:sources:0.12.0", - "com.geirsson:metaconfig-typesafe-config_2.13:jar:sources:0.12.0", + "org.scalameta:scalafmt-sysops_2.13:jar:sources:3.8.2", + "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", "com.lihaoyi:fansi_2.13:jar:sources:0.4.0", - "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", "com.typesafe:config:jar:sources:1.4.1", - "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.scalameta:mdoc-parser_2.13:jar:sources:2.5.2", + "com.geirsson:metaconfig-core_2.13:jar:sources:0.12.0", "org.jline:jline:jar:sources:3.25.1", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", - "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:1.0.4", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-lang:scalap:jar:sources:2.13.14", - "org.scalameta:mdoc-parser_2.13:jar:sources:2.5.2", - "org.scalameta:parsers_2.13:jar:sources:4.9.7", - "org.scalameta:scalafmt-config_2.13:jar:sources:3.8.2", - "org.scalameta:scalafmt-sysops_2.13:jar:sources:3.8.2", - "org.scalameta:scalameta_2.13:jar:sources:4.9.6", - "org.typelevel:paiges-core_2.13:jar:sources:0.4.3" + "com.geirsson:metaconfig-typesafe-config_2.13:jar:sources:0.12.0", + "org.scala-lang:scala-compiler:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalameta:mdoc-parser_2.13:jar:sources:2.5.2", "org.scalameta:scalafmt-config_2.13:jar:sources:3.8.2", + "org.scalameta:scalameta_2.13:jar:sources:4.9.6", "org.scalameta:scalafmt-sysops_2.13:jar:sources:3.8.2", - "org.scalameta:scalameta_2.13:jar:sources:4.9.6" + "org.scalameta:mdoc-parser_2.13:jar:sources:2.5.2", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/scalafmt-core_2.13/3.8.2/scalafmt-core_2.13-3.8.2-sources.jar", "mirror_urls": [ @@ -972,12 +972,12 @@ { "coord": "org.scalameta:scalafmt-sysops_2.13:3.8.2", "dependencies": [ - "org.scala-lang.modules:scala-parallel-collections_2.13:1.0.4", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-parallel-collections_2.13:1.0.4" ], "directDependencies": [ - "org.scala-lang.modules:scala-parallel-collections_2.13:1.0.4", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-parallel-collections_2.13:1.0.4" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/scalafmt-sysops_2.13/3.8.2/scalafmt-sysops_2.13-3.8.2.jar", "mirror_urls": [ @@ -991,12 +991,12 @@ { "coord": "org.scalameta:scalafmt-sysops_2.13:jar:sources:3.8.2", "dependencies": [ - "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:1.0.4", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:1.0.4" ], "directDependencies": [ - "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:1.0.4", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang.modules:scala-parallel-collections_2.13:jar:sources:1.0.4" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/scalafmt-sysops_2.13/3.8.2/scalafmt-sysops_2.13-3.8.2-sources.jar", "mirror_urls": [ @@ -1010,13 +1010,13 @@ { "coord": "org.scalameta:scalameta_2.13:4.9.6", "dependencies": [ - "io.github.java-diff-utils:java-diff-utils:4.12", + "org.scala-lang:scala-reflect:2.13.14", "net.java.dev.jna:jna:5.14.0", - "org.jline:jline:3.25.1", + "org.scala-lang:scalap:2.13.14", "org.scala-lang:scala-compiler:2.13.14", + "io.github.java-diff-utils:java-diff-utils:4.12", + "org.jline:jline:3.25.1", "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scala-lang:scalap:2.13.14", "org.scalameta:parsers_2.13:4.9.7" ], "directDependencies": [ @@ -1039,14 +1039,14 @@ { "coord": "org.scalameta:scalameta_2.13:jar:sources:4.9.6", "dependencies": [ + "org.scala-lang:scalap:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scalameta:parsers_2.13:jar:sources:4.9.7", "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", "net.java.dev.jna:jna:jar:sources:5.14.0", "org.jline:jline:jar:sources:3.25.1", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scala-lang:scalap:jar:sources:2.13.14", - "org.scalameta:parsers_2.13:jar:sources:4.9.7" + "org.scala-lang:scala-compiler:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", @@ -1068,13 +1068,13 @@ { "coord": "org.scalameta:trees_2.13:4.9.7", "dependencies": [ - "com.google.protobuf:protobuf-java:3.19.6", "com.lihaoyi:sourcecode_2.13:0.4.2", - "com.thesamet.scalapb:lenses_2.13:0.11.17", - "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.17", "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", + "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.17", + "org.scalameta:common_2.13:4.9.7", + "com.google.protobuf:protobuf-java:3.19.6", "org.scala-lang:scala-library:2.13.14", - "org.scalameta:common_2.13:4.9.7" + "com.thesamet.scalapb:lenses_2.13:0.11.17" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14", @@ -1092,13 +1092,13 @@ { "coord": "org.scalameta:trees_2.13:jar:sources:4.9.7", "dependencies": [ - "com.google.protobuf:protobuf-java:jar:sources:3.19.6", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", "com.lihaoyi:sourcecode_2.13:jar:sources:0.4.2", + "org.scala-lang:scala-library:jar:sources:2.13.14", "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.17", "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.17", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.12.0", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scalameta:common_2.13:jar:sources:4.9.7" + "org.scalameta:common_2.13:jar:sources:4.9.7", + "com.google.protobuf:protobuf-java:jar:sources:3.19.6" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", diff --git a/rules/scala/workspace.bzl b/rules/scala/workspace.bzl index db1e1a5a4..3d48fe51d 100644 --- a/rules/scala/workspace.bzl +++ b/rules/scala/workspace.bzl @@ -21,21 +21,21 @@ def scala_artifacts(): "org.scala-lang:scala-compiler:2.13.14", "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scala-sbt:compiler-interface:1.9.3", - "org.scala-sbt:io_2.13:1.9.1", + "org.scala-sbt:compiler-interface:1.10.0", + "org.scala-sbt:io_2.13:1.10.0", "org.scala-sbt:test-interface:1.0", - "org.scala-sbt:util-interface:1.9.2", - "org.scala-sbt:util-logging_2.13:1.9.2", - "org.scala-sbt:zinc_2.13:1.9.3", - "org.scala-sbt:zinc-apiinfo_2.13:1.9.3", - "org.scala-sbt:zinc-classpath_2.13:1.9.3", - "org.scala-sbt:zinc-compile-core_2.13:1.9.3", - "org.scala-sbt:zinc-core_2.13:1.9.3", - "org.scala-sbt:zinc-persist_2.13:1.9.3", + "org.scala-sbt:util-interface:1.10.0", + "org.scala-sbt:util-logging_2.13:1.10.0", + "org.scala-sbt:zinc_2.13:1.10.0", + "org.scala-sbt:zinc-apiinfo_2.13:1.10.0", + "org.scala-sbt:zinc-classpath_2.13:1.10.0", + "org.scala-sbt:zinc-compile-core_2.13:1.10.0", + "org.scala-sbt:zinc-core_2.13:1.10.0", + "org.scala-sbt:zinc-persist_2.13:1.10.0", # The compiler bridge has a dependency on compiler-interface, which has a dependency on the Scala 2 # library. We need to set this to neverlink = True to avoid this the Scala 2 library being pulled # onto the Scala 3, and other Scala versions like 2.12, compiler classpath during runtime. - maven.artifact("org.scala-sbt", "compiler-bridge_2.13", "1.9.3", neverlink = True), + maven.artifact("org.scala-sbt", "compiler-bridge_2.13", "1.10.0", neverlink = True), ] def scala_repositories( diff --git a/rules/scala/workspace_2_12.bzl b/rules/scala/workspace_2_12.bzl index 164b4a57e..596fa211b 100644 --- a/rules/scala/workspace_2_12.bzl +++ b/rules/scala/workspace_2_12.bzl @@ -9,7 +9,7 @@ def scala_2_12_artifacts(): # The compiler bridge has a dependency on compiler-interface, which has a dependency on the Scala 2 # library. We need to set this to neverlink = True to avoid this the Scala 2 library being pulled # onto the Scala 3, and other Scala versions like 2.12, compiler classpath during runtime. - maven.artifact("org.scala-sbt", "compiler-bridge_2.12", "1.9.3", neverlink = True), + maven.artifact("org.scala-sbt", "compiler-bridge_2.12", "1.10.0", neverlink = True), ] def scala_2_12_repositories(): diff --git a/rules/scala/workspace_3.bzl b/rules/scala/workspace_3.bzl index 3be51cfda..86efe3e82 100644 --- a/rules/scala/workspace_3.bzl +++ b/rules/scala/workspace_3.bzl @@ -5,7 +5,7 @@ def scala_3_artifacts(): return [ "org.scala-lang:scala3-compiler_3:3.4.2", "org.scala-lang:scala3-library_3:3.4.2", - "org.scala-sbt:compiler-interface:1.9.3", + "org.scala-sbt:compiler-interface:1.10.0", # The compiler bridge has a dependency on compiler-interface, which has a dependency on the Scala 2 # library. We need to set this to neverlink = True to avoid this the Scala 2 library being pulled # onto the Scala 3, and other Scala versions like 2.12, compiler classpath during runtime. diff --git a/tests/annex_test_2_12_install.json b/tests/annex_test_2_12_install.json index df25f6724..3bedd6cde 100644 --- a/tests/annex_test_2_12_install.json +++ b/tests/annex_test_2_12_install.json @@ -196,8 +196,8 @@ { "coord": "org.scalacheck:scalacheck_2.12:1.15.4", "dependencies": [ - "org.scala-lang:scala-library:2.12.14", - "org.scala-sbt:test-interface:1.0" + "org.scala-sbt:test-interface:1.0", + "org.scala-lang:scala-library:2.12.14" ], "directDependencies": [ "org.scala-lang:scala-library:2.12.14", @@ -215,8 +215,8 @@ { "coord": "org.scalacheck:scalacheck_2.12:jar:sources:1.15.4", "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.14", - "org.scala-sbt:test-interface:jar:sources:1.0" + "org.scala-sbt:test-interface:jar:sources:1.0", + "org.scala-lang:scala-library:jar:sources:2.12.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.12.14", @@ -253,8 +253,8 @@ { "coord": "org.scalactic:scalactic_2.12:jar:sources:3.2.9", "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.14", - "org.scala-lang:scala-reflect:jar:sources:2.12.14" + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scala-lang:scala-library:jar:sources:2.12.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.12.14", @@ -298,17 +298,17 @@ { "coord": "org.scalatest:scalatest-core_2.12:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.3.0", - "org.scala-lang:scala-library:2.12.14", "org.scala-lang:scala-reflect:2.12.14", + "org.scala-lang:scala-library:2.12.14", "org.scalactic:scalactic_2.12:3.2.9", + "org.scala-lang.modules:scala-xml_2.12:1.3.0", "org.scalatest:scalatest-compatible:3.2.9" ], "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.3.0", - "org.scala-lang:scala-library:2.12.14", "org.scala-lang:scala-reflect:2.12.14", + "org.scala-lang:scala-library:2.12.14", "org.scalactic:scalactic_2.12:3.2.9", + "org.scala-lang.modules:scala-xml_2.12:1.3.0", "org.scalatest:scalatest-compatible:3.2.9" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.12/3.2.9/scalatest-core_2.12-3.2.9.jar", @@ -323,18 +323,18 @@ { "coord": "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", - "org.scala-lang:scala-library:jar:sources:2.12.14", - "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", "org.scalactic:scalactic_2.12:jar:sources:3.2.9", - "org.scalatest:scalatest-compatible:jar:sources:3.2.9" + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14" ], "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", - "org.scala-lang:scala-library:jar:sources:2.12.14", - "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", "org.scalactic:scalactic_2.12:jar:sources:3.2.9", - "org.scalatest:scalatest-compatible:jar:sources:3.2.9" + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.12/3.2.9/scalatest-core_2.12-3.2.9-sources.jar", "mirror_urls": [ @@ -348,12 +348,12 @@ { "coord": "org.scalatest:scalatest-diagrams_2.12:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.3.0", - "org.scala-lang:scala-library:2.12.14", "org.scala-lang:scala-reflect:2.12.14", + "org.scala-lang:scala-library:2.12.14", + "org.scalatest:scalatest-core_2.12:3.2.9", "org.scalactic:scalactic_2.12:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.12:3.2.9" + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scalatest:scalatest-compatible:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.12.14", @@ -372,12 +372,12 @@ { "coord": "org.scalatest:scalatest-diagrams_2.12:jar:sources:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", - "org.scala-lang:scala-library:jar:sources:2.12.14", - "org.scala-lang:scala-reflect:jar:sources:2.12.14", - "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9", "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.12.14", @@ -396,12 +396,12 @@ { "coord": "org.scalatest:scalatest-featurespec_2.12:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.3.0", - "org.scala-lang:scala-library:2.12.14", "org.scala-lang:scala-reflect:2.12.14", + "org.scala-lang:scala-library:2.12.14", + "org.scalatest:scalatest-core_2.12:3.2.9", "org.scalactic:scalactic_2.12:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.12:3.2.9" + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scalatest:scalatest-compatible:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.12.14", @@ -420,12 +420,12 @@ { "coord": "org.scalatest:scalatest-featurespec_2.12:jar:sources:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", - "org.scala-lang:scala-library:jar:sources:2.12.14", - "org.scala-lang:scala-reflect:jar:sources:2.12.14", - "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9", "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.12.14", @@ -444,12 +444,12 @@ { "coord": "org.scalatest:scalatest-flatspec_2.12:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.3.0", - "org.scala-lang:scala-library:2.12.14", "org.scala-lang:scala-reflect:2.12.14", + "org.scala-lang:scala-library:2.12.14", + "org.scalatest:scalatest-core_2.12:3.2.9", "org.scalactic:scalactic_2.12:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.12:3.2.9" + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scalatest:scalatest-compatible:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.12.14", @@ -468,12 +468,12 @@ { "coord": "org.scalatest:scalatest-flatspec_2.12:jar:sources:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", - "org.scala-lang:scala-library:jar:sources:2.12.14", - "org.scala-lang:scala-reflect:jar:sources:2.12.14", - "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9", "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.12.14", @@ -492,12 +492,12 @@ { "coord": "org.scalatest:scalatest-freespec_2.12:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.3.0", - "org.scala-lang:scala-library:2.12.14", "org.scala-lang:scala-reflect:2.12.14", + "org.scala-lang:scala-library:2.12.14", + "org.scalatest:scalatest-core_2.12:3.2.9", "org.scalactic:scalactic_2.12:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.12:3.2.9" + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scalatest:scalatest-compatible:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.12.14", @@ -516,12 +516,12 @@ { "coord": "org.scalatest:scalatest-freespec_2.12:jar:sources:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", - "org.scala-lang:scala-library:jar:sources:2.12.14", - "org.scala-lang:scala-reflect:jar:sources:2.12.14", - "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9", "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.12.14", @@ -540,12 +540,12 @@ { "coord": "org.scalatest:scalatest-funspec_2.12:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.3.0", - "org.scala-lang:scala-library:2.12.14", "org.scala-lang:scala-reflect:2.12.14", + "org.scala-lang:scala-library:2.12.14", + "org.scalatest:scalatest-core_2.12:3.2.9", "org.scalactic:scalactic_2.12:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.12:3.2.9" + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scalatest:scalatest-compatible:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.12.14", @@ -564,12 +564,12 @@ { "coord": "org.scalatest:scalatest-funspec_2.12:jar:sources:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", - "org.scala-lang:scala-library:jar:sources:2.12.14", - "org.scala-lang:scala-reflect:jar:sources:2.12.14", - "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9", "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.12.14", @@ -588,12 +588,12 @@ { "coord": "org.scalatest:scalatest-funsuite_2.12:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.3.0", - "org.scala-lang:scala-library:2.12.14", "org.scala-lang:scala-reflect:2.12.14", + "org.scala-lang:scala-library:2.12.14", + "org.scalatest:scalatest-core_2.12:3.2.9", "org.scalactic:scalactic_2.12:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.12:3.2.9" + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scalatest:scalatest-compatible:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.12.14", @@ -612,12 +612,12 @@ { "coord": "org.scalatest:scalatest-funsuite_2.12:jar:sources:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", - "org.scala-lang:scala-library:jar:sources:2.12.14", - "org.scala-lang:scala-reflect:jar:sources:2.12.14", - "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9", "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.12.14", @@ -636,12 +636,12 @@ { "coord": "org.scalatest:scalatest-matchers-core_2.12:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.3.0", - "org.scala-lang:scala-library:2.12.14", "org.scala-lang:scala-reflect:2.12.14", + "org.scala-lang:scala-library:2.12.14", + "org.scalatest:scalatest-core_2.12:3.2.9", "org.scalactic:scalactic_2.12:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.12:3.2.9" + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scalatest:scalatest-compatible:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.12.14", @@ -660,12 +660,12 @@ { "coord": "org.scalatest:scalatest-matchers-core_2.12:jar:sources:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", - "org.scala-lang:scala-library:jar:sources:2.12.14", - "org.scala-lang:scala-reflect:jar:sources:2.12.14", - "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9", "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.12.14", @@ -684,13 +684,13 @@ { "coord": "org.scalatest:scalatest-mustmatchers_2.12:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.3.0", - "org.scala-lang:scala-library:2.12.14", "org.scala-lang:scala-reflect:2.12.14", - "org.scalactic:scalactic_2.12:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", + "org.scala-lang:scala-library:2.12.14", "org.scalatest:scalatest-core_2.12:3.2.9", - "org.scalatest:scalatest-matchers-core_2.12:3.2.9" + "org.scalactic:scalactic_2.12:3.2.9", + "org.scalatest:scalatest-matchers-core_2.12:3.2.9", + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scalatest:scalatest-compatible:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.12.14", @@ -709,13 +709,13 @@ { "coord": "org.scalatest:scalatest-mustmatchers_2.12:jar:sources:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", - "org.scala-lang:scala-library:jar:sources:2.12.14", - "org.scala-lang:scala-reflect:jar:sources:2.12.14", - "org.scalactic:scalactic_2.12:jar:sources:3.2.9", - "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-matchers-core_2.12:jar:sources:3.2.9", "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9", - "org.scalatest:scalatest-matchers-core_2.12:jar:sources:3.2.9" + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.12.14", @@ -734,12 +734,12 @@ { "coord": "org.scalatest:scalatest-propspec_2.12:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.3.0", - "org.scala-lang:scala-library:2.12.14", "org.scala-lang:scala-reflect:2.12.14", + "org.scala-lang:scala-library:2.12.14", + "org.scalatest:scalatest-core_2.12:3.2.9", "org.scalactic:scalactic_2.12:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.12:3.2.9" + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scalatest:scalatest-compatible:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.12.14", @@ -758,12 +758,12 @@ { "coord": "org.scalatest:scalatest-propspec_2.12:jar:sources:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", - "org.scala-lang:scala-library:jar:sources:2.12.14", - "org.scala-lang:scala-reflect:jar:sources:2.12.14", - "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9", "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.12.14", @@ -782,12 +782,12 @@ { "coord": "org.scalatest:scalatest-refspec_2.12:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.3.0", - "org.scala-lang:scala-library:2.12.14", "org.scala-lang:scala-reflect:2.12.14", + "org.scala-lang:scala-library:2.12.14", + "org.scalatest:scalatest-core_2.12:3.2.9", "org.scalactic:scalactic_2.12:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.12:3.2.9" + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scalatest:scalatest-compatible:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.12.14", @@ -806,12 +806,12 @@ { "coord": "org.scalatest:scalatest-refspec_2.12:jar:sources:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", - "org.scala-lang:scala-library:jar:sources:2.12.14", - "org.scala-lang:scala-reflect:jar:sources:2.12.14", - "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9", "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.12.14", @@ -830,13 +830,13 @@ { "coord": "org.scalatest:scalatest-shouldmatchers_2.12:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.3.0", - "org.scala-lang:scala-library:2.12.14", "org.scala-lang:scala-reflect:2.12.14", - "org.scalactic:scalactic_2.12:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", + "org.scala-lang:scala-library:2.12.14", "org.scalatest:scalatest-core_2.12:3.2.9", - "org.scalatest:scalatest-matchers-core_2.12:3.2.9" + "org.scalactic:scalactic_2.12:3.2.9", + "org.scalatest:scalatest-matchers-core_2.12:3.2.9", + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scalatest:scalatest-compatible:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.12.14", @@ -855,13 +855,13 @@ { "coord": "org.scalatest:scalatest-shouldmatchers_2.12:jar:sources:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", - "org.scala-lang:scala-library:jar:sources:2.12.14", - "org.scala-lang:scala-reflect:jar:sources:2.12.14", - "org.scalactic:scalactic_2.12:jar:sources:3.2.9", - "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalatest:scalatest-matchers-core_2.12:jar:sources:3.2.9", "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9", - "org.scalatest:scalatest-matchers-core_2.12:jar:sources:3.2.9" + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.12.14", @@ -880,12 +880,12 @@ { "coord": "org.scalatest:scalatest-wordspec_2.12:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.3.0", - "org.scala-lang:scala-library:2.12.14", "org.scala-lang:scala-reflect:2.12.14", + "org.scala-lang:scala-library:2.12.14", + "org.scalatest:scalatest-core_2.12:3.2.9", "org.scalactic:scalactic_2.12:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.12:3.2.9" + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scalatest:scalatest-compatible:3.2.9" ], "directDependencies": [ "org.scala-lang:scala-library:2.12.14", @@ -904,12 +904,12 @@ { "coord": "org.scalatest:scalatest-wordspec_2.12:jar:sources:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", - "org.scala-lang:scala-library:jar:sources:2.12.14", - "org.scala-lang:scala-reflect:jar:sources:2.12.14", - "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9", "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9" + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scala-lang:scala-library:jar:sources:2.12.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.12.14", @@ -928,41 +928,41 @@ { "coord": "org.scalatest:scalatest_2.12:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:1.3.0", - "org.scala-lang:scala-library:2.12.14", "org.scala-lang:scala-reflect:2.12.14", - "org.scalactic:scalactic_2.12:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.12:3.2.9", - "org.scalatest:scalatest-diagrams_2.12:3.2.9", + "org.scalatest:scalatest-shouldmatchers_2.12:3.2.9", + "org.scala-lang:scala-library:2.12.14", "org.scalatest:scalatest-featurespec_2.12:3.2.9", - "org.scalatest:scalatest-flatspec_2.12:3.2.9", + "org.scalatest:scalatest-core_2.12:3.2.9", "org.scalatest:scalatest-freespec_2.12:3.2.9", - "org.scalatest:scalatest-funspec_2.12:3.2.9", - "org.scalatest:scalatest-funsuite_2.12:3.2.9", + "org.scalactic:scalactic_2.12:3.2.9", + "org.scalatest:scalatest-wordspec_2.12:3.2.9", "org.scalatest:scalatest-matchers-core_2.12:3.2.9", - "org.scalatest:scalatest-mustmatchers_2.12:3.2.9", - "org.scalatest:scalatest-propspec_2.12:3.2.9", + "org.scalatest:scalatest-diagrams_2.12:3.2.9", "org.scalatest:scalatest-refspec_2.12:3.2.9", - "org.scalatest:scalatest-shouldmatchers_2.12:3.2.9", - "org.scalatest:scalatest-wordspec_2.12:3.2.9" + "org.scala-lang.modules:scala-xml_2.12:1.3.0", + "org.scalatest:scalatest-funsuite_2.12:3.2.9", + "org.scalatest:scalatest-funspec_2.12:3.2.9", + "org.scalatest:scalatest-propspec_2.12:3.2.9", + "org.scalatest:scalatest-compatible:3.2.9", + "org.scalatest:scalatest-mustmatchers_2.12:3.2.9", + "org.scalatest:scalatest-flatspec_2.12:3.2.9" ], "directDependencies": [ - "org.scala-lang:scala-library:2.12.14", "org.scala-lang:scala-reflect:2.12.14", - "org.scalatest:scalatest-core_2.12:3.2.9", - "org.scalatest:scalatest-diagrams_2.12:3.2.9", + "org.scalatest:scalatest-shouldmatchers_2.12:3.2.9", + "org.scala-lang:scala-library:2.12.14", "org.scalatest:scalatest-featurespec_2.12:3.2.9", - "org.scalatest:scalatest-flatspec_2.12:3.2.9", + "org.scalatest:scalatest-core_2.12:3.2.9", "org.scalatest:scalatest-freespec_2.12:3.2.9", - "org.scalatest:scalatest-funspec_2.12:3.2.9", - "org.scalatest:scalatest-funsuite_2.12:3.2.9", + "org.scalatest:scalatest-wordspec_2.12:3.2.9", "org.scalatest:scalatest-matchers-core_2.12:3.2.9", - "org.scalatest:scalatest-mustmatchers_2.12:3.2.9", - "org.scalatest:scalatest-propspec_2.12:3.2.9", + "org.scalatest:scalatest-diagrams_2.12:3.2.9", "org.scalatest:scalatest-refspec_2.12:3.2.9", - "org.scalatest:scalatest-shouldmatchers_2.12:3.2.9", - "org.scalatest:scalatest-wordspec_2.12:3.2.9" + "org.scalatest:scalatest-funsuite_2.12:3.2.9", + "org.scalatest:scalatest-funspec_2.12:3.2.9", + "org.scalatest:scalatest-propspec_2.12:3.2.9", + "org.scalatest:scalatest-mustmatchers_2.12:3.2.9", + "org.scalatest:scalatest-flatspec_2.12:3.2.9" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest_2.12/3.2.9/scalatest_2.12-3.2.9.jar", "mirror_urls": [ @@ -976,41 +976,41 @@ { "coord": "org.scalatest:scalatest_2.12:jar:sources:3.2.9", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", - "org.scala-lang:scala-library:jar:sources:2.12.14", - "org.scala-lang:scala-reflect:jar:sources:2.12.14", - "org.scalactic:scalactic_2.12:jar:sources:3.2.9", - "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9", - "org.scalatest:scalatest-diagrams_2.12:jar:sources:3.2.9", - "org.scalatest:scalatest-featurespec_2.12:jar:sources:3.2.9", - "org.scalatest:scalatest-flatspec_2.12:jar:sources:3.2.9", - "org.scalatest:scalatest-freespec_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-propspec_2.12:jar:sources:3.2.9", "org.scalatest:scalatest-funspec_2.12:jar:sources:3.2.9", - "org.scalatest:scalatest-funsuite_2.12:jar:sources:3.2.9", "org.scalatest:scalatest-matchers-core_2.12:jar:sources:3.2.9", - "org.scalatest:scalatest-mustmatchers_2.12:jar:sources:3.2.9", - "org.scalatest:scalatest-propspec_2.12:jar:sources:3.2.9", "org.scalatest:scalatest-refspec_2.12:jar:sources:3.2.9", "org.scalatest:scalatest-shouldmatchers_2.12:jar:sources:3.2.9", - "org.scalatest:scalatest-wordspec_2.12:jar:sources:3.2.9" - ], - "directDependencies": [ - "org.scala-lang:scala-library:jar:sources:2.12.14", - "org.scala-lang:scala-reflect:jar:sources:2.12.14", "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-funsuite_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-wordspec_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "org.scalactic:scalactic_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-freespec_2.12:jar:sources:3.2.9", "org.scalatest:scalatest-diagrams_2.12:jar:sources:3.2.9", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", "org.scalatest:scalatest-featurespec_2.12:jar:sources:3.2.9", + "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.3.0", + "org.scalatest:scalatest-mustmatchers_2.12:jar:sources:3.2.9", "org.scalatest:scalatest-flatspec_2.12:jar:sources:3.2.9", - "org.scalatest:scalatest-freespec_2.12:jar:sources:3.2.9", + "org.scala-lang:scala-library:jar:sources:2.12.14" + ], + "directDependencies": [ + "org.scalatest:scalatest-propspec_2.12:jar:sources:3.2.9", "org.scalatest:scalatest-funspec_2.12:jar:sources:3.2.9", - "org.scalatest:scalatest-funsuite_2.12:jar:sources:3.2.9", "org.scalatest:scalatest-matchers-core_2.12:jar:sources:3.2.9", - "org.scalatest:scalatest-mustmatchers_2.12:jar:sources:3.2.9", - "org.scalatest:scalatest-propspec_2.12:jar:sources:3.2.9", "org.scalatest:scalatest-refspec_2.12:jar:sources:3.2.9", "org.scalatest:scalatest-shouldmatchers_2.12:jar:sources:3.2.9", - "org.scalatest:scalatest-wordspec_2.12:jar:sources:3.2.9" + "org.scalatest:scalatest-core_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-funsuite_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-wordspec_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-freespec_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-diagrams_2.12:jar:sources:3.2.9", + "org.scala-lang:scala-reflect:jar:sources:2.12.14", + "org.scalatest:scalatest-featurespec_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-mustmatchers_2.12:jar:sources:3.2.9", + "org.scalatest:scalatest-flatspec_2.12:jar:sources:3.2.9", + "org.scala-lang:scala-library:jar:sources:2.12.14" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest_2.12/3.2.9/scalatest_2.12-3.2.9-sources.jar", "mirror_urls": [ @@ -1024,20 +1024,20 @@ { "coord": "org.specs2:specs2-common_2.12:4.12.3", "dependencies": [ - "org.portable-scala:portable-scala-reflect_2.12:1.1.1", - "org.scala-lang.modules:scala-parser-combinators_2.12:2.0.0", - "org.scala-lang:scala-library:2.12.14", "org.scala-lang:scala-reflect:2.12.14", + "org.specs2:specs2-fp_2.12:4.12.3", + "org.scala-lang:scala-library:2.12.14", "org.scala-sbt:test-interface:1.0", - "org.specs2:specs2-fp_2.12:4.12.3" + "org.portable-scala:portable-scala-reflect_2.12:1.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.12:2.0.0" ], "directDependencies": [ - "org.portable-scala:portable-scala-reflect_2.12:1.1.1", - "org.scala-lang.modules:scala-parser-combinators_2.12:2.0.0", - "org.scala-lang:scala-library:2.12.14", "org.scala-lang:scala-reflect:2.12.14", + "org.specs2:specs2-fp_2.12:4.12.3", + "org.scala-lang:scala-library:2.12.14", "org.scala-sbt:test-interface:1.0", - "org.specs2:specs2-fp_2.12:4.12.3" + "org.portable-scala:portable-scala-reflect_2.12:1.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.12:2.0.0" ], "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-common_2.12/4.12.3/specs2-common_2.12-4.12.3.jar", "mirror_urls": [ @@ -1051,20 +1051,20 @@ { "coord": "org.specs2:specs2-common_2.12:jar:sources:4.12.3", "dependencies": [ + "org.specs2:specs2-fp_2.12:jar:sources:4.12.3", "org.portable-scala:portable-scala-reflect_2.12:jar:sources:1.1.1", + "org.scala-sbt:test-interface:jar:sources:1.0", "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:2.0.0", - "org.scala-lang:scala-library:jar:sources:2.12.14", "org.scala-lang:scala-reflect:jar:sources:2.12.14", - "org.scala-sbt:test-interface:jar:sources:1.0", - "org.specs2:specs2-fp_2.12:jar:sources:4.12.3" + "org.scala-lang:scala-library:jar:sources:2.12.14" ], "directDependencies": [ + "org.specs2:specs2-fp_2.12:jar:sources:4.12.3", "org.portable-scala:portable-scala-reflect_2.12:jar:sources:1.1.1", + "org.scala-sbt:test-interface:jar:sources:1.0", "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:2.0.0", - "org.scala-lang:scala-library:jar:sources:2.12.14", "org.scala-lang:scala-reflect:jar:sources:2.12.14", - "org.scala-sbt:test-interface:jar:sources:1.0", - "org.specs2:specs2-fp_2.12:jar:sources:4.12.3" + "org.scala-lang:scala-library:jar:sources:2.12.14" ], "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-common_2.12/4.12.3/specs2-common_2.12-4.12.3-sources.jar", "mirror_urls": [ @@ -1078,21 +1078,21 @@ { "coord": "org.specs2:specs2-core_2.12:4.12.3", "dependencies": [ - "org.portable-scala:portable-scala-reflect_2.12:1.1.1", - "org.scala-lang.modules:scala-parser-combinators_2.12:2.0.0", - "org.scala-lang:scala-library:2.12.14", "org.scala-lang:scala-reflect:2.12.14", - "org.scala-sbt:test-interface:1.0", - "org.specs2:specs2-common_2.12:4.12.3", "org.specs2:specs2-fp_2.12:4.12.3", - "org.specs2:specs2-matcher_2.12:4.12.3" + "org.scala-lang:scala-library:2.12.14", + "org.specs2:specs2-matcher_2.12:4.12.3", + "org.scala-sbt:test-interface:1.0", + "org.portable-scala:portable-scala-reflect_2.12:1.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.12:2.0.0", + "org.specs2:specs2-common_2.12:4.12.3" ], "directDependencies": [ - "org.portable-scala:portable-scala-reflect_2.12:1.1.1", "org.scala-lang:scala-library:2.12.14", + "org.specs2:specs2-matcher_2.12:4.12.3", "org.scala-sbt:test-interface:1.0", - "org.specs2:specs2-common_2.12:4.12.3", - "org.specs2:specs2-matcher_2.12:4.12.3" + "org.portable-scala:portable-scala-reflect_2.12:1.1.1", + "org.specs2:specs2-common_2.12:4.12.3" ], "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-core_2.12/4.12.3/specs2-core_2.12-4.12.3.jar", "mirror_urls": [ @@ -1106,21 +1106,21 @@ { "coord": "org.specs2:specs2-core_2.12:jar:sources:4.12.3", "dependencies": [ + "org.specs2:specs2-fp_2.12:jar:sources:4.12.3", + "org.specs2:specs2-common_2.12:jar:sources:4.12.3", "org.portable-scala:portable-scala-reflect_2.12:jar:sources:1.1.1", + "org.scala-sbt:test-interface:jar:sources:1.0", "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:2.0.0", - "org.scala-lang:scala-library:jar:sources:2.12.14", "org.scala-lang:scala-reflect:jar:sources:2.12.14", - "org.scala-sbt:test-interface:jar:sources:1.0", - "org.specs2:specs2-common_2.12:jar:sources:4.12.3", - "org.specs2:specs2-fp_2.12:jar:sources:4.12.3", - "org.specs2:specs2-matcher_2.12:jar:sources:4.12.3" + "org.specs2:specs2-matcher_2.12:jar:sources:4.12.3", + "org.scala-lang:scala-library:jar:sources:2.12.14" ], "directDependencies": [ + "org.specs2:specs2-common_2.12:jar:sources:4.12.3", "org.portable-scala:portable-scala-reflect_2.12:jar:sources:1.1.1", - "org.scala-lang:scala-library:jar:sources:2.12.14", "org.scala-sbt:test-interface:jar:sources:1.0", - "org.specs2:specs2-common_2.12:jar:sources:4.12.3", - "org.specs2:specs2-matcher_2.12:jar:sources:4.12.3" + "org.specs2:specs2-matcher_2.12:jar:sources:4.12.3", + "org.scala-lang:scala-library:jar:sources:2.12.14" ], "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-core_2.12/4.12.3/specs2-core_2.12-4.12.3-sources.jar", "mirror_urls": [ @@ -1168,13 +1168,13 @@ { "coord": "org.specs2:specs2-matcher_2.12:4.12.3", "dependencies": [ - "org.portable-scala:portable-scala-reflect_2.12:1.1.1", - "org.scala-lang.modules:scala-parser-combinators_2.12:2.0.0", - "org.scala-lang:scala-library:2.12.14", "org.scala-lang:scala-reflect:2.12.14", + "org.specs2:specs2-fp_2.12:4.12.3", + "org.scala-lang:scala-library:2.12.14", "org.scala-sbt:test-interface:1.0", - "org.specs2:specs2-common_2.12:4.12.3", - "org.specs2:specs2-fp_2.12:4.12.3" + "org.portable-scala:portable-scala-reflect_2.12:1.1.1", + "org.scala-lang.modules:scala-parser-combinators_2.12:2.0.0", + "org.specs2:specs2-common_2.12:4.12.3" ], "directDependencies": [ "org.scala-lang:scala-library:2.12.14", @@ -1192,13 +1192,13 @@ { "coord": "org.specs2:specs2-matcher_2.12:jar:sources:4.12.3", "dependencies": [ + "org.specs2:specs2-fp_2.12:jar:sources:4.12.3", + "org.specs2:specs2-common_2.12:jar:sources:4.12.3", "org.portable-scala:portable-scala-reflect_2.12:jar:sources:1.1.1", + "org.scala-sbt:test-interface:jar:sources:1.0", "org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:2.0.0", - "org.scala-lang:scala-library:jar:sources:2.12.14", "org.scala-lang:scala-reflect:jar:sources:2.12.14", - "org.scala-sbt:test-interface:jar:sources:1.0", - "org.specs2:specs2-common_2.12:jar:sources:4.12.3", - "org.specs2:specs2-fp_2.12:jar:sources:4.12.3" + "org.scala-lang:scala-library:jar:sources:2.12.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.12.14", diff --git a/tests/annex_test_install.json b/tests/annex_test_install.json index 730295994..092dfa77f 100644 --- a/tests/annex_test_install.json +++ b/tests/annex_test_install.json @@ -1,11 +1,12 @@ { "dependency_tree": { "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": 462841215, - "__RESOLVED_ARTIFACTS_HASH": 1676278494, + "__INPUT_ARTIFACTS_HASH": -1203700734, + "__RESOLVED_ARTIFACTS_HASH": 1444768052, "conflict_resolution": { "com.google.protobuf:protobuf-java:3.11.4": "com.google.protobuf:protobuf-java:3.15.8", - "com.thesamet.scalapb:lenses_2.13:0.9.0": "com.thesamet.scalapb:lenses_2.13:0.11.4" + "com.thesamet.scalapb:lenses_2.13:0.9.0": "com.thesamet.scalapb:lenses_2.13:0.11.4", + "org.scala-lang.modules:scala-xml_2.13:2.0.0": "org.scala-lang.modules:scala-xml_2.13:2.1.0" }, "dependencies": [ { @@ -37,12 +38,12 @@ { "coord": "com.thesamet.scalapb:lenses_2.13:0.11.4", "dependencies": [ - "org.scala-lang.modules:scala-collection-compat_2.13:2.4.4", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-collection-compat_2.13:2.4.4" ], "directDependencies": [ - "org.scala-lang.modules:scala-collection-compat_2.13:2.4.4", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-collection-compat_2.13:2.4.4" ], "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.4/lenses_2.13-0.11.4.jar", "mirror_urls": [ @@ -56,12 +57,12 @@ { "coord": "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.4", "dependencies": [ - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.4.4", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.4.4" ], "directDependencies": [ - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.4.4", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.4.4" ], "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.13/0.11.4/lenses_2.13-0.11.4-sources.jar", "mirror_urls": [ @@ -75,16 +76,16 @@ { "coord": "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.4", "dependencies": [ - "com.google.protobuf:protobuf-java:3.15.8", - "com.thesamet.scalapb:lenses_2.13:0.11.4", + "org.scala-lang:scala-library:2.13.14", "org.scala-lang.modules:scala-collection-compat_2.13:2.4.4", - "org.scala-lang:scala-library:2.13.14" + "com.thesamet.scalapb:lenses_2.13:0.11.4", + "com.google.protobuf:protobuf-java:3.15.8" ], "directDependencies": [ "com.google.protobuf:protobuf-java:3.15.8", "com.thesamet.scalapb:lenses_2.13:0.11.4", - "org.scala-lang.modules:scala-collection-compat_2.13:2.4.4", - "org.scala-lang:scala-library:2.13.14" + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-collection-compat_2.13:2.4.4" ], "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.4/scalapb-runtime_2.13-0.11.4.jar", "mirror_urls": [ @@ -98,16 +99,16 @@ { "coord": "com.thesamet.scalapb:scalapb-runtime_2.13:jar:sources:0.11.4", "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", "com.google.protobuf:protobuf-java:jar:sources:3.15.8", - "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.4", "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.4.4", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.4" ], "directDependencies": [ "com.google.protobuf:protobuf-java:jar:sources:3.15.8", "com.thesamet.scalapb:lenses_2.13:jar:sources:0.11.4", - "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.4.4", - "org.scala-lang:scala-library:jar:sources:2.13.14" + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang.modules:scala-collection-compat_2.13:jar:sources:2.4.4" ], "file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.13/0.11.4/scalapb-runtime_2.13-0.11.4-sources.jar", "mirror_urls": [ @@ -197,38 +198,38 @@ "url": "https://repo.maven.apache.org/maven2/org/jline/jline/3.25.1/jline-3.25.1-sources.jar" }, { - "coord": "org.portable-scala:portable-scala-reflect_2.13:1.1.1", + "coord": "org.portable-scala:portable-scala-reflect_2.13:1.1.3", "dependencies": [ "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.1/portable-scala-reflect_2.13-1.1.1.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.3/portable-scala-reflect_2.13-1.1.3.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.1/portable-scala-reflect_2.13-1.1.1.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.1/portable-scala-reflect_2.13-1.1.1.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.1/portable-scala-reflect_2.13-1.1.1.jar" + "https://repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.3/portable-scala-reflect_2.13-1.1.3.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.3/portable-scala-reflect_2.13-1.1.3.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.3/portable-scala-reflect_2.13-1.1.3.jar" ], - "sha256": "11f2f59d0c228912811095025b36ce58a025a8397851d773295c8ad7862d8488", - "url": "https://repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.1/portable-scala-reflect_2.13-1.1.1.jar" + "sha256": "920f62979293069cf721865f931e42f9f7b0b2720ee9f6a9ddff76a19ecf8d4e", + "url": "https://repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.3/portable-scala-reflect_2.13-1.1.3.jar" }, { - "coord": "org.portable-scala:portable-scala-reflect_2.13:jar:sources:1.1.1", + "coord": "org.portable-scala:portable-scala-reflect_2.13:jar:sources:1.1.3", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.1/portable-scala-reflect_2.13-1.1.1-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.3/portable-scala-reflect_2.13-1.1.3-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.1/portable-scala-reflect_2.13-1.1.1-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.1/portable-scala-reflect_2.13-1.1.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.1/portable-scala-reflect_2.13-1.1.1-sources.jar" + "https://repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.3/portable-scala-reflect_2.13-1.1.3-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.3/portable-scala-reflect_2.13-1.1.3-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.3/portable-scala-reflect_2.13-1.1.3-sources.jar" ], - "sha256": "da225cd34412a66905e5d9f6bfa03c28933c41bb4ff44b468bdd573009c2758c", - "url": "https://repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.1/portable-scala-reflect_2.13-1.1.1-sources.jar" + "sha256": "3bbb19a14c6cff77e19b64310d8dbfc54e5aa2b9d08d40dd8951e85d2d5d8b2f", + "url": "https://repo.maven.apache.org/maven2/org/portable-scala/portable-scala-reflect_2.13/1.1.3/portable-scala-reflect_2.13-1.1.3-sources.jar" }, { "coord": "org.scala-lang.modules:scala-collection-compat_2.13:2.4.4", @@ -265,88 +266,88 @@ "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.4.4/scala-collection-compat_2.13-2.4.4-sources.jar" }, { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.13:2.0.0", + "coord": "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "dependencies": [ "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.0.0/scala-parser-combinators_2.13-2.0.0.jar", + "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/2.0.0/scala-parser-combinators_2.13-2.0.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.0.0/scala-parser-combinators_2.13-2.0.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.0.0/scala-parser-combinators_2.13-2.0.0.jar" + "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": "5504044e867a4943c2a47ba0cd513c5cdaa3b4cc1b4d450a4b00d2462e243155", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.0.0/scala-parser-combinators_2.13-2.0.0.jar" + "sha256": "5c285b72e6dc0a98e99ae0a1ceeb4027dab9adfa441844046bd3f19e0efdcb54", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2.jar" }, { - "coord": "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.0.0", + "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.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.0.0/scala-parser-combinators_2.13-2.0.0-sources.jar", + "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/2.0.0/scala-parser-combinators_2.13-2.0.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.0.0/scala-parser-combinators_2.13-2.0.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.0.0/scala-parser-combinators_2.13-2.0.0-sources.jar" + "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": "912c172b6467bef9c0d361bbaa06439911c1be8490e6c5046af1151e1d98b25c", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/2.0.0/scala-parser-combinators_2.13-2.0.0-sources.jar" + "sha256": "a5cdd33bc2dcd8917e4fea30d31ea19d0d70cc5f6951c5a913428930ced8391a", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2-sources.jar" }, { - "coord": "org.scala-lang.modules:scala-xml_2.13:2.0.0", + "coord": "org.scala-lang.modules:scala-xml_2.13:2.1.0", "dependencies": [ "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.0.0/scala-xml_2.13-2.0.0.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.0.0/scala-xml_2.13-2.0.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.13/2.0.0/scala-xml_2.13-2.0.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.0.0/scala-xml_2.13-2.0.0.jar" + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0.jar" ], - "sha256": "a39fc7991cc7fe21f42e2231f0c65c038367acd29b3888f7626e1f023dd67e57", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.0.0/scala-xml_2.13-2.0.0.jar" + "sha256": "d122cbf93115ee714570de6a9c18e53001fedb474911d4cb5091758ee51f053a", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0.jar" }, { - "coord": "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", + "coord": "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.1.0", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.0.0/scala-xml_2.13-2.0.0-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.0.0/scala-xml_2.13-2.0.0-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.13/2.0.0/scala-xml_2.13-2.0.0-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.0.0/scala-xml_2.13-2.0.0-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0-sources.jar" ], - "sha256": "7b9ad53f7cd785364dc8b4e2be73ec92f5bb6f954411086b24a57c8afde29f1f", - "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.0.0/scala-xml_2.13-2.0.0-sources.jar" + "sha256": "b2f5f01c669f29dc03a8127f7a8ca2cdb40dff3e29ba416e3de4f6bef0480aca", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/2.1.0/scala-xml_2.13-2.1.0-sources.jar" }, { "coord": "org.scala-lang:scala-compiler:2.13.14", "dependencies": [ - "io.github.java-diff-utils:java-diff-utils:4.12", + "org.scala-lang:scala-reflect:2.13.14", "net.java.dev.jna:jna:5.14.0", + "io.github.java-diff-utils:java-diff-utils:4.12", "org.jline:jline:3.25.1", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14" + "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ - "io.github.java-diff-utils:java-diff-utils:4.12", + "org.scala-lang:scala-reflect:2.13.14", "net.java.dev.jna:jna:5.14.0", + "io.github.java-diff-utils:java-diff-utils:4.12", "org.jline:jline:3.25.1", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14" + "org.scala-lang:scala-library:2.13.14" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14.jar", "mirror_urls": [ @@ -360,17 +361,17 @@ { "coord": "org.scala-lang:scala-compiler:jar:sources:2.13.14", "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", "net.java.dev.jna:jna:jar:sources:5.14.0", "org.jline:jline:jar:sources:3.25.1", - "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", "net.java.dev.jna:jna:jar:sources:5.14.0", "org.jline:jline:jar:sources:3.25.1", - "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.14/scala-compiler-2.13.14-sources.jar", @@ -443,38 +444,38 @@ "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14-sources.jar" }, { - "coord": "org.scala-sbt:compiler-interface:1.9.3", + "coord": "org.scala-sbt:compiler-interface:1.10.0", "dependencies": [ - "org.scala-sbt:util-interface:1.9.2" + "org.scala-sbt:util-interface:1.10.0" ], "directDependencies": [ - "org.scala-sbt:util-interface:1.9.2" + "org.scala-sbt:util-interface:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0.jar" ], - "sha256": "fa586b4b1bdb61c48821cf9568507c1e4d57de3763d27ac2214523b00a173115", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3.jar" + "sha256": "333bbae5911442d4de4b6d45a782710b0ffbf82be1b9e73381abcb8c6e684b78", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0.jar" }, { - "coord": "org.scala-sbt:compiler-interface:jar:sources:1.9.3", + "coord": "org.scala-sbt:compiler-interface:jar:sources:1.10.0", "dependencies": [ - "org.scala-sbt:util-interface:jar:sources:1.9.2" + "org.scala-sbt:util-interface:jar:sources:1.10.0" ], "directDependencies": [ - "org.scala-sbt:util-interface:jar:sources:1.9.2" + "org.scala-sbt:util-interface:jar:sources:1.10.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0-sources.jar" ], - "sha256": "22200c6be450ea4651088f1d43670d14ee7808aa0c1b07a1ff6bc1104a3d7488", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.9.3/compiler-interface-1.9.3-sources.jar" + "sha256": "fe25aa0c8f0170474bcbac671a9f24ca7eab5da3c1a74854d11c81373a163c65", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/compiler-interface/1.10.0/compiler-interface-1.10.0-sources.jar" }, { "coord": "org.scala-sbt:test-interface:1.0", @@ -503,52 +504,52 @@ "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0-sources.jar" }, { - "coord": "org.scala-sbt:util-interface:1.9.2", + "coord": "org.scala-sbt:util-interface:1.10.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0.jar" ], - "sha256": "cbf6c0db09223e4c6c41afc4c5d831c47e3564e83361df4ba3cb04e439f83675", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2.jar" + "sha256": "30da2055573b80b88b39c934270fd610bc235782d0a0135bc3782623d6766567", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0.jar" }, { - "coord": "org.scala-sbt:util-interface:jar:sources:1.9.2", + "coord": "org.scala-sbt:util-interface:jar:sources:1.10.0", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0-sources.jar" ], - "sha256": "bed4331c842f3c8b1c198ec25ead990fd064e1a0672ae2856aafc2a7593ec1fe", - "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.9.2/util-interface-1.9.2-sources.jar" + "sha256": "bacdd15e1ea8e913829cd063cad0d333b696f5a4f53625f601ee9b91ab8a5330", + "url": "https://repo.maven.apache.org/maven2/org/scala-sbt/util-interface/1.10.0/util-interface-1.10.0-sources.jar" }, { - "coord": "org.scalacheck:scalacheck_2.13:1.15.4", + "coord": "org.scalacheck:scalacheck_2.13:1.18.0", "dependencies": [ - "org.scala-lang:scala-library:2.13.14", - "org.scala-sbt:test-interface:1.0" + "org.scala-sbt:test-interface:1.0", + "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14", "org.scala-sbt:test-interface:1.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.13/1.15.4/scalacheck_2.13-1.15.4.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.13/1.18.0/scalacheck_2.13-1.18.0.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.13/1.15.4/scalacheck_2.13-1.15.4.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalacheck/scalacheck_2.13/1.15.4/scalacheck_2.13-1.15.4.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalacheck/scalacheck_2.13/1.15.4/scalacheck_2.13-1.15.4.jar" + "https://repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.13/1.18.0/scalacheck_2.13-1.18.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalacheck/scalacheck_2.13/1.18.0/scalacheck_2.13-1.18.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalacheck/scalacheck_2.13/1.18.0/scalacheck_2.13-1.18.0.jar" ], - "sha256": "ebe8ffc5edeeafddddba810111bad7477a3cc31b59760bc3b4e24aaf53f69f72", - "url": "https://repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.13/1.15.4/scalacheck_2.13-1.15.4.jar" + "sha256": "644ca57b72384c4d0d956ef3685a0e6848c6ab7b54971b97b47cb659f2709238", + "url": "https://repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.13/1.18.0/scalacheck_2.13-1.18.0.jar" }, { - "coord": "org.scalacheck:scalacheck_2.13:jar:sources:1.15.4", + "coord": "org.scalacheck:scalacheck_2.13:jar:sources:1.18.0", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-sbt:test-interface:jar:sources:1.0" @@ -557,17 +558,17 @@ "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-sbt:test-interface:jar:sources:1.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.13/1.15.4/scalacheck_2.13-1.15.4-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.13/1.18.0/scalacheck_2.13-1.18.0-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.13/1.15.4/scalacheck_2.13-1.15.4-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalacheck/scalacheck_2.13/1.15.4/scalacheck_2.13-1.15.4-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalacheck/scalacheck_2.13/1.15.4/scalacheck_2.13-1.15.4-sources.jar" + "https://repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.13/1.18.0/scalacheck_2.13-1.18.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalacheck/scalacheck_2.13/1.18.0/scalacheck_2.13-1.18.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalacheck/scalacheck_2.13/1.18.0/scalacheck_2.13-1.18.0-sources.jar" ], - "sha256": "9c429b216222c4837c68f0fcd418d76453e6fe18d0d9393fc9d3e00ce0f7501f", - "url": "https://repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.13/1.15.4/scalacheck_2.13-1.15.4-sources.jar" + "sha256": "6da70ba128be7f8f0292712cf977bc159c9614cc59fdb4d9f84914f49a317243", + "url": "https://repo.maven.apache.org/maven2/org/scalacheck/scalacheck_2.13/1.18.0/scalacheck_2.13-1.18.0-sources.jar" }, { - "coord": "org.scalactic:scalactic_2.13:3.2.9", + "coord": "org.scalactic:scalactic_2.13:3.2.19", "dependencies": [ "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14" @@ -576,987 +577,987 @@ "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalactic/scalactic_2.13/3.2.19/scalactic_2.13-3.2.19.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9.jar" + "https://repo.maven.apache.org/maven2/org/scalactic/scalactic_2.13/3.2.19/scalactic_2.13-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalactic/scalactic_2.13/3.2.19/scalactic_2.13-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalactic/scalactic_2.13/3.2.19/scalactic_2.13-3.2.19.jar" ], - "sha256": "dcb853409202fee6f8e7216b363aab5b68edc07a51d27b61d5bf3fdf4418c9da", - "url": "https://repo.maven.apache.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9.jar" + "sha256": "c27c33de17d450e29e66c16c5af4cfa33e8ffcf03c124f0a3d249d848cccd4af", + "url": "https://repo.maven.apache.org/maven2/org/scalactic/scalactic_2.13/3.2.19/scalactic_2.13-3.2.19.jar" }, { - "coord": "org.scalactic:scalactic_2.13:jar:sources:3.2.9", + "coord": "org.scalactic:scalactic_2.13:jar:sources:3.2.19", "dependencies": [ - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14" + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-lang:scala-library:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalactic/scalactic_2.13/3.2.19/scalactic_2.13-3.2.19-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9-sources.jar" + "https://repo.maven.apache.org/maven2/org/scalactic/scalactic_2.13/3.2.19/scalactic_2.13-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalactic/scalactic_2.13/3.2.19/scalactic_2.13-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalactic/scalactic_2.13/3.2.19/scalactic_2.13-3.2.19-sources.jar" ], - "sha256": "c721a35914b328e30c2773de52b2e16a5565c136b4cec1692e6668e5c75d98b7", - "url": "https://repo.maven.apache.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9-sources.jar" + "sha256": "1e144d19da246a2401b4c7d1254be4e9b599f2f03a55bb44e2c23e9a3ddcbb50", + "url": "https://repo.maven.apache.org/maven2/org/scalactic/scalactic_2.13/3.2.19/scalactic_2.13-3.2.19-sources.jar" }, { - "coord": "org.scalatest:scalatest-compatible:3.2.9", + "coord": "org.scalatest:scalatest-compatible:3.2.19", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.19/scalatest-compatible-3.2.19.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.19/scalatest-compatible-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-compatible/3.2.19/scalatest-compatible-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.19/scalatest-compatible-3.2.19.jar" ], - "sha256": "7e5f1193af2fd88c432c4b80ce3641e4b1d062f421d8a0fcc43af9a19bb7c2eb", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar" + "sha256": "5dc6b8fa5396fe9e1a7c2b72df174a8eb3e92770cdc3e70636d3eba673cd0da3", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.19/scalatest-compatible-3.2.19.jar" }, { - "coord": "org.scalatest:scalatest-compatible:jar:sources:3.2.9", + "coord": "org.scalatest:scalatest-compatible:jar:sources:3.2.19", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.19/scalatest-compatible-3.2.19-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.19/scalatest-compatible-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-compatible/3.2.19/scalatest-compatible-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.19/scalatest-compatible-3.2.19-sources.jar" ], - "sha256": "2d2d8645e812f6acae111ea36f6f53a970692e8927a2846886a024286538217d", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar" + "sha256": "3e4471354f33698d9eeef51813f45747a9657ccc0dc615e284890936366f70a7", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.19/scalatest-compatible-3.2.19-sources.jar" }, { - "coord": "org.scalatest:scalatest-core_2.13:3.2.9", + "coord": "org.scalatest:scalatest-core_2.13:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:2.0.0", - "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalactic:scalactic_2.13:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9" + "org.scalatest:scalatest-compatible:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:2.1.0", + "org.scala-lang:scala-library:2.13.14", + "org.scalactic:scalactic_2.13:3.2.19" ], "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.13:2.0.0", - "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalactic:scalactic_2.13:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9" + "org.scalatest:scalatest-compatible:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:2.1.0", + "org.scala-lang:scala-library:2.13.14", + "org.scalactic:scalactic_2.13:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.13/3.2.19/scalatest-core_2.13-3.2.19.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.13/3.2.19/scalatest-core_2.13-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-core_2.13/3.2.19/scalatest-core_2.13-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-core_2.13/3.2.19/scalatest-core_2.13-3.2.19.jar" ], - "sha256": "b238f0e42edd471c8d066d25fa925d4c0cfae33b8db1ea79d14ff42047263e5d", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9.jar" + "sha256": "30230081d029f6341b83fe7f157d336113e1c97497fe950169293d28a5bf2936", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.13/3.2.19/scalatest-core_2.13-3.2.19.jar" }, { - "coord": "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9", + "coord": "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalactic:scalactic_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-compatible:jar:sources:3.2.9" + "org.scalactic:scalactic_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-compatible:jar:sources:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.1.0", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "directDependencies": [ - "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalactic:scalactic_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-compatible:jar:sources:3.2.9" + "org.scalactic:scalactic_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-compatible:jar:sources:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.1.0", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.13/3.2.19/scalatest-core_2.13-3.2.19-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9-sources.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.13/3.2.19/scalatest-core_2.13-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-core_2.13/3.2.19/scalatest-core_2.13-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-core_2.13/3.2.19/scalatest-core_2.13-3.2.19-sources.jar" ], - "sha256": "c1c1e7e939a43a59f1919c87b7574e6afb6911bce9ee54dc3a19e8c8a5074234", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9-sources.jar" + "sha256": "5de8c0e06f704fd30430ba8467f86e1a9f20276ca2a24b4e06e3a1ba86022049", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.13/3.2.19/scalatest-core_2.13-3.2.19-sources.jar" }, { - "coord": "org.scalatest:scalatest-diagrams_2.13:3.2.9", + "coord": "org.scalatest:scalatest-diagrams_2.13:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:2.0.0", - "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalactic:scalactic_2.13:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.13:3.2.9" + "org.scalatest:scalatest-compatible:3.2.19", + "org.scalatest:scalatest-core_2.13:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:2.1.0", + "org.scala-lang:scala-library:2.13.14", + "org.scalactic:scalactic_2.13:3.2.19" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalatest:scalatest-core_2.13:3.2.9" + "org.scalatest:scalatest-core_2.13:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.19/scalatest-diagrams_2.13-3.2.19.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.19/scalatest-diagrams_2.13-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.19/scalatest-diagrams_2.13-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.19/scalatest-diagrams_2.13-3.2.19.jar" ], - "sha256": "803d4f2ce03b581ed5435a097a20882809dfe48b87ed232f13a98e718ceb731d", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9.jar" + "sha256": "a77294d3d5a564e1d8cd6550d4ac795ac042fa90efa91d139da123d7ec5f3bec", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.19/scalatest-diagrams_2.13-3.2.19.jar" }, { - "coord": "org.scalatest:scalatest-diagrams_2.13:jar:sources:3.2.9", + "coord": "org.scalatest:scalatest-diagrams_2.13:jar:sources:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalactic:scalactic_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19", + "org.scalactic:scalactic_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-compatible:jar:sources:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.1.0", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.19/scalatest-diagrams_2.13-3.2.19-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9-sources.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.19/scalatest-diagrams_2.13-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.19/scalatest-diagrams_2.13-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.19/scalatest-diagrams_2.13-3.2.19-sources.jar" ], - "sha256": "b6c5c8c1d658385a5508f495ad58bebae10623c5d04eb3c12ce08b80de9290e1", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.9/scalatest-diagrams_2.13-3.2.9-sources.jar" + "sha256": "f1a7f1682adef04bd66d0c711e706327f1c6fb40f6c80599af5c9f0a6212b34c", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.13/3.2.19/scalatest-diagrams_2.13-3.2.19-sources.jar" }, { - "coord": "org.scalatest:scalatest-featurespec_2.13:3.2.9", + "coord": "org.scalatest:scalatest-featurespec_2.13:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:2.0.0", - "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalactic:scalactic_2.13:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.13:3.2.9" + "org.scalatest:scalatest-compatible:3.2.19", + "org.scalatest:scalatest-core_2.13:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:2.1.0", + "org.scala-lang:scala-library:2.13.14", + "org.scalactic:scalactic_2.13:3.2.19" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalatest:scalatest-core_2.13:3.2.9" + "org.scalatest:scalatest-core_2.13:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.19/scalatest-featurespec_2.13-3.2.19.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.19/scalatest-featurespec_2.13-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.19/scalatest-featurespec_2.13-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.19/scalatest-featurespec_2.13-3.2.19.jar" ], - "sha256": "f8ec83a39554c1e44f6ef5e13d9b87bf8257067b0dad8ee6012fec36e318036d", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9.jar" + "sha256": "58a44e6be12409596feab4d4123900ef2af55d3fcb72033412059ce055e91dee", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.19/scalatest-featurespec_2.13-3.2.19.jar" }, { - "coord": "org.scalatest:scalatest-featurespec_2.13:jar:sources:3.2.9", + "coord": "org.scalatest:scalatest-featurespec_2.13:jar:sources:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalactic:scalactic_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19", + "org.scalactic:scalactic_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-compatible:jar:sources:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.1.0", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.19/scalatest-featurespec_2.13-3.2.19-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9-sources.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.19/scalatest-featurespec_2.13-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.19/scalatest-featurespec_2.13-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.19/scalatest-featurespec_2.13-3.2.19-sources.jar" ], - "sha256": "1099311e9e617be58951e474e8bec1580cd027996c3330a5d236a7d5b527f7ef", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9-sources.jar" + "sha256": "71103b6f9e752770253b167ab8cfcb1adbd46f8ecae804e68c003f1348d683ba", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.19/scalatest-featurespec_2.13-3.2.19-sources.jar" }, { - "coord": "org.scalatest:scalatest-flatspec_2.13:3.2.9", + "coord": "org.scalatest:scalatest-flatspec_2.13:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:2.0.0", - "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalactic:scalactic_2.13:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.13:3.2.9" + "org.scalatest:scalatest-compatible:3.2.19", + "org.scalatest:scalatest-core_2.13:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:2.1.0", + "org.scala-lang:scala-library:2.13.14", + "org.scalactic:scalactic_2.13:3.2.19" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalatest:scalatest-core_2.13:3.2.9" + "org.scalatest:scalatest-core_2.13:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.19/scalatest-flatspec_2.13-3.2.19.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.19/scalatest-flatspec_2.13-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.19/scalatest-flatspec_2.13-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.19/scalatest-flatspec_2.13-3.2.19.jar" ], - "sha256": "6a1bc2f522105b4eda53c225f3d5cbdabbf3e9375136dde57a5b43846369f75a", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9.jar" + "sha256": "de4d28423dc69e91fdc8f3a03a4fb6b443c5626b819c896e5fbe4a73a375654a", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.19/scalatest-flatspec_2.13-3.2.19.jar" }, { - "coord": "org.scalatest:scalatest-flatspec_2.13:jar:sources:3.2.9", + "coord": "org.scalatest:scalatest-flatspec_2.13:jar:sources:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalactic:scalactic_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19", + "org.scalactic:scalactic_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-compatible:jar:sources:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.1.0", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.19/scalatest-flatspec_2.13-3.2.19-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9-sources.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.19/scalatest-flatspec_2.13-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.19/scalatest-flatspec_2.13-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.19/scalatest-flatspec_2.13-3.2.19-sources.jar" ], - "sha256": "81ab486a9418c0584b21d23ebe356c3dc5304728303254cd3ce71dc46c9a83f4", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9-sources.jar" + "sha256": "1f56dd506a12425a11e2b837a0416d7595160a57d042bed8e928ecc7ca13fce4", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.19/scalatest-flatspec_2.13-3.2.19-sources.jar" }, { - "coord": "org.scalatest:scalatest-freespec_2.13:3.2.9", + "coord": "org.scalatest:scalatest-freespec_2.13:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:2.0.0", - "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalactic:scalactic_2.13:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.13:3.2.9" + "org.scalatest:scalatest-compatible:3.2.19", + "org.scalatest:scalatest-core_2.13:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:2.1.0", + "org.scala-lang:scala-library:2.13.14", + "org.scalactic:scalactic_2.13:3.2.19" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalatest:scalatest-core_2.13:3.2.9" + "org.scalatest:scalatest-core_2.13:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.19/scalatest-freespec_2.13-3.2.19.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.19/scalatest-freespec_2.13-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-freespec_2.13/3.2.19/scalatest-freespec_2.13-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.19/scalatest-freespec_2.13-3.2.19.jar" ], - "sha256": "db3467bb0b34c1ca8d9830cf40179e2900ac01d5119f7a1b6bdcef30adb62214", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9.jar" + "sha256": "f3e463422cca38117bb48665602543474fbc2c37427b1133a9c34332f895b08a", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.19/scalatest-freespec_2.13-3.2.19.jar" }, { - "coord": "org.scalatest:scalatest-freespec_2.13:jar:sources:3.2.9", + "coord": "org.scalatest:scalatest-freespec_2.13:jar:sources:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalactic:scalactic_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19", + "org.scalactic:scalactic_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-compatible:jar:sources:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.1.0", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.19/scalatest-freespec_2.13-3.2.19-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9-sources.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.19/scalatest-freespec_2.13-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-freespec_2.13/3.2.19/scalatest-freespec_2.13-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.19/scalatest-freespec_2.13-3.2.19-sources.jar" ], - "sha256": "607f5aae82a6a342b14ba788188e6a0fbccea126e104370630e5513b976ebbf0", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9-sources.jar" + "sha256": "3f2922d60b0945c331826d99f0c225f74e3a40785d4d287e854145aff140ee6d", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.19/scalatest-freespec_2.13-3.2.19-sources.jar" }, { - "coord": "org.scalatest:scalatest-funspec_2.13:3.2.9", + "coord": "org.scalatest:scalatest-funspec_2.13:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:2.0.0", - "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalactic:scalactic_2.13:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.13:3.2.9" + "org.scalatest:scalatest-compatible:3.2.19", + "org.scalatest:scalatest-core_2.13:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:2.1.0", + "org.scala-lang:scala-library:2.13.14", + "org.scalactic:scalactic_2.13:3.2.19" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalatest:scalatest-core_2.13:3.2.9" + "org.scalatest:scalatest-core_2.13:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.19/scalatest-funspec_2.13-3.2.19.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.19/scalatest-funspec_2.13-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-funspec_2.13/3.2.19/scalatest-funspec_2.13-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.19/scalatest-funspec_2.13-3.2.19.jar" ], - "sha256": "821d13ced0bf96d1470538cbcca3109694148f2637961e5c502639e16ab7eee9", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9.jar" + "sha256": "4c682781b67c5daeeebb9e132a78929b824f88747b963b9aa8bd24a0a7d6893b", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.19/scalatest-funspec_2.13-3.2.19.jar" }, { - "coord": "org.scalatest:scalatest-funspec_2.13:jar:sources:3.2.9", + "coord": "org.scalatest:scalatest-funspec_2.13:jar:sources:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalactic:scalactic_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19", + "org.scalactic:scalactic_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-compatible:jar:sources:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.1.0", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.19/scalatest-funspec_2.13-3.2.19-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9-sources.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.19/scalatest-funspec_2.13-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-funspec_2.13/3.2.19/scalatest-funspec_2.13-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.19/scalatest-funspec_2.13-3.2.19-sources.jar" ], - "sha256": "04414a6d5ca438f72fcf35ac91ced9c4e382a1a090a77146c7ff6f4902cd7f3a", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9-sources.jar" + "sha256": "aee8f9050f855de8f6d23a0c7fd8307bd648cd2f8e08cba60183577f28060e56", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.19/scalatest-funspec_2.13-3.2.19-sources.jar" }, { - "coord": "org.scalatest:scalatest-funsuite_2.13:3.2.9", + "coord": "org.scalatest:scalatest-funsuite_2.13:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:2.0.0", - "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalactic:scalactic_2.13:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.13:3.2.9" + "org.scalatest:scalatest-compatible:3.2.19", + "org.scalatest:scalatest-core_2.13:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:2.1.0", + "org.scala-lang:scala-library:2.13.14", + "org.scalactic:scalactic_2.13:3.2.19" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalatest:scalatest-core_2.13:3.2.9" + "org.scalatest:scalatest-core_2.13:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.19/scalatest-funsuite_2.13-3.2.19.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.19/scalatest-funsuite_2.13-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.19/scalatest-funsuite_2.13-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.19/scalatest-funsuite_2.13-3.2.19.jar" ], - "sha256": "d6455470fabc9f3a5a7a50770f6e1a4f4d0114122885637f3df684e5bb501f9d", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9.jar" + "sha256": "926aeb37193ad79d0b380160765c9ab61d4367b994c1ab715896fe4961241d5e", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.19/scalatest-funsuite_2.13-3.2.19.jar" }, { - "coord": "org.scalatest:scalatest-funsuite_2.13:jar:sources:3.2.9", + "coord": "org.scalatest:scalatest-funsuite_2.13:jar:sources:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalactic:scalactic_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19", + "org.scalactic:scalactic_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-compatible:jar:sources:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.1.0", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.19/scalatest-funsuite_2.13-3.2.19-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9-sources.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.19/scalatest-funsuite_2.13-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.19/scalatest-funsuite_2.13-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.19/scalatest-funsuite_2.13-3.2.19-sources.jar" ], - "sha256": "8faa4e26f7f86e518fa1743e0ea1f87c298525408b9f02b0e8f4fd8e36f02711", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9-sources.jar" + "sha256": "55a2d43256f955e108196097ffc2e5d2d7224723a0d68fd4f95ef3287d26aa1f", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.19/scalatest-funsuite_2.13-3.2.19-sources.jar" }, { - "coord": "org.scalatest:scalatest-matchers-core_2.13:3.2.9", + "coord": "org.scalatest:scalatest-matchers-core_2.13:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:2.0.0", - "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalactic:scalactic_2.13:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.13:3.2.9" + "org.scalatest:scalatest-compatible:3.2.19", + "org.scalatest:scalatest-core_2.13:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:2.1.0", + "org.scala-lang:scala-library:2.13.14", + "org.scalactic:scalactic_2.13:3.2.19" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalatest:scalatest-core_2.13:3.2.9" + "org.scalatest:scalatest-core_2.13:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.19/scalatest-matchers-core_2.13-3.2.19.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.19/scalatest-matchers-core_2.13-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.19/scalatest-matchers-core_2.13-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.19/scalatest-matchers-core_2.13-3.2.19.jar" ], - "sha256": "b86ed6f0986d005f4d54af5effdb73a18fe5741533f6663631d17a0731b9616f", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9.jar" + "sha256": "033f16c1143fbe51675d080b13ac319d98581d0331ba3ccebb121e3904a774a3", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.19/scalatest-matchers-core_2.13-3.2.19.jar" }, { - "coord": "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.9", + "coord": "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalactic:scalactic_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19", + "org.scalactic:scalactic_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-compatible:jar:sources:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.1.0", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.19/scalatest-matchers-core_2.13-3.2.19-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9-sources.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.19/scalatest-matchers-core_2.13-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.19/scalatest-matchers-core_2.13-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.19/scalatest-matchers-core_2.13-3.2.19-sources.jar" ], - "sha256": "3f6eafe9c3ed756ac5b25641c6dfa354f49a88a845b73830490598a6607e36fc", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9-sources.jar" + "sha256": "e0c385ea2abcdd51384dbee66384ca97f0559c2ed25217b2d7fb30ac35f79635", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.19/scalatest-matchers-core_2.13-3.2.19-sources.jar" }, { - "coord": "org.scalatest:scalatest-mustmatchers_2.13:3.2.9", + "coord": "org.scalatest:scalatest-mustmatchers_2.13:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:2.0.0", - "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalactic:scalactic_2.13:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.13:3.2.9", - "org.scalatest:scalatest-matchers-core_2.13:3.2.9" + "org.scalatest:scalatest-compatible:3.2.19", + "org.scalatest:scalatest-core_2.13:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:2.1.0", + "org.scala-lang:scala-library:2.13.14", + "org.scalatest:scalatest-matchers-core_2.13:3.2.19", + "org.scalactic:scalactic_2.13:3.2.19" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalatest:scalatest-matchers-core_2.13:3.2.9" + "org.scalatest:scalatest-matchers-core_2.13:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.19/scalatest-mustmatchers_2.13-3.2.19.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.19/scalatest-mustmatchers_2.13-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.19/scalatest-mustmatchers_2.13-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.19/scalatest-mustmatchers_2.13-3.2.19.jar" ], - "sha256": "e170d4ff75f0e96458b7ec072accd40ff585f9e444b5831ba84287ff2da70f2c", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9.jar" + "sha256": "8ebbd5c12843d75f15283f31c35994b6e733ce737f666b05528fa8b6e67ad32e", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.19/scalatest-mustmatchers_2.13-3.2.19.jar" }, { - "coord": "org.scalatest:scalatest-mustmatchers_2.13:jar:sources:3.2.9", + "coord": "org.scalatest:scalatest-mustmatchers_2.13:jar:sources:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalactic:scalactic_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19", + "org.scalactic:scalactic_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-compatible:jar:sources:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.1.0", + "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.19", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.19/scalatest-mustmatchers_2.13-3.2.19-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9-sources.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.19/scalatest-mustmatchers_2.13-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.19/scalatest-mustmatchers_2.13-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.19/scalatest-mustmatchers_2.13-3.2.19-sources.jar" ], - "sha256": "7c34f2459f03636999a1b1d1c6c76054901b43ce4e94d79e2c56b3f965476b35", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9-sources.jar" + "sha256": "ac2a920f304e957a1feff3f449dc556be9bd74b85891a901322691a34be5c758", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.19/scalatest-mustmatchers_2.13-3.2.19-sources.jar" }, { - "coord": "org.scalatest:scalatest-propspec_2.13:3.2.9", + "coord": "org.scalatest:scalatest-propspec_2.13:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:2.0.0", - "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalactic:scalactic_2.13:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.13:3.2.9" + "org.scalatest:scalatest-compatible:3.2.19", + "org.scalatest:scalatest-core_2.13:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:2.1.0", + "org.scala-lang:scala-library:2.13.14", + "org.scalactic:scalactic_2.13:3.2.19" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalatest:scalatest-core_2.13:3.2.9" + "org.scalatest:scalatest-core_2.13:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.19/scalatest-propspec_2.13-3.2.19.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.19/scalatest-propspec_2.13-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-propspec_2.13/3.2.19/scalatest-propspec_2.13-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.19/scalatest-propspec_2.13-3.2.19.jar" ], - "sha256": "f08355a14c5afece8130016a9f8e5bbc4196f4b612fefefb2acf223fb9f92607", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9.jar" + "sha256": "6c1c7d557485861d920b1c26748a871232b626e93d466a3d9bb8dbbc6e38485d", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.19/scalatest-propspec_2.13-3.2.19.jar" }, { - "coord": "org.scalatest:scalatest-propspec_2.13:jar:sources:3.2.9", + "coord": "org.scalatest:scalatest-propspec_2.13:jar:sources:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalactic:scalactic_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19", + "org.scalactic:scalactic_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-compatible:jar:sources:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.1.0", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.19/scalatest-propspec_2.13-3.2.19-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9-sources.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.19/scalatest-propspec_2.13-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-propspec_2.13/3.2.19/scalatest-propspec_2.13-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.19/scalatest-propspec_2.13-3.2.19-sources.jar" ], - "sha256": "968b121c006575a83590edfc6909c992ee5b22ec99230ed53b53c21d06958826", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.9/scalatest-propspec_2.13-3.2.9-sources.jar" + "sha256": "5c58e1ba8bc1f45d394fcab3ef6f9c62cb9531874ccd6b2dcbbb723473a22d8e", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.13/3.2.19/scalatest-propspec_2.13-3.2.19-sources.jar" }, { - "coord": "org.scalatest:scalatest-refspec_2.13:3.2.9", + "coord": "org.scalatest:scalatest-refspec_2.13:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:2.0.0", - "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalactic:scalactic_2.13:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.13:3.2.9" + "org.scalatest:scalatest-compatible:3.2.19", + "org.scalatest:scalatest-core_2.13:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:2.1.0", + "org.scala-lang:scala-library:2.13.14", + "org.scalactic:scalactic_2.13:3.2.19" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalatest:scalatest-core_2.13:3.2.9" + "org.scalatest:scalatest-core_2.13:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.19/scalatest-refspec_2.13-3.2.19.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.19/scalatest-refspec_2.13-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-refspec_2.13/3.2.19/scalatest-refspec_2.13-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.19/scalatest-refspec_2.13-3.2.19.jar" ], - "sha256": "edd37859e64c4f18ef266a28603ac7d85649f3f3cc26c14eb093d60199eaec03", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9.jar" + "sha256": "7a4c836cf66c99c1e12ca96e6d94c4f68b7dbb49144f9e13af73ada4df752652", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.19/scalatest-refspec_2.13-3.2.19.jar" }, { - "coord": "org.scalatest:scalatest-refspec_2.13:jar:sources:3.2.9", + "coord": "org.scalatest:scalatest-refspec_2.13:jar:sources:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalactic:scalactic_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19", + "org.scalactic:scalactic_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-compatible:jar:sources:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.1.0", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.19/scalatest-refspec_2.13-3.2.19-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9-sources.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.19/scalatest-refspec_2.13-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-refspec_2.13/3.2.19/scalatest-refspec_2.13-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.19/scalatest-refspec_2.13-3.2.19-sources.jar" ], - "sha256": "1959d3a0f9f9b117c7b09f9a69f589e3e904363912e7017c3a6e3e328a81c0f1", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.9/scalatest-refspec_2.13-3.2.9-sources.jar" + "sha256": "76b16ccd3ab49e4e0cf3dd242931ce3979c3c51ac048865e8648806e3470ec5e", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.13/3.2.19/scalatest-refspec_2.13-3.2.19-sources.jar" }, { - "coord": "org.scalatest:scalatest-shouldmatchers_2.13:3.2.9", + "coord": "org.scalatest:scalatest-shouldmatchers_2.13:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:2.0.0", - "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalactic:scalactic_2.13:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.13:3.2.9", - "org.scalatest:scalatest-matchers-core_2.13:3.2.9" + "org.scalatest:scalatest-compatible:3.2.19", + "org.scalatest:scalatest-core_2.13:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:2.1.0", + "org.scala-lang:scala-library:2.13.14", + "org.scalatest:scalatest-matchers-core_2.13:3.2.19", + "org.scalactic:scalactic_2.13:3.2.19" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalatest:scalatest-matchers-core_2.13:3.2.9" + "org.scalatest:scalatest-matchers-core_2.13:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.19/scalatest-shouldmatchers_2.13-3.2.19.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.19/scalatest-shouldmatchers_2.13-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.19/scalatest-shouldmatchers_2.13-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.19/scalatest-shouldmatchers_2.13-3.2.19.jar" ], - "sha256": "39a4eefa409fed5a32eff3647aa4f80628202d966e3cb6a9f01e88dcfae75e4c", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9.jar" + "sha256": "64658d736039267baae0108af620617e8ce88b2f4683112e2e31e4ad2a603c0f", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.19/scalatest-shouldmatchers_2.13-3.2.19.jar" }, { - "coord": "org.scalatest:scalatest-shouldmatchers_2.13:jar:sources:3.2.9", + "coord": "org.scalatest:scalatest-shouldmatchers_2.13:jar:sources:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalactic:scalactic_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19", + "org.scalactic:scalactic_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-compatible:jar:sources:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.1.0", + "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.19", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.19/scalatest-shouldmatchers_2.13-3.2.19-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9-sources.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.19/scalatest-shouldmatchers_2.13-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.19/scalatest-shouldmatchers_2.13-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.19/scalatest-shouldmatchers_2.13-3.2.19-sources.jar" ], - "sha256": "0bf2b1b0143a9668bac6f2eedf3637bf223a4937c53818d193232f7d9d2f5ff2", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9-sources.jar" + "sha256": "6768f1c650b1fb3c5525c10f766c15bc177e855b0b31607c2d2afb92378725fb", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.19/scalatest-shouldmatchers_2.13-3.2.19-sources.jar" }, { - "coord": "org.scalatest:scalatest-wordspec_2.13:3.2.9", + "coord": "org.scalatest:scalatest-wordspec_2.13:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:2.0.0", - "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalactic:scalactic_2.13:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.13:3.2.9" + "org.scalatest:scalatest-compatible:3.2.19", + "org.scalatest:scalatest-core_2.13:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:2.1.0", + "org.scala-lang:scala-library:2.13.14", + "org.scalactic:scalactic_2.13:3.2.19" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalatest:scalatest-core_2.13:3.2.9" + "org.scalatest:scalatest-core_2.13:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.19/scalatest-wordspec_2.13-3.2.19.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.19/scalatest-wordspec_2.13-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.19/scalatest-wordspec_2.13-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.19/scalatest-wordspec_2.13-3.2.19.jar" ], - "sha256": "c5d5424bc43f02df9720bd83c57daa982af02ad7ae468875956ebe183f836277", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9.jar" + "sha256": "08050f3d05c72575cac29a1483185b443d5f9f34c1fcf80c683083330385ef93", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.19/scalatest-wordspec_2.13-3.2.19.jar" }, { - "coord": "org.scalatest:scalatest-wordspec_2.13:jar:sources:3.2.9", + "coord": "org.scalatest:scalatest-wordspec_2.13:jar:sources:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalactic:scalactic_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19", + "org.scalactic:scalactic_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-compatible:jar:sources:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.1.0", + "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.19/scalatest-wordspec_2.13-3.2.19-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9-sources.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.19/scalatest-wordspec_2.13-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.19/scalatest-wordspec_2.13-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.19/scalatest-wordspec_2.13-3.2.19-sources.jar" ], - "sha256": "8a6f23594cf387e6c30f188ea308752e6da469e0477b7a11423d9f9999f2b66f", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.9/scalatest-wordspec_2.13-3.2.9-sources.jar" + "sha256": "bcb3e6a496e87891e79ec0fee6063e654f79bf3407d4294ecacf756a1550d850", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.13/3.2.19/scalatest-wordspec_2.13-3.2.19-sources.jar" }, { - "coord": "org.scalatest:scalatest_2.13:3.2.9", + "coord": "org.scalatest:scalatest_2.13:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:2.0.0", - "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalactic:scalactic_2.13:3.2.9", - "org.scalatest:scalatest-compatible:3.2.9", - "org.scalatest:scalatest-core_2.13:3.2.9", - "org.scalatest:scalatest-diagrams_2.13:3.2.9", - "org.scalatest:scalatest-featurespec_2.13:3.2.9", - "org.scalatest:scalatest-flatspec_2.13:3.2.9", - "org.scalatest:scalatest-freespec_2.13:3.2.9", - "org.scalatest:scalatest-funspec_2.13:3.2.9", - "org.scalatest:scalatest-funsuite_2.13:3.2.9", - "org.scalatest:scalatest-matchers-core_2.13:3.2.9", - "org.scalatest:scalatest-mustmatchers_2.13:3.2.9", - "org.scalatest:scalatest-propspec_2.13:3.2.9", - "org.scalatest:scalatest-refspec_2.13:3.2.9", - "org.scalatest:scalatest-shouldmatchers_2.13:3.2.9", - "org.scalatest:scalatest-wordspec_2.13:3.2.9" + "org.scalatest:scalatest-compatible:3.2.19", + "org.scalatest:scalatest-flatspec_2.13:3.2.19", + "org.scalatest:scalatest-funspec_2.13:3.2.19", + "org.scalatest:scalatest-propspec_2.13:3.2.19", + "org.scalatest:scalatest-shouldmatchers_2.13:3.2.19", + "org.scalatest:scalatest-diagrams_2.13:3.2.19", + "org.scalatest:scalatest-freespec_2.13:3.2.19", + "org.scalatest:scalatest-refspec_2.13:3.2.19", + "org.scalatest:scalatest-featurespec_2.13:3.2.19", + "org.scalatest:scalatest-core_2.13:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:2.1.0", + "org.scalatest:scalatest-mustmatchers_2.13:3.2.19", + "org.scalatest:scalatest-funsuite_2.13:3.2.19", + "org.scala-lang:scala-library:2.13.14", + "org.scalatest:scalatest-wordspec_2.13:3.2.19", + "org.scalatest:scalatest-matchers-core_2.13:3.2.19", + "org.scalactic:scalactic_2.13:3.2.19" ], "directDependencies": [ - "org.scala-lang:scala-library:2.13.14", "org.scala-lang:scala-reflect:2.13.14", - "org.scalatest:scalatest-core_2.13:3.2.9", - "org.scalatest:scalatest-diagrams_2.13:3.2.9", - "org.scalatest:scalatest-featurespec_2.13:3.2.9", - "org.scalatest:scalatest-flatspec_2.13:3.2.9", - "org.scalatest:scalatest-freespec_2.13:3.2.9", - "org.scalatest:scalatest-funspec_2.13:3.2.9", - "org.scalatest:scalatest-funsuite_2.13:3.2.9", - "org.scalatest:scalatest-matchers-core_2.13:3.2.9", - "org.scalatest:scalatest-mustmatchers_2.13:3.2.9", - "org.scalatest:scalatest-propspec_2.13:3.2.9", - "org.scalatest:scalatest-refspec_2.13:3.2.9", - "org.scalatest:scalatest-shouldmatchers_2.13:3.2.9", - "org.scalatest:scalatest-wordspec_2.13:3.2.9" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9.jar" - ], - "sha256": "c5d283a5ec028bf06f83d70e2b88d70a149dd574d19e79e8389b49483914b08b", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9.jar" - }, - { - "coord": "org.scalatest:scalatest_2.13:jar:sources:3.2.9", + "org.scalatest:scalatest-flatspec_2.13:3.2.19", + "org.scalatest:scalatest-funspec_2.13:3.2.19", + "org.scalatest:scalatest-propspec_2.13:3.2.19", + "org.scalatest:scalatest-shouldmatchers_2.13:3.2.19", + "org.scalatest:scalatest-diagrams_2.13:3.2.19", + "org.scalatest:scalatest-freespec_2.13:3.2.19", + "org.scalatest:scalatest-refspec_2.13:3.2.19", + "org.scalatest:scalatest-featurespec_2.13:3.2.19", + "org.scalatest:scalatest-core_2.13:3.2.19", + "org.scalatest:scalatest-mustmatchers_2.13:3.2.19", + "org.scalatest:scalatest-funsuite_2.13:3.2.19", + "org.scala-lang:scala-library:2.13.14", + "org.scalatest:scalatest-wordspec_2.13:3.2.19", + "org.scalatest:scalatest-matchers-core_2.13:3.2.19" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest_2.13/3.2.19/scalatest_2.13-3.2.19.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest_2.13/3.2.19/scalatest_2.13-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest_2.13/3.2.19/scalatest_2.13-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest_2.13/3.2.19/scalatest_2.13-3.2.19.jar" + ], + "sha256": "c37d97f16172d45b2aef0cebbe59dd2174b7d1ff2c2f272516707cf923015a52", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest_2.13/3.2.19/scalatest_2.13-3.2.19.jar" + }, + { + "coord": "org.scalatest:scalatest_2.13:jar:sources:3.2.19", "dependencies": [ - "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.0.0", + "org.scalatest:scalatest-wordspec_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-refspec_2.13:jar:sources:3.2.19", "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-propspec_2.13:jar:sources:3.2.19", + "org.scalactic:scalactic_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-featurespec_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-funsuite_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-compatible:jar:sources:3.2.19", + "org.scalatest:scalatest-mustmatchers_2.13:jar:sources:3.2.19", + "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.1.0", + "org.scalatest:scalatest-funspec_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-shouldmatchers_2.13:jar:sources:3.2.19", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalactic:scalactic_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-compatible:jar:sources:3.2.9", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-diagrams_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-featurespec_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-flatspec_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-freespec_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-funspec_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-funsuite_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-mustmatchers_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-propspec_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-refspec_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-shouldmatchers_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-wordspec_2.13:jar:sources:3.2.9" + "org.scalatest:scalatest-diagrams_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-flatspec_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-freespec_2.13:jar:sources:3.2.19" ], "directDependencies": [ + "org.scalatest:scalatest-wordspec_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-refspec_2.13:jar:sources:3.2.19", "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scalatest:scalatest-core_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-propspec_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-featurespec_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-funsuite_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-mustmatchers_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-funspec_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-shouldmatchers_2.13:jar:sources:3.2.19", "org.scala-lang:scala-reflect:jar:sources:2.13.14", - "org.scalatest:scalatest-core_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-diagrams_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-featurespec_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-flatspec_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-freespec_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-funspec_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-funsuite_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-matchers-core_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-mustmatchers_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-propspec_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-refspec_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-shouldmatchers_2.13:jar:sources:3.2.9", - "org.scalatest:scalatest-wordspec_2.13:jar:sources:3.2.9" - ], - "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9-sources.jar", - "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9-sources.jar" - ], - "sha256": "825a948573fc0cd462a92b7efab0fd3f740e00947158a9afce53458cbb285611", - "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9-sources.jar" - }, - { - "coord": "org.specs2:specs2-common_2.13:4.12.3", + "org.scalatest:scalatest-diagrams_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-flatspec_2.13:jar:sources:3.2.19", + "org.scalatest:scalatest-freespec_2.13:jar:sources:3.2.19" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scalatest/scalatest_2.13/3.2.19/scalatest_2.13-3.2.19-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest_2.13/3.2.19/scalatest_2.13-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest_2.13/3.2.19/scalatest_2.13-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest_2.13/3.2.19/scalatest_2.13-3.2.19-sources.jar" + ], + "sha256": "9e51badec41f488cebd1f74d25c8a3bdac4161b54649122c59e724fabc04e889", + "url": "https://repo.maven.apache.org/maven2/org/scalatest/scalatest_2.13/3.2.19/scalatest_2.13-3.2.19-sources.jar" + }, + { + "coord": "org.specs2:specs2-common_2.13:4.20.7", "dependencies": [ - "org.portable-scala:portable-scala-reflect_2.13:1.1.1", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.0.0", - "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang:scala-reflect:2.13.14", + "org.specs2:specs2-fp_2.13:4.20.7", "org.scala-sbt:test-interface:1.0", - "org.specs2:specs2-fp_2.13:4.12.3" + "org.portable-scala:portable-scala-reflect_2.13:1.1.3", + "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ - "org.portable-scala:portable-scala-reflect_2.13:1.1.1", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.0.0", - "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang:scala-reflect:2.13.14", + "org.specs2:specs2-fp_2.13:4.20.7", "org.scala-sbt:test-interface:1.0", - "org.specs2:specs2-fp_2.13:4.12.3" + "org.portable-scala:portable-scala-reflect_2.13:1.1.3", + "org.scala-lang:scala-library:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.12.3/specs2-common_2.13-4.12.3.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.20.7/specs2-common_2.13-4.20.7.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.12.3/specs2-common_2.13-4.12.3.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-common_2.13/4.12.3/specs2-common_2.13-4.12.3.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-common_2.13/4.12.3/specs2-common_2.13-4.12.3.jar" + "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.20.7/specs2-common_2.13-4.20.7.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-common_2.13/4.20.7/specs2-common_2.13-4.20.7.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-common_2.13/4.20.7/specs2-common_2.13-4.20.7.jar" ], - "sha256": "b505504e474747009660cb7ed679f015adaa7097f2b2e4b31a1a5085556333ea", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.12.3/specs2-common_2.13-4.12.3.jar" + "sha256": "ff0c47caa835d516bdfbdb8fdf3598df607f6a3a0c261fb3f46fde024f927e9c", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.20.7/specs2-common_2.13-4.20.7.jar" }, { - "coord": "org.specs2:specs2-common_2.13:jar:sources:4.12.3", + "coord": "org.specs2:specs2-common_2.13:jar:sources:4.20.7", "dependencies": [ - "org.portable-scala:portable-scala-reflect_2.13:jar:sources:1.1.1", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.0.0", + "org.specs2:specs2-fp_2.13:jar:sources:4.20.7", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", + "org.portable-scala:portable-scala-reflect_2.13:jar:sources:1.1.3", "org.scala-sbt:test-interface:jar:sources:1.0", - "org.specs2:specs2-fp_2.13:jar:sources:4.12.3" + "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "directDependencies": [ - "org.portable-scala:portable-scala-reflect_2.13:jar:sources:1.1.1", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.0.0", + "org.specs2:specs2-fp_2.13:jar:sources:4.20.7", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", + "org.portable-scala:portable-scala-reflect_2.13:jar:sources:1.1.3", "org.scala-sbt:test-interface:jar:sources:1.0", - "org.specs2:specs2-fp_2.13:jar:sources:4.12.3" + "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.12.3/specs2-common_2.13-4.12.3-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.20.7/specs2-common_2.13-4.20.7-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.12.3/specs2-common_2.13-4.12.3-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-common_2.13/4.12.3/specs2-common_2.13-4.12.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-common_2.13/4.12.3/specs2-common_2.13-4.12.3-sources.jar" + "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.20.7/specs2-common_2.13-4.20.7-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-common_2.13/4.20.7/specs2-common_2.13-4.20.7-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-common_2.13/4.20.7/specs2-common_2.13-4.20.7-sources.jar" ], - "sha256": "9cc1a9a63ce25b58f53fd80ad5b15d59e0f95663cc835b4b756ac500ca950549", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.12.3/specs2-common_2.13-4.12.3-sources.jar" + "sha256": "a86cec9286fdf424e57ab66c060251ff15f7879d4b5a10a0329630826dfd7c99", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-common_2.13/4.20.7/specs2-common_2.13-4.20.7-sources.jar" }, { - "coord": "org.specs2:specs2-core_2.13:4.12.3", + "coord": "org.specs2:specs2-core_2.13:4.20.7", "dependencies": [ - "org.portable-scala:portable-scala-reflect_2.13:1.1.1", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.0.0", - "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang:scala-reflect:2.13.14", + "org.specs2:specs2-fp_2.13:4.20.7", + "org.specs2:specs2-common_2.13:4.20.7", + "org.specs2:specs2-matcher_2.13:4.20.7", "org.scala-sbt:test-interface:1.0", - "org.specs2:specs2-common_2.13:4.12.3", - "org.specs2:specs2-fp_2.13:4.12.3", - "org.specs2:specs2-matcher_2.13:4.12.3" + "org.portable-scala:portable-scala-reflect_2.13:1.1.3", + "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ - "org.portable-scala:portable-scala-reflect_2.13:1.1.1", - "org.scala-lang:scala-library:2.13.14", + "org.specs2:specs2-common_2.13:4.20.7", + "org.specs2:specs2-matcher_2.13:4.20.7", "org.scala-sbt:test-interface:1.0", - "org.specs2:specs2-common_2.13:4.12.3", - "org.specs2:specs2-matcher_2.13:4.12.3" + "org.portable-scala:portable-scala-reflect_2.13:1.1.3", + "org.scala-lang:scala-library:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.12.3/specs2-core_2.13-4.12.3.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.20.7/specs2-core_2.13-4.20.7.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.12.3/specs2-core_2.13-4.12.3.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-core_2.13/4.12.3/specs2-core_2.13-4.12.3.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-core_2.13/4.12.3/specs2-core_2.13-4.12.3.jar" + "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.20.7/specs2-core_2.13-4.20.7.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-core_2.13/4.20.7/specs2-core_2.13-4.20.7.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-core_2.13/4.20.7/specs2-core_2.13-4.20.7.jar" ], - "sha256": "23e68bf88d962e2a7154307ed9be65a7789acce7e1273ee363450f98fce146df", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.12.3/specs2-core_2.13-4.12.3.jar" + "sha256": "ebd955c02e8c00c1eefc0827d6053d2acdd9082794df6408b611e8ad7b0786fe", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.20.7/specs2-core_2.13-4.20.7.jar" }, { - "coord": "org.specs2:specs2-core_2.13:jar:sources:4.12.3", + "coord": "org.specs2:specs2-core_2.13:jar:sources:4.20.7", "dependencies": [ - "org.portable-scala:portable-scala-reflect_2.13:jar:sources:1.1.1", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.0.0", + "org.specs2:specs2-fp_2.13:jar:sources:4.20.7", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", + "org.portable-scala:portable-scala-reflect_2.13:jar:sources:1.1.3", + "org.specs2:specs2-matcher_2.13:jar:sources:4.20.7", + "org.specs2:specs2-common_2.13:jar:sources:4.20.7", "org.scala-sbt:test-interface:jar:sources:1.0", - "org.specs2:specs2-common_2.13:jar:sources:4.12.3", - "org.specs2:specs2-fp_2.13:jar:sources:4.12.3", - "org.specs2:specs2-matcher_2.13:jar:sources:4.12.3" + "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "directDependencies": [ - "org.portable-scala:portable-scala-reflect_2.13:jar:sources:1.1.1", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-sbt:test-interface:jar:sources:1.0", - "org.specs2:specs2-common_2.13:jar:sources:4.12.3", - "org.specs2:specs2-matcher_2.13:jar:sources:4.12.3" + "org.portable-scala:portable-scala-reflect_2.13:jar:sources:1.1.3", + "org.specs2:specs2-matcher_2.13:jar:sources:4.20.7", + "org.specs2:specs2-common_2.13:jar:sources:4.20.7", + "org.scala-sbt:test-interface:jar:sources:1.0" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.12.3/specs2-core_2.13-4.12.3-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.20.7/specs2-core_2.13-4.20.7-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.12.3/specs2-core_2.13-4.12.3-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-core_2.13/4.12.3/specs2-core_2.13-4.12.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-core_2.13/4.12.3/specs2-core_2.13-4.12.3-sources.jar" + "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.20.7/specs2-core_2.13-4.20.7-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-core_2.13/4.20.7/specs2-core_2.13-4.20.7-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-core_2.13/4.20.7/specs2-core_2.13-4.20.7-sources.jar" ], - "sha256": "7eff91a3ed7b1394b962629700996e70664c3e5da36e92dd01c7e3d1f649bef7", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.12.3/specs2-core_2.13-4.12.3-sources.jar" + "sha256": "160c6c632cb6442ca94fc7527af4e0671f691abdd29e81b042d57df2eaf1f98e", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-core_2.13/4.20.7/specs2-core_2.13-4.20.7-sources.jar" }, { - "coord": "org.specs2:specs2-fp_2.13:4.12.3", + "coord": "org.specs2:specs2-fp_2.13:4.20.7", "dependencies": [ "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.12.3/specs2-fp_2.13-4.12.3.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.20.7/specs2-fp_2.13-4.20.7.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.12.3/specs2-fp_2.13-4.12.3.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-fp_2.13/4.12.3/specs2-fp_2.13-4.12.3.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-fp_2.13/4.12.3/specs2-fp_2.13-4.12.3.jar" + "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.20.7/specs2-fp_2.13-4.20.7.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-fp_2.13/4.20.7/specs2-fp_2.13-4.20.7.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-fp_2.13/4.20.7/specs2-fp_2.13-4.20.7.jar" ], - "sha256": "4b0dc6f8dcdd30e82f70f9fd9b9ac1c6f751de211b68a363c8efc70d4efa7b0a", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.12.3/specs2-fp_2.13-4.12.3.jar" + "sha256": "2e63eec87f7be7bf89546e8726a655cd2a7d4c6cd6c4324f7c4ca290ed3abb95", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.20.7/specs2-fp_2.13-4.20.7.jar" }, { - "coord": "org.specs2:specs2-fp_2.13:jar:sources:4.12.3", + "coord": "org.specs2:specs2-fp_2.13:jar:sources:4.20.7", "dependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.12.3/specs2-fp_2.13-4.12.3-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.20.7/specs2-fp_2.13-4.20.7-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.12.3/specs2-fp_2.13-4.12.3-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-fp_2.13/4.12.3/specs2-fp_2.13-4.12.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-fp_2.13/4.12.3/specs2-fp_2.13-4.12.3-sources.jar" + "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.20.7/specs2-fp_2.13-4.20.7-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-fp_2.13/4.20.7/specs2-fp_2.13-4.20.7-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-fp_2.13/4.20.7/specs2-fp_2.13-4.20.7-sources.jar" ], - "sha256": "94de88401362ab41c2c04a67ee93f80a9aa06ff99cc6a1829688e8224276e3b5", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.12.3/specs2-fp_2.13-4.12.3-sources.jar" + "sha256": "37bb6311912925e97aa145b167a6da46a2a6015a7835863a46c957dd573f4dbf", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-fp_2.13/4.20.7/specs2-fp_2.13-4.20.7-sources.jar" }, { - "coord": "org.specs2:specs2-matcher_2.13:4.12.3", + "coord": "org.specs2:specs2-matcher_2.13:4.20.7", "dependencies": [ - "org.portable-scala:portable-scala-reflect_2.13:1.1.1", - "org.scala-lang.modules:scala-parser-combinators_2.13:2.0.0", - "org.scala-lang:scala-library:2.13.14", + "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "org.scala-lang:scala-reflect:2.13.14", + "org.specs2:specs2-fp_2.13:4.20.7", + "org.specs2:specs2-common_2.13:4.20.7", "org.scala-sbt:test-interface:1.0", - "org.specs2:specs2-common_2.13:4.12.3", - "org.specs2:specs2-fp_2.13:4.12.3" + "org.portable-scala:portable-scala-reflect_2.13:1.1.3", + "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:2.13.14", - "org.specs2:specs2-common_2.13:4.12.3" + "org.specs2:specs2-common_2.13:4.20.7" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.12.3/specs2-matcher_2.13-4.12.3.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.20.7/specs2-matcher_2.13-4.20.7.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.12.3/specs2-matcher_2.13-4.12.3.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-matcher_2.13/4.12.3/specs2-matcher_2.13-4.12.3.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-matcher_2.13/4.12.3/specs2-matcher_2.13-4.12.3.jar" + "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.20.7/specs2-matcher_2.13-4.20.7.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-matcher_2.13/4.20.7/specs2-matcher_2.13-4.20.7.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-matcher_2.13/4.20.7/specs2-matcher_2.13-4.20.7.jar" ], - "sha256": "050d2d9d826eae76f3d11dcaf799bf89dedb3a3fc38b64c88402e6015b7dbe8d", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.12.3/specs2-matcher_2.13-4.12.3.jar" + "sha256": "73f340a770670f7828ee8e1c567d1d64228035b192e07362567cffa6c0026538", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.20.7/specs2-matcher_2.13-4.20.7.jar" }, { - "coord": "org.specs2:specs2-matcher_2.13:jar:sources:4.12.3", + "coord": "org.specs2:specs2-matcher_2.13:jar:sources:4.20.7", "dependencies": [ - "org.portable-scala:portable-scala-reflect_2.13:jar:sources:1.1.1", - "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:2.0.0", + "org.specs2:specs2-fp_2.13:jar:sources:4.20.7", "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", + "org.portable-scala:portable-scala-reflect_2.13:jar:sources:1.1.3", + "org.specs2:specs2-common_2.13:jar:sources:4.20.7", "org.scala-sbt:test-interface:jar:sources:1.0", - "org.specs2:specs2-common_2.13:jar:sources:4.12.3", - "org.specs2:specs2-fp_2.13:jar:sources:4.12.3" + "org.scala-lang:scala-reflect:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.specs2:specs2-common_2.13:jar:sources:4.12.3" + "org.specs2:specs2-common_2.13:jar:sources:4.20.7" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.12.3/specs2-matcher_2.13-4.12.3-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.20.7/specs2-matcher_2.13-4.20.7-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.12.3/specs2-matcher_2.13-4.12.3-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-matcher_2.13/4.12.3/specs2-matcher_2.13-4.12.3-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-matcher_2.13/4.12.3/specs2-matcher_2.13-4.12.3-sources.jar" + "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.20.7/specs2-matcher_2.13-4.20.7-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/specs2/specs2-matcher_2.13/4.20.7/specs2-matcher_2.13-4.20.7-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/specs2/specs2-matcher_2.13/4.20.7/specs2-matcher_2.13-4.20.7-sources.jar" ], - "sha256": "e7cbe383c479f07673ec133e110239a29e437f5515d9ab03c24b7b477198c714", - "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.12.3/specs2-matcher_2.13-4.12.3-sources.jar" + "sha256": "f7dda7977b48c77ac4c20fbad448674e946d867768d009ef4aa5db0ff436ac0e", + "url": "https://repo.maven.apache.org/maven2/org/specs2/specs2-matcher_2.13/4.20.7/specs2-matcher_2.13-4.20.7-sources.jar" }, { "coord": "org.typelevel:kind-projector_2.13.14:0.13.3", "dependencies": [ - "io.github.java-diff-utils:java-diff-utils:4.12", + "org.scala-lang:scala-reflect:2.13.14", "net.java.dev.jna:jna:5.14.0", - "org.jline:jline:3.25.1", "org.scala-lang:scala-compiler:2.13.14", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14" + "io.github.java-diff-utils:java-diff-utils:4.12", + "org.jline:jline:3.25.1", + "org.scala-lang:scala-library:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-compiler:2.13.14", @@ -1574,12 +1575,12 @@ { "coord": "org.typelevel:kind-projector_2.13.14:jar:sources:0.13.3", "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", "io.github.java-diff-utils:java-diff-utils:jar:sources:4.12", "net.java.dev.jna:jna:jar:sources:5.14.0", "org.jline:jline:jar:sources:3.25.1", - "org.scala-lang:scala-compiler:jar:sources:2.13.14", - "org.scala-lang:scala-library:jar:sources:2.13.14", - "org.scala-lang:scala-reflect:jar:sources:2.13.14" + "org.scala-lang:scala-reflect:jar:sources:2.13.14", + "org.scala-lang:scala-compiler:jar:sources:2.13.14" ], "directDependencies": [ "org.scala-lang:scala-compiler:jar:sources:2.13.14", diff --git a/tests/binary/reflect/BUILD b/tests/binary/reflect/BUILD index 404278efe..79ecc874a 100644 --- a/tests/binary/reflect/BUILD +++ b/tests/binary/reflect/BUILD @@ -9,7 +9,8 @@ scala_library( scala_binary( name = "good", srcs = ["Reflect.scala"], - deps_used_whitelist = ["@annex//:org_scala_lang_scala_reflect"], scala = "//scala:2_13", - deps = ["@annex//:org_scala_lang_scala_reflect"], + deps = [ + "@annex//:org_scala_lang_scala_reflect", + ], ) diff --git a/tests/plugins/macros/BUILD b/tests/plugins/macros/BUILD index 527476417..f6c6d2345 100644 --- a/tests/plugins/macros/BUILD +++ b/tests/plugins/macros/BUILD @@ -46,7 +46,9 @@ scala_library( name = "util", srcs = ["MacroUtil.scala"], scala = "//scala:2_13", - deps = ["@annex//:org_scala_lang_scala_reflect_2_13_14"], + deps = [ + "@annex//:org_scala_lang_scala_reflect_2_13_14", + ], ) scala_binary( diff --git a/tests/workspace.bzl b/tests/workspace.bzl index c8f696d3d..4c0842ab6 100644 --- a/tests/workspace.bzl +++ b/tests/workspace.bzl @@ -6,13 +6,13 @@ def test_artifacts(): "com.thesamet.scalapb:lenses_2.13:0.9.0", "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.4", "org.scala-lang.modules:scala-xml_2.13:2.0.0", - "org.scala-sbt:compiler-interface:1.9.3", - "org.scalacheck:scalacheck_2.13:1.15.4", - "org.scalactic:scalactic_2.13:3.2.9", - "org.scalatest:scalatest_2.13:3.2.9", - "org.specs2:specs2-common_2.13:4.12.3", - "org.specs2:specs2-core_2.13:4.12.3", - "org.specs2:specs2-matcher_2.13:4.12.3", + "org.scala-sbt:compiler-interface:1.10.0", + "org.scalacheck:scalacheck_2.13:1.18.0", + "org.scalactic:scalactic_2.13:3.2.19", + "org.scalatest:scalatest_2.13:3.2.19", + "org.specs2:specs2-common_2.13:4.20.7", + "org.specs2:specs2-core_2.13:4.20.7", + "org.specs2:specs2-matcher_2.13:4.20.7", "org.typelevel:kind-projector_2.13.14:0.13.3", ] From 0bf6ec8bc1843df924448a5ed85fab9ca5da1ac5 Mon Sep 17 00:00:00 2001 From: James Judd Date: Mon, 1 Jul 2024 20:34:22 -0600 Subject: [PATCH 08/21] Re-enable worker sandboxing --- .bazelrc_shared | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.bazelrc_shared b/.bazelrc_shared index 70780c316..ff7cd31c8 100644 --- a/.bazelrc_shared +++ b/.bazelrc_shared @@ -14,13 +14,7 @@ build --tool_java_runtime_version="remotejdk_21" build --strategy=ScalaCompile=worker build --worker_max_instances=4 -# To re-enable worker sandboxing you will need to revert -# 037d7440cf3b192b9979ff2f2c1b2c674b433afc -# But this will cause AnalysisCache files to be included as -# action inputs. Those files are non-deterministic, so this -# causes cache misses. We should fix that before reverting -# that commit. -#build --worker_sandboxing +build --worker_sandboxing build --verbose_failures test --test_output=all From 3296c4e841a513d0bce69973416eead7db583af2 Mon Sep 17 00:00:00 2001 From: James Judd Date: Tue, 2 Jul 2024 01:55:57 -0600 Subject: [PATCH 09/21] Use ConsistentAnalysisStore --- rules/private/phases/phase_test_launcher.bzl | 4 +- rules/private/phases/phase_zinc_compile.bzl | 42 +- rules/providers.bzl | 4 +- rules/scala.bzl | 4 + rules/scala/private/provider.bzl | 1 + .../rules_scala/common/sbt-testing/BUILD | 3 + .../workers/common/AnalysisUtil.scala | 30 + .../workers/common/CommonArguments.scala | 30 +- .../workers/zinc/compile/AnalysisStore.scala | 812 ------------------ .../workers/zinc/compile/Deps.scala | 4 +- .../zinc/compile/ZincPersistence.scala | 37 +- .../workers/zinc/compile/ZincRunner.scala | 94 +- .../rules_scala/workers/zinc/test/BUILD | 3 +- .../workers/zinc/test/TestRunner.scala | 22 +- tests/scala/scala3/BUILD | 2 +- 15 files changed, 130 insertions(+), 962 deletions(-) create mode 100644 src/main/scala/higherkindness/rules_scala/workers/common/AnalysisUtil.scala delete mode 100644 src/main/scala/higherkindness/rules_scala/workers/zinc/compile/AnalysisStore.scala diff --git a/rules/private/phases/phase_test_launcher.bzl b/rules/private/phases/phase_test_launcher.bzl index d0d107b5a..11854c695 100644 --- a/rules/private/phases/phase_test_launcher.bzl +++ b/rules/private/phases/phase_test_launcher.bzl @@ -16,7 +16,7 @@ load( # def phase_test_launcher(ctx, g): - files = ctx.attr._target_jdk[java_common.JavaRuntimeInfo].files.to_list() + [g.compile.zinc_info.apis] + files = ctx.attr._target_jdk[java_common.JavaRuntimeInfo].files.to_list() + [g.compile.zinc_info.analysis_store] coverage_replacements = {} coverage_runner_jars = depset(direct = []) @@ -35,7 +35,7 @@ def phase_test_launcher(ctx, g): all_jars = [test_jars, runner_jars] args = ctx.actions.args() - args.add("--apis", g.compile.zinc_info.apis.short_path) + args.add("--analysis_store", g.compile.zinc_info.analysis_store.short_path) args.add_all("--frameworks", ctx.attr.frameworks) if ctx.attr.isolation == "classloader": shared_deps = java_common.merge(_collect(JavaInfo, ctx.attr.shared_deps)) diff --git a/rules/private/phases/phase_zinc_compile.bzl b/rules/private/phases/phase_zinc_compile.bzl index 8c825785f..8eca8d5b1 100644 --- a/rules/private/phases/phase_zinc_compile.bzl +++ b/rules/private/phases/phase_zinc_compile.bzl @@ -23,14 +23,9 @@ def phase_zinc_compile(ctx, g): scala_configuration = ctx.attr.scala[_ScalaConfiguration] zinc_configuration = ctx.attr.scala[_ZincConfiguration] - apis = ctx.actions.declare_file("{}/apis.gz".format(ctx.label.name)) - infos = ctx.actions.declare_file("{}/infos.gz".format(ctx.label.name)) + analysis_store = ctx.actions.declare_file("{}/analysis_store.gz".format(ctx.label.name)) mains_file = ctx.actions.declare_file("{}.jar.mains.txt".format(ctx.label.name)) - relations = ctx.actions.declare_file("{}/relations.gz".format(ctx.label.name)) - setup = ctx.actions.declare_file("{}/setup.gz".format(ctx.label.name)) - stamps = ctx.actions.declare_file("{}/stamps.gz".format(ctx.label.name)) used = ctx.actions.declare_file("{}/deps_used.txt".format(ctx.label.name)) - tmp = ctx.actions.declare_directory("{}/tmp".format(ctx.label.name)) javacopts = [ @@ -53,12 +48,8 @@ def phase_zinc_compile(ctx, g): args.add_all(javacopts, format_each = "--java_compiler_option=%s") args.add(ctx.label, format = "--label=%s") args.add("--main_manifest", mains_file) - args.add("--output_apis", apis) - args.add("--output_infos", infos) + args.add("--output_analysis_store", analysis_store) args.add("--output_jar", g.classpaths.jar) - args.add("--output_relations", relations) - args.add("--output_setup", setup) - args.add("--output_stamps", stamps) args.add("--output_used", used) args.add_all("--plugins", g.classpaths.plugin) args.add_all("--source_jars", g.classpaths.src_jars) @@ -81,7 +72,18 @@ def phase_zinc_compile(ctx, g): ] + [zinc.deps_files for zinc in zincs], ) - outputs = [g.classpaths.jar, mains_file, apis, infos, relations, setup, stamps, used, tmp] + outputs = [g.classpaths.jar, mains_file, analysis_store, used, tmp] + + execution_requirements_tags = { + "supports-multiplex-workers": "1", + "supports-workers": "1", + } + + # Disable sandboxing if incremental compilation features are going to be used + # because they require stashing files outside the sandbox that Bazel isn't + # aware of. + if zinc_configuration.incremental: + execution_requirements_tags["no-sandbox"] = "1" # todo: different execution path for nosrc jar? ctx.actions.run( @@ -90,7 +92,10 @@ def phase_zinc_compile(ctx, g): outputs = outputs, executable = worker.files_to_run.executable, input_manifests = input_manifests, - execution_requirements = _resolve_execution_reqs(ctx, {"no-sandbox": "1", "supports-multiplex-workers": "1", "supports-workers": "1"}), + execution_requirements = _resolve_execution_reqs( + ctx, + execution_requirements_tags, + ), arguments = [args], ) @@ -99,16 +104,14 @@ def phase_zinc_compile(ctx, g): jars.append(jar.class_jar) jars.append(jar.ijar) zinc_info = _ZincInfo( - apis = apis, - deps_files = depset([apis, relations], transitive = [zinc.deps_files for zinc in zincs]), + analysis_store = analysis_store, + deps_files = depset([analysis_store], transitive = [zinc.deps_files for zinc in zincs]), label = ctx.label, - relations = relations, deps = depset( [struct( - apis = apis, + analysis_store = analysis_store, jars = tuple(jars), label = ctx.label, - relations = relations, )], transitive = [zinc.deps for zinc in zincs], ), @@ -126,6 +129,5 @@ def _compile_analysis(analysis): return [ "--analysis", "_{}".format(analysis.label), - analysis.apis.path, - analysis.relations.path, + analysis.analysis_store.path, ] + [jar.path for jar in analysis.jars] diff --git a/rules/providers.bzl b/rules/providers.bzl index 70ed8c081..4247f331f 100644 --- a/rules/providers.bzl +++ b/rules/providers.bzl @@ -66,6 +66,7 @@ ZincConfiguration = provider( "compiler_bridge": "compiled Zinc compiler bridge", "compile_worker": "the worker label for compilation with Zinc", "log_level": "log level for the Zinc compiler", + "incremental": "whether incremental compilation will be available for this Zinc compiler", }, ) @@ -156,11 +157,10 @@ declare_zinc_configuration = rule( ZincInfo = provider( doc = "Zinc-specific outputs.", fields = { - "apis": "The API file.", + "analysis_store": "The analysis store file.", "deps": "The depset of library dependency outputs.", "deps_files": "The depset of all Zinc files.", "label": "The label for this output.", - "relations": "The relations file.", }, ) diff --git a/rules/scala.bzl b/rules/scala.bzl index c7a569eb0..60a8db315 100644 --- a/rules/scala.bzl +++ b/rules/scala.bzl @@ -536,6 +536,10 @@ _configure_zinc_scala = rule( ), "deps_direct": attr.string(default = "error"), "deps_used": attr.string(default = "error"), + "incremental": attr.bool( + doc = "Whether Zinc's incremental compilation will be available for this Zinc compiler. If True, this requires additional configuration to use incremental compilation.", + default = False, + ), "_compile_worker": attr.label( default = "@rules_scala_annex//src/main/scala/higherkindness/rules_scala/workers/zinc/compile", allow_files = True, diff --git a/rules/scala/private/provider.bzl b/rules/scala/private/provider.bzl index 307befffe..10ee6d730 100644 --- a/rules/scala/private/provider.bzl +++ b/rules/scala/private/provider.bzl @@ -47,6 +47,7 @@ def configure_zinc_scala_implementation(ctx): compile_worker = ctx.attr._compile_worker, compiler_bridge = ctx.file.compiler_bridge, log_level = ctx.attr.log_level, + incremental = ctx.attr.incremental, ), _DepsConfiguration( direct = ctx.attr.deps_direct, diff --git a/src/main/scala/higherkindness/rules_scala/common/sbt-testing/BUILD b/src/main/scala/higherkindness/rules_scala/common/sbt-testing/BUILD index 7916dbe82..10bd77411 100644 --- a/src/main/scala/higherkindness/rules_scala/common/sbt-testing/BUILD +++ b/src/main/scala/higherkindness/rules_scala/common/sbt-testing/BUILD @@ -25,6 +25,9 @@ scala_library( srcs = _common_srcs, scala = "//src/main/scala:zinc", visibility = ["//visibility:public"], + deps_used_whitelist = [ + "@annex//:org_scala_lang_scala_library", + ], deps = [ "@annex//:org_scala_lang_modules_scala_xml_2_13", "@annex//:org_scala_sbt_test_interface", diff --git a/src/main/scala/higherkindness/rules_scala/workers/common/AnalysisUtil.scala b/src/main/scala/higherkindness/rules_scala/workers/common/AnalysisUtil.scala new file mode 100644 index 000000000..97b0e7596 --- /dev/null +++ b/src/main/scala/higherkindness/rules_scala/workers/common/AnalysisUtil.scala @@ -0,0 +1,30 @@ +package higherkindness.rules_scala +package workers.common + +import java.io.File +import sbt.internal.inc.Analysis +import sbt.internal.inc.consistent.ConsistentFileAnalysisStore +import xsbti.compile.AnalysisStore +import xsbti.compile.analysis.ReadWriteMappers + +object AnalysisUtil { + def getAnalysisStore(analysisStoreFile: File, debug: Boolean): AnalysisStore = { + if (debug) { + ConsistentFileAnalysisStore.text( + analysisStoreFile, + ReadWriteMappers.getEmptyMappers, + sort = true, + ) + } else { + ConsistentFileAnalysisStore.binary( + analysisStoreFile, + ReadWriteMappers.getEmptyMappers, + sort = true, + ) + } + } + + def getAnalysis(analysisStore: AnalysisStore): Analysis = { + analysisStore.get().get().getAnalysis.asInstanceOf[Analysis] + } +} diff --git a/src/main/scala/higherkindness/rules_scala/workers/common/CommonArguments.scala b/src/main/scala/higherkindness/rules_scala/workers/common/CommonArguments.scala index 0e499fdbc..301252eb8 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/common/CommonArguments.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/common/CommonArguments.scala @@ -22,7 +22,7 @@ object CommonArguments { parser .addArgument("--analysis") .action(ArgumentsImpl.append) - .help("Analysis, given as: label apis relations [jar ...]") + .help("Analysis, given as: label analysis_store [jar ...]") .metavar("args") .nargs("*") parser @@ -76,14 +76,8 @@ object CommonArguments { .required(true) .`type`(ArgumentsImpl.fileType.verifyCanCreate) parser - .addArgument("--output_apis") - .help("Output APIs") - .metavar("path") - .required(true) - .`type`(ArgumentsImpl.fileType.verifyCanCreate()) - parser - .addArgument("--output_infos") - .help("Output Zinc source infos") + .addArgument("--output_analysis_store") + .help("Output Analysis Store") .metavar("path") .required(true) .`type`(ArgumentsImpl.fileType.verifyCanCreate()) @@ -93,24 +87,6 @@ object CommonArguments { .metavar("path") .required(true) .`type`(ArgumentsImpl.fileType.verifyCanCreate()) - parser - .addArgument("--output_relations") - .help("Output Zinc relations") - .metavar("path") - .required(true) - .`type`(ArgumentsImpl.fileType.verifyCanCreate()) - parser - .addArgument("--output_setup") - .help("Output Zinc setup") - .metavar("path") - .required(true) - .`type`(ArgumentsImpl.fileType.verifyCanCreate()) - parser - .addArgument("--output_stamps") - .help("Output Zinc source stamps") - .metavar("path") - .required(true) - .`type`(ArgumentsImpl.fileType.verifyCanCreate()) parser .addArgument("--output_used") .help("Output list of used jars") diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/AnalysisStore.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/AnalysisStore.scala deleted file mode 100644 index e7f102800..000000000 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/AnalysisStore.scala +++ /dev/null @@ -1,812 +0,0 @@ -package higherkindness.rules_scala -package workers.zinc.compile - -import com.google.devtools.build.buildjar.jarhelper.JarHelper -import java.io.{File, InputStream, OutputStream, OutputStreamWriter} -import java.nio.charset.StandardCharsets -import java.nio.file.{Files, NoSuchFileException, Path, Paths} -import java.nio.file.attribute.FileTime -import java.util -import java.util.concurrent.ConcurrentHashMap -import java.util.LinkedHashMap -import java.util.zip.{GZIPInputStream, GZIPOutputStream} -import java.util.Optional -import sbt.internal.inc.binary.converters.{ProtobufReaders, ProtobufWriters} -import sbt.internal.inc.Schema.Type.{Projection, Structure} -import sbt.internal.inc.{APIs, Analysis, PlainVirtualFile, PlainVirtualFileConverter, Relations, Schema, SourceInfos, Stamp => StampImpl, Stamper, Stamps} -import sbt.internal.inc.Schema.{Access, AnalyzedClass, Annotation, AnnotationArgument, ClassDefinition, ClassDependencies, ClassLike, Companions, MethodParameter, NameHash, ParameterList, Path => SchemaPath, Qualifier, Type, TypeParameter, UsedName, UsedNames, Values} -import sbt.internal.shaded.com.google.protobuf.GeneratedMessageV3 -import sbt.io.IO -import scala.collection.immutable.TreeMap -import xsbti.compile.analysis.{GenericMapper, ReadMapper, ReadWriteMappers, Stamp, WriteMapper} -import xsbti.compile.{AnalysisContents, AnalysisStore, MiniSetup} -import scala.jdk.CollectionConverters._ -import xsbti.VirtualFileRef -import java.util.Objects - -case class AnalysisFiles(apis: Path, miniSetup: Path, relations: Path, sourceInfos: Path, stamps: Path) - -object AnxAnalysisStore { - trait Format { - def read[A <: GeneratedMessageV3](message: A, inputStream: InputStream): A - def write(message: GeneratedMessageV3, stream: OutputStream): Unit - } - object BinaryFormat extends Format { - def read[A <: GeneratedMessageV3](message: A, stream: InputStream): A = { - message.getParserForType.parseFrom(new GZIPInputStream(stream)).asInstanceOf[A] - } - - def write(message: GeneratedMessageV3, stream: OutputStream): Unit = { - val gzip = new GZIPOutputStream(stream, true) - message.writeTo(gzip) - gzip.finish() - } - } - object TextFormat extends Format { - def read[A <: GeneratedMessageV3](message: A, stream: InputStream): A = { - val builder = message.toBuilder() - sbt.internal.shaded.com.google.protobuf.TextFormat.merge( - IO.readStream(stream, StandardCharsets.US_ASCII), - builder - ) - builder.build().asInstanceOf[A] - } - - def write(message: GeneratedMessageV3, stream: OutputStream): Unit = { - val printer = sbt.internal.shaded.com.google.protobuf.TextFormat.printer() - val writer = new OutputStreamWriter(stream, StandardCharsets.US_ASCII) - try printer.escapingNonAscii(true).print(message, writer) - finally writer.close() - } - } -} - -trait Readable[A] { - def read(file: Path): A -} - -trait Writeable[A] { - def write(file: Path, value: A): Unit -} - -class Store[A](readStream: InputStream => A, writeStream: (OutputStream, A) => Unit) - extends Readable[A] - with Writeable[A] { - def read(file: Path): A = { - val stream = Files.newInputStream(file) - try { - readStream(stream) - } finally { - stream.close() - } - } - def write(file: Path, value: A): Unit = { - val stream = Files.newOutputStream(file) - try { - writeStream(stream, value) - } finally { - stream.close() - } - } -} - -class AnxAnalysisStore(files: AnalysisFiles, analyses: AnxAnalyses) extends AnalysisStore { - def get(): Optional[AnalysisContents] = { - try { - val analysis = Analysis.Empty.copy( - apis = analyses.apis().read(files.apis), - relations = analyses.relations.read(files.relations), - infos = analyses.sourceInfos.read(files.sourceInfos), - stamps = analyses.stamps().read(files.stamps) - ) - val miniSetup = analyses.miniSetup().read(files.miniSetup) - Optional.of(AnalysisContents.create(analysis, miniSetup)) - } catch { - case e: NoSuchFileException => Optional.empty() - } - } - - override def unsafeGet(): AnalysisContents = { - get().get() - } - - def set(analysisContents: AnalysisContents) = { - val analysis = analysisContents.getAnalysis.asInstanceOf[Analysis] - analyses.apis().write(files.apis, analysis.apis) - analyses.relations.write(files.relations, analysis.relations) - analyses.sourceInfos.write(files.sourceInfos, analysis.infos) - analyses.stamps().write(files.stamps, analysis.stamps) - val miniSetup = analysisContents.getMiniSetup - analyses.miniSetup().write(files.miniSetup, miniSetup) - } - -} - -class AnxAnalyses(format: AnxAnalysisStore.Format) { - private[this] val mappers = AnxMapper.mappers(Paths.get("")) - private[this] val reader = new ProtobufReaders(mappers.getReadMapper, Schema.Version.V1_1) - private[this] val writer = new ProtobufWriters(mappers.getWriteMapper) - - def sortProjection(value: Projection): Projection = { - // I copied this over from the old code, but I'm pretty sure this isn't doing anything useful? - Projection - .newBuilder(value) - .setId(value.getId) - .setPrefix(value.getPrefix) - .build() - } - - /* - * Important note: The following functions should only be called _after_ the internals of the classes have been sorted - * We can use hashCode() on strings, bools, and ints, which hash independently of memory location, but not any other objects, which can vary - */ - def hashAnnotationArgument(annotationArgument: AnnotationArgument): Int = - Objects.hash(annotationArgument.getName(), annotationArgument.getValue()) - def hashNameHash(nameHash: NameHash): Int = Objects.hash(nameHash.getName(), nameHash.getHash()) - def hashPath(path: SchemaPath): Int = Objects.hash( - path - .getComponentsList() - .asScala - .map(pathComponent => - if (pathComponent.hasId()) { - Objects.hash( - 1, - pathComponent.getId().getId() - ) - } else if (pathComponent.hasThis()) { - Objects.hash( - 2 - ) - } else if (pathComponent.hasSuper()) { - Objects.hash( - 3, - hashPath(pathComponent.getSuper().getQualifier()) - ) - } else { - throw new Error("Unrecognized pathComponent type") - } - ) - .toSeq: _* - ) - def hashType(t: Type): Int = if (t.hasParameterRef()) { - Objects.hash( - 1, - t.getParameterRef().getId() - ) - } else if (t.hasParameterized()) { - Objects.hash( - 2, - hashType(t.getParameterized().getBaseType()), - Objects.hash(t.getParameterized().getTypeArgumentsList().asScala.map(hashType).toSeq: _*) - ) - } else if (t.hasStructure()) { - Objects.hash( - 3, - Objects.hash(t.getStructure().getParentsList().asScala.map(hashType).toSeq: _*), - Objects.hash(t.getStructure().getDeclaredList().asScala.map(hashClassDefinition).toSeq: _*), - Objects.hash(t.getStructure().getInheritedList().asScala.map(hashClassDefinition).toSeq: _*) - ) - } else if (t.hasPolymorphic()) { - Objects.hash( - 4, - hashType(t.getPolymorphic().getBaseType()), - Objects.hash(t.getPolymorphic().getTypeParametersList().asScala.map(hashTypeParameter).toSeq: _*) - ) - } else if (t.hasConstant()) { - Objects.hash( - 5, - hashType(t.getConstant().getBaseType()), - t.getConstant().getValue() - ) - } else if (t.hasExistential()) { - Objects.hash( - 6, - hashType(t.getExistential().getBaseType()), - Objects.hash(t.getExistential().getClauseList().asScala.map(hashTypeParameter).toSeq: _*) - ) - } else if (t.hasSingleton()) { - Objects.hash( - 7, - hashPath(t.getSingleton().getPath()) - ) - } else if (t.hasProjection()) { - Objects.hash( - 8, - t.getProjection().getId(), - hashType(t.getProjection().getPrefix()) - ) - } else if (t.hasAnnotated()) { - Objects.hash( - 9, - hashType(t.getAnnotated().getBaseType()), - Objects.hash(t.getAnnotated().getAnnotationsList().asScala.map(hashAnnotation).toSeq: _*) - ) - } else if (t.hasEmptyType()) { - Objects.hash( - 10 - ) - } else { - throw new Error("Unrecognized type type") - } - def hashQualifier(qualifier: Qualifier): Int = if (qualifier.hasThisQualifier()) { - 1 - } else if (qualifier.hasIdQualifier()) { - 2 - } else if (qualifier.hasUnqualified()) { - 3 - } else { - throw new Error("Unrecognized qualifier type") - } - def hashAccess(access: Access): Int = if (access.hasPublic()) { - Objects.hash(1) - } else if (access.hasProtected()) { - Objects.hash( - 2, - hashQualifier(access.getProtected().getQualifier()) - ) - } else if (access.hasPrivate()) { - Objects.hash( - 3, - hashQualifier(access.getPrivate().getQualifier()) - ) - } else { - throw new Error("Unrecognized access type") - } - def hashMethodParameter(methodParameter: MethodParameter): Int = Objects.hash( - methodParameter.getName(), - hashType(methodParameter.getType()), - methodParameter.getHasDefault(), - methodParameter.getModifier().ordinal() - ) - def hashParameterList(parameterList: ParameterList): Int = Objects.hash( - Objects.hash(parameterList.getParametersList().asScala.map(hashMethodParameter).toSeq: _*), - parameterList.getIsImplicit() - ) - def hashAnnotation(annotation: Annotation): Int = Objects.hash( - hashType(annotation.getBase()), - Objects.hash(annotation.getArgumentsList().asScala.map(hashAnnotationArgument).toSeq: _*) - ) - def hashClassDefinition(classDefinition: ClassDefinition): Int = { - val extraHash = if (classDefinition.hasClassLikeDef()) { - Objects.hash( - 1, - Objects.hash( - classDefinition.getClassLikeDef().getTypeParametersList().asScala.map(hashTypeParameter).toSeq: _* - ), - classDefinition.getClassLikeDef().getDefinitionType().ordinal() - ) - } else if (classDefinition.hasDefDef()) { - Objects.hash( - 2, - Objects.hash(classDefinition.getDefDef().getTypeParametersList().asScala.map(hashTypeParameter).toSeq: _*), - Objects.hash(classDefinition.getDefDef().getValueParametersList().asScala.map(hashParameterList).toSeq: _*), - hashType(classDefinition.getDefDef().getReturnType()) - ) - } else if (classDefinition.hasValDef()) { - Objects.hash( - 3, - hashType(classDefinition.getValDef().getType()) - ) - } else if (classDefinition.hasVarDef()) { - Objects.hash( - 4, - hashType(classDefinition.getVarDef().getType()) - ) - } else if (classDefinition.hasTypeAlias()) { - Objects.hash( - 5, - Objects.hash(classDefinition.getTypeAlias().getTypeParametersList().asScala.map(hashTypeParameter).toSeq: _*), - hashType(classDefinition.getTypeAlias().getType()) - ) - } else if (classDefinition.hasTypeDeclaration()) { - Objects.hash( - 6, - Objects.hash( - classDefinition.getTypeDeclaration().getTypeParametersList().asScala.map(hashTypeParameter).toSeq: _* - ), - hashType(classDefinition.getTypeDeclaration().getLowerBound()), - hashType(classDefinition.getTypeDeclaration().getUpperBound()) - ) - } else { - throw new Error("Unrecognized extra type") - } - - Objects.hash( - classDefinition.getName(), - hashAccess(classDefinition.getAccess()), - classDefinition.getModifiers().getFlags(), - Objects.hash(classDefinition.getAnnotationsList().asScala.map(hashAnnotation).toSeq: _*), - extraHash - ) - } - def hashTypeParameter(typeParameter: TypeParameter): Int = Objects.hash( - typeParameter.getId(), - Objects.hash(typeParameter.getAnnotationsList().asScala.map(hashAnnotation).toSeq: _*), - Objects.hash(typeParameter.getTypeParametersList().asScala.map(hashTypeParameter).toSeq: _*), - typeParameter.getVariance().ordinal(), - hashType(typeParameter.getLowerBound()), - hashType(typeParameter.getUpperBound()) - ) - - def sortTypeParameters(typeParameters: Seq[TypeParameter]): Seq[TypeParameter] = { - // TODO: Ensure that we're internally sorting the type parameters here - typeParameters.map(sortTypeParameter).sortWith(hashTypeParameter(_) > hashTypeParameter(_)) - } - def sortType(t: Type): Type = t // TODO: Actually sort internals here - def sortClassDefinition(classDefinition: ClassDefinition): ClassDefinition = - classDefinition // TODO: Actually sort internals here - - def sortAnnotation(annotation: Annotation): Annotation = { - val sortedArguments = - annotation.getArgumentsList.asScala.sortWith(hashAnnotationArgument(_) > hashAnnotationArgument(_)).asJava - Annotation - .newBuilder(annotation) - .clearArguments() - .addAllArguments(sortedArguments) - .build() - } - - def sortTypeParameter(typeParameter: TypeParameter): TypeParameter = { - val sortedAnnotations = - typeParameter.getAnnotationsList.asScala - .map(sortAnnotation) - .sortWith(hashAnnotation(_) > hashAnnotation(_)) - .asJava - val sortedTypeParameters = sortTypeParameters(typeParameter.getTypeParametersList.asScala.toSeq).asJava - // TODO: Sort lower/upper bound field on this - - TypeParameter - .newBuilder(typeParameter) - .clearAnnotations() - .addAllAnnotations(sortedAnnotations) - .clearTypeParameters() - .addAllTypeParameters(sortedTypeParameters) - .build() - } - - def sortStructure(structure: Structure): Structure = { - val sortedParents = structure.getParentsList.asScala.map(sortType).sortWith(hashType(_) < hashType(_)).asJava - val sortedDeclared = structure.getDeclaredList.asScala - .map(sortClassDefinition) - .sortWith(hashClassDefinition(_) < hashClassDefinition(_)) - .asJava - val sortedInherited = structure.getInheritedList.asScala - .map(sortClassDefinition) - .sortWith(hashClassDefinition(_) < hashClassDefinition(_)) - .asJava - - Structure - .newBuilder(structure) - .clearParents() - .addAllParents(sortedParents) - .clearDeclared() - .addAllDeclared(sortedDeclared) - .clearInherited() - .addAllInherited(sortedInherited) - .build() - } - - def sortClassLike(classLike: ClassLike): ClassLike = { - val sortedAnnotations = - classLike.getAnnotationsList.asScala.map(sortAnnotation).sortWith(hashAnnotation(_) > hashAnnotation(_)).asJava - val sortedStructure = sortStructure(classLike.getStructure) - val sortedSavedAnnotations = classLike.getSavedAnnotationsList.asScala.sorted.asJava - val sortedChildrenOfSealedClass = - classLike.getChildrenOfSealedClassList.asScala.map(sortType).sortWith(hashType(_) < hashType(_)).asJava - val sortedTypeParameters = sortTypeParameters(classLike.getTypeParametersList.asScala.toSeq).asJava - ClassLike - .newBuilder(classLike) - .clearAnnotations() - .addAllAnnotations(sortedAnnotations) - .clearStructure() - .setStructure(sortedStructure) - .clearSavedAnnotations() - .addAllSavedAnnotations(sortedSavedAnnotations) - .clearChildrenOfSealedClass() - .addAllChildrenOfSealedClass(sortedChildrenOfSealedClass) - .clearTypeParameters() - .addAllTypeParameters(sortedTypeParameters) - .build() - } - - def sortCompanions(companions: Companions): Companions = { - val sortedClassApi = sortClassLike(companions.getClassApi) - val sortedObjectApi = sortClassLike(companions.getObjectApi) - - Companions - .newBuilder(companions) - .clearClassApi() - .setClassApi(sortedClassApi) - .clearObjectApi() - .setObjectApi(sortedObjectApi) - .build() - } - - def sortAnalyzedClassMap(analyzedClassMap: Map[String, AnalyzedClass]): TreeMap[String, AnalyzedClass] = { - TreeMap[String, AnalyzedClass]() ++ analyzedClassMap.mapValues { analyzedClass => - val sortedApi = sortCompanions(analyzedClass.getApi) - val sortedNameHashes = analyzedClass.getNameHashesList.asScala.sortWith(hashNameHash(_) > hashNameHash(_)).asJava - - AnalyzedClass - .newBuilder(analyzedClass) - .clearApi() - .setApi(sortedApi) - .clearNameHashes() - .addAllNameHashes(sortedNameHashes) - .build() - } - } - - def sortApis(apis: Schema.APIs): Schema.APIs = { - val sortedInternal = sortAnalyzedClassMap(apis.getInternalMap.asScala.toMap).asJava - val sortedExternal = sortAnalyzedClassMap(apis.getExternalMap.asScala.toMap).asJava - - Schema.APIs - .newBuilder(apis) - .clearInternal() - .putAllInternal(sortedInternal) - .clearExternal() - .putAllExternal(sortedExternal) - .build() - } - - def apis(): Store[APIs] = { - new Store[APIs]( - stream => reader.fromApis(shouldStoreApis = true)(format.read(Schema.APIs.getDefaultInstance, stream)), - (stream, value) => - format.write( - updateApisWithDefaultCompilationTimestamp(sortApis(writer.toApis(value, shouldStoreApis = true))), - stream - ) - ) - } - - def updateApisWithDefaultCompilationTimestamp(apis: Schema.APIs): Schema.APIs = { - val internal = apis.getInternalMap.asScala.iterator - .map { case (s: String, analyzedClass: AnalyzedClass) => - s -> updateAnalyzedClassWithDefaultCompilationTimestamp(analyzedClass) - } - .toMap - .asJava - val external = apis.getExternalMap.asScala.iterator - .map { case (s: String, analyzedClass: AnalyzedClass) => - (s, updateAnalyzedClassWithDefaultCompilationTimestamp(analyzedClass)) - } - .toMap - .asJava - - Schema.APIs - .newBuilder(apis) - .clearInternal() - .putAllInternal(internal) - .clearExternal() - .putAllExternal(external) - .build() - } - - def updateAnalyzedClassWithDefaultCompilationTimestamp(analyzedClass: AnalyzedClass): AnalyzedClass = { - Schema.AnalyzedClass - .newBuilder(analyzedClass) - .setCompilationTimestamp(JarHelper.DEFAULT_TIMESTAMP) - .build() - } - - def sortMiniSetup(miniSetup: Schema.MiniSetup): Schema.MiniSetup = { - val sortedMiniOptions = sortMiniOptions(miniSetup.getMiniOptions) - val sortedExtra = miniSetup.getExtraList.asScala.sortBy(_.getFirst).asJava - - Schema.MiniSetup - .newBuilder(miniSetup) - .clearMiniOptions() - .setMiniOptions(sortedMiniOptions) - .clearExtra() - .addAllExtra(sortedExtra) - .build() - } - - def sortMiniOptions(miniOptions: Schema.MiniOptions): Schema.MiniOptions = { - val sortedClasspathHash = miniOptions.getClasspathHashList.asScala.sortBy(_.getPath).asJava - val sortedScalacOptions = miniOptions.getScalacOptionsList.asScala.sorted.asJava - val sortedJavacOptions = miniOptions.getJavacOptionsList.asScala.sorted.asJava - - Schema.MiniOptions - .newBuilder(miniOptions) - .clearClasspathHash() - .addAllClasspathHash(sortedClasspathHash) - .clearScalacOptions() - .addAllScalacOptions(sortedScalacOptions) - .clearJavacOptions() - .addAllJavacOptions(sortedJavacOptions) - .build() - } - - def miniSetup(): Store[MiniSetup] = { - new Store[MiniSetup]( - stream => reader.fromMiniSetup(format.read(Schema.MiniSetup.getDefaultInstance, stream)), - (stream, value) => - format.write( - sortMiniSetup(writer.toMiniSetup(value)), - stream - ) - ) - } - - object UsedNameOrdering extends Ordering[UsedName] { - def compare(x: UsedName, y: UsedName): Int = { - (x.getName + x.getScopesList.asScala.toString) compare (y.getName + y.getScopesList.asScala.toString) - } - } - - def sortValuesMap(m: Map[String, Values]): TreeMap[String, Values] = { - TreeMap[String, Values]() ++ m.mapValues { value => - val sortedValues = value.getValuesList.asScala.sorted.asJava - - Values - .newBuilder(value) - .clearValues() - .addAllValues(sortedValues) - .build() - } - } - - def sortUsedNamesMap(usedNamesMap: Map[String, UsedNames]): TreeMap[String, UsedNames] = { - TreeMap[String, UsedNames]() ++ usedNamesMap.mapValues { currentUsedNames => - val sortedUsedNames = currentUsedNames.getUsedNamesList.asScala.sorted(UsedNameOrdering).asJava - - UsedNames - .newBuilder(currentUsedNames) - .clearUsedNames() - .addAllUsedNames(sortedUsedNames) - .build() - } - } - - def sortClassDependencies(classDependencies: ClassDependencies): ClassDependencies = { - val sortedInternal = sortValuesMap(classDependencies.getInternalMap.asScala.toMap).asJava - val sortedExternal = sortValuesMap(classDependencies.getExternalMap.asScala.toMap).asJava - - ClassDependencies - .newBuilder(classDependencies) - .clearInternal() - .putAllInternal(sortedInternal) - .clearExternal() - .putAllExternal(sortedExternal) - .build() - } - - def sortRelations(relations: Schema.Relations): Schema.Relations = { - val sortedSrcProd = sortValuesMap(relations.getSrcProdMap.asScala.toMap).asJava - val sortedLibraryDep = sortValuesMap(relations.getLibraryDepMap.asScala.toMap).asJava - val sortedLibraryClassName = sortValuesMap(relations.getLibraryClassNameMap.asScala.toMap).asJava - val sortedClasses = sortValuesMap(relations.getClassesMap.asScala.toMap).asJava - val sortedProductClassName = sortValuesMap(relations.getProductClassNameMap.asScala.toMap).asJava - val sortedNames = sortUsedNamesMap(relations.getNamesMap.asScala.toMap).asJava - val sortedMemberRef = sortClassDependencies(relations.getMemberRef) - val sortedLocalInheritance = sortClassDependencies(relations.getLocalInheritance) - val sortedInheritance = sortClassDependencies(relations.getInheritance) - - Schema.Relations - .newBuilder(relations) - .clearSrcProd() - .putAllSrcProd(sortedSrcProd) - .clearLibraryDep() - .putAllLibraryDep(sortedLibraryDep) - .clearLibraryClassName() - .putAllLibraryClassName(sortedLibraryClassName) - .clearClasses() - .putAllClasses(sortedClasses) - .clearProductClassName() - .putAllProductClassName(sortedProductClassName) - .clearNames() - .putAllNames(sortedNames) - .clearMemberRef() - .setMemberRef(sortedMemberRef) - .clearLocalInheritance() - .setLocalInheritance(sortedLocalInheritance) - .clearInheritance() - .setInheritance(sortedInheritance) - .build() - } - - def relations = new Store[Relations]( - stream => { - val relations = format.read( - Schema.Relations.getDefaultInstance, - stream - ) - reader.fromRelations( - relationsMapper(relations, mappers.getReadMapper) - ) - }, - (stream, value) => { - val relations = writer.toRelations(value) - format.write( - sortRelations(relationsMapper(relations, mappers.getWriteMapper)), - stream - ) - } - ) - - // Note: this is now closed, we may be able to get rid of this code - // Workaround for https://github.com/sbt/zinc/pull/532 - private[this] def relationsMapper( - relations: Schema.Relations, - mapper: GenericMapper - ): Schema.Relations = { - def convertToVirtualRefAndBack(path: String, mapFunction: VirtualFileRef => VirtualFileRef): String = { - PlainVirtualFileConverter.converter - .toPath( - mapFunction( - PlainVirtualFile(Paths.get(path)) - ) - ) - .toString - } - - val updatedSourceProd = relations.getSrcProdMap.asScala.iterator - .map { case (source: String, products: Values) => - val updatedValues = - products.getValuesList.asScala.map(path => convertToVirtualRefAndBack(path, mapper.mapProductFile)).asJava - convertToVirtualRefAndBack(source, mapper.mapSourceFile) -> - Values.newBuilder(products).clearValues().addAllValues(updatedValues).build() - } - .toMap - .asJava - // The original code mutated this twice and I'm not totally sure why. Not sure if it is a bug or if the - // scalapb version the mutations were applied sequentially. I've tried to write the code to apply the - // mutations sequentially, assuming that is how that code works. - val updatedLibraryDep = relations.getLibraryDepMap.asScala.iterator - .map { case (source: String, binaries: Values) => - val updatedValues = - binaries.getValuesList.asScala.map(path => convertToVirtualRefAndBack(path, mapper.mapBinaryFile)).asJava - convertToVirtualRefAndBack(source, mapper.mapSourceFile) -> - Values.newBuilder(binaries).clearValues().addAllValues(updatedValues).build() - } - .map { case (binary: String, values: Values) => - convertToVirtualRefAndBack(binary, mapper.mapBinaryFile) -> values - } - .toMap - .asJava - val updatedClasses = relations.getClassesMap.asScala.iterator - .map { case (source: String, values: Values) => - convertToVirtualRefAndBack(source, mapper.mapSourceFile) -> values - } - .toMap - .asJava - - Schema.Relations - .newBuilder(relations) - .clearSrcProd() - .putAllSrcProd(updatedSourceProd) - .clearLibraryDep() - .putAllLibraryDep(updatedLibraryDep) - .clearClasses() - .putAllClasses(updatedClasses) - .build() - } - - def sourceInfos = new Store[SourceInfos]( - stream => reader.fromSourceInfos(format.read(Schema.SourceInfos.getDefaultInstance, stream)), - (stream, value) => format.write(writer.toSourceInfos(value), stream) - ) - - def stamps(): Store[Stamps] = { - new Store[Stamps]( - stream => reader.fromStamps(format.read(Schema.Stamps.getDefaultInstance, stream)), - (stream, value) => - format.write( - sortStamps(writer.toStamps(value)), - stream - ) - ) - } - - def sortStamps(stamps: Schema.Stamps): Schema.Stamps = { - val sortedProductStamps = sortStampTypeMap(stamps.getProductStampsMap) - val sortedBinaryStamps = sortStampTypeMap(stamps.getBinaryStampsMap) - val sortedSourceStamps = sortStampTypeMap(stamps.getSourceStampsMap) - - Schema.Stamps - .newBuilder(stamps) - .clearProductStamps() - .putAllProductStamps(sortedProductStamps) - .clearBinaryStamps() - .putAllBinaryStamps(sortedBinaryStamps) - .clearSourceStamps() - .putAllSourceStamps(sortedSourceStamps) - .build() - } - - def sortStampTypeMap( - stampTypeMap: util.Map[String, Schema.Stamps.StampType] - ): java.util.TreeMap[String, Schema.Stamps.StampType] = { - new java.util.TreeMap(stampTypeMap) - } -} - -object AnxMapper { - val rootPlaceholder = Paths.get("_ROOT_") - def mappers(root: Path) = new ReadWriteMappers(new AnxReadMapper(root), new AnxWriteMapper(root)) - private[this] val stampCache = new ConcurrentHashMap[Path, (FileTime, Stamp)] - def hashStamp(file: Path) = { - val newTime = Files.getLastModifiedTime(file) - stampCache.get(file) match { - case (time, stamp) if newTime.compareTo(time) <= 0 => stamp - case _ => - val stamp = Stamper.forFarmHashP(file) - stampCache.put(file, (newTime, stamp)) - stamp - } - } -} - -final class AnxWriteMapper(root: Path) extends WriteMapper { - private[this] val rootAbs = root.toAbsolutePath - - private[this] def mapFile(path: Path): Path = { - if (path.startsWith(rootAbs)) { - AnxMapper.rootPlaceholder.resolve(rootAbs.relativize(path)) - } else { - path - } - } - - private[this] def mapFile(virtualFileRef: VirtualFileRef): Path = { - mapFile(PlainVirtualFileConverter.converter.toPath(virtualFileRef)) - } - - override def mapBinaryFile(binaryFile: VirtualFileRef) = PlainVirtualFile(mapFile(binaryFile)) - override def mapBinaryStamp(file: VirtualFileRef, binaryStamp: Stamp) = { - AnxMapper.hashStamp(PlainVirtualFileConverter.converter.toPath(file)) - } - override def mapClasspathEntry(classpathEntry: Path) = mapFile(classpathEntry) - override def mapJavacOption(javacOption: String) = javacOption - override def mapMiniSetup(miniSetup: MiniSetup) = miniSetup - override def mapProductFile(productFile: VirtualFileRef) = PlainVirtualFile(mapFile(productFile)) - override def mapProductStamp(file: VirtualFileRef, productStamp: Stamp) = { - StampImpl.fromString(s"lastModified(${JarHelper.DEFAULT_TIMESTAMP})") - } - override def mapScalacOption(scalacOption: String) = scalacOption - override def mapSourceDir(sourceDir: Path) = mapFile(sourceDir) - override def mapSourceFile(sourceFile: VirtualFileRef) = PlainVirtualFile(mapFile(sourceFile)) - override def mapSourceStamp(file: VirtualFileRef, sourceStamp: Stamp) = sourceStamp - override def mapOutputDir(outputDir: Path) = mapFile(outputDir) -} - -final class AnxReadMapper(root: Path) extends ReadMapper { - private[this] val rootAbs = root.toAbsolutePath - - private[this] def mapFile(virtualFileRef: VirtualFileRef): Path = { - mapFile(PlainVirtualFileConverter.converter.toPath(virtualFileRef)) - } - - private[this] def mapFile(path: Path): Path = { - if (path.startsWith(AnxMapper.rootPlaceholder)) { - rootAbs.resolve(AnxMapper.rootPlaceholder.relativize(path)) - } else { - path - } - } - - override def mapBinaryFile(file: VirtualFileRef) = PlainVirtualFile(mapFile(file)) - override def mapBinaryStamp(file: VirtualFileRef, stamp: Stamp) = { - val path = PlainVirtualFileConverter.converter.toPath(file) - if (AnxMapper.hashStamp(path) == stamp) { - Stamper.forLastModifiedP(path) - } else { - stamp - } - } - override def mapClasspathEntry(classpathEntry: Path) = mapFile(classpathEntry) - override def mapJavacOption(javacOption: String) = javacOption - override def mapOutputDir(dir: Path) = mapFile(dir) - override def mapMiniSetup(miniSetup: MiniSetup) = miniSetup - override def mapProductFile(file: VirtualFileRef) = PlainVirtualFile(mapFile(file)) - override def mapProductStamp(file: VirtualFileRef, productStamp: Stamp) = { - Stamper.forLastModifiedP(PlainVirtualFileConverter.converter.toPath(file)) - } - override def mapScalacOption(scalacOption: String) = scalacOption - override def mapSourceDir(sourceDir: Path) = mapFile(sourceDir) - override def mapSourceFile(sourceFile: VirtualFileRef) = PlainVirtualFile(mapFile(sourceFile)) - override def mapSourceStamp(file: VirtualFileRef, sourceStamp: Stamp) = sourceStamp -} diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/Deps.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/Deps.scala index ba5cc9a8d..89a77b2ee 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/Deps.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/Deps.scala @@ -19,7 +19,7 @@ case class LibraryDep(file: Path) extends Dep { case class DepAnalysisFiles(apis: Path, relations: Path) -case class ExternalDep(file: Path, classpath: Path, analysis: DepAnalysisFiles) extends Dep +case class ExternalDep(file: Path, classpath: Path, analysisStore: Path) extends Dep object Dep { @@ -28,7 +28,7 @@ object Dep { new BigInteger(1, digest.digest(Files.readAllBytes(file))).toString(16) } - def create(depsCache: Option[Path], classpath: Seq[Path], analyses: Map[Path, (Path, DepAnalysisFiles)]): Seq[Dep] = { + def create(depsCache: Option[Path], classpath: Seq[Path], analyses: Map[Path, (Path, Path)]): Seq[Dep] = { val roots = scala.collection.mutable.Set[Path]() classpath.flatMap { original => analyses.get(original).fold[Option[Dep]](Some(LibraryDep(original))) { analysis => diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincPersistence.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincPersistence.scala index 10b41f1f9..1e370623f 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincPersistence.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincPersistence.scala @@ -11,49 +11,34 @@ trait ZincPersistence { def save(): Unit } -class FilePersistence(cacheDir: Path, analysisFiles: AnalysisFiles, jar: Path) extends ZincPersistence { - private[this] val cacheAnalysisFiles = - AnalysisFiles( - apis = cacheDir.resolve("apis.gz"), - miniSetup = cacheDir.resolve("setup.gz"), - relations = cacheDir.resolve("relations.gz"), - sourceInfos = cacheDir.resolve("infos.gz"), - stamps = cacheDir.resolve("stamps.gz") - ) - private[this] val cacheJar = cacheDir.resolve("classes.jar") +class FilePersistence(cacheDir: Path, analysisStorePath: Path, jar: Path) extends ZincPersistence { + private[this] val cacheAnalysisStorePath: Path = cacheDir.resolve("analysis_store.gz") + private[this] val cacheJar: Path = cacheDir.resolve("classes.jar") /** - * Existance indicates that files are incomplete. + * Existence indicates that files are incomplete. */ - private[this] val tmpMarker = cacheDir.resolve(".tmp") + private[this] val tmpMarker: Path = cacheDir.resolve(".tmp") - def load() = { + def load(): Unit = { if (Files.exists(cacheDir) && Files.notExists(tmpMarker)) { - Files.copy(cacheAnalysisFiles.apis, analysisFiles.apis) - Files.copy(cacheAnalysisFiles.miniSetup, analysisFiles.miniSetup) - Files.copy(cacheAnalysisFiles.relations, analysisFiles.relations) - Files.copy(cacheAnalysisFiles.sourceInfos, analysisFiles.sourceInfos) - Files.copy(cacheAnalysisFiles.stamps, analysisFiles.stamps) + Files.copy(cacheAnalysisStorePath, analysisStorePath) Files.copy(cacheJar, jar) } } - def save() = { + def save(): Unit = { if (Files.exists(cacheDir)) { FileUtil.delete(cacheDir) } Files.createDirectories(cacheDir) Files.createFile(tmpMarker) - Files.copy(analysisFiles.apis, cacheAnalysisFiles.apis) - Files.copy(analysisFiles.miniSetup, cacheAnalysisFiles.miniSetup) - Files.copy(analysisFiles.relations, cacheAnalysisFiles.relations) - Files.copy(analysisFiles.sourceInfos, cacheAnalysisFiles.sourceInfos) - Files.copy(analysisFiles.stamps, cacheAnalysisFiles.stamps) + Files.copy(analysisStorePath, cacheAnalysisStorePath) Files.copy(jar, cacheJar) Files.delete(tmpMarker) } } object NullPersistence extends ZincPersistence { - def load() = () - def save() = () + def load(): Unit = () + def save(): Unit = () } diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala index 391aa6c9c..8bb380099 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala @@ -1,6 +1,7 @@ package higherkindness.rules_scala package workers.zinc.compile +import workers.common.AnalysisUtil import workers.common.AnnexLogger import workers.common.AnnexScalaInstance import workers.common.CommonArguments @@ -11,21 +12,20 @@ import common.worker.WorkerMain import com.google.devtools.build.buildjar.jarhelper.JarCreator import java.io.{File, PrintStream, PrintWriter} import java.net.URLClassLoader -import java.nio.file.{Files, NoSuchFileException, Path, Paths} -import java.text.SimpleDateFormat +import java.nio.file.{Files, Path, Paths} import java.util -import java.util.{Date, List => JList, Optional, Properties} +import java.util.{Optional, List => JList} import net.sourceforge.argparse4j.ArgumentParsers import net.sourceforge.argparse4j.impl.{Arguments => Arg} import net.sourceforge.argparse4j.inf.Namespace import sbt.internal.inc.classpath.ClassLoaderCache import sbt.internal.inc.caching.ClasspathCache import sbt.internal.inc.{Analysis, CompileFailed, IncrementalCompilerImpl, Locate, PlainVirtualFile, PlainVirtualFileConverter, ZincUtil} -import scala.collection.JavaConverters._ +import scala.jdk.CollectionConverters._ import scala.util.Try import scala.util.control.NonFatal -import xsbti.{Logger, T2, VirtualFile, VirtualFileRef} -import xsbti.compile.{AnalysisContents, Changes, ClasspathOptionsUtil, CompileAnalysis, CompileOptions, CompileProgress, CompilerCache, DefaultExternalHooks, DefinesClass, ExternalHooks, FileHash, IncOptions, Inputs, MiniSetup, PerClasspathEntryLookup, PreviousResult, Setup, TastyFiles} +import xsbti.{T2, VirtualFile, VirtualFileRef} +import xsbti.compile.{AnalysisContents, AnalysisStore, Changes, ClasspathOptionsUtil, CompileAnalysis, CompileOptions, CompileProgress, CompilerCache, DefaultExternalHooks, DefinesClass, ExternalHooks, FileHash, IncOptions, Inputs, MiniSetup, PerClasspathEntryLookup, PreviousResult, Setup, TastyFiles} // The list in this docstring gets clobbered by the formatter, unfortunately. //format: off @@ -111,46 +111,39 @@ object ZincRunner extends WorkerMain[Namespace] { val outputJar = namespace.get[File]("output_jar").toPath val deps = { - val analyses = Option( - namespace - .getList[JList[String]]("analysis") - ).filter(_ => usePersistence) - .fold[Seq[JList[String]]](Nil)(_.asScala.toSeq) - .flatMap { value => - val prefixedLabel +: apis +: relations +: jars = value.asScala.toList - val label = prefixedLabel.stripPrefix("_") - jars - .map(jar => - Paths.get(jar) -> ( - classesDir - .resolve(labelToPath(label)), - DepAnalysisFiles(Paths.get(apis), Paths.get(relations)) - ) - ) + val analyses: Map[Path, (Path, Path)] = { + if (usePersistence) { + Option( + namespace.getList[JList[String]]("analysis") + ).fold[Seq[JList[String]]](Nil)(_.asScala.toSeq) + .flatMap { value => + val prefixedLabel +: analysis_store +: jars = value.asScala.toList + val label = prefixedLabel.stripPrefix("_") + jars + .map(jar => + Paths.get(jar) -> ( + classesDir + .resolve(labelToPath(label)), + Paths.get(analysis_store), + ) + ) + } + .toMap + } else { + Map.empty[Path, (Path, Path)] } - .toMap + } val originalClasspath = namespace.getList[File]("classpath").asScala.map(_.toPath) Dep.create(depsCache, originalClasspath.toSeq, analyses) } - // load persisted files - val analysisFiles = AnalysisFiles( - apis = namespace.get[File]("output_apis").toPath, - miniSetup = namespace.get[File]("output_setup").toPath, - relations = namespace.get[File]("output_relations").toPath, - sourceInfos = namespace.get[File]("output_infos").toPath, - stamps = namespace.get[File]("output_stamps").toPath - ) - val analysesFormat = { - val debug = namespace.getBoolean("debug") - val format = if (debug) AnxAnalysisStore.TextFormat else AnxAnalysisStore.BinaryFormat - new AnxAnalyses(format) - } - val analysisStore = new AnxAnalysisStore(analysisFiles, analysesFormat) + val debug = namespace.getBoolean("debug") + val analysisStoreFile = namespace.get[File]("output_analysis_store") + val analysisStore: AnalysisStore = AnalysisUtil.getAnalysisStore(analysisStoreFile, debug) val persistence = persistenceDir.fold[ZincPersistence](NullPersistence) { rootDir => val path = namespace.getString("label").replaceAll("^/+", "").replaceAll(raw"[^\w/]", "_") - new FilePersistence(rootDir.resolve(path), analysisFiles, outputJar) + new FilePersistence(rootDir.resolve(path), analysisStoreFile.toPath, outputJar) } val classesOutputDir = classesDir.resolve(labelToPath(namespace.getString("label"))) @@ -167,11 +160,7 @@ object ZincRunner extends WorkerMain[Namespace] { } catch { case NonFatal(e) => logger.warn(() => s"Failed to load cached analysis: $e") - Files.delete(analysisFiles.apis) - Files.delete(analysisFiles.miniSetup) - Files.delete(analysisFiles.relations) - Files.delete(analysisFiles.sourceInfos) - Files.delete(analysisFiles.stamps) + Files.delete(analysisStoreFile.toPath) } Files.createDirectories(classesOutputDir) @@ -213,18 +202,19 @@ object ZincRunner extends WorkerMain[Namespace] { } val lookup = { - val depMap = deps.collect { case ExternalDep(_, classpath, files) => - classpath -> files + val depMap = deps.collect { case ExternalDep(_, classpath, analysisStorePath) => + classpath -> analysisStorePath }.toMap new AnxPerClasspathEntryLookup(file => { depMap .get(file) - .map(files => + .map { analysisStorePath => + val analysis = AnalysisUtil.getAnalysis(AnalysisUtil.getAnalysisStore(analysisStorePath.toFile, debug)) Analysis.Empty.copy( - apis = analysesFormat.apis().read(files.apis), - relations = analysesFormat.relations.read(files.relations) + apis = analysis.apis, + relations = analysis.relations, ) - ) + } }) } @@ -278,14 +268,14 @@ object ZincRunner extends WorkerMain[Namespace] { analysisStore.set(AnalysisContents.create(compileResult.analysis, compileResult.setup)) // create used deps - val analysis = compileResult.analysis.asInstanceOf[Analysis] + val resultAnalysis = compileResult.analysis.asInstanceOf[Analysis] val usedDeps = - deps.filter(Dep.used(deps, analysis.relations, lookup)).filter(_.file != scalaInstance.libraryJar.toPath) + deps.filter(Dep.used(deps, resultAnalysis.relations, lookup)).filter(_.file != scalaInstance.libraryJar.toPath) Files.write(namespace.get[File]("output_used").toPath, usedDeps.map(_.file.toString).sorted.asJava) // create jar val mains = - analysis.infos.allInfos.values.toList + resultAnalysis.infos.allInfos.values.toList .flatMap(_.getMainClasses.toList) .sorted diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/test/BUILD b/src/main/scala/higherkindness/rules_scala/workers/zinc/test/BUILD index 1a23b479c..957226af0 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/test/BUILD +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/test/BUILD @@ -9,13 +9,12 @@ scala_library( deps = [ "//src/main/scala/higherkindness/rules_scala/common/args", "//src/main/scala/higherkindness/rules_scala/common/sbt-testing:common", + "//src/main/scala/higherkindness/rules_scala/workers/common", "@annex//:net_sourceforge_argparse4j_argparse4j", "@annex//:org_scala_sbt_compiler_interface", "@annex//:org_scala_sbt_test_interface", "@annex//:org_scala_sbt_zinc_apiinfo_2_13", "@annex//:org_scala_sbt_zinc_core_2_13", - "@annex//:org_scala_sbt_zinc_persist_2_13", - "@annex//:org_scala_sbt_zinc_persist_core_assembly", ], ) diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestRunner.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestRunner.scala index fce5fc619..60e475994 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestRunner.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestRunner.scala @@ -6,8 +6,7 @@ import common.sbt_testing.AnnexTestingLogger import common.sbt_testing.ClassLoaders import common.sbt_testing.TestDefinition import common.sbt_testing.TestFrameworkLoader -import common.sbt_testing.TestRequest - +import workers.common.AnalysisUtil import java.io.File import java.net.URLClassLoader import java.nio.file.attribute.FileTime @@ -15,15 +14,10 @@ import java.nio.file.{FileAlreadyExistsException, Files, Paths} import java.time.Instant import java.util.Collections import java.util.regex.Pattern -import java.util.zip.GZIPInputStream import net.sourceforge.argparse4j.ArgumentParsers import net.sourceforge.argparse4j.impl.Arguments -import org.scalatools.testing.Framework -import sbt.internal.inc.binary.converters.ProtobufReaders -import sbt.internal.inc.Schema import scala.jdk.CollectionConverters._ import scala.util.control.NonFatal -import xsbti.compile.analysis.ReadMapper object TestRunner { @@ -57,8 +51,8 @@ object TestRunner { private[this] val testArgParser = { val parser = ArgumentParsers.newFor("test").addHelp(true).build() parser - .addArgument("--apis") - .help("APIs file") + .addArgument("--analysis_store") + .help("Analysis Store file") .metavar("class") .`type`(Arguments.fileType.verifyCanRead().verifyExists()) .required(true) @@ -129,16 +123,12 @@ object TestRunner { val sharedClassLoader = ClassLoaders.sbtTestClassLoader(classpath.filter(sharedClasspath.toSet).map(_.toUri.toURL).toSeq) - val apisFile = runPath.resolve(testNamespace.get[File]("apis").toPath) - val apisStream = Files.newInputStream(apisFile) + val analysisStoreFile = runPath.resolve(testNamespace.get[File]("analysis_store").toPath) val apis = try { - val raw = - try Schema.APIs.parseFrom(new GZIPInputStream(apisStream)) - finally apisStream.close() - new ProtobufReaders(ReadMapper.getEmptyMapper, Schema.Version.V1_1).fromApis(shouldStoreApis = true)(raw) + AnalysisUtil.getAnalysis(AnalysisUtil.getAnalysisStore(analysisStoreFile.toFile, false)).apis } catch { - case NonFatal(e) => throw new Exception(s"Failed to load APIs from $apisFile", e) + case NonFatal(e) => throw new Exception(s"Failed to load APIs from analysis store: $analysisStoreFile", e) } val loader = new TestFrameworkLoader(classLoader, logger) diff --git a/tests/scala/scala3/BUILD b/tests/scala/scala3/BUILD index dcb5a80fb..a37401655 100644 --- a/tests/scala/scala3/BUILD +++ b/tests/scala/scala3/BUILD @@ -1,4 +1,4 @@ -load("@rules_scala_annex//rules:scala.bzl", "scala_library") +load("@rules_scala_annex//rules:scala.bzl", "scala_library", "scala_binary") scala_library( name = "example", From 1899665e00ebb27ec89612f6101eb21b9bd463f4 Mon Sep 17 00:00:00 2001 From: James Judd Date: Tue, 2 Jul 2024 11:30:09 -0600 Subject: [PATCH 10/21] Update WORKSPACE dependencies --- WORKSPACE | 19 +++++++++++-------- .../workers/zinc/compile/ZincRunner.scala | 11 ++++++++++- tests/WORKSPACE | 14 ++++++++++---- 3 files changed, 31 insertions(+), 13 deletions(-) diff --git a/WORKSPACE b/WORKSPACE index 78f30c53c..135caaeae 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -4,9 +4,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") # skylib -bazel_skylib_tag = "1.0.3" +bazel_skylib_tag = "1.7.1" -bazel_skylib_sha256 = "1c531376ac7e5a180e0237938a2536de0c54d93f5c278634818e0efc952dd56c" +bazel_skylib_sha256 = "bc283cdfcd526a52c3201279cda4bc298652efa898b10b4db0837dc51652756f" http_archive( name = "bazel_skylib", @@ -17,17 +17,21 @@ http_archive( ], ) +load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace") + +bazel_skylib_workspace() + # com_github_bazelbuild_buildtools -buildtools_tag = "0.29.0" +buildtools_tag = "7.1.2" -buildtools_sha256 = "05eb52437fb250c7591dd6cbcfd1f9b5b61d85d6b20f04b041e0830dd1ab39b3" +buildtools_sha256 = "4c63e823e6944c950401f92155416c631a65657dd32e1021451fc015faf22ecb" http_archive( name = "com_github_bazelbuild_buildtools", sha256 = buildtools_sha256, strip_prefix = "buildtools-{}".format(buildtools_tag), - url = "https://github.com/bazelbuild/buildtools/archive/{}.zip".format(buildtools_tag), + url = "https://github.com/bazelbuild/buildtools/archive/v{}.zip".format(buildtools_tag), ) load("@com_github_bazelbuild_buildtools//buildifier:deps.bzl", "buildifier_dependencies") @@ -169,13 +173,12 @@ annex_proto_pinned_maven_install() # rules_pkg -rules_pkg_version = "0.7.0" +rules_pkg_version = "1.0.0" http_archive( name = "rules_pkg", - sha256 = "8a298e832762eda1830597d64fe7db58178aa84cd5926d76d5b744d6558941c2", + sha256 = "cad05f864a32799f6f9022891de91ac78f30e0fa07dc68abac92a628121b5b11", urls = [ - "https://mirror.bazel.build/github.com/bazelbuild/rules_pkg/releases/download/{v}/rules_pkg-{v}.tar.gz".format(v = rules_pkg_version), "https://github.com/bazelbuild/rules_pkg/releases/download/{v}/rules_pkg-{v}.tar.gz".format(v = rules_pkg_version), ], ) diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala index 8bb380099..ee45ff472 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala @@ -270,7 +270,16 @@ object ZincRunner extends WorkerMain[Namespace] { // create used deps val resultAnalysis = compileResult.analysis.asInstanceOf[Analysis] val usedDeps = - deps.filter(Dep.used(deps, resultAnalysis.relations, lookup)).filter(_.file != scalaInstance.libraryJar.toPath) + // Filter out the Scala standard library as that should just always be + // implicitly available and not something we should be book keeping. + deps.filter(Dep.used(deps, resultAnalysis.relations, lookup)).filterNot { dep => + // rules_jvm_external adds header_ or processed_ to a lot of jars + // rules_jvm_external is frequently used in bazel projects, so we + // handle when jars like that show up + val depFileName = dep.file.toFile.getName.stripPrefix("header_").stripPrefix("processed_") + + scalaInstance.libraryJars.map(_.getName).contains(depFileName) + } Files.write(namespace.get[File]("output_used").toPath, usedDeps.map(_.file.toString).sorted.asJava) // create jar diff --git a/tests/WORKSPACE b/tests/WORKSPACE index de83a1886..45d1f098d 100644 --- a/tests/WORKSPACE +++ b/tests/WORKSPACE @@ -3,9 +3,11 @@ workspace(name = "rules_scala_annex_test") load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file") load("@bazel_tools//tools/build_defs/repo:jvm.bzl", "jvm_maven_import_external") -bazel_skylib_tag = "1.0.3" +# skylib -bazel_skylib_sha256 = "1c531376ac7e5a180e0237938a2536de0c54d93f5c278634818e0efc952dd56c" +bazel_skylib_tag = "1.7.1" + +bazel_skylib_sha256 = "bc283cdfcd526a52c3201279cda4bc298652efa898b10b4db0837dc51652756f" http_archive( name = "bazel_skylib", @@ -16,6 +18,10 @@ http_archive( ], ) +load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace") + +bazel_skylib_workspace() + # protobuf protobuf_tag = "3.19.6" @@ -37,9 +43,9 @@ protobuf_deps() # rules_java http_archive( name = "rules_java", - sha256 = "80e61f508ff79a3fde4a549b8b1f6ec7f8a82c259e51240a4403e5be36f88142", + sha256 = "8afd053dd2a7b85a4f033584f30a7f1666c5492c56c76e04eec4428bdb2a86cf", urls = [ - "https://github.com/bazelbuild/rules_java/releases/download/7.6.4/rules_java-7.6.4.tar.gz", + "https://github.com/bazelbuild/rules_java/releases/download/7.6.5/rules_java-7.6.5.tar.gz", ], ) From 1ee05f857c558531220a6cfafe5d3afc3e99f906 Mon Sep 17 00:00:00 2001 From: James Judd Date: Tue, 2 Jul 2024 23:05:49 -0600 Subject: [PATCH 11/21] Support scalacopts and global_scalacopts for bootstrap Scala --- rules/private/phases/phase_bootstrap_compile.bzl | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/rules/private/phases/phase_bootstrap_compile.bzl b/rules/private/phases/phase_bootstrap_compile.bzl index 113c03467..c346f09e5 100644 --- a/rules/private/phases/phase_bootstrap_compile.bzl +++ b/rules/private/phases/phase_bootstrap_compile.bzl @@ -28,8 +28,10 @@ def phase_bootstrap_compile(ctx, g): compile_classpath = ":".join([f.path for f in g.classpaths.compile.to_list()]) srcs = " ".join([f.path for f in g.classpaths.srcs]) + scala_configuration = g.javainfo.scala_info.scala_configuration + main_class = "scala.tools.nsc.Main" - if int(g.javainfo.scala_info.scala_configuration.version[0]) >= 3: + if int(scala_configuration.version[0]) >= 3: main_class = "dotty.tools.dotc.Main" ctx.actions.run_shell( @@ -47,17 +49,21 @@ def phase_bootstrap_compile(ctx, g): | {main_class} \\ | -cp {compile_classpath} \\ | -d tmp/classes \\ + | {global_scalacopts} \\ + | {scalacopts} \\ | {srcs} | |{jar_creator} {output_jar} tmp/classes 2> /dev/null |""".format( - java = ctx.attr._jdk[java_common.JavaRuntimeInfo].java_executable_exec_path, - jar_creator = ctx.executable._jar_creator.path, compiler_classpath = compiler_classpath, compile_classpath = compile_classpath, - srcs = srcs, - output_jar = g.classpaths.jar.path, + global_scalacopts = " ".join(scala_configuration.global_scalacopts), + java = ctx.attr._jdk[java_common.JavaRuntimeInfo].java_executable_exec_path, + jar_creator = ctx.executable._jar_creator.path, main_class = main_class, + output_jar = g.classpaths.jar.path, + scalacopts = " ".join(ctx.attr.scalacopts), + srcs = srcs, ), ), execution_requirements = _resolve_execution_reqs(ctx, {}), From 71b8d55d1e49ed4fb7a41be7240f02a06c466a42 Mon Sep 17 00:00:00 2001 From: James Judd Date: Wed, 3 Jul 2024 00:53:12 -0600 Subject: [PATCH 12/21] Turn on fatal warnings for bootstrap_scala targets and clean up the warnings --- rules/scalafmt/scalafmt/ScalafmtRunner.scala | 2 +- src/main/scala/BUILD | 23 +++++++++++++------ .../rules_scala/common/args/Implicits.scala | 4 ++-- .../common/sbt-testing/JUnitXmlReporter.scala | 2 +- .../rules_scala/workers/common/FileUtil.scala | 3 +-- .../workers/common/LoggedReporter.scala | 4 +--- .../rules_scala/workers/deps/DepsRunner.scala | 4 ++-- .../instrumenter/JacocoInstrumenter.scala | 6 ++--- .../workers/zinc/compile/Deps.scala | 2 +- .../workers/zinc/compile/ZincRunner.scala | 6 +++-- .../workers/zinc/test/TestDiscovery.scala | 1 + .../zinc/test/TestFrameworkRunner.scala | 4 ++-- .../workers/zinc/test/TestRunner.scala | 2 +- 13 files changed, 35 insertions(+), 28 deletions(-) diff --git a/rules/scalafmt/scalafmt/ScalafmtRunner.scala b/rules/scalafmt/scalafmt/ScalafmtRunner.scala index 570e3fa0e..3b4ca83fb 100644 --- a/rules/scalafmt/scalafmt/ScalafmtRunner.scala +++ b/rules/scalafmt/scalafmt/ScalafmtRunner.scala @@ -3,7 +3,7 @@ package annex.scalafmt import higherkindness.rules_scala.common.worker.WorkerMain import higherkindness.rules_scala.workers.common.Color import java.io.{File, PrintStream} -import java.nio.file.{Files, Path} +import java.nio.file.Files import net.sourceforge.argparse4j.ArgumentParsers import net.sourceforge.argparse4j.impl.Arguments import org.scalafmt.Scalafmt diff --git a/src/main/scala/BUILD b/src/main/scala/BUILD index 01d1bbccb..28fae149b 100644 --- a/src/main/scala/BUILD +++ b/src/main/scala/BUILD @@ -40,10 +40,23 @@ runtime_classpath_2_13_14 = [ "@annex//:org_scala_lang_scala_library", ] +shared_global_scalacopts = [ + "-deprecation", + "-Wconf:any:error", +] + +shared_scala2_global_scalacopts = [ + "-Xlint:_,-unused", + "-Ytasty-reader", +] + +scala2_global_scalacopts = shared_global_scalacopts + shared_scala2_global_scalacopts + configure_bootstrap_scala( name = "bootstrap_2_13_14", compiler_classpath = compiler_classpath_2_13_14, runtime_classpath = runtime_classpath_2_13_14, + global_scalacopts = scala2_global_scalacopts, version = "2.13.14", visibility = ["//visibility:public"], ) @@ -52,10 +65,7 @@ configure_zinc_scala( name = "zinc_2_13_14", compiler_bridge = "@annex//:org_scala_sbt_compiler_bridge_2_13", compiler_classpath = compiler_classpath_2_13_14, - global_scalacopts = [ - "-Ytasty-reader", - "-Wconf:any:error", - ], + global_scalacopts = scala2_global_scalacopts, runtime_classpath = runtime_classpath_2_13_14, version = "2.13.14", visibility = ["//visibility:public"], @@ -91,6 +101,7 @@ configure_bootstrap_scala( name = "bootstrap_3_4_2", compiler_classpath = compiler_classpath_3_4_2, runtime_classpath = runtime_classpath_3_4_2, + global_scalacopts = shared_global_scalacopts, use_ijar = False, version = "3.4.2", visibility = ["//visibility:public"], @@ -100,9 +111,7 @@ configure_zinc_scala( name = "zinc_3_4_2", compiler_bridge = "@annex_3//:org_scala_lang_scala3_sbt_bridge_3_4_2", compiler_classpath = compiler_classpath_3_4_2, - global_scalacopts = [ - "-Wconf:any:error", - ], + global_scalacopts = shared_global_scalacopts, runtime_classpath = runtime_classpath_3_4_2, use_ijar = False, version = "3.4.2", diff --git a/src/main/scala/higherkindness/rules_scala/common/args/Implicits.scala b/src/main/scala/higherkindness/rules_scala/common/args/Implicits.scala index e923ad4fd..94927547c 100644 --- a/src/main/scala/higherkindness/rules_scala/common/args/Implicits.scala +++ b/src/main/scala/higherkindness/rules_scala/common/args/Implicits.scala @@ -7,7 +7,7 @@ import net.sourceforge.argparse4j.inf.Argument object implicits { implicit final class SetArgumentDefault(val argument: Argument) extends AnyVal { // https://issues.scala-lang.org/browse/SI-2991 - private[this] type SetDefault = { def setDefault(value: AnyRef) } - def setDefault_[A](value: A) = argument.asInstanceOf[SetDefault].setDefault(value.asInstanceOf[AnyRef]) + private[this] type SetDefault = { def setDefault(value: AnyRef): Unit } + def setDefault_[A](value: A): Unit = argument.asInstanceOf[SetDefault].setDefault(value.asInstanceOf[AnyRef]) } } diff --git a/src/main/scala/higherkindness/rules_scala/common/sbt-testing/JUnitXmlReporter.scala b/src/main/scala/higherkindness/rules_scala/common/sbt-testing/JUnitXmlReporter.scala index dc1479d3c..6d3043585 100644 --- a/src/main/scala/higherkindness/rules_scala/common/sbt-testing/JUnitXmlReporter.scala +++ b/src/main/scala/higherkindness/rules_scala/common/sbt-testing/JUnitXmlReporter.scala @@ -73,7 +73,7 @@ class JUnitXmlReporter(tasksAndEvents: ListBuffer[(String, ListBuffer[Event])]) """).mkString("")} """) - def write = { + def write(): Unit = { Option(System.getenv.get("XML_OUTPUT_FILE")) .foreach { filespec => XML.save(filespec, result, "UTF-8", true, null) diff --git a/src/main/scala/higherkindness/rules_scala/workers/common/FileUtil.scala b/src/main/scala/higherkindness/rules_scala/workers/common/FileUtil.scala index 7c1b8dc55..f6358a32e 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/common/FileUtil.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/common/FileUtil.scala @@ -4,9 +4,8 @@ package workers.common import scala.annotation.tailrec import java.io.IOException import java.nio.channels.FileChannel -import java.nio.file.{FileAlreadyExistsException, FileVisitResult, Files, OpenOption, Path, SimpleFileVisitor, StandardCopyOption, StandardOpenOption} +import java.nio.file.{FileAlreadyExistsException, FileVisitResult, Files, Path, SimpleFileVisitor, StandardCopyOption, StandardOpenOption} import java.nio.file.attribute.BasicFileAttributes -import java.security.SecureRandom import java.util.zip.{ZipEntry, ZipInputStream, ZipOutputStream} class CopyFileVisitor(source: Path, target: Path) extends SimpleFileVisitor[Path] { diff --git a/src/main/scala/higherkindness/rules_scala/workers/common/LoggedReporter.scala b/src/main/scala/higherkindness/rules_scala/workers/common/LoggedReporter.scala index 2aef966a8..739c6ccd2 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/common/LoggedReporter.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/common/LoggedReporter.scala @@ -1,10 +1,8 @@ package higherkindness.rules_scala package workers.common -import higherkindness.rules_scala.workers.common.Color import xsbti.{Logger, Problem} -import sbt.internal.inc.{LoggedReporter => SbtLoggedReporter} -import scala.util.Try +import sbt.internal.inc.{ LoggedReporter => SbtLoggedReporter} class LoggedReporter(logger: Logger, versionString: String) extends SbtLoggedReporter(0, logger) { // Scala 3 has great error messages, let's leave those alone, but still add color to the Scala 2 messages diff --git a/src/main/scala/higherkindness/rules_scala/workers/deps/DepsRunner.scala b/src/main/scala/higherkindness/rules_scala/workers/deps/DepsRunner.scala index 1ebff7788..a2f2322a0 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/deps/DepsRunner.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/deps/DepsRunner.scala @@ -9,7 +9,7 @@ import java.nio.file.{FileAlreadyExistsException, Files} import java.util.Collections import net.sourceforge.argparse4j.ArgumentParsers import net.sourceforge.argparse4j.impl.Arguments -import scala.collection.JavaConverters._ +import scala.jdk.CollectionConverters._ object DepsRunner extends WorkerMain[Unit] { private[this] val argParser = { @@ -80,7 +80,7 @@ object DepsRunner extends WorkerMain[Unit] { val unusedWhitelist = namespace.getList[String]("unused_whitelist").asScala.map(_.tail).toList (usedPaths -- (directLabels :++ unusedWhitelist).flatMap(pathsForLabel)) .flatMap { path => - groups.collectFirst { case (label, paths) if paths(path) => label }.orElse { + groups.collectFirst { case (myLabel, paths) if paths(path) => myLabel }.orElse { System.err.println(s"Warning: There is a reference to $path, but no dependency of $label provides it") None } diff --git a/src/main/scala/higherkindness/rules_scala/workers/jacoco/instrumenter/JacocoInstrumenter.scala b/src/main/scala/higherkindness/rules_scala/workers/jacoco/instrumenter/JacocoInstrumenter.scala index 860e962b8..7fccf6edd 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/jacoco/instrumenter/JacocoInstrumenter.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/jacoco/instrumenter/JacocoInstrumenter.scala @@ -1,7 +1,6 @@ package higherkindness.rules_scala package workers.jacoco.instrumenter -import common.args.implicits._ import common.worker.WorkerMain import java.io.{BufferedInputStream, BufferedOutputStream, PrintStream} import java.net.URI @@ -11,7 +10,6 @@ import java.nio.file.FileVisitResult import java.nio.file.Path import java.nio.file.Paths import java.nio.file.SimpleFileVisitor -import java.nio.file.StandardCopyOption import java.nio.file.StandardOpenOption import java.nio.file.attribute.BasicFileAttributes import java.util.Collections @@ -20,7 +18,7 @@ import net.sourceforge.argparse4j.ArgumentParsers import net.sourceforge.argparse4j.impl.Arguments import org.jacoco.core.instr.Instrumenter import org.jacoco.core.runtime.OfflineInstrumentationAccessGenerator -import scala.collection.JavaConverters._ +import scala.jdk.CollectionConverters._ object JacocoInstrumenter extends WorkerMain[Unit] { private[this] val argParser = { @@ -55,7 +53,7 @@ object JacocoInstrumenter extends WorkerMain[Unit] { val jacoco = new Instrumenter(new OfflineInstrumentationAccessGenerator) pathPairs.foreach { case (inPath, outPath) => - val inFS = FileSystems.newFileSystem(inPath, null) + val inFS = FileSystems.newFileSystem(inPath, null: ClassLoader) val outFS = FileSystems.newFileSystem(URI.create("jar:" + outPath.toUri), Collections.singletonMap("create", "true")) diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/Deps.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/Deps.scala index 89a77b2ee..650941ff7 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/Deps.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/Deps.scala @@ -14,7 +14,7 @@ sealed trait Dep { } case class LibraryDep(file: Path) extends Dep { - def classpath = file + def classpath: Path = file } case class DepAnalysisFiles(apis: Path, relations: Path) diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala index ee45ff472..f89892754 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala @@ -117,7 +117,9 @@ object ZincRunner extends WorkerMain[Namespace] { namespace.getList[JList[String]]("analysis") ).fold[Seq[JList[String]]](Nil)(_.asScala.toSeq) .flatMap { value => - val prefixedLabel +: analysis_store +: jars = value.asScala.toList + // Disable exhaustivity check here. Yes it could break, but it is + // not likely to. + val (prefixedLabel :: analysis_store :: jars) = value.asScala.toList: @unchecked val label = prefixedLabel.stripPrefix("_") jars .map(jar => @@ -372,7 +374,7 @@ final class DeterministicDirectoryHashExternalHooks extends ExternalHooks.Lookup val directoryFileHashes = directories.map { path => FileHash.of(path, 0) } - val fileHashes = ClasspathCache.hashClasspath(files) + val fileHashes = ClasspathCache.hashClasspath(files.toSeq) Optional.of(directoryFileHashes ++ fileHashes) } diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestDiscovery.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestDiscovery.scala index 52ce4af23..a001c78a7 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestDiscovery.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestDiscovery.scala @@ -17,6 +17,7 @@ class TestDiscovery(framework: Framework) { framework.fingerprints.foreach { case fingerprint: AnnotatedFingerprint => annotatedPrints += TestAnnotatedFingerprint(fingerprint) case fingerprint: SubclassFingerprint => subclassPrints += TestSubclassFingerprint(fingerprint) + case _ => throw new Exception("Unexpected fingerprint during test discovery") } (annotatedPrints.toSet, subclassPrints.toSet) } diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestFrameworkRunner.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestFrameworkRunner.scala index a9e7a8f31..6d956a0d7 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestFrameworkRunner.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestFrameworkRunner.scala @@ -34,7 +34,7 @@ class BasicTestRunner(framework: Framework, classLoader: ClassLoader, logger: Lo } reporter.post(failures.toSeq) val xmlReporter = new JUnitXmlReporter(tasksAndEvents) - xmlReporter.write + xmlReporter.write() !failures.nonEmpty } } @@ -74,7 +74,7 @@ class ClassLoaderTestRunner(framework: Framework, classLoaderProvider: () => Cla } reporter.post(failures) val xmlReporter = new JUnitXmlReporter(tasksAndEvents) - xmlReporter.write + xmlReporter.write() !failures.nonEmpty } } diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestRunner.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestRunner.scala index 60e475994..92d7759c9 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestRunner.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestRunner.scala @@ -159,7 +159,7 @@ object TestRunner { case "classloader" => val urls = classpath.filterNot(sharedClasspath.toSet).map(_.toUri.toURL).toArray def classLoaderProvider() = new URLClassLoader(urls, sharedClassLoader) - new ClassLoaderTestRunner(framework, classLoaderProvider, logger) + new ClassLoaderTestRunner(framework, classLoaderProvider _, logger) case "process" => val executable = runPath.resolve(testNamespace.get[File]("subprocess_exec").toPath) val arguments = Option(namespace.getList[String]("subprocess_arg")).fold[Seq[String]](Nil)(_.asScala.toSeq) From 21783c0f7e6f7d718a6519a8eb1f6daa55912d43 Mon Sep 17 00:00:00 2001 From: James Judd Date: Tue, 2 Jul 2024 23:05:10 -0600 Subject: [PATCH 13/21] Get ClassLoaders figured out for AnnexScalaInstance The ClassLoaders were mostly correct, but this should get things the rest of the way to being correct. Or at least similarly correct to Zinc and Bloop. --- .../workers/common/AnnexScalaInstance.scala | 163 ++++++++++++------ 1 file changed, 113 insertions(+), 50 deletions(-) diff --git a/src/main/scala/higherkindness/rules_scala/workers/common/AnnexScalaInstance.scala b/src/main/scala/higherkindness/rules_scala/workers/common/AnnexScalaInstance.scala index cb27fdca2..dbc937d39 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/common/AnnexScalaInstance.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/common/AnnexScalaInstance.scala @@ -1,28 +1,77 @@ package higherkindness.rules_scala package workers.common -import xsbti.compile.{CompilerInterface2, ScalaInstance} +import xsbti.compile.ScalaInstance import java.io.File import java.net.URLClassLoader import java.util.Properties +object AnnexScalaInstance { + // Check the comment on ScalaInstanceDualLoader to understand why this is necessary. + private val dualClassLoader: ScalaInstanceDualLoader = { + new ScalaInstanceDualLoader( + // Classloader for xsbti classes + getClass.getClassLoader, + // Classloader for all other classes + ClassLoader.getPlatformClassLoader(), + ) + } + + /** + * Convenience function to get a classloader from an Array[File] whose parent + * is the dualClassLoader, so it will handle xsbti correctly. + */ + private def getClassLoader(jars: Array[File]): URLClassLoader = { + new URLClassLoader( + jars.map(_.toURI.toURL), + dualClassLoader, + ) + } + + // These are not the most robust checks for these jars, but it is more or + // less what Zinc and Bloop are doing. They're also fast, so if it works it + // works. + + private final def isScala2CompilerJar(jarName: String): Boolean = { + jarName.startsWith("scala-compiler") || jarName.startsWith("scala-reflect") + } + + private final def isScala3CompilerJar(jarName: String): Boolean = { + jarName.startsWith("scala3-compiler") || jarName.startsWith("scala3-interfaces") || + jarName.startsWith("tasty-core_3") || jarName.startsWith("scala-asm") + } + + private final def isScalaLibraryJar(jarName: String): Boolean = { + jarName.startsWith("scala-library") || jarName.startsWith("scala3-library") + } +} + +// See this interface for comments better explaining the purpose of all the +// member variables: +// https://github.com/sbt/zinc/blob/4eacff2a9bf5c8750bfc5096955065ce67f4e68a/internal/compiler-interface/src/main/java/xsbti/compile/ScalaInstance.java final class AnnexScalaInstance(override val allJars: Array[File]) extends ScalaInstance { - // Some of these variable names don't really line up with what I imagine the - // actual values should be. I'm following the examples I found from the Zinc source - // and it seems to work well, so I'm sticking with it. - // For reference: https://github.com/sbt/zinc/blob/1.5.x/internal/zinc-classpath/src/main/scala/sbt/internal/inc/ScalaInstance.scala - override val compilerJars: Array[File] = allJars - override val libraryJars: Array[File] = allJars - .filter(f => new URLClassLoader(Array(f.toURI.toURL)).findResource("library.properties") != null) + // Jars for the Scala compiler classes + // We need to include the full classpath for the Scala 2 or Scala 3 compilers. + // Thankfully that classpath doesn't seem to change very often. + override val compilerJars: Array[File] = allJars.filter { jar => + val jarName = jar.getName + AnnexScalaInstance.isScala2CompilerJar(jarName) || + AnnexScalaInstance.isScala3CompilerJar(jarName) || + AnnexScalaInstance.isScalaLibraryJar(jarName) + } + + // Jars for the Scala library classes + override val libraryJars: Array[File] = + allJars.filter(jar => AnnexScalaInstance.isScalaLibraryJar(jar.getName)) + // All the jars that are not compiler or library jars override val otherJars: Array[File] = allJars.diff(compilerJars ++ libraryJars) + // Version for this Scala instance override val actualVersion: String = { - val stream = new URLClassLoader( - compilerJars.map(_.toURI.toURL), - ClassLoader.getPlatformClassLoader() - ).getResourceAsStream("compiler.properties") + val stream = AnnexScalaInstance.getClassLoader(compilerJars) + .getResourceAsStream("compiler.properties") try { val props = new Properties @@ -32,44 +81,58 @@ final class AnnexScalaInstance(override val allJars: Array[File]) extends ScalaI } override val version: String = actualVersion - override val loaderLibraryOnly: ClassLoader = - new URLClassLoader( - libraryJars.map(_.toURI.toURL), - // The Scala 3 compiler jar has a dependency on the org.scala-sbt:compiler-interface jar. - // Our ZincRunner code also has a dependency on the compiler-interface. - // - // This means we will end up in a situation with classes from the compiler-interface - // being loaded by the classloader for the jvm that launched ZincRunner and also - // the classloader that we're creating here for the Scala 3 compiler. - // - // This is a problem. - // - // An instance of a class in the JVM is defined by its fully qualified name - // and classloader. Because the classloaders are different, we will get a - // java.lang.LinkageError because the classloader for the ZincRunner will have already - // loaded some compiler-interface classes that get used by the Scala 3 compiler during - // its compilation run. - // - // To avoid this we are setting the parent of the Scala 3 compiler classloader, which - // we are creating here, to the classloader for the jvm that launched the ZincRunner. - // That avoids the LinkageError because URLClassLoaders go parent first, so it finds - // the compiler-interface classes from the correct classloader. - // - // Problem is, doing this creates a potential leak: the parent classloader will be checked - // for all classes used during the compilation. Meaning, any classes used in the - // ZincRunner could end up leaking out into the Scala 3 compiler. So far this hasn't - // caused any issues, but maybe it will in the future. - // - // Scala 2's compiler does not have the dependency on the compiler-interface, so it avoids - // this problem. - // - // TODO: Fix this with classloader wizardry and witchcraft - if (actualVersion.startsWith("3")) classOf[CompilerInterface2].getClassLoader - else ClassLoader.getPlatformClassLoader() - ) + // Loader for only the classes and resources in the library jars of this Scala instance + override val loaderLibraryOnly: ClassLoader = AnnexScalaInstance.getClassLoader(libraryJars) - override val loader: ClassLoader = - new URLClassLoader(allJars.diff(libraryJars).map(_.toURI.toURL), loaderLibraryOnly) + // Loader for all the classes and resources in all the jars of this Scala instance + override val loader: ClassLoader = AnnexScalaInstance.getClassLoader(allJars) - override val loaderCompilerOnly: ClassLoader = loader + // Loader for all the classes and resources in all the compiler jars of this + // Scala instance + override val loaderCompilerOnly: ClassLoader = AnnexScalaInstance.getClassLoader(compilerJars) +} + +/** + * Load classes that start with xsbti or jline from the sbt class loader + * - xsbti is for the compiler bridge + * - jline for the sbt provided jline terminal + * Load all other classes from the other loader + * Always get resources from the non-sbt loader + * + * This is necessary, so we can always make sure that the xsbti and jline + * classes needed for compilation and the repl come from the same class loader. + * + * If the same class is loaded by two separate class loaders you get a linkage + * error in the JVM. + * + * If you set up a class loader that doesn't contain the xsbti and jline + * classes, then you get an error when you can't find those classes because + * they are needed by Zinc and our ZincRunner. + * + * If you set up one class loader for all the things, then you start leaking + * any class loaded during any compilation into any compilation happening in + * the JVM. Considering workers are long lived and handle multiple compilations, + * that could become a problem. + * + * Dotty, Bloop, and Zinc all do very similar things. This approach was heavily + * inspired by their approaches. For more details about their approaches see + * the following: + * https://github.com/scala/scala3/blob/7d26a96db6e63aba8db1362b09f4adf521bc8327/sbt-dotty/src/dotty/tools/sbtplugin/DottyPlugin.scala#L620 + * https://github.com/scala/scala3/blob/cd8c5ed1dc5ee8528861e284490534064ba6d3e5/sbt-bridge/src/xsbt/CompilerClassLoader.java#L11 + * https://github.com/scalacenter/bloop/blob/c505385edf0bbd420e19401ae1beabae8895df8f/backend/src/main/scala/bloop/ScalaInstanceTopLoader.scala#L30 + * https://github.com/sbt/zinc/blob/4eacff2a9bf5c8750bfc5096955065ce67f4e68a/internal/zinc-classpath/src/main/scala/sbt/internal/inc/classpath/DualLoader.scala#L47 + */ +class ScalaInstanceDualLoader(sbtClassLoader: ClassLoader, otherLoader: ClassLoader) + extends ClassLoader(otherLoader) { + override final def loadClass(name: String, resolve: Boolean): Class[_] = { + if (name.startsWith("xsbti.") || name.startsWith("org.jline.")) { + val klass = sbtClassLoader.loadClass(name) + if (resolve) { + resolveClass(klass) + } + klass + } else { + super.loadClass(name, resolve) + } + } } From 2bf252a30cb658a2849af48a60ce6c867b624ff1 Mon Sep 17 00:00:00 2001 From: James Judd Date: Wed, 3 Jul 2024 09:52:44 -0600 Subject: [PATCH 14/21] Formatting updates from buildifier and scalafmt --- .scalafmt.conf | 1 + .../phases/phase_bootstrap_compile.bzl | 5 +-- .../private/phases/phase_coverage_jacoco.bzl | 8 ++-- rules/private/phases/phase_javainfo.bzl | 5 +-- rules/scala/private/doc.bzl | 3 -- rules/scala_proto/private/core.bzl | 5 +-- rules/scalafmt/BUILD | 9 ++-- rules/scalafmt/ext.bzl | 8 ++-- src/main/scala/BUILD | 4 +- .../rules_scala/common/args/BUILD | 2 +- .../common/error/AnnexWorkerError.scala | 2 +- .../rules_scala/common/error/BUILD | 2 +- .../rules_scala/common/sbt-testing/BUILD | 6 +-- .../common/sbt-testing/JUnitXmlReporter.scala | 6 +-- .../rules_scala/common/sbt-testing/Test.scala | 6 +-- .../common/sbt-testing/TestRequest.scala | 2 +- .../rules_scala/common/worker/BUILD | 2 +- .../common/worker/WorkerMain.scala | 2 +- .../workers/common/AnnexScalaInstance.scala | 43 ++++++++----------- .../workers/common/LoggedReporter.scala | 2 +- .../instrumenter/JacocoInstrumenter.scala | 2 +- .../workers/zinc/compile/ZincRunner.scala | 20 ++++----- .../workers/zinc/doc/DocRunner.scala | 2 +- .../workers/zinc/repl/ReplRunner.scala | 4 +- .../workers/zinc/test/TestDiscovery.scala | 4 +- .../zinc/test/TestFrameworkRunner.scala | 6 +-- .../workers/zinc/test/TestRunner.scala | 2 +- tests/WORKSPACE | 2 +- tests/coverage/BUILD | 2 +- tests/dependencies/indirect/BUILD | 2 +- tests/format/scalafmt/BUILD | 2 +- tests/plugins/classpath/BUILD | 2 +- tests/proto/BUILD | 8 ++-- tests/resources/reference_conf/BUILD | 2 +- tests/scala/scala3/BUILD | 2 +- .../devtools/build/buildjar/jarhelper/BUILD | 4 +- 36 files changed, 86 insertions(+), 103 deletions(-) diff --git a/.scalafmt.conf b/.scalafmt.conf index dde1d6595..a7be16325 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -14,3 +14,4 @@ rewrite.rules = [ PreferCurlyFors, SortImports ] +trailingCommas = always diff --git a/rules/private/phases/phase_bootstrap_compile.bzl b/rules/private/phases/phase_bootstrap_compile.bzl index c346f09e5..c50d08ad8 100644 --- a/rules/private/phases/phase_bootstrap_compile.bzl +++ b/rules/private/phases/phase_bootstrap_compile.bzl @@ -1,10 +1,7 @@ -load( - "//rules/common:private/utils.bzl", - _strip_margin = "strip_margin", -) load( "//rules/common:private/utils.bzl", _resolve_execution_reqs = "resolve_execution_reqs", + _strip_margin = "strip_margin", ) # diff --git a/rules/private/phases/phase_coverage_jacoco.bzl b/rules/private/phases/phase_coverage_jacoco.bzl index 63ef41520..31ce0a420 100644 --- a/rules/private/phases/phase_coverage_jacoco.bzl +++ b/rules/private/phases/phase_coverage_jacoco.bzl @@ -2,14 +2,14 @@ load( "@rules_scala_annex//rules:providers.bzl", _CodeCoverageConfiguration = "CodeCoverageConfiguration", ) -load( - "@rules_scala_annex//rules/private:coverage_replacements_provider.bzl", - _coverage_replacements_provider = "coverage_replacements_provider", -) load( "@rules_scala_annex//rules/common:private/utils.bzl", _resolve_execution_reqs = "resolve_execution_reqs", ) +load( + "@rules_scala_annex//rules/private:coverage_replacements_provider.bzl", + _coverage_replacements_provider = "coverage_replacements_provider", +) def phase_coverage_jacoco(ctx, g): if not ctx.configuration.coverage_enabled: diff --git a/rules/private/phases/phase_javainfo.bzl b/rules/private/phases/phase_javainfo.bzl index 15b7abbc9..098a34c7e 100644 --- a/rules/private/phases/phase_javainfo.bzl +++ b/rules/private/phases/phase_javainfo.bzl @@ -3,13 +3,10 @@ load( "find_java_runtime_toolchain", "find_java_toolchain", ) -load( - "@rules_scala_annex//rules:providers.bzl", - _ScalaInfo = "ScalaInfo", -) load( "@rules_scala_annex//rules:providers.bzl", _ScalaConfiguration = "ScalaConfiguration", + _ScalaInfo = "ScalaInfo", ) load( "//rules/common:private/utils.bzl", diff --git a/rules/scala/private/doc.bzl b/rules/scala/private/doc.bzl index 1ce91f7d2..10e583b18 100644 --- a/rules/scala/private/doc.bzl +++ b/rules/scala/private/doc.bzl @@ -6,9 +6,6 @@ load( load( "//rules/common:private/utils.bzl", _collect = "collect", -) -load( - "//rules/common:private/utils.bzl", _resolve_execution_reqs = "resolve_execution_reqs", ) diff --git a/rules/scala_proto/private/core.bzl b/rules/scala_proto/private/core.bzl index 3a1a7147c..9d81ff981 100644 --- a/rules/scala_proto/private/core.bzl +++ b/rules/scala_proto/private/core.bzl @@ -1,10 +1,7 @@ -load( - "//rules/common:private/utils.bzl", - _safe_name = "safe_name", -) load( "//rules/common:private/utils.bzl", _resolve_execution_reqs = "resolve_execution_reqs", + _safe_name = "safe_name", ) scala_proto_library_private_attributes = {} diff --git a/rules/scalafmt/BUILD b/rules/scalafmt/BUILD index 6627a96bb..a97ad3531 100644 --- a/rules/scalafmt/BUILD +++ b/rules/scalafmt/BUILD @@ -1,5 +1,9 @@ load("//rules:scala.bzl", "scala_binary") load("//rules:scalafmt.bzl", "scala_format_test") +load( + ":ext.bzl", + _add_non_default_format_phase_singleton = "add_non_default_format_phase_singleton", +) filegroup( name = "runner", @@ -40,11 +44,6 @@ filegroup( visibility = ["//rules:__pkg__"], ) -load( - ":ext.bzl", - _add_non_default_format_phase_singleton = "add_non_default_format_phase_singleton", -) - _add_non_default_format_phase_singleton( name = "add_non_default_format_phase", visibility = ["//visibility:public"], diff --git a/rules/scalafmt/ext.bzl b/rules/scalafmt/ext.bzl index 4a53eb936..7e98eef9a 100644 --- a/rules/scalafmt/ext.bzl +++ b/rules/scalafmt/ext.bzl @@ -3,15 +3,15 @@ load( "@rules_scala_annex//rules:providers.bzl", _ScalaRulePhase = "ScalaRulePhase", ) +load( + "//rules/private:phases.bzl", + _phase_scalafmt_nondefault_outputs = "phase_scalafmt_nondefault_outputs", +) load( "//rules/scalafmt:private/test.bzl", _scala_format_attributes = "scala_format_attributes", _scala_non_default_format_attributes = "scala_non_default_format_attributes", ) -load( - "//rules/private:phases.bzl", - _phase_scalafmt_nondefault_outputs = "phase_scalafmt_nondefault_outputs", -) ext_with_non_default_format = { "attrs": _dicts.add( diff --git a/src/main/scala/BUILD b/src/main/scala/BUILD index 28fae149b..58dfb2f85 100644 --- a/src/main/scala/BUILD +++ b/src/main/scala/BUILD @@ -55,8 +55,8 @@ scala2_global_scalacopts = shared_global_scalacopts + shared_scala2_global_scala configure_bootstrap_scala( name = "bootstrap_2_13_14", compiler_classpath = compiler_classpath_2_13_14, - runtime_classpath = runtime_classpath_2_13_14, global_scalacopts = scala2_global_scalacopts, + runtime_classpath = runtime_classpath_2_13_14, version = "2.13.14", visibility = ["//visibility:public"], ) @@ -100,8 +100,8 @@ runtime_classpath_3_4_2 = [ configure_bootstrap_scala( name = "bootstrap_3_4_2", compiler_classpath = compiler_classpath_3_4_2, - runtime_classpath = runtime_classpath_3_4_2, global_scalacopts = shared_global_scalacopts, + runtime_classpath = runtime_classpath_3_4_2, use_ijar = False, version = "3.4.2", visibility = ["//visibility:public"], diff --git a/src/main/scala/higherkindness/rules_scala/common/args/BUILD b/src/main/scala/higherkindness/rules_scala/common/args/BUILD index 26b6124bd..ad51ab457 100644 --- a/src/main/scala/higherkindness/rules_scala/common/args/BUILD +++ b/src/main/scala/higherkindness/rules_scala/common/args/BUILD @@ -1,5 +1,5 @@ -load("//rules:scalafmt.bzl", "scala_format_test") load("//rules:scala.bzl", "scala_library") +load("//rules:scalafmt.bzl", "scala_format_test") scala_library( name = "args", diff --git a/src/main/scala/higherkindness/rules_scala/common/error/AnnexWorkerError.scala b/src/main/scala/higherkindness/rules_scala/common/error/AnnexWorkerError.scala index a7b097c30..7d0702ce3 100644 --- a/src/main/scala/higherkindness/rules_scala/common/error/AnnexWorkerError.scala +++ b/src/main/scala/higherkindness/rules_scala/common/error/AnnexWorkerError.scala @@ -4,7 +4,7 @@ package common.error final class AnnexWorkerError( val code: Int, val message: String = "", - val cause: Throwable = null + val cause: Throwable = null, ) extends Error(message, cause) object AnnexWorkerError { diff --git a/src/main/scala/higherkindness/rules_scala/common/error/BUILD b/src/main/scala/higherkindness/rules_scala/common/error/BUILD index 0947bfd06..ff595f33b 100644 --- a/src/main/scala/higherkindness/rules_scala/common/error/BUILD +++ b/src/main/scala/higherkindness/rules_scala/common/error/BUILD @@ -1,5 +1,5 @@ -load("//rules:scalafmt.bzl", "scala_format_test") load("//rules:scala.bzl", "scala_library") +load("//rules:scalafmt.bzl", "scala_format_test") scala_library( name = "error", diff --git a/src/main/scala/higherkindness/rules_scala/common/sbt-testing/BUILD b/src/main/scala/higherkindness/rules_scala/common/sbt-testing/BUILD index 10bd77411..cccdf580c 100644 --- a/src/main/scala/higherkindness/rules_scala/common/sbt-testing/BUILD +++ b/src/main/scala/higherkindness/rules_scala/common/sbt-testing/BUILD @@ -1,5 +1,5 @@ -load("//rules:scalafmt.bzl", "scala_format_test") load("//rules:scala.bzl", "scala_library") +load("//rules:scalafmt.bzl", "scala_format_test") _subprocess_srcs = ["SubprocessRunner.scala"] @@ -23,11 +23,11 @@ scala_library( scala_library( name = "common", srcs = _common_srcs, - scala = "//src/main/scala:zinc", - visibility = ["//visibility:public"], deps_used_whitelist = [ "@annex//:org_scala_lang_scala_library", ], + scala = "//src/main/scala:zinc", + visibility = ["//visibility:public"], deps = [ "@annex//:org_scala_lang_modules_scala_xml_2_13", "@annex//:org_scala_sbt_test_interface", diff --git a/src/main/scala/higherkindness/rules_scala/common/sbt-testing/JUnitXmlReporter.scala b/src/main/scala/higherkindness/rules_scala/common/sbt-testing/JUnitXmlReporter.scala index 6d3043585..fe5f416ad 100644 --- a/src/main/scala/higherkindness/rules_scala/common/sbt-testing/JUnitXmlReporter.scala +++ b/src/main/scala/higherkindness/rules_scala/common/sbt-testing/JUnitXmlReporter.scala @@ -45,21 +45,21 @@ class JUnitXmlReporter(tasksAndEvents: ListBuffer[(String, ListBuffer[Event])]) case Status.Error if e.throwable.isDefined => val t = e.throwable.get s"""${escape( - trace + trace, )}""" case Status.Error => s"""""" case Status.Failure if e.throwable.isDefined => val t = e.throwable.get s"""${escape( - trace + trace, )}""" case Status.Failure => s"""""" case Status.Canceled if e.throwable.isDefined => val t = e.throwable.get s"""${escape( - trace + trace, )}""" case Status.Canceled => s"""""" diff --git a/src/main/scala/higherkindness/rules_scala/common/sbt-testing/Test.scala b/src/main/scala/higherkindness/rules_scala/common/sbt-testing/Test.scala index b42e6b0e9..abea24b2d 100644 --- a/src/main/scala/higherkindness/rules_scala/common/sbt-testing/Test.scala +++ b/src/main/scala/higherkindness/rules_scala/common/sbt-testing/Test.scala @@ -26,7 +26,7 @@ class TestFrameworkLoader(loader: ClassLoader, logger: Logger) { object TestHelper { def withRunner[A](framework: Framework, scopeAndTestName: String, classLoader: ClassLoader, arguments: Seq[String])( - f: Runner => A + f: Runner => A, ) = { val options = if (framework.name == "specs2") { @@ -54,7 +54,7 @@ object TestHelper { test.name, test.fingerprint, false, - Array(new TestWildcardSelector(scopeAndTestName.replace("::", " "))) + Array(new TestWildcardSelector(scopeAndTestName.replace("::", " "))), ) } @@ -88,7 +88,7 @@ class TestTaskExecutor(logger: Logger) { case _ => } }, - Array(new PrefixedTestingLogger(logger, " ")) + Array(new PrefixedTestingLogger(logger, " ")), ) tasks.foreach(execute) } diff --git a/src/main/scala/higherkindness/rules_scala/common/sbt-testing/TestRequest.scala b/src/main/scala/higherkindness/rules_scala/common/sbt-testing/TestRequest.scala index 208955422..8e38a9294 100644 --- a/src/main/scala/higherkindness/rules_scala/common/sbt-testing/TestRequest.scala +++ b/src/main/scala/higherkindness/rules_scala/common/sbt-testing/TestRequest.scala @@ -9,5 +9,5 @@ class TestRequest( val scopeAndTestName: String, val classpath: Seq[String], val logger: Logger with Serializable, - val testArgs: Seq[String] + val testArgs: Seq[String], ) extends Serializable diff --git a/src/main/scala/higherkindness/rules_scala/common/worker/BUILD b/src/main/scala/higherkindness/rules_scala/common/worker/BUILD index fe0e0f53f..2041dfa65 100644 --- a/src/main/scala/higherkindness/rules_scala/common/worker/BUILD +++ b/src/main/scala/higherkindness/rules_scala/common/worker/BUILD @@ -1,5 +1,5 @@ -load("//rules:scalafmt.bzl", "scala_format_test") load("//rules:scala.bzl", "scala_library") +load("//rules:scalafmt.bzl", "scala_format_test") scala_library( name = "worker", diff --git a/src/main/scala/higherkindness/rules_scala/common/worker/WorkerMain.scala b/src/main/scala/higherkindness/rules_scala/common/worker/WorkerMain.scala index 63d9f7162..f77a7d2b7 100644 --- a/src/main/scala/higherkindness/rules_scala/common/worker/WorkerMain.scala +++ b/src/main/scala/higherkindness/rules_scala/common/worker/WorkerMain.scala @@ -34,7 +34,7 @@ trait WorkerMain[S] { Runtime.getRuntime().availableProcessors(), ForkJoinPool.defaultForkJoinWorkerThreadFactory, exceptionHandler, - false + false, ) implicit val ec = ExecutionContext.fromExecutor(fjp) diff --git a/src/main/scala/higherkindness/rules_scala/workers/common/AnnexScalaInstance.scala b/src/main/scala/higherkindness/rules_scala/workers/common/AnnexScalaInstance.scala index dbc937d39..e220ede32 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/common/AnnexScalaInstance.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/common/AnnexScalaInstance.scala @@ -18,8 +18,8 @@ object AnnexScalaInstance { } /** - * Convenience function to get a classloader from an Array[File] whose parent - * is the dualClassLoader, so it will handle xsbti correctly. + * Convenience function to get a classloader from an Array[File] whose parent is the dualClassLoader, so it will + * handle xsbti correctly. */ private def getClassLoader(jars: Array[File]): URLClassLoader = { new URLClassLoader( @@ -38,7 +38,7 @@ object AnnexScalaInstance { private final def isScala3CompilerJar(jarName: String): Boolean = { jarName.startsWith("scala3-compiler") || jarName.startsWith("scala3-interfaces") || - jarName.startsWith("tasty-core_3") || jarName.startsWith("scala-asm") + jarName.startsWith("tasty-core_3") || jarName.startsWith("scala-asm") } private final def isScalaLibraryJar(jarName: String): Boolean = { @@ -57,8 +57,8 @@ final class AnnexScalaInstance(override val allJars: Array[File]) extends ScalaI override val compilerJars: Array[File] = allJars.filter { jar => val jarName = jar.getName AnnexScalaInstance.isScala2CompilerJar(jarName) || - AnnexScalaInstance.isScala3CompilerJar(jarName) || - AnnexScalaInstance.isScalaLibraryJar(jarName) + AnnexScalaInstance.isScala3CompilerJar(jarName) || + AnnexScalaInstance.isScalaLibraryJar(jarName) } // Jars for the Scala library classes @@ -70,7 +70,8 @@ final class AnnexScalaInstance(override val allJars: Array[File]) extends ScalaI // Version for this Scala instance override val actualVersion: String = { - val stream = AnnexScalaInstance.getClassLoader(compilerJars) + val stream = AnnexScalaInstance + .getClassLoader(compilerJars) .getResourceAsStream("compiler.properties") try { @@ -96,34 +97,28 @@ final class AnnexScalaInstance(override val allJars: Array[File]) extends ScalaI * Load classes that start with xsbti or jline from the sbt class loader * - xsbti is for the compiler bridge * - jline for the sbt provided jline terminal - * Load all other classes from the other loader - * Always get resources from the non-sbt loader + * Load all other classes from the other loader Always get resources from the non-sbt loader * - * This is necessary, so we can always make sure that the xsbti and jline - * classes needed for compilation and the repl come from the same class loader. + * This is necessary, so we can always make sure that the xsbti and jline classes needed for compilation and the repl + * come from the same class loader. * - * If the same class is loaded by two separate class loaders you get a linkage - * error in the JVM. + * If the same class is loaded by two separate class loaders you get a linkage error in the JVM. * - * If you set up a class loader that doesn't contain the xsbti and jline - * classes, then you get an error when you can't find those classes because - * they are needed by Zinc and our ZincRunner. + * If you set up a class loader that doesn't contain the xsbti and jline classes, then you get an error when you can't + * find those classes because they are needed by Zinc and our ZincRunner. * - * If you set up one class loader for all the things, then you start leaking - * any class loaded during any compilation into any compilation happening in - * the JVM. Considering workers are long lived and handle multiple compilations, - * that could become a problem. + * If you set up one class loader for all the things, then you start leaking any class loaded during any compilation + * into any compilation happening in the JVM. Considering workers are long lived and handle multiple compilations, that + * could become a problem. * - * Dotty, Bloop, and Zinc all do very similar things. This approach was heavily - * inspired by their approaches. For more details about their approaches see - * the following: + * Dotty, Bloop, and Zinc all do very similar things. This approach was heavily inspired by their approaches. For more + * details about their approaches see the following: * https://github.com/scala/scala3/blob/7d26a96db6e63aba8db1362b09f4adf521bc8327/sbt-dotty/src/dotty/tools/sbtplugin/DottyPlugin.scala#L620 * https://github.com/scala/scala3/blob/cd8c5ed1dc5ee8528861e284490534064ba6d3e5/sbt-bridge/src/xsbt/CompilerClassLoader.java#L11 * https://github.com/scalacenter/bloop/blob/c505385edf0bbd420e19401ae1beabae8895df8f/backend/src/main/scala/bloop/ScalaInstanceTopLoader.scala#L30 * https://github.com/sbt/zinc/blob/4eacff2a9bf5c8750bfc5096955065ce67f4e68a/internal/zinc-classpath/src/main/scala/sbt/internal/inc/classpath/DualLoader.scala#L47 */ -class ScalaInstanceDualLoader(sbtClassLoader: ClassLoader, otherLoader: ClassLoader) - extends ClassLoader(otherLoader) { +class ScalaInstanceDualLoader(sbtClassLoader: ClassLoader, otherLoader: ClassLoader) extends ClassLoader(otherLoader) { override final def loadClass(name: String, resolve: Boolean): Class[_] = { if (name.startsWith("xsbti.") || name.startsWith("org.jline.")) { val klass = sbtClassLoader.loadClass(name) diff --git a/src/main/scala/higherkindness/rules_scala/workers/common/LoggedReporter.scala b/src/main/scala/higherkindness/rules_scala/workers/common/LoggedReporter.scala index 739c6ccd2..c2fee0d2b 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/common/LoggedReporter.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/common/LoggedReporter.scala @@ -2,7 +2,7 @@ package higherkindness.rules_scala package workers.common import xsbti.{Logger, Problem} -import sbt.internal.inc.{ LoggedReporter => SbtLoggedReporter} +import sbt.internal.inc.{LoggedReporter => SbtLoggedReporter} class LoggedReporter(logger: Logger, versionString: String) extends SbtLoggedReporter(0, logger) { // Scala 3 has great error messages, let's leave those alone, but still add color to the Scala 2 messages diff --git a/src/main/scala/higherkindness/rules_scala/workers/jacoco/instrumenter/JacocoInstrumenter.scala b/src/main/scala/higherkindness/rules_scala/workers/jacoco/instrumenter/JacocoInstrumenter.scala index 7fccf6edd..2c5d1987d 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/jacoco/instrumenter/JacocoInstrumenter.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/jacoco/instrumenter/JacocoInstrumenter.scala @@ -46,7 +46,7 @@ object JacocoInstrumenter extends WorkerMain[Unit] { case Array(in, out) => (Paths.get(in), Paths.get(out)) case _ => sys.error("expected input=output for argument: " + other) - } + }, ) .toList diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala index f89892754..c4b6b4b5d 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala @@ -14,7 +14,7 @@ import java.io.{File, PrintStream, PrintWriter} import java.net.URLClassLoader import java.nio.file.{Files, Path, Paths} import java.util -import java.util.{Optional, List => JList} +import java.util.{List => JList, Optional} import net.sourceforge.argparse4j.ArgumentParsers import net.sourceforge.argparse4j.impl.{Arguments => Arg} import net.sourceforge.argparse4j.inf.Namespace @@ -114,7 +114,7 @@ object ZincRunner extends WorkerMain[Namespace] { val analyses: Map[Path, (Path, Path)] = { if (usePersistence) { Option( - namespace.getList[JList[String]]("analysis") + namespace.getList[JList[String]]("analysis"), ).fold[Seq[JList[String]]](Nil)(_.asScala.toSeq) .flatMap { value => // Disable exhaustivity check here. Yes it could break, but it is @@ -127,7 +127,7 @@ object ZincRunner extends WorkerMain[Namespace] { classesDir .resolve(labelToPath(label)), Paths.get(analysis_store), - ) + ), ) } .toMap @@ -172,10 +172,10 @@ object ZincRunner extends WorkerMain[Namespace] { logger.warn(() => s"Failed to load previous analysis: $e") Optional.empty[AnalysisContents]() }, - identity + identity, ) .map[PreviousResult](contents => - PreviousResult.of(Optional.of(contents.getAnalysis), Optional.of(contents.getMiniSetup)) + PreviousResult.of(Optional.of(contents.getAnalysis), Optional.of(contents.getMiniSetup)), ) .orElseGet(() => PreviousResult.of(Optional.empty[CompileAnalysis](), Optional.empty[MiniSetup]())) @@ -191,8 +191,8 @@ object ZincRunner extends WorkerMain[Namespace] { .withScalacOptions( Array.concat( namespace.getList[File]("plugins").asScala.map(p => s"-Xplugin:$p").toArray, - Option(namespace.getList[String]("compiler_option")).fold[Seq[String]](Nil)(_.asScala.toSeq).toArray - ) + Option(namespace.getList[String]("compiler_option")).fold[Seq[String]](Nil)(_.asScala.toSeq).toArray, + ), ) val compilers = { @@ -222,7 +222,7 @@ object ZincRunner extends WorkerMain[Namespace] { val externalHooks = new DefaultExternalHooks( Optional.of(new DeterministicDirectoryHashExternalHooks()), - Optional.empty() + Optional.empty(), ) val setup = { @@ -241,7 +241,7 @@ object ZincRunner extends WorkerMain[Namespace] { incOptions, reporter, Optional.empty[CompileProgress](), - Array.empty[T2[String, String]] + Array.empty[T2[String, String]], ) } @@ -361,7 +361,7 @@ final class DeterministicDirectoryHashExternalHooks extends ExternalHooks.Lookup // https://github.com/sbt/zinc/blob/f55b5b5abfba2dfcec0082b6fa8d329286803d2d/internal/zinc-core/src/main/scala/sbt/internal/inc/IncrementalCommon.scala#L429 override def shouldDoIncrementalCompilation( changedClasses: util.Set[String], - previousAnalysis: CompileAnalysis + previousAnalysis: CompileAnalysis, ): Boolean = true // We set the hash code of the directories to 0. By default they get set diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/doc/DocRunner.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/doc/DocRunner.scala index 7f5aa0193..eacd8905b 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/doc/DocRunner.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/doc/DocRunner.scala @@ -121,7 +121,7 @@ object DocRunner extends WorkerMain[Unit] { output.toPath, options, logger, - reporter + reporter, ) try FileUtil.delete(tmpDir) diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/repl/ReplRunner.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/repl/ReplRunner.scala index 8e8bbda23..100475456 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/repl/ReplRunner.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/repl/ReplRunner.scala @@ -72,7 +72,7 @@ object ReplRunner { .asScala .map(file => runPath.resolve(file.toPath).toFile) val scalaInstance = new AnnexScalaInstance( - compilerClasspath.toArray + compilerClasspath.toArray, ) val logger = new AnnexLogger(namespace.getString("log_level")) @@ -93,7 +93,7 @@ object ReplRunner { options, "", "", - logger + logger, )() } } diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestDiscovery.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestDiscovery.scala index a001c78a7..ac3f3d6d7 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestDiscovery.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestDiscovery.scala @@ -17,7 +17,7 @@ class TestDiscovery(framework: Framework) { framework.fingerprints.foreach { case fingerprint: AnnotatedFingerprint => annotatedPrints += TestAnnotatedFingerprint(fingerprint) case fingerprint: SubclassFingerprint => subclassPrints += TestSubclassFingerprint(fingerprint) - case _ => throw new Exception("Unexpected fingerprint during test discovery") + case _ => throw new Exception("Unexpected fingerprint during test discovery") } (annotatedPrints.toSet, subclassPrints.toSet) } @@ -31,7 +31,7 @@ class TestDiscovery(framework: Framework) { private[this] def discover(definitions: Seq[Definition]) = Discovery(subclassPrints.map(_.superclassName), annotatedPrints.map(_.annotationName))( - definitions + definitions, ) def apply(classes: Set[AnalyzedClass]) = diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestFrameworkRunner.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestFrameworkRunner.scala index 6d956a0d7..61a7afde0 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestFrameworkRunner.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestFrameworkRunner.scala @@ -81,14 +81,14 @@ class ClassLoaderTestRunner(framework: Framework, classLoaderProvider: () => Cla class ProcessCommand( val executable: String, - val arguments: Seq[String] + val arguments: Seq[String], ) extends Serializable class ProcessTestRunner( framework: Framework, classpath: Seq[Path], command: ProcessCommand, - logger: Logger with Serializable + logger: Logger with Serializable, ) extends TestFrameworkRunner { def execute(tests: Seq[TestDefinition], scopeAndTestName: String, arguments: Seq[String]) = { val reporter = new TestReporter(logger) @@ -115,7 +115,7 @@ class ProcessTestRunner( scopeAndTestName, classpath.map(_.toString), logger, - arguments + arguments, ) val out = new ObjectOutputStream(process.getOutputStream) try out.writeObject(request) diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestRunner.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestRunner.scala index 92d7759c9..75e56a6fc 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestRunner.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestRunner.scala @@ -167,7 +167,7 @@ object TestRunner { framework, classpath.toSeq, new ProcessCommand(executable.toString, arguments), - logger + logger, ) case "none" => new BasicTestRunner(framework, classLoader, logger) } diff --git a/tests/WORKSPACE b/tests/WORKSPACE index 45d1f098d..8cd0e8dd7 100644 --- a/tests/WORKSPACE +++ b/tests/WORKSPACE @@ -127,8 +127,8 @@ load("@annex_proto//:defs.bzl", annex_proto_pinned_maven_install = "pinned_maven annex_proto_pinned_maven_install() -load("@rules_scala_annex//rules:rules_scala.bzl", "emulate_rules_scala") load("@rules_scala_annex//rules:external.bzl", "scala_import_external") +load("@rules_scala_annex//rules:rules_scala.bzl", "emulate_rules_scala") scala_import_external( name = "scalatest_2_13", diff --git a/tests/coverage/BUILD b/tests/coverage/BUILD index 282d04421..be0668c9b 100644 --- a/tests/coverage/BUILD +++ b/tests/coverage/BUILD @@ -1,5 +1,5 @@ -load("@rules_scala_annex//rules:scala.bzl", "scala_library", "scala_test") load("@rules_java//java:defs.bzl", "java_library", "java_test") +load("@rules_scala_annex//rules:scala.bzl", "scala_library", "scala_test") scala_test( name = "test-all", diff --git a/tests/dependencies/indirect/BUILD b/tests/dependencies/indirect/BUILD index 5578ddab0..b2aadefcf 100644 --- a/tests/dependencies/indirect/BUILD +++ b/tests/dependencies/indirect/BUILD @@ -1,5 +1,5 @@ -load("@rules_scala_annex//rules:scala.bzl", "scala_library") load("@rules_scala_annex//rules:providers.bzl", "reconfigure_deps_configuration") +load("@rules_scala_annex//rules:scala.bzl", "scala_library") # used_deps off reconfigure_deps_configuration( diff --git a/tests/format/scalafmt/BUILD b/tests/format/scalafmt/BUILD index 767e8e460..aee9bded2 100644 --- a/tests/format/scalafmt/BUILD +++ b/tests/format/scalafmt/BUILD @@ -1,5 +1,5 @@ -load("@rules_scala_annex//rules:scalafmt.bzl", "scala_format_test") load("@rules_scala_annex//rules:scala_with_scalafmt.bzl", "scala_binary", "scala_library", "scala_test") +load("@rules_scala_annex//rules:scalafmt.bzl", "scala_format_test") ### scala_format_test ### scala_format_test( diff --git a/tests/plugins/classpath/BUILD b/tests/plugins/classpath/BUILD index 70cbfd6b6..4181c7be6 100644 --- a/tests/plugins/classpath/BUILD +++ b/tests/plugins/classpath/BUILD @@ -1,5 +1,5 @@ -load("@rules_scala_annex//rules:scala.bzl", "scala_library") load("@rules_java//java:defs.bzl", "java_binary") +load("@rules_scala_annex//rules:scala.bzl", "scala_library") scala_library( name = "plugin-lib", diff --git a/tests/proto/BUILD b/tests/proto/BUILD index 36373f34d..953d4af7b 100644 --- a/tests/proto/BUILD +++ b/tests/proto/BUILD @@ -1,11 +1,11 @@ -load( - "@rules_scala_annex//rules:scala_proto.bzl", - "scala_proto_library", -) load( "@rules_scala_annex//rules:scala.bzl", "scala_library", ) +load( + "@rules_scala_annex//rules:scala_proto.bzl", + "scala_proto_library", +) proto_library( name = "zero_proto", diff --git a/tests/resources/reference_conf/BUILD b/tests/resources/reference_conf/BUILD index a02564ac4..b8d7be0f9 100644 --- a/tests/resources/reference_conf/BUILD +++ b/tests/resources/reference_conf/BUILD @@ -1,5 +1,5 @@ -load("@rules_scala_annex//rules:scala.bzl", "scala_library") load("@rules_java//java:defs.bzl", "java_library") +load("@rules_scala_annex//rules:scala.bzl", "scala_library") scala_library( name = "plain", diff --git a/tests/scala/scala3/BUILD b/tests/scala/scala3/BUILD index a37401655..6bfc17519 100644 --- a/tests/scala/scala3/BUILD +++ b/tests/scala/scala3/BUILD @@ -1,4 +1,4 @@ -load("@rules_scala_annex//rules:scala.bzl", "scala_library", "scala_binary") +load("@rules_scala_annex//rules:scala.bzl", "scala_binary", "scala_library") scala_library( name = "example", diff --git a/third_party/bazel/src/java_tools/buildjar/java/com/google/devtools/build/buildjar/jarhelper/BUILD b/third_party/bazel/src/java_tools/buildjar/java/com/google/devtools/build/buildjar/jarhelper/BUILD index 8a8cf017e..1192d3596 100644 --- a/third_party/bazel/src/java_tools/buildjar/java/com/google/devtools/build/buildjar/jarhelper/BUILD +++ b/third_party/bazel/src/java_tools/buildjar/java/com/google/devtools/build/buildjar/jarhelper/BUILD @@ -1,8 +1,8 @@ -licenses(["notice"]) - # Copyright 2014 The Bazel Authors. Licensed under Apache License, Version 2.0 load("@rules_java//java:defs.bzl", "java_binary", "java_library") +licenses(["notice"]) + java_library( name = "jarhelper", srcs = [ From b540e616f4be42c0e90c746c339993ba8ae2901a Mon Sep 17 00:00:00 2001 From: James Judd Date: Thu, 4 Jul 2024 21:26:30 -0600 Subject: [PATCH 15/21] Get the consistent format commit to work better Bring back our read write mappers, so things are machine independent and timestamps don't cause problems. --- .../workers/common/AnalysisUtil.scala | 9 +- .../workers/common/AnnexMapper.scala | 152 ++++++++++++++++++ .../rules_scala/workers/common/BUILD | 1 + .../workers/zinc/compile/ZincRunner.scala | 13 +- .../workers/zinc/test/TestRunner.scala | 10 +- 5 files changed, 179 insertions(+), 6 deletions(-) create mode 100644 src/main/scala/higherkindness/rules_scala/workers/common/AnnexMapper.scala diff --git a/src/main/scala/higherkindness/rules_scala/workers/common/AnalysisUtil.scala b/src/main/scala/higherkindness/rules_scala/workers/common/AnalysisUtil.scala index 97b0e7596..b2fb9f123 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/common/AnalysisUtil.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/common/AnalysisUtil.scala @@ -2,23 +2,26 @@ package higherkindness.rules_scala package workers.common import java.io.File +import java.nio.file.Paths import sbt.internal.inc.Analysis import sbt.internal.inc.consistent.ConsistentFileAnalysisStore import xsbti.compile.AnalysisStore import xsbti.compile.analysis.ReadWriteMappers object AnalysisUtil { - def getAnalysisStore(analysisStoreFile: File, debug: Boolean): AnalysisStore = { + def getAnalysisStore(analysisStoreFile: File, debug: Boolean, isIncremental: Boolean): AnalysisStore = { + val readWriteMappers = AnnexMapper.mappers(Paths.get(""), isIncremental) + if (debug) { ConsistentFileAnalysisStore.text( analysisStoreFile, - ReadWriteMappers.getEmptyMappers, + readWriteMappers, sort = true, ) } else { ConsistentFileAnalysisStore.binary( analysisStoreFile, - ReadWriteMappers.getEmptyMappers, + readWriteMappers, sort = true, ) } diff --git a/src/main/scala/higherkindness/rules_scala/workers/common/AnnexMapper.scala b/src/main/scala/higherkindness/rules_scala/workers/common/AnnexMapper.scala new file mode 100644 index 000000000..e573d9a8d --- /dev/null +++ b/src/main/scala/higherkindness/rules_scala/workers/common/AnnexMapper.scala @@ -0,0 +1,152 @@ +package higherkindness.rules_scala +package workers.common + +import com.google.devtools.build.buildjar.jarhelper.JarHelper +import java.io.{File, InputStream, OutputStream, OutputStreamWriter} +import java.nio.charset.StandardCharsets +import java.nio.file.{Files, NoSuchFileException, Path, Paths} +import java.nio.file.attribute.FileTime +import java.util +import java.util.concurrent.ConcurrentHashMap +import java.util.LinkedHashMap +import java.util.zip.{GZIPInputStream, GZIPOutputStream} +import java.util.Optional +import sbt.internal.inc.binary.converters.{ProtobufReaders, ProtobufWriters} +import sbt.internal.inc.Schema.Type.{Projection, Structure} +import sbt.internal.inc.{APIs, Analysis, FarmHash, Hash, LastModified, PlainVirtualFile, PlainVirtualFileConverter, Relations, Schema, SourceInfos, Stamp => StampImpl, Stamper, Stamps} +import sbt.internal.inc.Schema.{Access, AnalyzedClass, Annotation, AnnotationArgument, ClassDefinition, ClassDependencies, ClassLike, Companions, MethodParameter, NameHash, ParameterList, Path => SchemaPath, Qualifier, Type, TypeParameter, UsedName, UsedNames, Values} +import sbt.internal.shaded.com.google.protobuf.GeneratedMessageV3 +import sbt.io.IO +import scala.collection.immutable.TreeMap +import xsbti.compile.analysis.{GenericMapper, ReadMapper, ReadWriteMappers, Stamp, WriteMapper} +import xsbti.compile.{AnalysisContents, AnalysisStore, MiniSetup} +import scala.jdk.CollectionConverters._ +import xsbti.VirtualFileRef +import java.util.Objects + +// TODO: fix git for this file. Make it a mv to keep history. + +object AnnexMapper { + val rootPlaceholder = Paths.get("_ROOT_") + def mappers(root: Path, isIncremental: Boolean) = { + new ReadWriteMappers(new AnxReadMapper(root, isIncremental), new AnxWriteMapper(root)) + } + + /** + * Gets a reproducible/consistent stamp that we can write to the analysis file and end up with reproducible output + * across machines, jvms, builds, etc. + * + * Practically speaking, all we're doing is setting the timestamp in LastModified stamps to a constant value. + */ + final def getConsistentWriteStamp(stamp: Stamp): Stamp = { + stamp match { + case farmHash: FarmHash => farmHash + case hash: Hash => hash + case lastModified: LastModified => new LastModified(JarHelper.DEFAULT_TIMESTAMP) + case _ => throw new Exception("Unexpected Stamp type encountered when writing.") + } + } + + final def getReadStamp(file: VirtualFileRef, stamp: Stamp, isIncremental: Boolean): Stamp = { + if (isIncremental) { + getIncrementalModeReadStamp(file, stamp) + } else { + stamp + } + } + + /** + * When in incremental mode we do not want to rely on the timestamp from the AnalysisStore because we're assuming it + * was set to a constant value when written to the AnalysisStore. + * + * Instead, for any LastModified stamps, we read the file's time stamp from disk. + */ + final def getIncrementalModeReadStamp(file: VirtualFileRef, stamp: Stamp): Stamp = { + stamp match { + case farmHash: FarmHash => farmHash + case hash: Hash => hash + case lastModified: LastModified => { + Stamper.forLastModifiedP(PlainVirtualFileConverter.converter.toPath(file)) + } + case _ => throw new Exception("Unexpected Stamp type encountered when reading") + } + } +} + +final class AnxWriteMapper(root: Path) extends WriteMapper { + private[this] val rootAbs = root.toAbsolutePath + + private[this] def mapFile(path: Path): Path = { + if (path.startsWith(rootAbs)) { + AnnexMapper.rootPlaceholder.resolve(rootAbs.relativize(path)) + } else { + path + } + } + + private[this] def mapFile(virtualFileRef: VirtualFileRef): Path = { + mapFile(PlainVirtualFileConverter.converter.toPath(virtualFileRef)) + } + + override def mapSourceFile(sourceFile: VirtualFileRef): VirtualFileRef = PlainVirtualFile(mapFile(sourceFile)) + override def mapBinaryFile(binaryFile: VirtualFileRef): VirtualFileRef = PlainVirtualFile(mapFile(binaryFile)) + override def mapProductFile(productFile: VirtualFileRef): VirtualFileRef = PlainVirtualFile(mapFile(productFile)) + + override def mapClasspathEntry(classpathEntry: Path): Path = mapFile(classpathEntry) + override def mapJavacOption(javacOption: String): String = javacOption + override def mapScalacOption(scalacOption: String): String = scalacOption + + override def mapOutputDir(outputDir: Path): Path = mapFile(outputDir) + override def mapSourceDir(sourceDir: Path): Path = mapFile(sourceDir) + + override def mapSourceStamp(file: VirtualFileRef, sourceStamp: Stamp): Stamp = { + AnnexMapper.getConsistentWriteStamp(sourceStamp) + } + override def mapBinaryStamp(file: VirtualFileRef, binaryStamp: Stamp): Stamp = { + AnnexMapper.getConsistentWriteStamp(binaryStamp) + } + override def mapProductStamp(file: VirtualFileRef, productStamp: Stamp): Stamp = { + AnnexMapper.getConsistentWriteStamp(productStamp) + } + + override def mapMiniSetup(miniSetup: MiniSetup): MiniSetup = miniSetup +} + +final class AnxReadMapper(root: Path, isIncremental: Boolean) extends ReadMapper { + private[this] val rootAbs = root.toAbsolutePath + + private[this] def mapFile(virtualFileRef: VirtualFileRef): Path = { + mapFile(PlainVirtualFileConverter.converter.toPath(virtualFileRef)) + } + + private[this] def mapFile(path: Path): Path = { + if (path.startsWith(AnnexMapper.rootPlaceholder)) { + rootAbs.resolve(AnnexMapper.rootPlaceholder.relativize(path)) + } else { + path + } + } + + override def mapSourceFile(sourceFile: VirtualFileRef): VirtualFileRef = PlainVirtualFile(mapFile(sourceFile)) + override def mapBinaryFile(binaryFile: VirtualFileRef): VirtualFileRef = PlainVirtualFile(mapFile(binaryFile)) + override def mapProductFile(productFile: VirtualFileRef): VirtualFileRef = PlainVirtualFile(mapFile(productFile)) + + override def mapClasspathEntry(classpathEntry: Path): Path = mapFile(classpathEntry) + override def mapJavacOption(javacOption: String): String = javacOption + override def mapScalacOption(scalacOption: String): String = scalacOption + + override def mapOutputDir(outputDir: Path): Path = mapFile(outputDir) + override def mapSourceDir(sourceDir: Path): Path = mapFile(sourceDir) + + override def mapSourceStamp(file: VirtualFileRef, sourceStamp: Stamp): Stamp = { + AnnexMapper.getReadStamp(file, sourceStamp, isIncremental) + } + override def mapBinaryStamp(file: VirtualFileRef, binaryStamp: Stamp): Stamp = { + AnnexMapper.getReadStamp(file, binaryStamp, isIncremental) + } + override def mapProductStamp(file: VirtualFileRef, productStamp: Stamp): Stamp = { + AnnexMapper.getReadStamp(file, productStamp, isIncremental) + } + + override def mapMiniSetup(miniSetup: MiniSetup): MiniSetup = miniSetup +} diff --git a/src/main/scala/higherkindness/rules_scala/workers/common/BUILD b/src/main/scala/higherkindness/rules_scala/workers/common/BUILD index 74635ee1b..973bc7a1d 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/common/BUILD +++ b/src/main/scala/higherkindness/rules_scala/workers/common/BUILD @@ -8,6 +8,7 @@ scala_library( visibility = ["//visibility:public"], deps = [ "//src/main/scala/higherkindness/rules_scala/common/args", + "//third_party/bazel/src/java_tools/buildjar/java/com/google/devtools/build/buildjar/jarhelper", "@annex//:net_sourceforge_argparse4j_argparse4j", "@annex//:org_scala_sbt_zinc_2_13", ], diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala index c4b6b4b5d..ac3277ea8 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala @@ -141,7 +141,7 @@ object ZincRunner extends WorkerMain[Namespace] { val debug = namespace.getBoolean("debug") val analysisStoreFile = namespace.get[File]("output_analysis_store") - val analysisStore: AnalysisStore = AnalysisUtil.getAnalysisStore(analysisStoreFile, debug) + val analysisStore: AnalysisStore = AnalysisUtil.getAnalysisStore(analysisStoreFile, debug, usePersistence) val persistence = persistenceDir.fold[ZincPersistence](NullPersistence) { rootDir => val path = namespace.getString("label").replaceAll("^/+", "").replaceAll(raw"[^\w/]", "_") @@ -211,7 +211,13 @@ object ZincRunner extends WorkerMain[Namespace] { depMap .get(file) .map { analysisStorePath => - val analysis = AnalysisUtil.getAnalysis(AnalysisUtil.getAnalysisStore(analysisStorePath.toFile, debug)) + val analysis = AnalysisUtil.getAnalysis( + AnalysisUtil.getAnalysisStore( + analysisStorePath.toFile, + debug, + isIncremental = usePersistence, + ), + ) Analysis.Empty.copy( apis = analysis.apis, relations = analysis.relations, @@ -333,6 +339,9 @@ final class AnxPerClasspathEntryLookup(analyses: Path => Option[CompileAnalysis] /** * We create this to deterministically set the hash code of directories otherwise they get set to the * System.identityHashCode() of an object created during compilation. That results in non-determinism. + * + * TODO: Get rid of this once the upstream fix is released: + * https://github.com/sbt/zinc/commit/b4db1476d7fdb2c530a97c543ec9710c13ac58e3 */ final class DeterministicDirectoryHashExternalHooks extends ExternalHooks.Lookup { // My understanding is that setting all these to None is the same as the diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestRunner.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestRunner.scala index 75e56a6fc..cb650e0ec 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestRunner.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/test/TestRunner.scala @@ -126,7 +126,15 @@ object TestRunner { val analysisStoreFile = runPath.resolve(testNamespace.get[File]("analysis_store").toPath) val apis = try { - AnalysisUtil.getAnalysis(AnalysisUtil.getAnalysisStore(analysisStoreFile.toFile, false)).apis + AnalysisUtil + .getAnalysis( + AnalysisUtil.getAnalysisStore( + analysisStoreFile.toFile, + debug = false, + isIncremental = false, + ), + ) + .apis } catch { case NonFatal(e) => throw new Exception(s"Failed to load APIs from analysis store: $analysisStoreFile", e) } From eb2991a3c60e1d4aee965468f9433752dd4ea271 Mon Sep 17 00:00:00 2001 From: James Judd Date: Fri, 5 Jul 2024 04:53:09 -0600 Subject: [PATCH 16/21] Temporarily add text analysis as additional output to find reproducibility problems Consistent text format deserialization has a problem, so that's why I'm adding the additional output for now. Will remove it once I've figured out what is going on. --- rules/private/phases/phase_zinc_compile.bzl | 3 ++- .../rules_scala/workers/zinc/compile/ZincRunner.scala | 8 ++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/rules/private/phases/phase_zinc_compile.bzl b/rules/private/phases/phase_zinc_compile.bzl index 8eca8d5b1..23138af13 100644 --- a/rules/private/phases/phase_zinc_compile.bzl +++ b/rules/private/phases/phase_zinc_compile.bzl @@ -24,6 +24,7 @@ def phase_zinc_compile(ctx, g): zinc_configuration = ctx.attr.scala[_ZincConfiguration] analysis_store = ctx.actions.declare_file("{}/analysis_store.gz".format(ctx.label.name)) + analysis_store_text = ctx.actions.declare_file("{}/analysis_store.text.gz".format(ctx.label.name)) mains_file = ctx.actions.declare_file("{}.jar.mains.txt".format(ctx.label.name)) used = ctx.actions.declare_file("{}/deps_used.txt".format(ctx.label.name)) tmp = ctx.actions.declare_directory("{}/tmp".format(ctx.label.name)) @@ -72,7 +73,7 @@ def phase_zinc_compile(ctx, g): ] + [zinc.deps_files for zinc in zincs], ) - outputs = [g.classpaths.jar, mains_file, analysis_store, used, tmp] + outputs = [g.classpaths.jar, mains_file, analysis_store, analysis_store_text, used, tmp] execution_requirements_tags = { "supports-multiplex-workers": "1", diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala index ac3277ea8..d850855a2 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala @@ -273,8 +273,16 @@ object ZincRunner extends WorkerMain[Namespace] { } // create analyses + val path = analysisStoreFile.getCanonicalPath() + val analysisStoreText = AnalysisUtil.getAnalysisStore( + new File(path.substring(0, path.length() - 3) + ".text.gz"), + true, + usePersistence, + ) + analysisStoreText.set(AnalysisContents.create(compileResult.analysis, compileResult.setup)) analysisStore.set(AnalysisContents.create(compileResult.analysis, compileResult.setup)) + // create used deps val resultAnalysis = compileResult.analysis.asInstanceOf[Analysis] val usedDeps = From 465604992f6593051c5ef61472d5495beff0c451 Mon Sep 17 00:00:00 2001 From: James Judd Date: Sat, 6 Jul 2024 17:35:59 -0600 Subject: [PATCH 17/21] Replace the annex_3 artifact tree with annex annex_3 is unnecessary and using it can cause multiple Scala 2 library jars to end up on the classpath --- README.md | 2 +- WORKSPACE | 12 +- annex_install.json | 450 +++++++++++++----- docs/newdocs/scala_versions.md | 40 +- rules/scala/workspace.bzl | 44 +- rules/scala/workspace_2_12.bzl | 11 +- rules/scala/workspace_3.bzl | 26 - scripts/gen-deps.sh | 1 - src/main/scala/BUILD | 78 ++- .../ClassLoaders.scala} | 0 tests/WORKSPACE | 15 +- tests/compile/log_level/BUILD | 2 +- tests/dependencies/indirect/BUILD | 6 +- tests/plugins/classpath/BUILD | 4 +- tests/plugins/kind-projector/BUILD | 19 +- tests/plugins/macros/BUILD | 10 +- tests/providers/BUILD | 20 +- tests/scala/BUILD | 127 ++--- 18 files changed, 539 insertions(+), 328 deletions(-) delete mode 100644 rules/scala/workspace_3.bzl rename src/main/scala/higherkindness/rules_scala/common/{sbt-testing/CLassLoaders.scala => classloaders/ClassLoaders.scala} (100%) diff --git a/README.md b/README.md index 7f2acf136..a19717c82 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,7 @@ protobuf_deps() # Specify the scala compiler we wish to use; in this case, we'll use the default one specified in rules_scala_annex bind( name = "default_scala", - actual = "@rules_scala_annex//src/main/scala:zinc_2_13_14", + actual = "@rules_scala_annex//src/main/scala:zinc_2_13", ) ``` diff --git a/WORKSPACE b/WORKSPACE index 135caaeae..87b56e5a2 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -112,7 +112,7 @@ load("@rules_jvm_external//:setup.bzl", "rules_jvm_external_setup") rules_jvm_external_setup() -# Scala +# Scala 2_13 and 3 load("//rules/scala:workspace.bzl", "scala_register_toolchains", "scala_repositories") scala_repositories() @@ -133,16 +133,6 @@ load("@annex_2_12//:defs.bzl", annex_2_12_pinned_maven_install = "pinned_maven_i annex_2_12_pinned_maven_install() -# Scala 3 - -load("//rules/scala:workspace_3.bzl", "scala_3_repositories") - -scala_3_repositories() - -load("@annex_3//:defs.bzl", annex_3_pinned_maven_install = "pinned_maven_install") - -annex_3_pinned_maven_install() - # Scala fmt load("//rules/scalafmt:workspace.bzl", "scalafmt_default_config", "scalafmt_repositories") diff --git a/annex_install.json b/annex_install.json index 05314822e..0bbcffb5d 100644 --- a/annex_install.json +++ b/annex_install.json @@ -1,8 +1,8 @@ { "dependency_tree": { "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": -1383329296, - "__RESOLVED_ARTIFACTS_HASH": 1567561523, + "__INPUT_ARTIFACTS_HASH": -1048787775, + "__RESOLVED_ARTIFACTS_HASH": -59561227, "conflict_resolution": {}, "dependencies": [ { @@ -4287,41 +4287,76 @@ "url": "https://repo.maven.apache.org/maven2/org/jctools/jctools-core/2.0.1/jctools-core-2.0.1-sources.jar" }, { - "coord": "org.jline:jline-native:3.24.1", + "coord": "org.jline:jline-native:3.25.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-native/3.24.1/jline-native-3.24.1.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-native/3.25.1/jline-native-3.25.1.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/jline/jline-native/3.24.1/jline-native-3.24.1.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-native/3.24.1/jline-native-3.24.1.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-native/3.24.1/jline-native-3.24.1.jar" + "https://repo.maven.apache.org/maven2/org/jline/jline-native/3.25.1/jline-native-3.25.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-native/3.25.1/jline-native-3.25.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-native/3.25.1/jline-native-3.25.1.jar" ], - "sha256": "4337237502d3b647b981b007e14e75d79ec51497f52e9871baf6e2c6c9dfbd17", - "url": "https://repo.maven.apache.org/maven2/org/jline/jline-native/3.24.1/jline-native-3.24.1.jar" + "sha256": "42d5bbe1f546dea248b8c901da7deb9943f76290379552923c9763495bb9f172", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-native/3.25.1/jline-native-3.25.1.jar" }, { - "coord": "org.jline:jline-native:jar:sources:3.24.1", + "coord": "org.jline:jline-native:jar:sources:3.25.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-native/3.24.1/jline-native-3.24.1-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-native/3.25.1/jline-native-3.25.1-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/jline/jline-native/3.24.1/jline-native-3.24.1-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-native/3.24.1/jline-native-3.24.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-native/3.24.1/jline-native-3.24.1-sources.jar" + "https://repo.maven.apache.org/maven2/org/jline/jline-native/3.25.1/jline-native-3.25.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-native/3.25.1/jline-native-3.25.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-native/3.25.1/jline-native-3.25.1-sources.jar" ], - "sha256": "32f10b4233f529e9741650f7d652be92d07e8d2278b5af3fc4a19b460fabcc14", - "url": "https://repo.maven.apache.org/maven2/org/jline/jline-native/3.24.1/jline-native-3.24.1-sources.jar" + "sha256": "a3026f0bfe678502ac7f37dba48563d18f1640d585c164f921adbe01fa3152fb", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-native/3.25.1/jline-native-3.25.1-sources.jar" + }, + { + "coord": "org.jline:jline-reader:3.25.1", + "dependencies": [ + "org.jline:jline-terminal:3.25.1", + "org.jline:jline-native:3.25.1" + ], + "directDependencies": [ + "org.jline:jline-terminal:3.25.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-reader/3.25.1/jline-reader-3.25.1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline-reader/3.25.1/jline-reader-3.25.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-reader/3.25.1/jline-reader-3.25.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-reader/3.25.1/jline-reader-3.25.1.jar" + ], + "sha256": "26333a275de502adf1dd9e6ea50aa0b4021412c71490df9ed5e88a648886ee89", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-reader/3.25.1/jline-reader-3.25.1.jar" + }, + { + "coord": "org.jline:jline-reader:jar:sources:3.25.1", + "dependencies": [ + "org.jline:jline-terminal:jar:sources:3.25.1", + "org.jline:jline-native:jar:sources:3.25.1" + ], + "directDependencies": [ + "org.jline:jline-terminal:jar:sources:3.25.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-reader/3.25.1/jline-reader-3.25.1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/jline/jline-reader/3.25.1/jline-reader-3.25.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-reader/3.25.1/jline-reader-3.25.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-reader/3.25.1/jline-reader-3.25.1-sources.jar" + ], + "sha256": "b5164bad15bb8d29566566b12cf4be95b252e18d3056ef96e70b934dbc3872cd", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-reader/3.25.1/jline-reader-3.25.1-sources.jar" }, { "coord": "org.jline:jline-terminal-jansi:3.24.1", "dependencies": [ - "org.jline:jline-terminal:3.24.1", - "org.jline:jline-native:3.24.1", + "org.jline:jline-terminal:3.25.1", "org.fusesource.jansi:jansi:2.4.1" ], "directDependencies": [ "org.fusesource.jansi:jansi:2.4.1", - "org.jline:jline-terminal:3.24.1" + "org.jline:jline-terminal:3.25.1" ], "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal-jansi/3.24.1/jline-terminal-jansi-3.24.1.jar", "mirror_urls": [ @@ -4336,12 +4371,11 @@ "coord": "org.jline:jline-terminal-jansi:jar:sources:3.24.1", "dependencies": [ "org.fusesource.jansi:jansi:jar:sources:2.4.1", - "org.jline:jline-terminal:jar:sources:3.24.1", - "org.jline:jline-native:jar:sources:3.24.1" + "org.jline:jline-terminal:jar:sources:3.25.1" ], "directDependencies": [ "org.fusesource.jansi:jansi:jar:sources:2.4.1", - "org.jline:jline-terminal:jar:sources:3.24.1" + "org.jline:jline-terminal:jar:sources:3.25.1" ], "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal-jansi/3.24.1/jline-terminal-jansi-3.24.1-sources.jar", "mirror_urls": [ @@ -4353,78 +4387,78 @@ "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jansi/3.24.1/jline-terminal-jansi-3.24.1-sources.jar" }, { - "coord": "org.jline:jline-terminal-jna:3.24.1", + "coord": "org.jline:jline-terminal-jna:3.25.1", "dependencies": [ - "org.jline:jline-terminal:3.24.1", - "org.jline:jline-native:3.24.1", + "org.jline:jline-terminal:3.25.1", + "org.jline:jline-native:3.25.1", "net.java.dev.jna:jna:5.14.0" ], "directDependencies": [ "net.java.dev.jna:jna:5.14.0", - "org.jline:jline-terminal:3.24.1" + "org.jline:jline-terminal:3.25.1" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.24.1/jline-terminal-jna-3.24.1.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.25.1/jline-terminal-jna-3.25.1.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.24.1/jline-terminal-jna-3.24.1.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal-jna/3.24.1/jline-terminal-jna-3.24.1.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.24.1/jline-terminal-jna-3.24.1.jar" + "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.25.1/jline-terminal-jna-3.25.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal-jna/3.25.1/jline-terminal-jna-3.25.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.25.1/jline-terminal-jna-3.25.1.jar" ], - "sha256": "ec59d38160b0faa720472ff3f168564d22af4d991316ba30bffe2c163ae4040c", - "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.24.1/jline-terminal-jna-3.24.1.jar" + "sha256": "58ca9d719c373206af15775ee3cd5f268136ea0d0c4e009c3e96a6d4612d5c66", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.25.1/jline-terminal-jna-3.25.1.jar" }, { - "coord": "org.jline:jline-terminal-jna:jar:sources:3.24.1", + "coord": "org.jline:jline-terminal-jna:jar:sources:3.25.1", "dependencies": [ - "org.jline:jline-terminal:jar:sources:3.24.1", - "org.jline:jline-native:jar:sources:3.24.1", + "org.jline:jline-terminal:jar:sources:3.25.1", + "org.jline:jline-native:jar:sources:3.25.1", "net.java.dev.jna:jna:jar:sources:5.14.0" ], "directDependencies": [ "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.jline:jline-terminal:jar:sources:3.24.1" + "org.jline:jline-terminal:jar:sources:3.25.1" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.24.1/jline-terminal-jna-3.24.1-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.25.1/jline-terminal-jna-3.25.1-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.24.1/jline-terminal-jna-3.24.1-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal-jna/3.24.1/jline-terminal-jna-3.24.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.24.1/jline-terminal-jna-3.24.1-sources.jar" + "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.25.1/jline-terminal-jna-3.25.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal-jna/3.25.1/jline-terminal-jna-3.25.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.25.1/jline-terminal-jna-3.25.1-sources.jar" ], - "sha256": "d83c3350fbd261f6540d9557585cde1d1395b23922173f9898ecb6aefcd054ca", - "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.24.1/jline-terminal-jna-3.24.1-sources.jar" + "sha256": "fe03ffce7be95b6e1aa7e46ddc65b57c4fa4931b04ed65f64e590043c6eabfc5", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal-jna/3.25.1/jline-terminal-jna-3.25.1-sources.jar" }, { - "coord": "org.jline:jline-terminal:3.24.1", + "coord": "org.jline:jline-terminal:3.25.1", "dependencies": [ - "org.jline:jline-native:3.24.1" + "org.jline:jline-native:3.25.1" ], "directDependencies": [ - "org.jline:jline-native:3.24.1" + "org.jline:jline-native:3.25.1" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal/3.24.1/jline-terminal-3.24.1.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal/3.25.1/jline-terminal-3.25.1.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.24.1/jline-terminal-3.24.1.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal/3.24.1/jline-terminal-3.24.1.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal/3.24.1/jline-terminal-3.24.1.jar" + "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.25.1/jline-terminal-3.25.1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal/3.25.1/jline-terminal-3.25.1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal/3.25.1/jline-terminal-3.25.1.jar" ], - "sha256": "d9e32b47e134718eec9adcfaebf838130a163999ced820fc32795d4420f159e2", - "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.24.1/jline-terminal-3.24.1.jar" + "sha256": "c0f5d70901255da66a94e59778b265d19f9308342578e34c88fc92d1b0c65fef", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.25.1/jline-terminal-3.25.1.jar" }, { - "coord": "org.jline:jline-terminal:jar:sources:3.24.1", + "coord": "org.jline:jline-terminal:jar:sources:3.25.1", "dependencies": [ - "org.jline:jline-native:jar:sources:3.24.1" + "org.jline:jline-native:jar:sources:3.25.1" ], "directDependencies": [ - "org.jline:jline-native:jar:sources:3.24.1" + "org.jline:jline-native:jar:sources:3.25.1" ], - "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal/3.24.1/jline-terminal-3.24.1-sources.jar", + "file": "v1/https/repo.maven.apache.org/maven2/org/jline/jline-terminal/3.25.1/jline-terminal-3.25.1-sources.jar", "mirror_urls": [ - "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.24.1/jline-terminal-3.24.1-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal/3.24.1/jline-terminal-3.24.1-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal/3.24.1/jline-terminal-3.24.1-sources.jar" + "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.25.1/jline-terminal-3.25.1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/jline/jline-terminal/3.25.1/jline-terminal-3.25.1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/jline/jline-terminal/3.25.1/jline-terminal-3.25.1-sources.jar" ], - "sha256": "bd361fd088ec3b0bbbbab3744c73689129278d368949aa6606a5f5a60314ef87", - "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.24.1/jline-terminal-3.24.1-sources.jar" + "sha256": "bee7c4d6b7c19365719d56f380c0fe96e0ddc584fa059104afe919e5b3be1d90", + "url": "https://repo.maven.apache.org/maven2/org/jline/jline-terminal/3.25.1/jline-terminal-3.25.1-sources.jar" }, { "coord": "org.jline:jline:3.25.1", @@ -4504,6 +4538,32 @@ "sha256": "7e673b0c8b0ac51bdef8655cacf7804fb9791c47e71161a36c94738d55eefea8", "url": "https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.0/reactive-streams-1.0.0-sources.jar" }, + { + "coord": "org.scala-lang.modules:scala-asm:9.6.0-scala-1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-asm/9.6.0-scala-1/scala-asm-9.6.0-scala-1.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-asm/9.6.0-scala-1/scala-asm-9.6.0-scala-1.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-asm/9.6.0-scala-1/scala-asm-9.6.0-scala-1.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-asm/9.6.0-scala-1/scala-asm-9.6.0-scala-1.jar" + ], + "sha256": "bf16f8b69e89cadab550bce266a052780af7f1eb29dd1c04c3bd014113752c12", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-asm/9.6.0-scala-1/scala-asm-9.6.0-scala-1.jar" + }, + { + "coord": "org.scala-lang.modules:scala-asm:jar:sources:9.6.0-scala-1", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-asm/9.6.0-scala-1/scala-asm-9.6.0-scala-1-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-asm/9.6.0-scala-1/scala-asm-9.6.0-scala-1-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-asm/9.6.0-scala-1/scala-asm-9.6.0-scala-1-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-asm/9.6.0-scala-1/scala-asm-9.6.0-scala-1-sources.jar" + ], + "sha256": "6a58718b53a6bd8f1b1e22b2bf7ef9b88eccbbe5e0fc223847b0343100d4a45a", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-asm/9.6.0-scala-1/scala-asm-9.6.0-scala-1-sources.jar" + }, { "coord": "org.scala-lang.modules:scala-collection-compat_2.13:2.12.0", "dependencies": [ @@ -4818,6 +4878,196 @@ "sha256": "94bf451e612d9460dbc7cee4beed84a7e5dd7b86bcb901ee8c78f7cf5e035e01", "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.14/scala-reflect-2.13.14-sources.jar" }, + { + "coord": "org.scala-lang:scala3-compiler_3:3.4.2", + "dependencies": [ + "org.jline:jline-terminal-jna:3.25.1", + "org.scala-lang:scala3-interfaces:3.4.2", + "net.java.dev.jna:jna:5.14.0", + "org.jline:jline-terminal:3.25.1", + "org.scala-lang:scala3-library_3:3.4.2", + "org.scala-sbt:compiler-interface:1.10.0", + "org.scala-lang.modules:scala-asm:9.6.0-scala-1", + "org.jline:jline-native:3.25.1", + "org.scala-lang:tasty-core_3:3.4.2", + "org.jline:jline-reader:3.25.1", + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.jline:jline-terminal-jna:3.25.1", + "org.scala-lang:scala3-interfaces:3.4.2", + "org.jline:jline-terminal:3.25.1", + "org.scala-lang:scala3-library_3:3.4.2", + "org.scala-sbt:compiler-interface:1.10.0", + "org.scala-lang.modules:scala-asm:9.6.0-scala-1", + "org.scala-lang:tasty-core_3:3.4.2", + "org.jline:jline-reader:3.25.1" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala3-compiler_3/3.4.2/scala3-compiler_3-3.4.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-compiler_3/3.4.2/scala3-compiler_3-3.4.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala3-compiler_3/3.4.2/scala3-compiler_3-3.4.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.4.2/scala3-compiler_3-3.4.2.jar" + ], + "sha256": "c50f6089b1d55b0b7f9fbb2ef9d69f966b07c734d9b96e2b45b5b41b2d1bdd45", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-compiler_3/3.4.2/scala3-compiler_3-3.4.2.jar" + }, + { + "coord": "org.scala-lang:scala3-compiler_3:jar:sources:3.4.2", + "dependencies": [ + "org.scala-lang:tasty-core_3:jar:sources:3.4.2", + "org.scala-lang:scala3-library_3:jar:sources:3.4.2", + "org.scala-lang.modules:scala-asm:jar:sources:9.6.0-scala-1", + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala3-interfaces:jar:sources:3.4.2", + "org.jline:jline-terminal:jar:sources:3.25.1", + "org.jline:jline-terminal-jna:jar:sources:3.25.1", + "org.jline:jline-native:jar:sources:3.25.1", + "net.java.dev.jna:jna:jar:sources:5.14.0", + "org.jline:jline-reader:jar:sources:3.25.1", + "org.scala-sbt:compiler-interface:jar:sources:1.10.0" + ], + "directDependencies": [ + "org.scala-lang:tasty-core_3:jar:sources:3.4.2", + "org.scala-lang:scala3-library_3:jar:sources:3.4.2", + "org.scala-lang.modules:scala-asm:jar:sources:9.6.0-scala-1", + "org.scala-lang:scala3-interfaces:jar:sources:3.4.2", + "org.jline:jline-terminal:jar:sources:3.25.1", + "org.jline:jline-terminal-jna:jar:sources:3.25.1", + "org.jline:jline-reader:jar:sources:3.25.1", + "org.scala-sbt:compiler-interface:jar:sources:1.10.0" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala3-compiler_3/3.4.2/scala3-compiler_3-3.4.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-compiler_3/3.4.2/scala3-compiler_3-3.4.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala3-compiler_3/3.4.2/scala3-compiler_3-3.4.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.4.2/scala3-compiler_3-3.4.2-sources.jar" + ], + "sha256": "e887ce463f9fe65b732bc26af1462b8ab7097e8dfbc582ca89823a8cc5bf383e", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-compiler_3/3.4.2/scala3-compiler_3-3.4.2-sources.jar" + }, + { + "coord": "org.scala-lang:scala3-interfaces:3.4.2", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala3-interfaces/3.4.2/scala3-interfaces-3.4.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-interfaces/3.4.2/scala3-interfaces-3.4.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala3-interfaces/3.4.2/scala3-interfaces-3.4.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala3-interfaces/3.4.2/scala3-interfaces-3.4.2.jar" + ], + "sha256": "3907de290b0e38070f5b5e5598d08d5f302ad0ef9014f7a690ca8e90946ddda3", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-interfaces/3.4.2/scala3-interfaces-3.4.2.jar" + }, + { + "coord": "org.scala-lang:scala3-interfaces:jar:sources:3.4.2", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala3-interfaces/3.4.2/scala3-interfaces-3.4.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-interfaces/3.4.2/scala3-interfaces-3.4.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala3-interfaces/3.4.2/scala3-interfaces-3.4.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala3-interfaces/3.4.2/scala3-interfaces-3.4.2-sources.jar" + ], + "sha256": "d0bc8086b14a247ed50f56c6e09f9563b907b10a7b2d90b493eed5eb7a5df1c4", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-interfaces/3.4.2/scala3-interfaces-3.4.2-sources.jar" + }, + { + "coord": "org.scala-lang:scala3-library_3:3.4.2", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala3-library_3/3.4.2/scala3-library_3-3.4.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-library_3/3.4.2/scala3-library_3-3.4.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala3-library_3/3.4.2/scala3-library_3-3.4.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala3-library_3/3.4.2/scala3-library_3-3.4.2.jar" + ], + "sha256": "5d8a8535e11d9dc52400cca0bc1d0edfe9385f15af5710c454ce8ab0e62783a0", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-library_3/3.4.2/scala3-library_3-3.4.2.jar" + }, + { + "coord": "org.scala-lang:scala3-library_3:jar:sources:3.4.2", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "directDependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala3-library_3/3.4.2/scala3-library_3-3.4.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-library_3/3.4.2/scala3-library_3-3.4.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala3-library_3/3.4.2/scala3-library_3-3.4.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala3-library_3/3.4.2/scala3-library_3-3.4.2-sources.jar" + ], + "sha256": "9780c029947dfb9d8473d9e184185d83e11fe3a7da4578d937decd56b8818987", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-library_3/3.4.2/scala3-library_3-3.4.2-sources.jar" + }, + { + "coord": "org.scala-lang:scala3-sbt-bridge:3.4.2", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala3-sbt-bridge/3.4.2/scala3-sbt-bridge-3.4.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-sbt-bridge/3.4.2/scala3-sbt-bridge-3.4.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala3-sbt-bridge/3.4.2/scala3-sbt-bridge-3.4.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala3-sbt-bridge/3.4.2/scala3-sbt-bridge-3.4.2.jar" + ], + "sha256": "76ae65d99f14e131bd271ac22f805fbb8a39338a95e3fb38fd480fbca01964fe", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-sbt-bridge/3.4.2/scala3-sbt-bridge-3.4.2.jar" + }, + { + "coord": "org.scala-lang:scala3-sbt-bridge:jar:sources:3.4.2", + "dependencies": [], + "directDependencies": [], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala3-sbt-bridge/3.4.2/scala3-sbt-bridge-3.4.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-sbt-bridge/3.4.2/scala3-sbt-bridge-3.4.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala3-sbt-bridge/3.4.2/scala3-sbt-bridge-3.4.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala3-sbt-bridge/3.4.2/scala3-sbt-bridge-3.4.2-sources.jar" + ], + "sha256": "32e4085415e70046fb70b9e05492dc551ea32e47d2df1890611298f91bacec5e", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala3-sbt-bridge/3.4.2/scala3-sbt-bridge-3.4.2-sources.jar" + }, + { + "coord": "org.scala-lang:tasty-core_3:3.4.2", + "dependencies": [ + "org.scala-lang:scala-library:2.13.14", + "org.scala-lang:scala3-library_3:3.4.2" + ], + "directDependencies": [ + "org.scala-lang:scala3-library_3:3.4.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/tasty-core_3/3.4.2/tasty-core_3-3.4.2.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/tasty-core_3/3.4.2/tasty-core_3-3.4.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/tasty-core_3/3.4.2/tasty-core_3-3.4.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/tasty-core_3/3.4.2/tasty-core_3-3.4.2.jar" + ], + "sha256": "3697f3a858c594c5022f2f7751504c069a384b92b4e093e9742bbaa627e0c10f", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/tasty-core_3/3.4.2/tasty-core_3-3.4.2.jar" + }, + { + "coord": "org.scala-lang:tasty-core_3:jar:sources:3.4.2", + "dependencies": [ + "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.scala-lang:scala3-library_3:jar:sources:3.4.2" + ], + "directDependencies": [ + "org.scala-lang:scala3-library_3:jar:sources:3.4.2" + ], + "file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/tasty-core_3/3.4.2/tasty-core_3-3.4.2-sources.jar", + "mirror_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/tasty-core_3/3.4.2/tasty-core_3-3.4.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/tasty-core_3/3.4.2/tasty-core_3-3.4.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/tasty-core_3/3.4.2/tasty-core_3-3.4.2-sources.jar" + ], + "sha256": "24541ecf51853f3226acd3bfa9a3deaf4d3604fc19f1a1945febcc73f82ca800", + "url": "https://repo.maven.apache.org/maven2/org/scala-lang/tasty-core_3/3.4.2/tasty-core_3-3.4.2-sources.jar" + }, { "coord": "org.scala-sbt.ivy:ivy:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd", "dependencies": [], @@ -5740,17 +5990,17 @@ "org.scala-lang:scala-reflect:2.13.14", "com.lmax:disruptor:3.4.2", "org.scala-sbt:util-interface:1.10.0", - "org.jline:jline-terminal:3.24.1", + "org.jline:jline-terminal-jna:3.25.1", "org.fusesource.jansi:jansi:2.4.1", "net.java.dev.jna:jna:5.14.0", "com.swoval:file-tree-views:2.1.12", + "org.jline:jline-terminal:3.25.1", "org.scala-sbt:core-macros_2.13:1.10.0", "org.jline:jline-terminal-jansi:3.24.1", "org.scala-sbt:collections_2.13:1.10.0", "org.apache.logging.log4j:log4j-api:2.17.1", "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", - "org.jline:jline-native:3.24.1", "org.scala-lang:scala-compiler:2.13.14", "net.java.dev.jna:jna-platform:5.13.0", "org.scala-sbt.jline:jline:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", @@ -5759,7 +6009,6 @@ "org.scala-lang:scala-library:2.13.14", "org.apache.logging.log4j:log4j-core:2.17.1", "org.scala-sbt:io_2.13:1.10.0", - "org.jline:jline-terminal-jna:3.24.1", "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0" ], @@ -5767,7 +6016,8 @@ "org.scala-lang:scala-reflect:2.13.14", "com.lmax:disruptor:3.4.2", "org.scala-sbt:util-interface:1.10.0", - "org.jline:jline-terminal:3.24.1", + "org.jline:jline-terminal-jna:3.25.1", + "org.jline:jline-terminal:3.25.1", "org.scala-sbt:core-macros_2.13:1.10.0", "org.jline:jline-terminal-jansi:3.24.1", "org.scala-sbt:collections_2.13:1.10.0", @@ -5777,8 +6027,7 @@ "com.eed3si9n:sjson-new-core_2.13:0.9.1", "org.scala-lang:scala-library:2.13.14", "org.apache.logging.log4j:log4j-core:2.17.1", - "org.scala-sbt:io_2.13:1.10.0", - "org.jline:jline-terminal-jna:3.24.1" + "org.scala-sbt:io_2.13:1.10.0" ], "file": "v1/https/repo.maven.apache.org/maven2/org/scala-sbt/util-logging_2.13/1.10.0/util-logging_2.13-1.10.0.jar", "mirror_urls": [ @@ -5798,14 +6047,13 @@ "org.scala-lang:scala-library:jar:sources:2.13.14", "net.java.dev.jna:jna-platform:jar:sources:5.13.0", "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", - "org.jline:jline-native:jar:sources:3.24.1", + "org.jline:jline-terminal:jar:sources:3.25.1", "org.scala-sbt:util-interface:jar:sources:1.10.0", "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", "com.lmax:disruptor:jar:sources:3.4.2", + "org.jline:jline-terminal-jna:jar:sources:3.25.1", "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.jline:jline-terminal-jna:jar:sources:3.24.1", "org.jline:jline-terminal-jansi:jar:sources:3.24.1", - "org.jline:jline-terminal:jar:sources:3.24.1", "com.swoval:file-tree-views:jar:sources:2.1.12", "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", "org.scala-lang:scala-reflect:jar:sources:2.13.14", @@ -5823,11 +6071,11 @@ "com.eed3si9n:sjson-new-scalajson_2.13:jar:sources:0.9.1", "org.scala-sbt:io_2.13:jar:sources:1.10.0", "org.scala-lang:scala-library:jar:sources:2.13.14", + "org.jline:jline-terminal:jar:sources:3.25.1", "org.scala-sbt:util-interface:jar:sources:1.10.0", "com.lmax:disruptor:jar:sources:3.4.2", - "org.jline:jline-terminal-jna:jar:sources:3.24.1", + "org.jline:jline-terminal-jna:jar:sources:3.25.1", "org.jline:jline-terminal-jansi:jar:sources:3.24.1", - "org.jline:jline-terminal:jar:sources:3.24.1", "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", "org.scala-lang:scala-reflect:jar:sources:2.13.14", "org.scala-sbt:core-macros_2.13:jar:sources:1.10.0", @@ -5990,10 +6238,11 @@ "org.scala-lang:scala-reflect:2.13.14", "com.lmax:disruptor:3.4.2", "org.scala-sbt:util-interface:1.10.0", - "org.jline:jline-terminal:3.24.1", + "org.jline:jline-terminal-jna:3.25.1", "org.fusesource.jansi:jansi:2.4.1", "net.java.dev.jna:jna:5.14.0", "com.swoval:file-tree-views:2.1.12", + "org.jline:jline-terminal:3.25.1", "org.scala-sbt:core-macros_2.13:1.10.0", "org.scala-sbt:zinc-classfile_2.13:1.10.0", "org.jline:jline-terminal-jansi:3.24.1", @@ -6001,7 +6250,6 @@ "org.apache.logging.log4j:log4j-api:2.17.1", "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", - "org.jline:jline-native:3.24.1", "org.scala-lang:scala-compiler:2.13.14", "org.scala-sbt:util-logging_2.13:1.10.0", "net.java.dev.jna:jna-platform:5.13.0", @@ -6013,7 +6261,6 @@ "org.scala-lang:scala-library:2.13.14", "org.apache.logging.log4j:log4j-core:2.17.1", "org.scala-sbt:io_2.13:1.10.0", - "org.jline:jline-terminal-jna:3.24.1", "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0" ], @@ -6041,14 +6288,13 @@ "org.scala-lang:scala-library:jar:sources:2.13.14", "net.java.dev.jna:jna-platform:jar:sources:5.13.0", "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", - "org.jline:jline-native:jar:sources:3.24.1", + "org.jline:jline-terminal:jar:sources:3.25.1", "org.scala-sbt:util-interface:jar:sources:1.10.0", "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", "com.lmax:disruptor:jar:sources:3.4.2", + "org.jline:jline-terminal-jna:jar:sources:3.25.1", "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.jline:jline-terminal-jna:jar:sources:3.24.1", "org.jline:jline-terminal-jansi:jar:sources:3.24.1", - "org.jline:jline-terminal:jar:sources:3.24.1", "com.swoval:file-tree-views:jar:sources:2.1.12", "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.10.0", "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", @@ -6086,17 +6332,17 @@ "org.scala-lang:scala-reflect:2.13.14", "com.lmax:disruptor:3.4.2", "org.scala-sbt:util-interface:1.10.0", - "org.jline:jline-terminal:3.24.1", + "org.jline:jline-terminal-jna:3.25.1", "org.fusesource.jansi:jansi:2.4.1", "net.java.dev.jna:jna:5.14.0", "com.swoval:file-tree-views:2.1.12", + "org.jline:jline-terminal:3.25.1", "org.scala-sbt:core-macros_2.13:1.10.0", "org.jline:jline-terminal-jansi:3.24.1", "org.scala-sbt:collections_2.13:1.10.0", "org.apache.logging.log4j:log4j-api:2.17.1", "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", - "org.jline:jline-native:3.24.1", "org.scala-lang:scala-compiler:2.13.14", "org.scala-sbt:util-logging_2.13:1.10.0", "net.java.dev.jna:jna-platform:5.13.0", @@ -6107,7 +6353,6 @@ "org.scala-lang:scala-library:2.13.14", "org.apache.logging.log4j:log4j-core:2.17.1", "org.scala-sbt:io_2.13:1.10.0", - "org.jline:jline-terminal-jna:3.24.1", "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0" ], @@ -6135,14 +6380,13 @@ "org.scala-lang:scala-library:jar:sources:2.13.14", "net.java.dev.jna:jna-platform:jar:sources:5.13.0", "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", - "org.jline:jline-native:jar:sources:3.24.1", + "org.jline:jline-terminal:jar:sources:3.25.1", "org.scala-sbt:util-interface:jar:sources:1.10.0", "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", "com.lmax:disruptor:jar:sources:3.4.2", + "org.jline:jline-terminal-jna:jar:sources:3.25.1", "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.jline:jline-terminal-jna:jar:sources:3.24.1", "org.jline:jline-terminal-jansi:jar:sources:3.24.1", - "org.jline:jline-terminal:jar:sources:3.24.1", "com.swoval:file-tree-views:jar:sources:2.1.12", "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", "org.scala-lang:scala-reflect:jar:sources:2.13.14", @@ -6237,11 +6481,12 @@ "org.scala-lang:scala-reflect:2.13.14", "com.lmax:disruptor:3.4.2", "org.scala-sbt:util-interface:1.10.0", - "org.jline:jline-terminal:3.24.1", + "org.jline:jline-terminal-jna:3.25.1", "org.fusesource.jansi:jansi:2.4.1", "net.openhft:zero-allocation-hashing:0.16", "net.java.dev.jna:jna:5.14.0", "com.swoval:file-tree-views:2.1.12", + "org.jline:jline-terminal:3.25.1", "org.scala-sbt:core-macros_2.13:1.10.0", "org.scala-sbt:zinc-classfile_2.13:1.10.0", "org.jline:jline-terminal-jansi:3.24.1", @@ -6250,7 +6495,6 @@ "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", "org.scala-sbt:util-control_2.13:1.10.0", - "org.jline:jline-native:3.24.1", "org.scala-lang:scala-compiler:2.13.14", "org.scala-sbt:zinc-classpath_2.13:1.10.0", "org.scala-sbt:util-logging_2.13:1.10.0", @@ -6264,7 +6508,6 @@ "org.scala-lang:scala-library:2.13.14", "org.apache.logging.log4j:log4j-core:2.17.1", "org.scala-sbt:io_2.13:1.10.0", - "org.jline:jline-terminal-jna:3.24.1", "org.scala-sbt:zinc-apiinfo_2.13:1.10.0", "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0" @@ -6302,15 +6545,14 @@ "org.scala-lang.modules:scala-parser-combinators_2.13:jar:sources:1.1.2", "net.java.dev.jna:jna-platform:jar:sources:5.13.0", "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", - "org.jline:jline-native:jar:sources:3.24.1", + "org.jline:jline-terminal:jar:sources:3.25.1", "org.scala-sbt:util-interface:jar:sources:1.10.0", "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", "com.lmax:disruptor:jar:sources:3.4.2", + "org.jline:jline-terminal-jna:jar:sources:3.25.1", "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.jline:jline-terminal-jna:jar:sources:3.24.1", "org.scala-sbt:launcher-interface:jar:sources:1.4.2", "org.jline:jline-terminal-jansi:jar:sources:3.24.1", - "org.jline:jline-terminal:jar:sources:3.24.1", "com.swoval:file-tree-views:jar:sources:2.1.12", "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.10.0", "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", @@ -6359,12 +6601,13 @@ "org.scala-lang:scala-reflect:2.13.14", "com.lmax:disruptor:3.4.2", "org.scala-sbt:util-interface:1.10.0", - "org.jline:jline-terminal:3.24.1", + "org.jline:jline-terminal-jna:3.25.1", "org.fusesource.jansi:jansi:2.4.1", "net.openhft:zero-allocation-hashing:0.16", "net.java.dev.jna:jna:5.14.0", "org.scala-sbt:util-relation_2.13:1.10.0", "com.swoval:file-tree-views:2.1.12", + "org.jline:jline-terminal:3.25.1", "org.scala-sbt:core-macros_2.13:1.10.0", "org.scala-sbt:zinc-classfile_2.13:1.10.0", "org.jline:jline-terminal-jansi:3.24.1", @@ -6373,7 +6616,6 @@ "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", "org.scala-sbt:util-control_2.13:1.10.0", - "org.jline:jline-native:3.24.1", "org.scala-lang:scala-compiler:2.13.14", "org.scala-sbt:zinc-classpath_2.13:1.10.0", "org.scala-sbt:util-logging_2.13:1.10.0", @@ -6389,7 +6631,6 @@ "org.apache.logging.log4j:log4j-core:2.17.1", "org.scala-sbt:zinc-persist-core-assembly:1.10.0", "org.scala-sbt:io_2.13:1.10.0", - "org.jline:jline-terminal-jna:3.24.1", "org.scala-sbt:zinc-apiinfo_2.13:1.10.0", "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0" @@ -6428,15 +6669,14 @@ "org.scala-sbt:util-relation_2.13:jar:sources:1.10.0", "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.10.0", "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", - "org.jline:jline-native:jar:sources:3.24.1", + "org.jline:jline-terminal:jar:sources:3.25.1", "org.scala-sbt:util-interface:jar:sources:1.10.0", "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", "com.lmax:disruptor:jar:sources:3.4.2", + "org.jline:jline-terminal-jna:jar:sources:3.25.1", "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.jline:jline-terminal-jna:jar:sources:3.24.1", "org.scala-sbt:launcher-interface:jar:sources:1.4.2", "org.jline:jline-terminal-jansi:jar:sources:3.24.1", - "org.jline:jline-terminal:jar:sources:3.24.1", "com.swoval:file-tree-views:jar:sources:2.1.12", "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.10.0", "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", @@ -6511,12 +6751,13 @@ "org.scala-lang:scala-reflect:2.13.14", "com.lmax:disruptor:3.4.2", "org.scala-sbt:util-interface:1.10.0", - "org.jline:jline-terminal:3.24.1", + "org.jline:jline-terminal-jna:3.25.1", "org.fusesource.jansi:jansi:2.4.1", "net.openhft:zero-allocation-hashing:0.16", "net.java.dev.jna:jna:5.14.0", "org.scala-sbt:util-relation_2.13:1.10.0", "com.swoval:file-tree-views:2.1.12", + "org.jline:jline-terminal:3.25.1", "org.scala-sbt:sbinary_2.13:0.5.1", "org.scala-sbt:core-macros_2.13:1.10.0", "org.scala-sbt:zinc-classfile_2.13:1.10.0", @@ -6528,7 +6769,6 @@ "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", "org.scala-sbt:util-control_2.13:1.10.0", - "org.jline:jline-native:3.24.1", "org.scala-lang:scala-compiler:2.13.14", "org.scala-sbt:zinc-classpath_2.13:1.10.0", "org.scala-sbt:util-logging_2.13:1.10.0", @@ -6544,7 +6784,6 @@ "org.apache.logging.log4j:log4j-core:2.17.1", "org.scala-sbt:zinc-persist-core-assembly:1.10.0", "org.scala-sbt:io_2.13:1.10.0", - "org.jline:jline-terminal-jna:3.24.1", "org.scala-sbt:zinc-apiinfo_2.13:1.10.0", "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0" @@ -6580,16 +6819,15 @@ "org.scala-sbt:util-relation_2.13:jar:sources:1.10.0", "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.10.0", "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", - "org.jline:jline-native:jar:sources:3.24.1", + "org.jline:jline-terminal:jar:sources:3.25.1", "org.scala-sbt:util-interface:jar:sources:1.10.0", "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.3.0", "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", "com.lmax:disruptor:jar:sources:3.4.2", + "org.jline:jline-terminal-jna:jar:sources:3.25.1", "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.jline:jline-terminal-jna:jar:sources:3.24.1", "org.scala-sbt:launcher-interface:jar:sources:1.4.2", "org.jline:jline-terminal-jansi:jar:sources:3.24.1", - "org.jline:jline-terminal:jar:sources:3.24.1", "com.swoval:file-tree-views:jar:sources:2.1.12", "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.10.0", "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", @@ -6635,12 +6873,13 @@ "org.scala-lang:scala-reflect:2.13.14", "com.lmax:disruptor:3.4.2", "org.scala-sbt:util-interface:1.10.0", - "org.jline:jline-terminal:3.24.1", + "org.jline:jline-terminal-jna:3.25.1", "org.fusesource.jansi:jansi:2.4.1", "net.openhft:zero-allocation-hashing:0.16", "net.java.dev.jna:jna:5.14.0", "org.scala-sbt:util-relation_2.13:1.10.0", "com.swoval:file-tree-views:2.1.12", + "org.jline:jline-terminal:3.25.1", "org.scala-sbt:sbinary_2.13:0.5.1", "org.scala-sbt:core-macros_2.13:1.10.0", "org.scala-sbt:zinc-classfile_2.13:1.10.0", @@ -6652,7 +6891,6 @@ "com.eed3si9n:sjson-new-scalajson_2.13:0.9.1", "com.eed3si9n:shaded-scalajson_2.13:1.0.0-M4", "org.scala-sbt:util-control_2.13:1.10.0", - "org.jline:jline-native:3.24.1", "org.scala-lang:scala-compiler:2.13.14", "org.scala-sbt:zinc-classpath_2.13:1.10.0", "org.scala-sbt:util-logging_2.13:1.10.0", @@ -6669,7 +6907,6 @@ "org.scala-sbt:zinc-persist-core-assembly:1.10.0", "org.scala-sbt:zinc-persist_2.13:1.10.0", "org.scala-sbt:io_2.13:1.10.0", - "org.jline:jline-terminal-jna:3.24.1", "org.scala-sbt:zinc-apiinfo_2.13:1.10.0", "com.eed3si9n:shaded-jawn-parser_2.13:0.9.1", "org.scala-lang.modules:scala-parallel-collections_2.13:0.2.0" @@ -6704,16 +6941,15 @@ "org.scala-sbt:util-relation_2.13:jar:sources:1.10.0", "org.scala-sbt:zinc-compile-core_2.13:jar:sources:1.10.0", "com.eed3si9n:shaded-scalajson_2.13:jar:sources:1.0.0-M4", - "org.jline:jline-native:jar:sources:3.24.1", + "org.jline:jline-terminal:jar:sources:3.25.1", "org.scala-sbt:util-interface:jar:sources:1.10.0", "org.scala-lang.modules:scala-xml_2.13:jar:sources:2.3.0", "com.eed3si9n:shaded-jawn-parser_2.13:jar:sources:0.9.1", "com.lmax:disruptor:jar:sources:3.4.2", + "org.jline:jline-terminal-jna:jar:sources:3.25.1", "net.java.dev.jna:jna:jar:sources:5.14.0", - "org.jline:jline-terminal-jna:jar:sources:3.24.1", "org.scala-sbt:launcher-interface:jar:sources:1.4.2", "org.jline:jline-terminal-jansi:jar:sources:3.24.1", - "org.jline:jline-terminal:jar:sources:3.24.1", "com.swoval:file-tree-views:jar:sources:2.1.12", "org.scala-sbt:compiler-bridge_2.13:jar:sources:1.10.0", "org.scala-sbt.jline:jline:jar:sources:2.14.7-sbt-9c3b6aca11c57e339441442bbf58e550cdfecb79", diff --git a/docs/newdocs/scala_versions.md b/docs/newdocs/scala_versions.md index a816752ca..73d66a022 100644 --- a/docs/newdocs/scala_versions.md +++ b/docs/newdocs/scala_versions.md @@ -2,12 +2,12 @@ The scala version used by a buildable target is specified via the `ScalaConfiguration` passed in to the rule's `scala` attribute. -This attribute defaults to using the `default_scala` specified via `bind` in the `WORKSPACE` file of the repo. For example, suppose the `ScalaConfiguration` you wish to default to is defined by `//scala:2_13_14`. In your `WORKSPACE`, you would include: +This attribute defaults to using the `default_scala` specified via `bind` in the `WORKSPACE` file of the repo. For example, suppose the `ScalaConfiguration` you wish to default to is defined by `//scala:2_13`. In your `WORKSPACE`, you would include: ```python bind( name = "default_scala", - actual = "//scala:2_13_14", + actual = "//scala:2_13", ) ``` @@ -16,34 +16,34 @@ We provide two means of creating the `ScalaConfiguration`: `configure_bootstrap_ Example: ```python -compiler_classpath_2_13_14 = [ - "@scala_compiler_2_13_14//jar", - "@scala_library_2_13_14//jar", - "@scala_reflect_2_13_14//jar", +compiler_classpath_2_13 = [ + "@scala_compiler_2_13//jar", + "@scala_library_2_13//jar", + "@scala_reflect_2_13//jar", ] -runtime_classpath_2_13_14 = [ - "@scala_library_2_13_14//jar", +runtime_classpath_2_13 = [ + "@scala_library_2_13//jar", ] # This creates a basic ScalaConfiguration that relies on the scalac compiler configure_bootstrap_scala( - name = "bootstrap_2_13_14", - compiler_classpath = compiler_classpath_2_13_14, - runtime_classpath = runtime_classpath_2_13_14, + name = "bootstrap_2_13", + compiler_classpath = compiler_classpath_2_13, + runtime_classpath = runtime_classpath_2_13, version = "2.13.14", visibility = ["//visibility:public"], ) # compiler bridge needed to configure zinc compiler scala_library( - name = "compiler_bridge_2_13_14", + name = "compiler_bridge_2_13", srcs = [ "@compiler_bridge_2_13//:src", ], - scala = ":bootstrap_2_13_14", + scala = ":bootstrap_2_13", visibility = ["//visibility:public"], - deps = compiler_classpath_2_13_14 + [ + deps = compiler_classpath_2_13 + [ "@scala_annex_org_scala_sbt_compiler_interface//jar", "@scala_annex_org_scala_sbt_util_interface//jar", ], @@ -51,10 +51,10 @@ scala_library( # This augments the configuration to configure the zinc compiler configure_zinc_scala( - name = "zinc_2_13_14", - compiler_bridge = ":compiler_bridge_2_13_14", - compiler_classpath = compiler_classpath_2_13_14, - runtime_classpath = runtime_classpath_2_13_14, + name = "zinc_2_13", + compiler_bridge = ":compiler_bridge_2_13", + compiler_classpath = compiler_classpath_2_13, + runtime_classpath = runtime_classpath_2_13, version = "2.13.14", visibility = ["//visibility:public"], ) @@ -68,13 +68,13 @@ For example: scala_library( name = "example_compiled_with_scalac", srcs = glob(["**/*.scala"]) - scala = ":bootstrap_2_13_14 + scala = ":bootstrap_2_13 ) scala_library( name = "example_compiled_with_zinc", srcs = glob(["**/*.scala"]) - scala = ":zinc_2_13_14 + scala = ":zinc_2_13 ) # This would use whatever //external:default_scala points to (i.e. what you bind default_scala to in your WORKSPACE) diff --git a/rules/scala/workspace.bzl b/rules/scala/workspace.bzl index 3d48fe51d..60a475b02 100644 --- a/rules/scala/workspace.bzl +++ b/rules/scala/workspace.bzl @@ -10,6 +10,10 @@ filegroup( visibility = ["//visibility:public"] )""" +scala_2_13_version = "2.13.14" +scala_3_version = "3.4.2" +zinc_version = "1.10.0" + def scala_artifacts(): return [ "ch.epfl.scala:bloop-frontend_2.12:1.0.0", @@ -18,29 +22,36 @@ def scala_artifacts(): "com.thesamet.scalapb:scalapb-runtime_2.13:0.11.17", "net.sourceforge.argparse4j:argparse4j:0.8.1", "org.jacoco:org.jacoco.core:0.7.5.201505241946", - "org.scala-lang:scala-compiler:2.13.14", - "org.scala-lang:scala-library:2.13.14", - "org.scala-lang:scala-reflect:2.13.14", - "org.scala-sbt:compiler-interface:1.10.0", - "org.scala-sbt:io_2.13:1.10.0", "org.scala-sbt:test-interface:1.0", - "org.scala-sbt:util-interface:1.10.0", - "org.scala-sbt:util-logging_2.13:1.10.0", - "org.scala-sbt:zinc_2.13:1.10.0", - "org.scala-sbt:zinc-apiinfo_2.13:1.10.0", - "org.scala-sbt:zinc-classpath_2.13:1.10.0", - "org.scala-sbt:zinc-compile-core_2.13:1.10.0", - "org.scala-sbt:zinc-core_2.13:1.10.0", - "org.scala-sbt:zinc-persist_2.13:1.10.0", + "org.scala-sbt:compiler-interface:{}".format(zinc_version), + "org.scala-sbt:io_2.13:{}".format(zinc_version), + "org.scala-sbt:util-interface:{}".format(zinc_version), + "org.scala-sbt:util-logging_2.13:{}".format(zinc_version), + "org.scala-sbt:zinc_2.13:{}".format(zinc_version), + "org.scala-sbt:zinc-apiinfo_2.13:{}".format(zinc_version), + "org.scala-sbt:zinc-classpath_2.13:{}".format(zinc_version), + "org.scala-sbt:zinc-compile-core_2.13:{}".format(zinc_version), + "org.scala-sbt:zinc-core_2.13:{}".format(zinc_version), + "org.scala-sbt:zinc-persist_2.13:{}".format(zinc_version), + "org.scala-sbt:compiler-interface:{}".format(zinc_version), + "org.scala-lang:scala-compiler:{}".format(scala_2_13_version), + "org.scala-lang:scala-library:{}".format(scala_2_13_version), + "org.scala-lang:scala-reflect:{}".format(scala_2_13_version), + "org.scala-lang:scala3-compiler_3:{}".format(scala_3_version), + "org.scala-lang:scala3-library_3:{}".format(scala_3_version), + # The compiler bridge has a dependency on compiler-interface, which has a dependency on the Scala 2 + # library. We need to set this to neverlink = True to avoid this the Scala 2 library being pulled + # onto the Scala 3, and other Scala versions like 2.12, compiler classpath during runtime. + maven.artifact("org.scala-lang", "scala3-sbt-bridge", scala_3_version, neverlink = True), # The compiler bridge has a dependency on compiler-interface, which has a dependency on the Scala 2 # library. We need to set this to neverlink = True to avoid this the Scala 2 library being pulled # onto the Scala 3, and other Scala versions like 2.12, compiler classpath during runtime. - maven.artifact("org.scala-sbt", "compiler-bridge_2.13", "1.10.0", neverlink = True), + maven.artifact("org.scala-sbt", "compiler-bridge_2.13", zinc_version, neverlink = True), ] def scala_repositories( - java_launcher_version = "5.0.0", - java_launcher_template_sha = "ab1370fd990a8bff61a83c7bd94746a3401a6d5d2299e54b1b6bc02db4f87f68"): + java_launcher_version = "7.2.0", + java_launcher_template_sha = "ee4aa47ae5e639632c67be5cc0ccbc4e941a67a1b884a1ce0c4329357a4b62b2"): maven_install( name = "annex", artifacts = scala_artifacts(), @@ -64,7 +75,6 @@ def scala_repositories( name = "anx_java_stub_template", sha256 = java_launcher_template_sha, urls = [ - "https://mirror.bazel.build/%s" % java_stub_template_url, "https://%s" % java_stub_template_url, ], ) diff --git a/rules/scala/workspace_2_12.bzl b/rules/scala/workspace_2_12.bzl index 596fa211b..7a4eeb3cc 100644 --- a/rules/scala/workspace_2_12.bzl +++ b/rules/scala/workspace_2_12.bzl @@ -1,15 +1,18 @@ load("@rules_jvm_external//:defs.bzl", "maven_install") load("@rules_jvm_external//:specs.bzl", "maven") +load("@rules_scala_annex//rules/scala:workspace.bzl", "zinc_version") + +scala_2_12_version = "2.12.19" def scala_2_12_artifacts(): return [ - "org.scala-lang:scala-compiler:2.12.19", - "org.scala-lang:scala-library:2.12.19", - "org.scala-lang:scala-reflect:2.12.19", + "org.scala-lang:scala-compiler:{}".format(scala_2_12_version), + "org.scala-lang:scala-library:{}".format(scala_2_12_version), + "org.scala-lang:scala-reflect:{}".format(scala_2_12_version), # The compiler bridge has a dependency on compiler-interface, which has a dependency on the Scala 2 # library. We need to set this to neverlink = True to avoid this the Scala 2 library being pulled # onto the Scala 3, and other Scala versions like 2.12, compiler classpath during runtime. - maven.artifact("org.scala-sbt", "compiler-bridge_2.12", "1.10.0", neverlink = True), + maven.artifact("org.scala-sbt", "compiler-bridge_2.12", zinc_version, neverlink = True), ] def scala_2_12_repositories(): diff --git a/rules/scala/workspace_3.bzl b/rules/scala/workspace_3.bzl deleted file mode 100644 index 86efe3e82..000000000 --- a/rules/scala/workspace_3.bzl +++ /dev/null @@ -1,26 +0,0 @@ -load("@rules_jvm_external//:defs.bzl", "maven_install") -load("@rules_jvm_external//:specs.bzl", "maven") - -def scala_3_artifacts(): - return [ - "org.scala-lang:scala3-compiler_3:3.4.2", - "org.scala-lang:scala3-library_3:3.4.2", - "org.scala-sbt:compiler-interface:1.10.0", - # The compiler bridge has a dependency on compiler-interface, which has a dependency on the Scala 2 - # library. We need to set this to neverlink = True to avoid this the Scala 2 library being pulled - # onto the Scala 3, and other Scala versions like 2.12, compiler classpath during runtime. - maven.artifact("org.scala-lang", "scala3-sbt-bridge", "3.4.2", neverlink = True), - ] - -def scala_3_repositories(): - maven_install( - name = "annex_3", - artifacts = scala_3_artifacts(), - repositories = [ - "https://repo.maven.apache.org/maven2", - "https://maven-central.storage-download.googleapis.com/maven2", - "https://mirror.bazel.build/repo1.maven.org/maven2", - ], - fetch_sources = True, - maven_install_json = "@rules_scala_annex//:annex_3_install.json", - ) diff --git a/scripts/gen-deps.sh b/scripts/gen-deps.sh index 42c9293ad..5346bbc3a 100755 --- a/scripts/gen-deps.sh +++ b/scripts/gen-deps.sh @@ -10,7 +10,6 @@ echo "$(dirname "$0")/.." echo "generating dependencies for main workspace" bazel run @unpinned_annex//:pin bazel run @unpinned_annex_2_12//:pin -bazel run @unpinned_annex_3//:pin bazel run @unpinned_annex_scalafmt//:pin bazel run @unpinned_annex_proto//:pin diff --git a/src/main/scala/BUILD b/src/main/scala/BUILD index 58dfb2f85..e908259c0 100644 --- a/src/main/scala/BUILD +++ b/src/main/scala/BUILD @@ -4,39 +4,32 @@ load( "configure_zinc_scala", "scala_library", ) - -alias( - name = "bootstrap", - actual = ":bootstrap_2_13_14", - visibility = ["//visibility:public"], +load( + "@rules_scala_annex//rules/scala:workspace.bzl", + "scala_2_13_version", + "scala_3_version", ) alias( - name = "bootstrap_3", - actual = ":bootstrap_3_4_2", + name = "bootstrap", + actual = ":bootstrap_2_13", visibility = ["//visibility:public"], ) alias( name = "zinc", - actual = ":zinc_2_13_14", - visibility = ["//visibility:public"], -) - -alias( - name = "zinc_3", - actual = ":zinc_3_4_2", + actual = ":zinc_2_13", visibility = ["//visibility:public"], ) # Scala 2.13 -compiler_classpath_2_13_14 = [ +compiler_classpath_2_13 = [ "@annex//:org_scala_lang_scala_compiler", "@annex//:org_scala_lang_scala_library", "@annex//:org_scala_lang_scala_reflect", ] -runtime_classpath_2_13_14 = [ +runtime_classpath_2_13 = [ "@annex//:org_scala_lang_scala_library", ] @@ -48,26 +41,27 @@ shared_global_scalacopts = [ shared_scala2_global_scalacopts = [ "-Xlint:_,-unused", "-Ytasty-reader", + "-Xsource:3", ] scala2_global_scalacopts = shared_global_scalacopts + shared_scala2_global_scalacopts configure_bootstrap_scala( - name = "bootstrap_2_13_14", - compiler_classpath = compiler_classpath_2_13_14, + name = "bootstrap_2_13", + compiler_classpath = compiler_classpath_2_13, global_scalacopts = scala2_global_scalacopts, - runtime_classpath = runtime_classpath_2_13_14, - version = "2.13.14", + runtime_classpath = runtime_classpath_2_13, + version = scala_2_13_version, visibility = ["//visibility:public"], ) configure_zinc_scala( - name = "zinc_2_13_14", + name = "zinc_2_13", compiler_bridge = "@annex//:org_scala_sbt_compiler_bridge_2_13", - compiler_classpath = compiler_classpath_2_13_14, + compiler_classpath = compiler_classpath_2_13, global_scalacopts = scala2_global_scalacopts, - runtime_classpath = runtime_classpath_2_13_14, - version = "2.13.14", + runtime_classpath = runtime_classpath_2_13, + version = scala_2_13_version, visibility = ["//visibility:public"], ) @@ -78,43 +72,43 @@ configure_zinc_scala( scala_library( name = "scala-sdk", deps_used_whitelist = [ - "@annex_3//:org_scala_lang_scala3_library_3_3_4_2", + "@annex//:org_scala_lang_scala3_library", ], scala = ":zinc_3", deps = [ - "@annex_3//:org_scala_lang_scala3_library_3_3_4_2", + "@annex//:org_scala_lang_scala3_library", ], ) -compiler_classpath_3_4_2 = [ - "@annex_3//:org_scala_lang_scala3_compiler_3_3_4_2", - "@annex_3//:org_scala_lang_scala3_library_3_3_4_2", +compiler_classpath_3 = [ + "@annex//:org_scala_lang_scala3_compiler_3", + "@annex//:org_scala_lang_scala3_library_3", ] -runtime_classpath_3_4_2 = [ - "@annex_3//:org_scala_lang_scala3_library_3_3_4_2", - "@annex_3//:org_scala_lang_scala3_interfaces", - "@annex_3//:org_scala_lang_tasty_core_3", +runtime_classpath_3 = [ + "@annex//:org_scala_lang_scala3_library_3", + "@annex//:org_scala_lang_scala3_interfaces", + "@annex//:org_scala_lang_tasty_core_3", ] configure_bootstrap_scala( - name = "bootstrap_3_4_2", - compiler_classpath = compiler_classpath_3_4_2, + name = "bootstrap_3", + compiler_classpath = compiler_classpath_3, global_scalacopts = shared_global_scalacopts, - runtime_classpath = runtime_classpath_3_4_2, + runtime_classpath = runtime_classpath_3, use_ijar = False, - version = "3.4.2", + version = scala_3_version, visibility = ["//visibility:public"], ) configure_zinc_scala( - name = "zinc_3_4_2", - compiler_bridge = "@annex_3//:org_scala_lang_scala3_sbt_bridge_3_4_2", - compiler_classpath = compiler_classpath_3_4_2, + name = "zinc_3", + compiler_bridge = "@annex//:org_scala_lang_scala3_sbt_bridge", + compiler_classpath = compiler_classpath_3, global_scalacopts = shared_global_scalacopts, - runtime_classpath = runtime_classpath_3_4_2, + runtime_classpath = runtime_classpath_3, use_ijar = False, - version = "3.4.2", + version = scala_3_version, visibility = ["//visibility:public"], ) diff --git a/src/main/scala/higherkindness/rules_scala/common/sbt-testing/CLassLoaders.scala b/src/main/scala/higherkindness/rules_scala/common/classloaders/ClassLoaders.scala similarity index 100% rename from src/main/scala/higherkindness/rules_scala/common/sbt-testing/CLassLoaders.scala rename to src/main/scala/higherkindness/rules_scala/common/classloaders/ClassLoaders.scala diff --git a/tests/WORKSPACE b/tests/WORKSPACE index 8cd0e8dd7..df9771985 100644 --- a/tests/WORKSPACE +++ b/tests/WORKSPACE @@ -86,7 +86,7 @@ load( "scala_repositories", ) -# Scala +# Scala 2.13 and 3 scala_repositories() load("@annex//:defs.bzl", annex_pinned_maven_install = "pinned_maven_install") @@ -104,15 +104,6 @@ load("@annex_2_12//:defs.bzl", annex_2_12_pinned_maven_install = "pinned_maven_i annex_2_12_pinned_maven_install() -# Scala 3 -load("@rules_scala_annex//rules/scala:workspace_3.bzl", "scala_3_repositories") - -scala_3_repositories() - -load("@annex_3//:defs.bzl", annex_3_pinned_maven_install = "pinned_maven_install") - -annex_3_pinned_maven_install() - load( "@rules_scala_annex//rules/scala_proto:workspace.bzl", "scala_proto_register_toolchains", @@ -139,7 +130,7 @@ scala_import_external( emulate_rules_scala( extra_deps = [ - "@annex//:org_scala_lang_scala_reflect_2_13_14", + "@annex//:org_scala_lang_scala_reflect_2_13", "@annex_test//:org_scala_lang_modules_scala_xml_2_13", ], scala = "@//scala:2_13", @@ -200,7 +191,7 @@ jvm_maven_import_external( bind( name = "default_scala", - actual = "//scala:zinc_2_13_14", + actual = "//scala:zinc_2_13", ) http_file( diff --git a/tests/compile/log_level/BUILD b/tests/compile/log_level/BUILD index 55554e478..ead1625ec 100644 --- a/tests/compile/log_level/BUILD +++ b/tests/compile/log_level/BUILD @@ -3,6 +3,6 @@ load("@rules_scala_annex//rules:scala.bzl", "scala_binary") scala_binary( name = "lib", srcs = ["Example.scala"], - scala = "//scala:zinc_2_13_14_log_level_debug", + scala = "//scala:zinc_2_13_log_level_debug", deps = [], ) diff --git a/tests/dependencies/indirect/BUILD b/tests/dependencies/indirect/BUILD index b2aadefcf..7e1d6662f 100644 --- a/tests/dependencies/indirect/BUILD +++ b/tests/dependencies/indirect/BUILD @@ -59,19 +59,19 @@ scala_library( scala_library( name = "define_a", srcs = ["A.scala"], - scala = "@rules_scala_annex//src/main/scala:zinc_2_13_14", + scala = "@rules_scala_annex//src/main/scala:zinc_2_13", ) scala_library( name = "define_b", srcs = ["B.scala"], - scala = "@rules_scala_annex//src/main/scala:zinc_2_13_14", + scala = "@rules_scala_annex//src/main/scala:zinc_2_13", deps = [":define_a"], ) scala_library( name = "define_c", srcs = ["C.scala"], - scala = "@rules_scala_annex//src/main/scala:zinc_2_13_14", + scala = "@rules_scala_annex//src/main/scala:zinc_2_13", deps = [":define_b"], ) diff --git a/tests/plugins/classpath/BUILD b/tests/plugins/classpath/BUILD index 4181c7be6..b185d664a 100644 --- a/tests/plugins/classpath/BUILD +++ b/tests/plugins/classpath/BUILD @@ -40,8 +40,8 @@ scala_library( tags = ["manual"], deps = [ ":plugin-lib", - "@annex//:org_scala_lang_scala_compiler_2_13_14", - "@annex//:org_scala_lang_scala_reflect_2_13_14", + "@annex//:org_scala_lang_scala_compiler_2_13", + "@annex//:org_scala_lang_scala_reflect_2_13", ], ) diff --git a/tests/plugins/kind-projector/BUILD b/tests/plugins/kind-projector/BUILD index 350ecc22c..224525b3d 100644 --- a/tests/plugins/kind-projector/BUILD +++ b/tests/plugins/kind-projector/BUILD @@ -1,34 +1,35 @@ load("@rules_scala_annex//rules:scala.bzl", "configure_zinc_scala", "scala_library") +load("@rules_scala_annex//rules/scala:workspace.bzl", "scala_2_13_version") scala_library( name = "kind-projector", srcs = ["KindProjector.scala"], plugins = [ - "@annex_test//:org_typelevel_kind_projector_2_13_14", + "@annex_test//:org_typelevel_kind_projector_2_13", ], tags = ["manual"], ) configure_zinc_scala( - name = "scala_2_13_14_with_kind_projector", + name = "scala_2_13_with_kind_projector", compiler_bridge = "@annex//:org_scala_sbt_compiler_bridge_2_13", compiler_classpath = [ - "@annex//:org_scala_lang_scala_compiler_2_13_14", - "@annex//:org_scala_lang_scala_reflect_2_13_14", - "@annex//:org_scala_lang_scala_library_2_13_14", + "@annex//:org_scala_lang_scala_compiler", + "@annex//:org_scala_lang_scala_reflect", + "@annex//:org_scala_lang_scala_library", ], global_plugins = [ - "@annex_test//:org_typelevel_kind_projector_2_13_14", + "@annex_test//:org_typelevel_kind_projector_2_13", ], runtime_classpath = [ - "@annex//:org_scala_lang_scala_library_2_13_14", + "@annex//:org_scala_lang_scala_library", ], - version = "2.13.14", + version = scala_2_13_version, ) scala_library( name = "kind-projector-via-global-plugins", srcs = ["KindProjector.scala"], - scala = ":scala_2_13_14_with_kind_projector", + scala = ":scala_2_13_with_kind_projector", tags = ["manual"], ) diff --git a/tests/plugins/macros/BUILD b/tests/plugins/macros/BUILD index f6c6d2345..0bab3dd50 100644 --- a/tests/plugins/macros/BUILD +++ b/tests/plugins/macros/BUILD @@ -6,7 +6,7 @@ scala_library( scala = "//scala:2_13", deps = [ ":macro_bad", - "@annex//:org_scala_lang_scala_reflect_2_13_14", + "@annex//:org_scala_lang_scala_reflect_2_13", ], ) @@ -17,7 +17,7 @@ scala_library( scala = "//scala:2_13", deps = [ ":util", - "@annex//:org_scala_lang_scala_reflect_2_13_14", + "@annex//:org_scala_lang_scala_reflect_2_13", ], ) @@ -28,7 +28,7 @@ scala_library( scala = "//scala:2_13", deps = [ ":macro", - "@annex//:org_scala_lang_scala_reflect_2_13_14", + "@annex//:org_scala_lang_scala_reflect_2_13", ], ) @@ -38,7 +38,7 @@ scala_library( scala = "//scala:2_13", deps = [ ":util", - "@annex//:org_scala_lang_scala_reflect_2_13_14", + "@annex//:org_scala_lang_scala_reflect_2_13", ], ) @@ -47,7 +47,7 @@ scala_library( srcs = ["MacroUtil.scala"], scala = "//scala:2_13", deps = [ - "@annex//:org_scala_lang_scala_reflect_2_13_14", + "@annex//:org_scala_lang_scala_reflect_2_13", ], ) diff --git a/tests/providers/BUILD b/tests/providers/BUILD index 446a7424e..0878025af 100644 --- a/tests/providers/BUILD +++ b/tests/providers/BUILD @@ -14,18 +14,22 @@ load( "consume_scala_configuration", "consume_zinc_configuration", ) +load( + "@rules_scala_annex//rules/scala:workspace.bzl", + "scala_2_13_version" +) declare_scala_configuration( name = "provided_scala_configuration", compiler_classpath = [ - "@annex//:org_scala_lang_scala_compiler_2_13_14", - "@annex//:org_scala_lang_scala_library_2_13_14", - "@annex//:org_scala_lang_scala_reflect_2_13_14", + "@annex//:org_scala_lang_scala_compiler", + "@annex//:org_scala_lang_scala_library", + "@annex//:org_scala_lang_scala_reflect", ], runtime_classpath = [ - "@annex//:org_scala_lang_scala_library_2_13_14", + "@annex//:org_scala_lang_scala_library", ], - version = "2.13.14", + version = scala_2_13_version, ) bootstrap_scala_library( @@ -33,9 +37,9 @@ bootstrap_scala_library( srcs = ["@compiler_bridge_2_13//:src"], scala = ":provided_scala_configuration", deps = [ - "@annex//:org_scala_lang_scala_compiler_2_13_14", - "@annex//:org_scala_lang_scala_library_2_13_14", - "@annex//:org_scala_lang_scala_reflect_2_13_14", + "@annex//:org_scala_lang_scala_compiler", + "@annex//:org_scala_lang_scala_library", + "@annex//:org_scala_lang_scala_reflect", "@annex//:org_scala_sbt_compiler_interface", "@annex//:org_scala_sbt_util_interface", ], diff --git a/tests/scala/BUILD b/tests/scala/BUILD index f3aac9860..6d6d0f615 100644 --- a/tests/scala/BUILD +++ b/tests/scala/BUILD @@ -4,139 +4,148 @@ load( "configure_zinc_scala", "scala_library", ) +load( + "@rules_scala_annex//rules/scala:workspace.bzl", + "scala_2_13_version", + "scala_3_version", +) +load( + "@rules_scala_annex//rules/scala:workspace_2_12.bzl", + "scala_2_12_version", +) alias( name = "2_12", - actual = ":zinc_2_12_19", + actual = ":zinc_2_12", visibility = ["//visibility:public"], ) alias( name = "2_13", - actual = ":zinc_2_13_14", + actual = ":zinc_2_13", visibility = ["//visibility:public"], ) alias( name = "3", - actual = ":zinc_3_4_2", + actual = ":zinc_3", visibility = ["//visibility:public"], ) -# zinc 2.12.19 +# zinc 2.12 -compiler_classpath_2_12_19 = [ - "@annex_2_12//:org_scala_lang_scala_compiler_2_12_19", - "@annex_2_12//:org_scala_lang_scala_reflect_2_12_19", - "@annex_2_12//:org_scala_lang_scala_library_2_12_19", +compiler_classpath_2_12 = [ + "@annex_2_12//:org_scala_lang_scala_compiler", + "@annex_2_12//:org_scala_lang_scala_reflect", + "@annex_2_12//:org_scala_lang_scala_library", ] -runtime_classpath_2_12_19 = [ - "@annex_2_12//:org_scala_lang_scala_library_2_12_19", +runtime_classpath_2_12 = [ + "@annex_2_12//:org_scala_lang_scala_library", ] configure_bootstrap_scala( - name = "bootstrap_2_12_19", - compiler_classpath = compiler_classpath_2_12_19, - runtime_classpath = runtime_classpath_2_12_19, - version = "2.12.19", + name = "bootstrap_2_12", + compiler_classpath = compiler_classpath_2_12, + runtime_classpath = runtime_classpath_2_12, + version = scala_2_12_version, visibility = ["//visibility:public"], ) configure_zinc_scala( - name = "zinc_2_12_19", - compiler_bridge = "@annex_2_12//:org_scala_sbt_compiler_bridge_2_12", - compiler_classpath = compiler_classpath_2_12_19, - runtime_classpath = runtime_classpath_2_12_19, - version = "2.12.19", + name = "zinc_2_12", + compiler_bridge = "@annex_2_12//:org_scala_sbt_compiler_bridge", + compiler_classpath = compiler_classpath_2_12, + runtime_classpath = runtime_classpath_2_12, + version = scala_2_12_version, visibility = ["//visibility:public"], ) -# zinc 2.13.14 +# zinc scala 2 -compiler_classpath_2_13_14 = [ - "@annex//:org_scala_lang_scala_compiler_2_13_14", - "@annex//:org_scala_lang_scala_reflect_2_13_14", - "@annex//:org_scala_lang_scala_library_2_13_14", +compiler_classpath_2_13 = [ + "@annex//:org_scala_lang_scala_compiler", + "@annex//:org_scala_lang_scala_reflect", + "@annex//:org_scala_lang_scala_library", ] -runtime_classpath_2_13_14 = [ - "@annex//:org_scala_lang_scala_library_2_13_14", +runtime_classpath_2_13 = [ + "@annex//:org_scala_lang_scala_library", ] configure_bootstrap_scala( - name = "bootstrap_2_13_14", - compiler_classpath = compiler_classpath_2_13_14, - runtime_classpath = runtime_classpath_2_13_14, - version = "2.13.14", + name = "bootstrap_2_13", + compiler_classpath = compiler_classpath_2_13, + runtime_classpath = runtime_classpath_2_13, + version = scala_2_13_version, visibility = ["//visibility:public"], ) configure_zinc_scala( - name = "zinc_2_13_14", + name = "zinc_2_13", compiler_bridge = "@annex//:org_scala_sbt_compiler_bridge_2_13", - compiler_classpath = compiler_classpath_2_13_14, + compiler_classpath = compiler_classpath_2_13, global_scalacopts = [ "-Ytasty-reader", ], - runtime_classpath = runtime_classpath_2_13_14, - version = "2.13.14", + runtime_classpath = runtime_classpath_2_13, + version = scala_2_13_version, visibility = ["//visibility:public"], ) -# zinc 3.4.2 +# zinc scala 3 -compiler_classpath_3_4_2 = [ - "@annex_3//:org_scala_lang_scala3_compiler_3_3_4_2", - "@annex_3//:org_scala_lang_scala3_library_3_3_4_2", +compiler_classpath_3 = [ + "@annex//:org_scala_lang_scala3_compiler_3", + "@annex//:org_scala_lang_scala3_library_3", ] -runtime_classpath_3_4_2 = [ - "@annex_3//:org_scala_lang_scala3_library_3_3_4_2", - "@annex_3//:org_scala_lang_scala3_interfaces", - "@annex_3//:org_scala_lang_tasty_core_3", +runtime_classpath_3 = [ + "@annex//:org_scala_lang_scala3_library_3", + "@annex//:org_scala_lang_scala3_interfaces", + "@annex//:org_scala_lang_tasty_core_3", ] configure_bootstrap_scala( - name = "bootstrap_3_4_2", - compiler_classpath = compiler_classpath_3_4_2, - runtime_classpath = runtime_classpath_3_4_2, + name = "bootstrap_3", + compiler_classpath = compiler_classpath_3, + runtime_classpath = runtime_classpath_3, use_ijar = False, - version = "3.4.2", + version = scala_3_version, visibility = ["//visibility:public"], ) configure_zinc_scala( - name = "zinc_3_4_2", - compiler_bridge = "@annex_3//:org_scala_lang_scala3_sbt_bridge_3_4_2", - compiler_classpath = compiler_classpath_3_4_2, - runtime_classpath = runtime_classpath_3_4_2, + name = "zinc_3", + compiler_bridge = "@annex//:org_scala_lang_scala3_sbt_bridge", + compiler_classpath = compiler_classpath_3, + runtime_classpath = runtime_classpath_3, use_ijar = False, - version = "3.4.2", + version = scala_3_version, visibility = ["//visibility:public"], ) # For global scalacoptions test configure_zinc_scala( - name = "zinc_2_13_14_fatal_deprecation_opt", + name = "zinc_2_13_fatal_deprecation_opt", compiler_bridge = "@annex//:org_scala_sbt_compiler_bridge_2_13", - compiler_classpath = compiler_classpath_2_13_14, + compiler_classpath = compiler_classpath_2_13, global_scalacopts = [ "-deprecation", "-Xfatal-warnings", ], - runtime_classpath = runtime_classpath_2_13_14, - version = "2.13.14", + runtime_classpath = runtime_classpath_2_13, + version = scala_2_13_version, visibility = ["//scalacopts/rule:__subpackages__"], ) # for log_level test configure_zinc_scala( - name = "zinc_2_13_14_log_level_debug", + name = "zinc_2_13_log_level_debug", compiler_bridge = "@annex//:org_scala_sbt_compiler_bridge_2_13", - compiler_classpath = compiler_classpath_2_13_14, + compiler_classpath = compiler_classpath_2_13, log_level = "debug", - runtime_classpath = runtime_classpath_2_13_14, - version = "2.13.14", + runtime_classpath = runtime_classpath_2_13, + version = scala_2_13_version, visibility = ["//visibility:public"], ) From 8152a41c7ae51952d3cb109a08409ba140b45358 Mon Sep 17 00:00:00 2001 From: James Judd Date: Sat, 6 Jul 2024 17:39:20 -0600 Subject: [PATCH 18/21] Stop using Zinc's ClassLoaderCache as it seems to cause determinism problems It's not totally certain whether the determinism issues come from the intersection of our AnnexScalaInstance + the CloassLoaderCache or from the ClassLoaderCache cache itself. --- .../workers/common/AnnexScalaInstance.scala | 4 ++-- .../workers/zinc/compile/ZincRunner.scala | 19 ++++++++----------- 2 files changed, 10 insertions(+), 13 deletions(-) diff --git a/src/main/scala/higherkindness/rules_scala/workers/common/AnnexScalaInstance.scala b/src/main/scala/higherkindness/rules_scala/workers/common/AnnexScalaInstance.scala index e220ede32..2b8461601 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/common/AnnexScalaInstance.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/common/AnnexScalaInstance.scala @@ -8,7 +8,7 @@ import java.util.Properties object AnnexScalaInstance { // Check the comment on ScalaInstanceDualLoader to understand why this is necessary. - private val dualClassLoader: ScalaInstanceDualLoader = { + private def getDualClassLoader(): ScalaInstanceDualLoader = { new ScalaInstanceDualLoader( // Classloader for xsbti classes getClass.getClassLoader, @@ -24,7 +24,7 @@ object AnnexScalaInstance { private def getClassLoader(jars: Array[File]): URLClassLoader = { new URLClassLoader( jars.map(_.toURI.toURL), - dualClassLoader, + getDualClassLoader(), ) } diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala index d850855a2..021a72491 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala @@ -49,12 +49,6 @@ import xsbti.compile.{AnalysisContents, AnalysisStore, Changes, ClasspathOptions //format: on object ZincRunner extends WorkerMain[Namespace] { - private[this] val classloaderCache = new ClassLoaderCache(new URLClassLoader(Array())) - - private[this] val compilerCache = CompilerCache.fresh - - // prevents GC of the soft reference in classloaderCache - private[this] var lastCompiler: AnyRef = null private[this] def labelToPath(label: String) = Paths.get(label.replaceAll("^/+", "").replaceAll(raw"[^\w/]", "_")) @@ -196,10 +190,13 @@ object ZincRunner extends WorkerMain[Namespace] { ) val compilers = { - val scalaCompiler = ZincUtil - .scalaCompiler(scalaInstance, namespace.get[File]("compiler_bridge")) - .withClassLoaderCache(classloaderCache) - lastCompiler = scalaCompiler + val scalaCompiler = new AnalyzingCompiler( + scalaInstance, + ZincUtil.constantBridgeProvider(scalaInstance, namespace.get[File]("compiler_bridge").toPath()), + ClasspathOptionsUtil.noboot(scalaInstance.version), + _ => (), + None + ) ZincUtil.compilers(scalaInstance, ClasspathOptionsUtil.boot, None, scalaCompiler) } @@ -243,7 +240,7 @@ object ZincRunner extends WorkerMain[Namespace] { lookup, skip, file, - compilerCache, + CompilerCache.fresh, incOptions, reporter, Optional.empty[CompileProgress](), From 15ffb86cbf93f85b8d2e5bd06321bba9521c18b9 Mon Sep 17 00:00:00 2001 From: James Judd Date: Sat, 6 Jul 2024 17:39:30 -0600 Subject: [PATCH 19/21] Some cleanup --- .../workers/zinc/compile/ZincRunner.scala | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala index 021a72491..c0cf9a75e 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala @@ -14,18 +14,18 @@ import java.io.{File, PrintStream, PrintWriter} import java.net.URLClassLoader import java.nio.file.{Files, Path, Paths} import java.util -import java.util.{List => JList, Optional} +import java.util.{Optional, List as JList} import net.sourceforge.argparse4j.ArgumentParsers -import net.sourceforge.argparse4j.impl.{Arguments => Arg} +import net.sourceforge.argparse4j.impl.Arguments as Arg import net.sourceforge.argparse4j.inf.Namespace import sbt.internal.inc.classpath.ClassLoaderCache import sbt.internal.inc.caching.ClasspathCache -import sbt.internal.inc.{Analysis, CompileFailed, IncrementalCompilerImpl, Locate, PlainVirtualFile, PlainVirtualFileConverter, ZincUtil} -import scala.jdk.CollectionConverters._ +import sbt.internal.inc.{Analysis, AnalyzingCompiler, CompileFailed, IncrementalCompilerImpl, Locate, PlainVirtualFile, PlainVirtualFileConverter, ZincUtil} +import scala.jdk.CollectionConverters.* import scala.util.Try import scala.util.control.NonFatal import xsbti.{T2, VirtualFile, VirtualFileRef} -import xsbti.compile.{AnalysisContents, AnalysisStore, Changes, ClasspathOptionsUtil, CompileAnalysis, CompileOptions, CompileProgress, CompilerCache, DefaultExternalHooks, DefinesClass, ExternalHooks, FileHash, IncOptions, Inputs, MiniSetup, PerClasspathEntryLookup, PreviousResult, Setup, TastyFiles} +import xsbti.compile.{AnalysisContents, AnalysisStore, Changes, ClasspathOptionsUtil, CompileAnalysis, CompileOptions, CompileProgress, CompilerCache, DefaultExternalHooks, DefinesClass, ExternalHooks, FileHash, GlobalsCache, IncOptions, Inputs, MiniSetup, PerClasspathEntryLookup, PreviousResult, Setup, TastyFiles} // The list in this docstring gets clobbered by the formatter, unfortunately. //format: off @@ -48,11 +48,7 @@ import xsbti.compile.{AnalysisContents, AnalysisStore, Changes, ClasspathOptions */ //format: on object ZincRunner extends WorkerMain[Namespace] { - - - private[this] def labelToPath(label: String) = Paths.get(label.replaceAll("^/+", "").replaceAll(raw"[^\w/]", "_")) - - protected[this] def init(args: Option[Array[String]]) = { + protected[this] def init(args: Option[Array[String]]): Namespace = { val parser = ArgumentParsers.newFor("zinc-worker").addHelp(true).build parser.addArgument("--persistence_dir", /* deprecated */ "--persistenceDir").metavar("path") parser.addArgument("--use_persistence").`type`(Arg.booleanType) @@ -279,7 +275,6 @@ object ZincRunner extends WorkerMain[Namespace] { analysisStoreText.set(AnalysisContents.create(compileResult.analysis, compileResult.setup)) analysisStore.set(AnalysisContents.create(compileResult.analysis, compileResult.setup)) - // create used deps val resultAnalysis = compileResult.analysis.asInstanceOf[Analysis] val usedDeps = From d0689f807aadbcf7996709643828b137f77ea12a Mon Sep 17 00:00:00 2001 From: James Judd Date: Sat, 6 Jul 2024 17:42:55 -0600 Subject: [PATCH 20/21] Switch up execution contexts slightly --- .../rules_scala/common/worker/WorkerMain.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/scala/higherkindness/rules_scala/common/worker/WorkerMain.scala b/src/main/scala/higherkindness/rules_scala/common/worker/WorkerMain.scala index f77a7d2b7..e1fb7a6f2 100644 --- a/src/main/scala/higherkindness/rules_scala/common/worker/WorkerMain.scala +++ b/src/main/scala/higherkindness/rules_scala/common/worker/WorkerMain.scala @@ -36,7 +36,7 @@ trait WorkerMain[S] { exceptionHandler, false, ) - implicit val ec = ExecutionContext.fromExecutor(fjp) + val ec = ExecutionContext.fromExecutor(fjp) System.setIn(new ByteArrayInputStream(Array.emptyByteArray)) System.setOut(System.err) @@ -74,7 +74,7 @@ trait WorkerMain[S] { } catch { case AnnexWorkerError(code, _, _) => code } - } + }(ec) f.onComplete { case Success(code) => { @@ -89,7 +89,7 @@ trait WorkerMain[S] { System.err.println(s"Uncaught exception in Future while proccessing WorkRequest $requestId:") e.printStackTrace(System.err) } - } + }(scala.concurrent.ExecutionContext.global) process(ctx) } process(init(Some(args.toArray))) From de8015fbe41993c5ae7832b70f3f896ef5fa1b57 Mon Sep 17 00:00:00 2001 From: James Judd Date: Sat, 6 Jul 2024 20:10:58 -0600 Subject: [PATCH 21/21] . --- .../workers/zinc/compile/ZincRunner.scala | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala index c0cf9a75e..62ad74b11 100644 --- a/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala +++ b/src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala @@ -49,6 +49,7 @@ import xsbti.compile.{AnalysisContents, AnalysisStore, Changes, ClasspathOptions //format: on object ZincRunner extends WorkerMain[Namespace] { protected[this] def init(args: Option[Array[String]]): Namespace = { + sys.props.put("scala.classpath.closeZip", "true") val parser = ArgumentParsers.newFor("zinc-worker").addHelp(true).build parser.addArgument("--persistence_dir", /* deprecated */ "--persistenceDir").metavar("path") parser.addArgument("--use_persistence").`type`(Arg.booleanType) @@ -58,11 +59,22 @@ object ZincRunner extends WorkerMain[Namespace] { parser.parseArgsOrFail(args.getOrElse(Array.empty)) } + protected[this] def work(worker: Namespace, args: Array[String], out: PrintStream) = { + new ZincRunner(worker, args, out).work() + } +} + +class ZincRunner(worker: Namespace, args: Array[String], out: PrintStream) { + + private[this] def labelToPath(label: String): Path = { + Paths.get(label.replaceAll("^/+", "").replaceAll(raw"[^\w/]", "_")) + } + private def pathFrom(args: Namespace, name: String): Option[Path] = Option(args.getString(name)).map { dir => Paths.get(dir.replace("~", sys.props.getOrElse("user.home", ""))) } - protected[this] def work(worker: Namespace, args: Array[String], out: PrintStream) = { + def work() = { val usePersistence: Boolean = worker.getBoolean("use_persistence") match { case p: java.lang.Boolean => p case null => true