diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/__pycache__/globalz.cpython-311.pyc b/__pycache__/globalz.cpython-311.pyc new file mode 100644 index 0000000..dc2d0f0 Binary files /dev/null and b/__pycache__/globalz.cpython-311.pyc differ diff --git a/build.sbt b/build.sbt index b6033cb..6a11533 100644 --- a/build.sbt +++ b/build.sbt @@ -1,25 +1,26 @@ // See README.md for license details. -ThisBuild / scalaVersion := "2.13.8" +ThisBuild / scalaVersion := "2.12.13" ThisBuild / version := "0.1.0" ThisBuild / organization := "com.github.5hayanb" -val chiselVersion = "6.0.0-M3" - lazy val root = (project in file(".")) .settings( name := "RISC-V-Playground", libraryDependencies ++= Seq( - "org.chipsalliance" %% "chisel" % chiselVersion, - "edu.berkeley.cs" %% "chiseltest" % "5.0.0" % "test" + "edu.berkeley.cs" %% "chisel3" % "3.4.3", + "edu.berkeley.cs" %% "chiseltest" % "0.3.3" % "test" ), scalacOptions ++= Seq( + "-Xsource:2.11", "-language:reflectiveCalls", "-deprecation", "-feature", "-Xcheckinit", - "-Ymacro-annotations", + // Enables autoclonetype2 in 3.4.x (on by default in 3.5) + "-P:chiselplugin:useBundlePlugin" ), - addCompilerPlugin("org.chipsalliance" % "chisel-plugin" % chiselVersion cross CrossVersion.full), + addCompilerPlugin("edu.berkeley.cs" % "chisel3-plugin" % "3.4.3" cross CrossVersion.full), + addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.1" cross CrossVersion.full) ) diff --git a/front_end/__pycache__/expose_functs.cpython-311.pyc b/front_end/__pycache__/expose_functs.cpython-311.pyc new file mode 100644 index 0000000..e9936d8 Binary files /dev/null and b/front_end/__pycache__/expose_functs.cpython-311.pyc differ diff --git a/front_end/__pycache__/index.cpython-311.pyc b/front_end/__pycache__/index.cpython-311.pyc new file mode 100644 index 0000000..bdd834f Binary files /dev/null and b/front_end/__pycache__/index.cpython-311.pyc differ diff --git a/front_end/app.py b/front_end/app.py new file mode 100644 index 0000000..7f9d368 --- /dev/null +++ b/front_end/app.py @@ -0,0 +1,9 @@ +import webview + +def open_folder_dialog(): + folder_path = webview.create_file_dialog(webview.FOLDER_DIALOG) + return folder_path + +if __name__ == '__main__': + webview.create_window("Folder Selection") + webview.start(open_folder_dialog, debug=True) diff --git a/front_end/expose_functs.py b/front_end/expose_functs.py new file mode 100644 index 0000000..4c059e0 --- /dev/null +++ b/front_end/expose_functs.py @@ -0,0 +1,9 @@ +from globalz import * +from front_end.index import * + + +def expose(window): + window.expose( + # index.py + open_folder_dialog + ) diff --git a/front_end/index.py b/front_end/index.py new file mode 100644 index 0000000..13d9ff2 --- /dev/null +++ b/front_end/index.py @@ -0,0 +1,17 @@ +import webview +import subprocess as sp +import os +from globalz import * + + + +def open_folder_dialog(): + # Function to open folder dialog + result = windows["main"].create_file_dialog(webview.FOLDER_DIALOG )[0] + # print(result) + return result + + +def evaluate_llm(path, cmd): + os.chdir(path) + sp.run([cmd]) \ No newline at end of file diff --git a/front_end/result.py b/front_end/result.py new file mode 100644 index 0000000..e69de29 diff --git a/front_end/web/css/index.css b/front_end/web/css/index.css new file mode 100644 index 0000000..9f4abb2 --- /dev/null +++ b/front_end/web/css/index.css @@ -0,0 +1,241 @@ +@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap'); +* +{ + margin: 0; + padding: 0; + box-sizing: border-box; + font-family: 'Quicksand', sans-serif; +} +body +{ + display: flex; + justify-content: center; + align-items: center; + min-height: 100vh; + background: #000; +} +section +{ + position: absolute; + width: 100vw; + height: 100vh; + display: flex; + justify-content: center; + align-items: center; + gap: 2px; + flex-wrap: wrap; + overflow: hidden; +} +section::before +{ + content: ''; + position: absolute; + width: 100%; + height: 100%; + background: linear-gradient(#000,rgb(0, 255, 234),#000); + animation: animate 5s linear infinite; +} +@keyframes animate +{ + 0% + { + transform: translateY(-100%); + } + 100% + { + transform: translateY(100%); + } +} +section span +{ + position: relative; + display: block; + width: calc(6.25vw - 2px); + height: calc(6.25vw - 2px); + background: #181818; + z-index: 2; + transition: 1.5s; +} +section span:hover +{ + background: rgb(19, 239, 210); + transition: 0s; +} + +section .signin +{ + position: absolute; + width: 900px; + height: 550px; + background: #222; + z-index: 1000; + display: flex; + justify-content: center; + align-items: center; + padding: 40px; + border-radius: 4px; + box-shadow: 0 15px 35px rgba(0,0,0,9); +} +body { + margin: 0; + padding: 0; + display: flex; + justify-content: center; + align-items: center; + height: 100vh; /* Viewport height */ +} + +.logo-container { + display: flex; + justify-content: center; + align-items: center; + width: 150px; /* Adjust as needed */ + height: 150px; /* Adjust as needed */ + /* Optional: just for visualization */ +} + +.logo { + max-width: 90%; /* Ensure the logo does not exceed the container width */ + max-height: 90%; /* Ensure the logo does not exceed the container height */ +} + +section .signin .content +{ + position: relative; + width: 100%; + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; + gap: 10px; +} +section .signin .content h2 +{ + + font-size: 2em; + color: rgb(30, 253, 242); + text-transform: uppercase; + margin-top: 50px; + margin-left: 20px; +} +section .signin .content .form +{ + width: 100%; + display: flex; + flex-direction: column; + gap: 1px; +} +.container { + margin: 20px; +} + +#folderPathInput { + width: 625px; + /* padding: 8px; */ + margin-right: 10px; + /* margin-right: 10px; */ + /* transition: all 0.3s ease; */ + +} + +#browseFolderBtn { + /* padding: 8px 20px; */ + padding: 25px 10px 7.5px; + width: 100px; + background-color: #30d6e9; + color: rgb(0, 0, 0); + font-weight: 600; + border: none; + cursor: pointer; + +} +.bold-text { + font-weight: bold; +} + + +.hidden { + display: none; +} + +section .signin .content .form .inputBox +{ + padding: 20px 19px; + position: relative; + width: 100%; +} +section .signin .content .form .inputBox input +{ + position: relative; + width: 100%; + background: #333; + border: none; + outline: none; + padding: 25px 10px 7.5px; + border-radius: 4px; + color: #fff; + font-weight: 500; + font-size: 1em; +} +section .signin .content .form .inputBox i +{ + position: absolute; + left: 0; + padding: 10px 30px; + font-style: normal; + color: #aaa; + margin-bottom: 10px; + transition: 0.5s; + pointer-events: none; +} +.signin .content .form .inputBox input:focus ~ i, +.signin .content .form .inputBox input:valid ~ i +{ + transform: translateY(-7.5px); + font-size: 0.8em; + color: #fff; + +} +/* .signin .content .form .links +{ + position: relative; + width: 100%; + display: flex; + justify-content: space-between; +} */ + +.signin .content .form .links a:nth-child(2) +{ + color: rgb(41, 239, 222); + font-weight: 600; +} +.signin .content .form .inputBox input[type="submit"] +{ + padding: 10px; + background: rgb(27, 223, 213); + color: #000; + font-weight: 600; + font-size: 1.35em; + letter-spacing: 0.05em; + cursor: pointer; +} +input[type="submit"]:active +{ + opacity: 0.6; +} +@media (max-width: 900px) +{ + section span + { + width: calc(10vw - 2px); + height: calc(10vw - 2px); + } +} +@media (max-width: 600px) +{ + section span + { + width: calc(20vw - 2px); + height: calc(20vw - 2px); + } +} \ No newline at end of file diff --git a/front_end/web/css/result_page.css b/front_end/web/css/result_page.css new file mode 100644 index 0000000..43b7ef9 --- /dev/null +++ b/front_end/web/css/result_page.css @@ -0,0 +1,186 @@ +@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap'); +* +{ + margin: 0; + padding: 0; + box-sizing: border-box; + font-family: 'Quicksand', sans-serif; +} +body +{ + display: flex; + justify-content: center; + align-items: center; + min-height: 100vh; + background: #000; +} +section +{ + position: absolute; + width: 100vw; + height: 100vh; + display: flex; + justify-content: center; + align-items: center; + gap: 2px; + flex-wrap: wrap; + overflow: hidden; +} +section::before +{ + content: ''; + position: absolute; + width: 100%; + height: 100%; + background: linear-gradient(#000,rgb(0, 255, 234),#000); + animation: animate 5s linear infinite; +} +@keyframes animate +{ + 0% + { + transform: translateY(-100%); + } + 100% + { + transform: translateY(100%); + } +} +section span +{ + position: relative; + display: block; + width: calc(6.25vw - 2px); + height: calc(6.25vw - 2px); + background: #181818; + z-index: 2; + transition: 1.5s; +} +section span:hover +{ + background: rgb(19, 239, 210); + transition: 0s; +} + +section .signin +{ + position: absolute; + width: 900px; + height: 550px; + background: #222; + z-index: 1000; + display: flex; + justify-content: center; + align-items: center; + padding: 40px; + border-radius: 4px; + box-shadow: 0 15px 35px rgba(0,0,0,9); +} +body { + margin: 0; + padding: 0; + display: flex; + justify-content: center; + align-items: center; + height: 100vh; /* Viewport height */ +} + + +.logo-container { + display: flex; + justify-content: center; + align-items: center; + width: 150px; /* Adjust as needed */ + height: 150px; /* Adjust as needed */ + /* Optional: just for visualization */ +} + +.logo { + max-width: 90%; /* Ensure the logo does not exceed the container width */ + max-height: 90%; /* Ensure the logo does not exceed the container height */ +} + +section .signin .content +{ + position: relative; + width: 100%; + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; + /* gap: 10px; */ +} +section .signin .content h2 +{ + + font-size: 2em; + color: rgb(255, 255, 255); + text-transform: uppercase; + margin-top: 10px; + margin-left: 10px; +} +section .signin .content .form +{ + width: 100%; + display: flex; + flex-direction: column; + gap: 10px; +} + + + + +.back-button { + background-color: #10e8dd; + color: rgb(0, 0, 0); + padding: 10px 15px; + border: none; + border-radius: 5px; + cursor: pointer; + text-decoration: none; + margin-right: auto; /* This will push the button to the right */ +} + +.back-button:hover { + background-color: #0056b3; +} + + +/* styles.css */ +.box { + width: 700px; + height: 300px; + background-color: #10e8dd; + border: 1px solid #10e8dd; + position: relative; /* Required for absolute positioning of .box1 */ +} + +.box1 { + width: 600px; + height: 250px; + background-color: #ffffff; + border: 1px solid #222; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); +} + + + +@media (max-width: 900px) +{ + section span + { + width: calc(10vw - 2px); + height: calc(10vw - 2px); + } +} +@media (max-width: 600px) +{ + section span + { + width: calc(20vw - 2px); + height: calc(20vw - 2px); + } +} \ No newline at end of file diff --git a/front_end/web/css/splash_page.css b/front_end/web/css/splash_page.css new file mode 100644 index 0000000..87bcada --- /dev/null +++ b/front_end/web/css/splash_page.css @@ -0,0 +1,212 @@ +@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap'); +* +{ + margin: 0; + padding: 0; + box-sizing: border-box; + font-family: 'Quicksand', sans-serif; +} +body +{ + display: flex; + justify-content: center; + align-items: center; + min-height: 100vh; + background: #000; +} +section +{ + position: absolute; + width: 100vw; + height: 100vh; + display: flex; + justify-content: center; + align-items: center; + gap: 2px; + flex-wrap: wrap; + overflow: hidden; +} +section::before +{ + content: ''; + position: absolute; + width: 100%; + height: 100%; + background: linear-gradient(#000,rgb(0, 255, 234),#000); + animation: animate 5s linear infinite; +} +@keyframes animate +{ + 0% + { + transform: translateY(-100%); + } + 100% + { + transform: translateY(100%); + } +} +section span +{ + position: relative; + display: block; + width: calc(6.25vw - 2px); + height: calc(6.25vw - 2px); + background: #181818; + z-index: 2; + transition: 1.5s; +} +section span:hover +{ + background: rgb(19, 239, 210); + transition: 0s; +} + +section .signin +{ + position: absolute; + width: 900px; + height: 550px; + background: #222; + z-index: 1000; + display: flex; + justify-content: center; + align-items: center; + padding: 40px; + border-radius: 4px; + box-shadow: 0 15px 35px rgba(0,0,0,9); +} +body { + margin: 0; + padding: 0; + display: flex; + justify-content: center; + align-items: center; + height: 100vh; /* Viewport height */ +} + +.logo-container { + display: flex; + justify-content: center; + align-items: center; + width: 400px; /* Adjust as needed */ + height: 400px; /* Adjust as needed */ + /* Optional: just for visualization */ +} + +.logo { + max-width: 200px; /* Ensure the logo does not exceed the container width */ + max-height: 200px; /* Ensure the logo does not exceed the container height */ +} + +section .signin .content +{ + position: relative; + width: 100%; + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; + gap: 40px; +} +section .signin .content h2 +{ + + font-size: 2em; + color: rgb(30, 253, 242); + text-transform: uppercase; + margin-top: 50px; + margin-left: 20px; +} +section .signin .content .form +{ + width: 100%; + display: flex; + flex-direction: column; + gap: 25px; +} +/* section .signin .content .form .inputBox +{ + padding: 20px 19px; + position: relative; + width: 100%; */ +/* } */ +/* section .signin .content .form .inputBox input +{ + position: relative; + width: 100%; + background: #333; + border: none; + outline: none; + padding: 25px 10px 7.5px; + border-radius: 4px; + color: #fff; + font-weight: 500; + font-size: 1em; +} */ +/* section .signin .content .form .inputBox i +{ + position: absolute; + left: 0; + padding: 10px 30px; + font-style: normal; + color: #aaa; + margin-bottom: 10px; + transition: 0.5s; + pointer-events: none; +} */ +/* .signin .content .form .inputBox input:focus ~ i, +.signin .content .form .inputBox input:valid ~ i +{ + transform: translateY(-7.5px); + font-size: 0.8em; + color: #fff; + +} */ +/* .signin .content .form .links +{ + position: relative; + width: 100%; + display: flex; + justify-content: space-between; +} */ +/* .signin .content .form .links a +{ + color: #fff; + text-decoration: none; +} */ +/* .signin .content .form .links a:nth-child(2) +{ + color: rgb(41, 239, 222); + font-weight: 600; +} */ +/* .signin .content .form .inputBox input[type="submit"] +{ + padding: 10px; + background: rgb(27, 223, 213); + color: #000; + font-weight: 600; + font-size: 1.35em; + letter-spacing: 0.05em; + cursor: pointer; +} */ +/* input[type="submit"]:active +{ + opacity: 0.6; +} */ +@media (max-width: 900px) +{ + section span + { + width: calc(10vw - 2px); + height: calc(10vw - 2px); + } +} +@media (max-width: 600px) +{ + section span + { + width: calc(20vw - 2px); + height: calc(20vw - 2px); + } +} \ No newline at end of file diff --git a/front_end/web/images/archev.png b/front_end/web/images/archev.png new file mode 100644 index 0000000..e260138 Binary files /dev/null and b/front_end/web/images/archev.png differ diff --git a/front_end/web/index.html b/front_end/web/index.html new file mode 100644 index 0000000..fd1e867 --- /dev/null +++ b/front_end/web/index.html @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + +
+ +
+ +
+ +

Main page

+
+ +
+
+ +
+ +
+ + + +
+ + + +
+ + + +
+
+ +
+
+ +
+ +
+ +
+ +
+ + + + \ No newline at end of file diff --git a/front_end/web/js/index.js b/front_end/web/js/index.js new file mode 100644 index 0000000..7b35558 --- /dev/null +++ b/front_end/web/js/index.js @@ -0,0 +1,13 @@ +async function open_folder_dialog() { + let folderPath = await pywebview.api.open_folder_dialog(); + console.log(folderPath); + console.log(typeof(folderPath)); + document.getElementById("folderPathInput").value = folderPath; +} +async function evaluate_llm(){ + + let path = document.getElementById("folderPathInput").value; + let cmd = document.getElementById("command").value; + let eval = await pywebview.api.evaluate_llm(path, cmd); + +} \ No newline at end of file diff --git a/front_end/web/js/splash_page.js b/front_end/web/js/splash_page.js new file mode 100644 index 0000000..243549d --- /dev/null +++ b/front_end/web/js/splash_page.js @@ -0,0 +1,5 @@ +// JavaScript to redirect to main page after 3 seconds +setTimeout(function() { + window.location.href = "index.html"; + }, 3000); // 3000 milliseconds = 3 seconds + \ No newline at end of file diff --git a/front_end/web/result_page.html b/front_end/web/result_page.html new file mode 100644 index 0000000..3560611 --- /dev/null +++ b/front_end/web/result_page.html @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + +
+ +
+ +
+ + Back + + +
+ + +
+ +

Result

+ +
+
+ +
+
+ + + +
+ + + + \ No newline at end of file diff --git a/front_end/web/splash_page.html b/front_end/web/splash_page.html new file mode 100644 index 0000000..7d9def8 --- /dev/null +++ b/front_end/web/splash_page.html @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + +
+ +
+ +
+ +

ArcheV

+
+ + +
+
+ + +
+ +
+ +
+ + + + \ No newline at end of file diff --git a/globalz.py b/globalz.py new file mode 100644 index 0000000..caab3be --- /dev/null +++ b/globalz.py @@ -0,0 +1,3 @@ +windows = {} +configs = {} + \ No newline at end of file diff --git a/jsonfile/testcases.json b/jsonfile/testcases.json new file mode 100644 index 0000000..e270fb1 --- /dev/null +++ b/jsonfile/testcases.json @@ -0,0 +1,193 @@ + + { + "Type": { + "RISCV submodule": { + "Decoder": { + "input": { + "32_bits":{ + "inst":"0.U" + }, + "4_vec":{ + "ctrl":"0.U" + }} , + "output":{ + "3_bits":{ + "func3":"0.U" + } , + "7_bits":{ + "opcode":"0.U", + "func7":"0.U" + }, + "32_bits":{ + "imm":"0.U" + }, + "3_vec":{ + "raddr":"0.U" + }}} + ,"FetchUnit1": + { + "input": + { + "32_bits":{ + "pc":"0.U" + }}}, + "FetchUnit2": { + "input": { + "1_bit":{ + "stall":"0.B" + }}, + "output":{ + "32_bits":{ + "pc":"0.U" + }}}, + "FetchUnit3": { + "input": { + "32_bits":{ + "npc":"0.U" + } , + "1_bit":{ + "npc_en":"0.B" + }}, + "output":{ + "32_bits":{ + "pc":"0.U" + }}}, + "FetchUnit4": { + "input": { + "32_bits":{ + "imm":"0.S" + } , + "1_bit":{ + "jal_en":"0.B" + }}, + "output":{ + "32_bits":{ + "pc":"0.U" + }}}, + "FetchUnit5": { + "input": { + "32_bits":{ + "imm":"0.S", + "rs1":"0.S" + }}, + "output":{ + "32_bit":{ + "pc":"0.U" + }}}, + "FetchUnit6": { + "input": { + "32_bits":{ + "imm":"0.S", + "rs1":"0.S" + } , + "2_bit":{ + "npc_en":"0.U" + }}, + "output":{ + "32_bits":{ + "pc":"0.U" + }}}, + "FetchUnit7": { + "input": { + "32_bits":{ + "npc":"0.U" + } + },"output":{"1_bits":{"npc_en":"0.B","stall_en":"0.B"}}}, + + + "FetchUnit8": { "input": { "32_bits":{"npc":"0.U" } , + "1_bit":{"ctrl":"0.B" } + },"output":{"32_bits":{"pc":"0.U"}}}, + + + "FetchUnit9": { "input": { "32_bits":{"imm":"0.S" } }, + "output":{"1_bit":{"stall_en":"0.B","jal_en":"0.B"}}}, + + + "FetchUnit10": { "input": { "32_bits":{"imm":"0.S" } , + "ctrl":"0.B" },"output":{"32_bits":{"pc":"0.U"}}}, + + + "FetchUnit11": { "input": { "32_bits":{"imm":"0.S","rs1":"0.S" } , + "1_bit":{"stall_en":"0.B","jalr_en":"0.B"} + },"output":{"32_bits":{"pc":"0.U"} }}, + + + "FetchUnit12": { "input": { "32_bits":{"imm":"0.S","rs1":"0.S" } ,"1_bit":"ctrl" + },"output":{"32_bits":{"pc":"0.U"}}}, + + + "FetchUnit13": { "input": { "32_bits":{"imm":"0.U","rs1":"0.S" } , + "1_bit":{"stall_en":"0.B","jalr_en":"0.B","jal_en":"0.B"}}, + "output":{"32_bit":{"pc":"0.U"}}}, + "FetchUnit14": { "input": { "32_bits":{"imm":"0.S" ,"rs1":"0.S"} , + "1_bit":{"ctrl":"0.U"}}, + "output":{"pc":"0.U"}}, + + "FetchUnit15": { "input": { "32_bits":{"imm":"0.S" }, + "1_bit":{"stall_en":"0.B","br_en":"0.B"}}, + "output":{"32_bits": {"pc":"0.U"}}}, + + + "FetchUnit16": { "input": { "32_bits":{"imm":"0.U","rs1":"0.S" } , + "1_bit":{"stall_en":"0.B","jal_en":"0.B","jalr_en":"0.B"}}, + "output":{"32_bits":{"pc":"0.U"}}}, + + + "FetchUnit17": { "input": { "32_bits":{"imm":"0.S","rs1":"0.S" } , + "1_bit":{"jal_en":"0.B","stall_en":"0.B","jalr_en":"0.B"}}, + "output":{"32_bit":{"pc":"0.U"}}}, + + + "FetchUnit18": { "input": { "32_bits":{"imm":"0.S","rs1":"0.S" } , + "1_bit":{"stall_en":"0.B","jal_en":"0.B","jalr_en":"0.B" } , + "output":{"3_bits":{"func3":"0.U"} }},"output":{"32_bits":{"pc":"0.U"}}}, + + + "FetchUnit19": { "input": { "32_bits":{"imm":"0.S","rs1":"0.S" } , + "1_bit":{"stall_en":"0.B","jal_en":"0.B","jalr_en":"0.B" }, + "output":{"32_bits":{"pc":"0.U"}}}}, + + + "FetchUnit20": { "input": { "32_bits":{"imm":"0.S","rs1":"0.S" } , + "1_bit":{"stall_en":"0.S","jal_en":"0.B","jalr_en":"0.B" } + },"output":{"32_bits":{"pc":"0.U"}} + } + + }}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/main.py b/main.py new file mode 100644 index 0000000..48370ef --- /dev/null +++ b/main.py @@ -0,0 +1,15 @@ +import webview +from globalz import * +from front_end.expose_functs import * + +# Drivers code +if __name__ == "__main__": + windows["main"] = webview.create_window( + title="ArcheV", + # url="front_end/web/splash_page.html", + url="front_end/web/index.html", + resizable=False, + width=1570, + height=900 + ) + webview.start(expose, [windows["main"]]) \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-apache-http_2.12/0.7.0/.gigahorse-apache-http_2.12-0.7.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-apache-http_2.12/0.7.0/.gigahorse-apache-http_2.12-0.7.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-apache-http_2.12/0.7.0/.gigahorse-apache-http_2.12-0.7.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-apache-http_2.12/0.7.0/.gigahorse-apache-http_2.12-0.7.0.jar__md5 new file mode 100644 index 0000000..88da377 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-apache-http_2.12/0.7.0/.gigahorse-apache-http_2.12-0.7.0.jar__md5 @@ -0,0 +1 @@ +b12c84c259ec1cd69bd53359b6bcd01e \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-apache-http_2.12/0.7.0/.gigahorse-apache-http_2.12-0.7.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-apache-http_2.12/0.7.0/.gigahorse-apache-http_2.12-0.7.0.jar__sha1 new file mode 100644 index 0000000..d67ac00 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-apache-http_2.12/0.7.0/.gigahorse-apache-http_2.12-0.7.0.jar__sha1 @@ -0,0 +1 @@ +2e9ceea59a86def0474279f35dbe74e5d9631c50 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-apache-http_2.12/0.7.0/.gigahorse-apache-http_2.12-0.7.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-apache-http_2.12/0.7.0/.gigahorse-apache-http_2.12-0.7.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-apache-http_2.12/0.7.0/.gigahorse-apache-http_2.12-0.7.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-apache-http_2.12/0.7.0/.gigahorse-apache-http_2.12-0.7.0.pom__md5 new file mode 100644 index 0000000..23bb6ff --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-apache-http_2.12/0.7.0/.gigahorse-apache-http_2.12-0.7.0.pom__md5 @@ -0,0 +1 @@ +b96d8fadc99a12dc330ed8049716e445 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-apache-http_2.12/0.7.0/.gigahorse-apache-http_2.12-0.7.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-apache-http_2.12/0.7.0/.gigahorse-apache-http_2.12-0.7.0.pom__sha1 new file mode 100644 index 0000000..71fc692 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-apache-http_2.12/0.7.0/.gigahorse-apache-http_2.12-0.7.0.pom__sha1 @@ -0,0 +1 @@ +5bf2984a05d50030682b47861cbd3faf4092e0ec \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-apache-http_2.12/0.7.0/gigahorse-apache-http_2.12-0.7.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-apache-http_2.12/0.7.0/gigahorse-apache-http_2.12-0.7.0.pom new file mode 100644 index 0000000..b23c1fd --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-apache-http_2.12/0.7.0/gigahorse-apache-http_2.12-0.7.0.pom @@ -0,0 +1,57 @@ + + + 4.0.0 + com.eed3si9n + gigahorse-apache-http_2.12 + jar + Gigahorse is an HTTP client for Scala with multiple backend support. + https://github.com/eed3si9n/gigahorse + 0.7.0 + + + Apache 2 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + gigahorse-apache-http + + eed3si9n + http://eed3si9n.com/ + + + https://github.com/eed3si9n/gigahorse + git@github.com:eed3si9n/gigahorse.git + + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + + + org.scala-lang + scala-library + 2.12.15 + + + com.eed3si9n + gigahorse-core_2.12 + 0.7.0 + + + com.eed3si9n + shaded-apache-httpasyncclient + 0.7.0 + + + com.eed3si9n + commontest_2.12 + 0.7.0 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.7.0/.gigahorse-core_2.12-0.7.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.7.0/.gigahorse-core_2.12-0.7.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.7.0/.gigahorse-core_2.12-0.7.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.7.0/.gigahorse-core_2.12-0.7.0.jar__md5 new file mode 100644 index 0000000..0bbba35 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.7.0/.gigahorse-core_2.12-0.7.0.jar__md5 @@ -0,0 +1 @@ +2dfe0e9fdbdcd275b87bfac9e7f2580f \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.7.0/.gigahorse-core_2.12-0.7.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.7.0/.gigahorse-core_2.12-0.7.0.jar__sha1 new file mode 100644 index 0000000..c88bed7 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.7.0/.gigahorse-core_2.12-0.7.0.jar__sha1 @@ -0,0 +1 @@ +356b2eeceb921fcd44300fa3e0b4dacde1e412f9 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.7.0/.gigahorse-core_2.12-0.7.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.7.0/.gigahorse-core_2.12-0.7.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.7.0/.gigahorse-core_2.12-0.7.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.7.0/.gigahorse-core_2.12-0.7.0.pom__md5 new file mode 100644 index 0000000..c13d539 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.7.0/.gigahorse-core_2.12-0.7.0.pom__md5 @@ -0,0 +1 @@ +b1042d20cd54233e7ee08280c5730426 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.7.0/.gigahorse-core_2.12-0.7.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.7.0/.gigahorse-core_2.12-0.7.0.pom__sha1 new file mode 100644 index 0000000..571e6b7 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.7.0/.gigahorse-core_2.12-0.7.0.pom__sha1 @@ -0,0 +1 @@ +1ac4fc82ec15c428a27bb5f142d7fdc5b411b381 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.7.0/gigahorse-core_2.12-0.7.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.7.0/gigahorse-core_2.12-0.7.0.pom new file mode 100644 index 0000000..b0c1e56 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.7.0/gigahorse-core_2.12-0.7.0.pom @@ -0,0 +1,62 @@ + + + 4.0.0 + com.eed3si9n + gigahorse-core_2.12 + jar + Gigahorse is an HTTP client for Scala with multiple backend support. + https://github.com/eed3si9n/gigahorse + 0.7.0 + + + Apache 2 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + gigahorse-core + + eed3si9n + http://eed3si9n.com/ + + + https://github.com/eed3si9n/gigahorse + git@github.com:eed3si9n/gigahorse.git + + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + + + org.scala-lang + scala-library + 2.12.15 + + + com.typesafe + ssl-config-core_2.12 + 0.6.1 + + + org.reactivestreams + reactive-streams + 1.0.3 + + + org.slf4j + slf4j-api + 1.7.28 + + + org.scalatest + scalatest_2.12 + 3.2.10 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-apache-httpasyncclient/0.7.0/.shaded-apache-httpasyncclient-0.7.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-apache-httpasyncclient/0.7.0/.shaded-apache-httpasyncclient-0.7.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-apache-httpasyncclient/0.7.0/.shaded-apache-httpasyncclient-0.7.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-apache-httpasyncclient/0.7.0/.shaded-apache-httpasyncclient-0.7.0.jar__md5 new file mode 100644 index 0000000..35947f5 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-apache-httpasyncclient/0.7.0/.shaded-apache-httpasyncclient-0.7.0.jar__md5 @@ -0,0 +1 @@ +74ffa9d2f347e0495d832d31c22e92c9 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-apache-httpasyncclient/0.7.0/.shaded-apache-httpasyncclient-0.7.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-apache-httpasyncclient/0.7.0/.shaded-apache-httpasyncclient-0.7.0.jar__sha1 new file mode 100644 index 0000000..43e4125 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-apache-httpasyncclient/0.7.0/.shaded-apache-httpasyncclient-0.7.0.jar__sha1 @@ -0,0 +1 @@ +32ecbd7d79f81d50c54a14d4f8dad1c8e93a8830 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-apache-httpasyncclient/0.7.0/.shaded-apache-httpasyncclient-0.7.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-apache-httpasyncclient/0.7.0/.shaded-apache-httpasyncclient-0.7.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-apache-httpasyncclient/0.7.0/.shaded-apache-httpasyncclient-0.7.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-apache-httpasyncclient/0.7.0/.shaded-apache-httpasyncclient-0.7.0.pom__md5 new file mode 100644 index 0000000..715c9b7 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-apache-httpasyncclient/0.7.0/.shaded-apache-httpasyncclient-0.7.0.pom__md5 @@ -0,0 +1 @@ +611bb21422baf75ed86cdcc4af70e775 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-apache-httpasyncclient/0.7.0/.shaded-apache-httpasyncclient-0.7.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-apache-httpasyncclient/0.7.0/.shaded-apache-httpasyncclient-0.7.0.pom__sha1 new file mode 100644 index 0000000..7dfab43 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-apache-httpasyncclient/0.7.0/.shaded-apache-httpasyncclient-0.7.0.pom__sha1 @@ -0,0 +1 @@ +cda5478172bacec98134ab66a4440c4180547913 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-apache-httpasyncclient/0.7.0/shaded-apache-httpasyncclient-0.7.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-apache-httpasyncclient/0.7.0/shaded-apache-httpasyncclient-0.7.0.pom new file mode 100644 index 0000000..3bc252f --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-apache-httpasyncclient/0.7.0/shaded-apache-httpasyncclient-0.7.0.pom @@ -0,0 +1,34 @@ + + + 4.0.0 + com.eed3si9n + shaded-apache-httpasyncclient + jar + Gigahorse is an HTTP client for Scala with multiple backend support. + https://github.com/eed3si9n/gigahorse + 0.7.0 + + + Apache 2 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + shaded-apache-httpasyncclient + + eed3si9n + http://eed3si9n.com/ + + + https://github.com/eed3si9n/gigahorse + git@github.com:eed3si9n/gigahorse.git + + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-jawn-parser_2.12/0.9.1/.shaded-jawn-parser_2.12-0.9.1.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-jawn-parser_2.12/0.9.1/.shaded-jawn-parser_2.12-0.9.1.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-jawn-parser_2.12/0.9.1/.shaded-jawn-parser_2.12-0.9.1.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-jawn-parser_2.12/0.9.1/.shaded-jawn-parser_2.12-0.9.1.jar__md5 new file mode 100644 index 0000000..ceb96c5 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-jawn-parser_2.12/0.9.1/.shaded-jawn-parser_2.12-0.9.1.jar__md5 @@ -0,0 +1 @@ +9baa02ce87b10c2ef1b2800eb28e7361 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-jawn-parser_2.12/0.9.1/.shaded-jawn-parser_2.12-0.9.1.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-jawn-parser_2.12/0.9.1/.shaded-jawn-parser_2.12-0.9.1.jar__sha1 new file mode 100644 index 0000000..b3936af --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-jawn-parser_2.12/0.9.1/.shaded-jawn-parser_2.12-0.9.1.jar__sha1 @@ -0,0 +1 @@ +49efc7e64f1843d776919d3a9cfdd811fb619318 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-jawn-parser_2.12/0.9.1/.shaded-jawn-parser_2.12-0.9.1.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-jawn-parser_2.12/0.9.1/.shaded-jawn-parser_2.12-0.9.1.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-jawn-parser_2.12/0.9.1/.shaded-jawn-parser_2.12-0.9.1.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-jawn-parser_2.12/0.9.1/.shaded-jawn-parser_2.12-0.9.1.pom__md5 new file mode 100644 index 0000000..9b17987 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-jawn-parser_2.12/0.9.1/.shaded-jawn-parser_2.12-0.9.1.pom__md5 @@ -0,0 +1 @@ +0c60560ceec9bb519d1b9a8c00b0a476 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-jawn-parser_2.12/0.9.1/.shaded-jawn-parser_2.12-0.9.1.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-jawn-parser_2.12/0.9.1/.shaded-jawn-parser_2.12-0.9.1.pom__sha1 new file mode 100644 index 0000000..bdeeced --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-jawn-parser_2.12/0.9.1/.shaded-jawn-parser_2.12-0.9.1.pom__sha1 @@ -0,0 +1 @@ +fbc7ab655a8bd077e078829959b26aad1d59a69b \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-jawn-parser_2.12/0.9.1/shaded-jawn-parser_2.12-0.9.1.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-jawn-parser_2.12/0.9.1/shaded-jawn-parser_2.12-0.9.1.pom new file mode 100644 index 0000000..cc0c8b3 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-jawn-parser_2.12/0.9.1/shaded-jawn-parser_2.12-0.9.1.pom @@ -0,0 +1,53 @@ + + + 4.0.0 + com.eed3si9n + shaded-jawn-parser_2.12 + jar + A Scala library for JSON (de)serialization + https://github.com/eed3si9n/sjson-new + 0.9.1 + + + Apache 2 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + shaded-jawn-parser + + eed3si9n + http://eed3si9n.com/ + + + https://github.com/eed3si9n/sjson-new + git@github.com:eed3si9n/sjson-new.git + + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + + + org.scala-lang + scala-library + 2.12.12 + + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/.shaded-scalajson_2.12-1.0.0-M4.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/.shaded-scalajson_2.12-1.0.0-M4.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/.shaded-scalajson_2.12-1.0.0-M4.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/.shaded-scalajson_2.12-1.0.0-M4.jar__md5 new file mode 100644 index 0000000..9f3ec66 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/.shaded-scalajson_2.12-1.0.0-M4.jar__md5 @@ -0,0 +1 @@ +55af141ba08dc02af678da747e454053 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/.shaded-scalajson_2.12-1.0.0-M4.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/.shaded-scalajson_2.12-1.0.0-M4.jar__sha1 new file mode 100644 index 0000000..dfe56e2 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/.shaded-scalajson_2.12-1.0.0-M4.jar__sha1 @@ -0,0 +1 @@ +10f27db4bc3b0c0c1a5c9a28a67f84995a2c3013 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/.shaded-scalajson_2.12-1.0.0-M4.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/.shaded-scalajson_2.12-1.0.0-M4.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/.shaded-scalajson_2.12-1.0.0-M4.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/.shaded-scalajson_2.12-1.0.0-M4.pom__md5 new file mode 100644 index 0000000..967f3fd --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/.shaded-scalajson_2.12-1.0.0-M4.pom__md5 @@ -0,0 +1 @@ +402b7faffb8834cc017558d08f767198 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/.shaded-scalajson_2.12-1.0.0-M4.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/.shaded-scalajson_2.12-1.0.0-M4.pom__sha1 new file mode 100644 index 0000000..c97dc61 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/.shaded-scalajson_2.12-1.0.0-M4.pom__sha1 @@ -0,0 +1 @@ +0b0fa24b41f37a9229eb560eda2d9162f6cdaf02 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4.pom new file mode 100644 index 0000000..8d2cbdb --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4.pom @@ -0,0 +1,59 @@ + + + 4.0.0 + com.eed3si9n + shaded-scalajson_2.12 + jar + shaded-scalajson + https://github.com/mdedetrich/scalajson + 1.0.0-M4 + + + BSD 3 Clause + https://opensource.org/licenses/BSD-3-Clause + repo + + + shaded-scalajson + + com.eed3si9n + https://github.com/mdedetrich/scalajson + + + https://github.com/mdedetrich/scalajson + git@github.com:mdedetrich/scalajson.git + + + + mdedetrich + Matthew de Detrich + mdedetrich@gmail.com + https://github.com/mdedetrich + + + + + org.scala-lang + scala-library + 2.12.2 + + + org.specs2 + specs2-core_2.12 + 3.9.1 + test + + + org.specs2 + specs2-scalacheck_2.12 + 3.9.1 + test + + + org.scalacheck + scalacheck_2.12 + 1.13.4 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.0/.sjson-new-core_2.12-0.9.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.0/.sjson-new-core_2.12-0.9.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.0/.sjson-new-core_2.12-0.9.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.0/.sjson-new-core_2.12-0.9.0.pom__md5 new file mode 100644 index 0000000..3010c49 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.0/.sjson-new-core_2.12-0.9.0.pom__md5 @@ -0,0 +1 @@ +50641dd1eae056914052ffdc28c5f9aa \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.0/.sjson-new-core_2.12-0.9.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.0/.sjson-new-core_2.12-0.9.0.pom__sha1 new file mode 100644 index 0000000..c0fcbe4 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.0/.sjson-new-core_2.12-0.9.0.pom__sha1 @@ -0,0 +1 @@ +c1b15ea3659084fa746a9df73e81045243cdddcf \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.0/sjson-new-core_2.12-0.9.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.0/sjson-new-core_2.12-0.9.0.pom new file mode 100644 index 0000000..a695e57 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.0/sjson-new-core_2.12-0.9.0.pom @@ -0,0 +1,65 @@ + + + 4.0.0 + com.eed3si9n + sjson-new-core_2.12 + jar + A Scala library for JSON (de)serialization + https://github.com/eed3si9n/sjson-new + 0.9.0 + + + Apache 2 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + sjson new core + + eed3si9n + http://eed3si9n.com/ + + + https://github.com/eed3si9n/sjson-new + git@github.com:eed3si9n/sjson-new.git + + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + + + org.scala-lang + scala-library + 2.12.11 + + + org.specs2 + specs2-core_2.12 + 4.5.1 + test + + + org.specs2 + specs2-scalacheck_2.12 + 4.5.1 + test + + + org.scalacheck + scalacheck_2.12 + 1.14.0 + test + + + org.scalatest + scalatest_2.12 + 3.0.8 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.1/.sjson-new-core_2.12-0.9.1.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.1/.sjson-new-core_2.12-0.9.1.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.1/.sjson-new-core_2.12-0.9.1.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.1/.sjson-new-core_2.12-0.9.1.jar__md5 new file mode 100644 index 0000000..ee47685 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.1/.sjson-new-core_2.12-0.9.1.jar__md5 @@ -0,0 +1 @@ +1f39049687418f887991a301dc07fb7a \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.1/.sjson-new-core_2.12-0.9.1.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.1/.sjson-new-core_2.12-0.9.1.jar__sha1 new file mode 100644 index 0000000..00f18b7 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.1/.sjson-new-core_2.12-0.9.1.jar__sha1 @@ -0,0 +1 @@ +ef97651184d64ef0e6177c5fe3bfcd3706cc274b \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.1/.sjson-new-core_2.12-0.9.1.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.1/.sjson-new-core_2.12-0.9.1.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.1/.sjson-new-core_2.12-0.9.1.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.1/.sjson-new-core_2.12-0.9.1.pom__md5 new file mode 100644 index 0000000..674efcc --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.1/.sjson-new-core_2.12-0.9.1.pom__md5 @@ -0,0 +1 @@ +5818c99e9ee477ac80555d4c3ac6b965 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.1/.sjson-new-core_2.12-0.9.1.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.1/.sjson-new-core_2.12-0.9.1.pom__sha1 new file mode 100644 index 0000000..af4faa0 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.1/.sjson-new-core_2.12-0.9.1.pom__sha1 @@ -0,0 +1 @@ +49b65f88bbe4ef0ff79c44e525efed5ccafc1125 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.1/sjson-new-core_2.12-0.9.1.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.1/sjson-new-core_2.12-0.9.1.pom new file mode 100644 index 0000000..c0cc148 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.9.1/sjson-new-core_2.12-0.9.1.pom @@ -0,0 +1,65 @@ + + + 4.0.0 + com.eed3si9n + sjson-new-core_2.12 + jar + A Scala library for JSON (de)serialization + https://github.com/eed3si9n/sjson-new + 0.9.1 + + + Apache 2 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + sjson new core + + eed3si9n + http://eed3si9n.com/ + + + https://github.com/eed3si9n/sjson-new + git@github.com:eed3si9n/sjson-new.git + + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + + + org.scala-lang + scala-library + 2.12.12 + + + org.specs2 + specs2-core_2.12 + 4.5.1 + test + + + org.specs2 + specs2-scalacheck_2.12 + 4.5.1 + test + + + org.scalacheck + scalacheck_2.12 + 1.14.0 + test + + + org.scalatest + scalatest_2.12 + 3.0.8 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.9.1/.sjson-new-murmurhash_2.12-0.9.1.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.9.1/.sjson-new-murmurhash_2.12-0.9.1.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.9.1/.sjson-new-murmurhash_2.12-0.9.1.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.9.1/.sjson-new-murmurhash_2.12-0.9.1.jar__md5 new file mode 100644 index 0000000..21cc908 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.9.1/.sjson-new-murmurhash_2.12-0.9.1.jar__md5 @@ -0,0 +1 @@ +486c444c2441c1e3237d040bb67b9469 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.9.1/.sjson-new-murmurhash_2.12-0.9.1.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.9.1/.sjson-new-murmurhash_2.12-0.9.1.jar__sha1 new file mode 100644 index 0000000..45c5eda --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.9.1/.sjson-new-murmurhash_2.12-0.9.1.jar__sha1 @@ -0,0 +1 @@ +3374b77a0c9b35abbe9b5496304c34356f0e691a \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.9.1/.sjson-new-murmurhash_2.12-0.9.1.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.9.1/.sjson-new-murmurhash_2.12-0.9.1.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.9.1/.sjson-new-murmurhash_2.12-0.9.1.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.9.1/.sjson-new-murmurhash_2.12-0.9.1.pom__md5 new file mode 100644 index 0000000..d7bfd29 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.9.1/.sjson-new-murmurhash_2.12-0.9.1.pom__md5 @@ -0,0 +1 @@ +9506d0db80dbce3813874cd3c44dbacd \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.9.1/.sjson-new-murmurhash_2.12-0.9.1.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.9.1/.sjson-new-murmurhash_2.12-0.9.1.pom__sha1 new file mode 100644 index 0000000..40506cc --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.9.1/.sjson-new-murmurhash_2.12-0.9.1.pom__sha1 @@ -0,0 +1 @@ +01007b394d47064b213ecf4401248c2bc4bffa54 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.9.1/sjson-new-murmurhash_2.12-0.9.1.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.9.1/sjson-new-murmurhash_2.12-0.9.1.pom new file mode 100644 index 0000000..5beead4 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.9.1/sjson-new-murmurhash_2.12-0.9.1.pom @@ -0,0 +1,70 @@ + + + 4.0.0 + com.eed3si9n + sjson-new-murmurhash_2.12 + jar + A Scala library for JSON (de)serialization + https://github.com/eed3si9n/sjson-new + 0.9.1 + + + Apache 2 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + sjson-new-murmurhash + + eed3si9n + http://eed3si9n.com/ + + + https://github.com/eed3si9n/sjson-new + git@github.com:eed3si9n/sjson-new.git + + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + + + org.scala-lang + scala-library + 2.12.12 + + + com.eed3si9n + sjson-new-core_2.12 + 0.9.1 + + + org.specs2 + specs2-core_2.12 + 4.5.1 + test + + + org.specs2 + specs2-scalacheck_2.12 + 4.5.1 + test + + + org.scalacheck + scalacheck_2.12 + 1.14.0 + test + + + org.scalatest + scalatest_2.12 + 3.0.8 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.9.1/.sjson-new-scalajson_2.12-0.9.1.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.9.1/.sjson-new-scalajson_2.12-0.9.1.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.9.1/.sjson-new-scalajson_2.12-0.9.1.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.9.1/.sjson-new-scalajson_2.12-0.9.1.jar__md5 new file mode 100644 index 0000000..731f297 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.9.1/.sjson-new-scalajson_2.12-0.9.1.jar__md5 @@ -0,0 +1 @@ +ac83e2a1f9ce64f904606844d3ddb505 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.9.1/.sjson-new-scalajson_2.12-0.9.1.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.9.1/.sjson-new-scalajson_2.12-0.9.1.jar__sha1 new file mode 100644 index 0000000..fd2c536 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.9.1/.sjson-new-scalajson_2.12-0.9.1.jar__sha1 @@ -0,0 +1 @@ +24625f80b7612bb1c6ed9fc1368d6469c04b4b48 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.9.1/.sjson-new-scalajson_2.12-0.9.1.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.9.1/.sjson-new-scalajson_2.12-0.9.1.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.9.1/.sjson-new-scalajson_2.12-0.9.1.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.9.1/.sjson-new-scalajson_2.12-0.9.1.pom__md5 new file mode 100644 index 0000000..edb57bb --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.9.1/.sjson-new-scalajson_2.12-0.9.1.pom__md5 @@ -0,0 +1 @@ +8336bb5da50814f01ec42f124767f5ef \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.9.1/.sjson-new-scalajson_2.12-0.9.1.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.9.1/.sjson-new-scalajson_2.12-0.9.1.pom__sha1 new file mode 100644 index 0000000..4c93d96 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.9.1/.sjson-new-scalajson_2.12-0.9.1.pom__sha1 @@ -0,0 +1 @@ +667a003dc6607a4315273929a6930145a5b8c3ab \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.9.1/sjson-new-scalajson_2.12-0.9.1.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.9.1/sjson-new-scalajson_2.12-0.9.1.pom new file mode 100644 index 0000000..243b665 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.9.1/sjson-new-scalajson_2.12-0.9.1.pom @@ -0,0 +1,80 @@ + + + 4.0.0 + com.eed3si9n + sjson-new-scalajson_2.12 + jar + A Scala library for JSON (de)serialization + https://github.com/eed3si9n/sjson-new + 0.9.1 + + + Apache 2 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + sjson-new-scalajson + + eed3si9n + http://eed3si9n.com/ + + + https://github.com/eed3si9n/sjson-new + git@github.com:eed3si9n/sjson-new.git + + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + + + org.scala-lang + scala-library + 2.12.12 + + + com.eed3si9n + sjson-new-core_2.12 + 0.9.1 + + + com.eed3si9n + shaded-jawn-parser_2.12 + 0.9.1 + + + org.specs2 + specs2-core_2.12 + 4.5.1 + test + + + org.specs2 + specs2-scalacheck_2.12 + 4.5.1 + test + + + org.scalacheck + scalacheck_2.12 + 1.14.0 + test + + + org.scalatest + scalatest_2.12 + 3.0.8 + test + + + com.eed3si9n + shaded-scalajson_2.12 + 1.0.0-M4 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.5/.caffeine-2.8.5.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.5/.caffeine-2.8.5.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.5/.caffeine-2.8.5.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.5/.caffeine-2.8.5.jar__md5 new file mode 100644 index 0000000..5b108b3 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.5/.caffeine-2.8.5.jar__md5 @@ -0,0 +1 @@ +13f2c2c0772de4ba6e21e5efb1ad8a3d \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.5/.caffeine-2.8.5.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.5/.caffeine-2.8.5.jar__sha1 new file mode 100644 index 0000000..63ab3a5 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.5/.caffeine-2.8.5.jar__sha1 @@ -0,0 +1 @@ +f0eafef6e1529a44e36549cd9d1fc06d3a57f384 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.5/.caffeine-2.8.5.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.5/.caffeine-2.8.5.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.5/.caffeine-2.8.5.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.5/.caffeine-2.8.5.pom__md5 new file mode 100644 index 0000000..346272f --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.5/.caffeine-2.8.5.pom__md5 @@ -0,0 +1 @@ +bca1c086cf0e63f43457acddb8919616 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.5/.caffeine-2.8.5.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.5/.caffeine-2.8.5.pom__sha1 new file mode 100644 index 0000000..1059011 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.5/.caffeine-2.8.5.pom__sha1 @@ -0,0 +1 @@ +2b6d3150ebbc13fdb9df54931d3c1d5a09578d8e \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.5/caffeine-2.8.5.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.5/caffeine-2.8.5.pom new file mode 100644 index 0000000..1e74d7c --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.5/caffeine-2.8.5.pom @@ -0,0 +1,54 @@ + + + + + + + + 4.0.0 + com.github.ben-manes.caffeine + caffeine + 2.8.5 + Caffeine cache + A high performance caching library + https://github.com/ben-manes/caffeine + 2014 + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + ben-manes + Ben Manes + ben.manes@gmail.com + + owner + developer + + + + + scm:git:https://github.com/ben-manes/caffeine.git + scm:git:ssh://git@github.com/ben-manes/caffeine.git + https://github.com/ben-manes/caffeine + + + + org.checkerframework + checker-qual + 3.4.1 + compile + + + com.google.errorprone + error_prone_annotations + 2.4.0 + compile + + + diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/.error_prone_annotations-2.4.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/.error_prone_annotations-2.4.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/.error_prone_annotations-2.4.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/.error_prone_annotations-2.4.0.jar__md5 new file mode 100644 index 0000000..b1409da --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/.error_prone_annotations-2.4.0.jar__md5 @@ -0,0 +1 @@ +bac854c25d354c9fd973f73956c06916 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/.error_prone_annotations-2.4.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/.error_prone_annotations-2.4.0.jar__sha1 new file mode 100644 index 0000000..23f0094 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/.error_prone_annotations-2.4.0.jar__sha1 @@ -0,0 +1 @@ +32ecccc595e4e4d813a80ee9e3ab5813d65874eb \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/.error_prone_annotations-2.4.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/.error_prone_annotations-2.4.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/.error_prone_annotations-2.4.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/.error_prone_annotations-2.4.0.pom__md5 new file mode 100644 index 0000000..8ff3590 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/.error_prone_annotations-2.4.0.pom__md5 @@ -0,0 +1 @@ +09a3b609345042d95789e763768613a2 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/.error_prone_annotations-2.4.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/.error_prone_annotations-2.4.0.pom__sha1 new file mode 100644 index 0000000..49e0f4a --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/.error_prone_annotations-2.4.0.pom__sha1 @@ -0,0 +1 @@ +efece50811944f4b355130bc01f5eb2739d28e58 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/error_prone_annotations-2.4.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/error_prone_annotations-2.4.0.pom new file mode 100644 index 0000000..90a950b --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/error_prone_annotations-2.4.0.pom @@ -0,0 +1,68 @@ + + + + + 4.0.0 + + + com.google.errorprone + error_prone_parent + 2.4.0 + + + error-prone annotations + error_prone_annotations + + + + junit + junit + ${junit.version} + test + + + + + + Apache 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.7 + 1.7 + + + + maven-jar-plugin + + + + com.google.errorprone.annotations + + + + + + + diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_parent/2.4.0/.error_prone_parent-2.4.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_parent/2.4.0/.error_prone_parent-2.4.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_parent/2.4.0/.error_prone_parent-2.4.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_parent/2.4.0/.error_prone_parent-2.4.0.pom__md5 new file mode 100644 index 0000000..970f71d --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_parent/2.4.0/.error_prone_parent-2.4.0.pom__md5 @@ -0,0 +1 @@ +657762a3fc1cfc926f8b00a38d0d1ad2 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_parent/2.4.0/.error_prone_parent-2.4.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_parent/2.4.0/.error_prone_parent-2.4.0.pom__sha1 new file mode 100644 index 0000000..5203d01 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_parent/2.4.0/.error_prone_parent-2.4.0.pom__sha1 @@ -0,0 +1 @@ +b9ca052d865d3ed214b61462960923998be720e8 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_parent/2.4.0/error_prone_parent-2.4.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_parent/2.4.0/error_prone_parent-2.4.0.pom new file mode 100644 index 0000000..f6e2ad3 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_parent/2.4.0/error_prone_parent-2.4.0.pom @@ -0,0 +1,187 @@ + + + + + 4.0.0 + + + org.sonatype.oss + oss-parent + 7 + + + Error Prone parent POM + com.google.errorprone + error_prone_parent + 2.4.0 + pom + + + UTF-8 + 27.0.1-jre + 2.8.2 + 0.45 + 9+181-r4173-1 + 1.0-rc6 + 1.7 + 4.13 + 3.1.2 + 2.25.0 + 0.18 + 2.8.0 + + + + check_api + test_helpers + core + annotation + annotations + type_annotations + docgen + docgen_processor + refaster + + + + scm:git:https://github.com/google/error-prone.git + scm:git:git@github.com:google/error-prone.git + https://github.com/google/error-prone + + + + + Apache 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + + src/main/java + + **/*.properties + **/*.binarypb + + + + + + src/test/java + + **/testdata/** + + + + + + + org.apache.maven.plugins + maven-shade-plugin + 2.1 + + ${project.build.directory}/dependency-reduced-pom.xml + + + + maven-surefire-plugin + + alphabetical + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M3 + + + enforce-maven + + enforce + + + + + 3.0.5 + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + 2.5 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.1.1 + + 8 + true + Error Prone ${project.version} API + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + 1.8 + 1.8 + + + **/testdata/** + + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + attach-sources + package + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-site-plugin + 3.7.1 + + + attach-descriptor + + attach-descriptor + + + + + + + diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/.jsch-0.1.54.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/.jsch-0.1.54.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/.jsch-0.1.54.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/.jsch-0.1.54.jar__md5 new file mode 100644 index 0000000..9a995c7 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/.jsch-0.1.54.jar__md5 @@ -0,0 +1 @@ +56a6c6fc5819e21c665355b39b9097d8 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/.jsch-0.1.54.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/.jsch-0.1.54.jar__sha1 new file mode 100644 index 0000000..990dcac --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/.jsch-0.1.54.jar__sha1 @@ -0,0 +1 @@ +da3584329a263616e277e15462b387addd1b208d \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/.jsch-0.1.54.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/.jsch-0.1.54.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/.jsch-0.1.54.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/.jsch-0.1.54.pom__md5 new file mode 100644 index 0000000..987a5ee --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/.jsch-0.1.54.pom__md5 @@ -0,0 +1 @@ +f091d901b6894623e47920a163ead7b7 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/.jsch-0.1.54.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/.jsch-0.1.54.pom__sha1 new file mode 100644 index 0000000..48bd7c4 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/.jsch-0.1.54.pom__sha1 @@ -0,0 +1 @@ +8e82e6a2cb5664170faa2a5abdc297e589a37df1 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.pom new file mode 100644 index 0000000..11fce0f --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.pom @@ -0,0 +1,111 @@ + + 4.0.0 + com.jcraft + jsch + jar + 0.1.54 + JSch + http://www.jcraft.com/jsch/ + JSch is a pure Java implementation of SSH2 + + JCraft,Inc. + http://www.jcraft.com/ + + + scm:git:http://git.jcraft.com/jsch.git + scm:git:http://git.jcraft.com/jsch.git + http://git.jcraft.com/jsch.git + + + + ymnk + Atsuhiko Yamanaka + ymnk at jcraft D0t com + http://github.com/ymnk + JCraft,Inc. + http://www.jcraft.com/ + + architect + developer + + +9 + + + + + Revised BSD + http://www.jcraft.com/jsch/LICENSE.txt + + + + + com.jcraft + jzlib + 1.0.7 + true + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.5 + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + + org.apache.maven.wagon + wagon-ssh-external + 1.0-alpha-5 + + + + + + org.sonatype.oss + oss-parent + 6 + + diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/.disruptor-3.4.2.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/.disruptor-3.4.2.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/.disruptor-3.4.2.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/.disruptor-3.4.2.jar__md5 new file mode 100644 index 0000000..7e049c7 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/.disruptor-3.4.2.jar__md5 @@ -0,0 +1 @@ +6895a3c4f54cf92eef6530e9e2cd3c46 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/.disruptor-3.4.2.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/.disruptor-3.4.2.jar__sha1 new file mode 100644 index 0000000..12f16fc --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/.disruptor-3.4.2.jar__sha1 @@ -0,0 +1 @@ +e2543a63086b4189fbe418d05d56633bc1a815f7 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/.disruptor-3.4.2.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/.disruptor-3.4.2.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/.disruptor-3.4.2.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/.disruptor-3.4.2.pom__md5 new file mode 100644 index 0000000..62ad151 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/.disruptor-3.4.2.pom__md5 @@ -0,0 +1 @@ +45b21070f526f42c70e4b4300da8969f \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/.disruptor-3.4.2.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/.disruptor-3.4.2.pom__sha1 new file mode 100644 index 0000000..805d116 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/.disruptor-3.4.2.pom__sha1 @@ -0,0 +1 @@ +97ce4834b8f02cbcdbaf6d1b8a146eaf4506ff0a \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2.pom new file mode 100644 index 0000000..d01ad36 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2.pom @@ -0,0 +1,37 @@ + + + 4.0.0 + com.lmax + disruptor + 3.4.2 + Disruptor Framework + Disruptor - Concurrent Programming Framework + http://lmax-exchange.github.com/disruptor + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + team + LMAX Disruptor Development Team + lmax-disruptor@googlegroups.com + + + + scm:git@github.com:LMAX-Exchange/disruptor.git + scm:git@github.com:LMAX-Exchange/disruptor.git + + + + junit + junit + 4.12 + test + + + diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.9/.file-tree-views-2.1.9.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.9/.file-tree-views-2.1.9.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.9/.file-tree-views-2.1.9.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.9/.file-tree-views-2.1.9.jar__md5 new file mode 100644 index 0000000..cb1752e --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.9/.file-tree-views-2.1.9.jar__md5 @@ -0,0 +1 @@ +219b9f44ae7d3d2140a5593da2d2f826 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.9/.file-tree-views-2.1.9.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.9/.file-tree-views-2.1.9.jar__sha1 new file mode 100644 index 0000000..996739e --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.9/.file-tree-views-2.1.9.jar__sha1 @@ -0,0 +1 @@ +a8d9b8127023694bfd6924f6c04ae79de99c7463 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.9/.file-tree-views-2.1.9.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.9/.file-tree-views-2.1.9.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.9/.file-tree-views-2.1.9.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.9/.file-tree-views-2.1.9.pom__md5 new file mode 100644 index 0000000..f59dd90 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.9/.file-tree-views-2.1.9.pom__md5 @@ -0,0 +1 @@ +7c8011ff0e43060e7fc6d9a75fb8f242 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.9/.file-tree-views-2.1.9.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.9/.file-tree-views-2.1.9.pom__sha1 new file mode 100644 index 0000000..ea5b982 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.9/.file-tree-views-2.1.9.pom__sha1 @@ -0,0 +1 @@ +b15be55c36d139cb5bcfcaffd9dce018612b870c \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.9/file-tree-views-2.1.9.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.9/file-tree-views-2.1.9.pom new file mode 100644 index 0000000..e06f46d --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.9/file-tree-views-2.1.9.pom @@ -0,0 +1,48 @@ + + + 4.0.0 + com.swoval + file-tree-views + jar + File system apis. + https://github.com/swoval/swoval + 2.1.9 + + + MIT + https://opensource.org/licenses/MIT + repo + + + file-tree-views + + com.swoval + https://github.com/swoval/swoval + + + https://github.com/swoval/swoval + git@github.com:swoval/swoval.git + + + + username + Ethan Atkins + https://github.com/eatkins + ethan.atkins@gmail.com + + + + + com.swoval + testing_2.12 + 2.1.9 + test + + + com.lihaoyi + utest_2.12 + 0.6.4 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.4.2/.config-1.4.2.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.4.2/.config-1.4.2.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.4.2/.config-1.4.2.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.4.2/.config-1.4.2.jar__md5 new file mode 100644 index 0000000..bd5ee4f --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.4.2/.config-1.4.2.jar__md5 @@ -0,0 +1 @@ +bac1bde09507bbd53e4e8a6a270488b7 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.4.2/.config-1.4.2.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.4.2/.config-1.4.2.jar__sha1 new file mode 100644 index 0000000..8681807 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.4.2/.config-1.4.2.jar__sha1 @@ -0,0 +1 @@ +4c40a633e7994cfb0354244efb6d03fcb11c3ecf \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.4.2/.config-1.4.2.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.4.2/.config-1.4.2.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.4.2/.config-1.4.2.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.4.2/.config-1.4.2.pom__md5 new file mode 100644 index 0000000..5337bb0 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.4.2/.config-1.4.2.pom__md5 @@ -0,0 +1 @@ +9eecee8a4354dad4d1d17ae50fda3da3 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.4.2/.config-1.4.2.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.4.2/.config-1.4.2.pom__sha1 new file mode 100644 index 0000000..cff3e08 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.4.2/.config-1.4.2.pom__sha1 @@ -0,0 +1 @@ +9fd753a29c5850631870d533e1f159aad00cf5df \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.4.2/config-1.4.2.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.4.2/config-1.4.2.pom new file mode 100644 index 0000000..e70b7c9 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.4.2/config-1.4.2.pom @@ -0,0 +1,61 @@ + + + 4.0.0 + com.typesafe + config + bundle + configuration library for JVM languages using HOCON files + https://github.com/lightbend/config + 1.4.2 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + config + + com.typesafe + https://github.com/lightbend/config + + + https://github.com/lightbend/config + scm:git@github.com:lightbend/config.git + + + + havocp + Havoc Pennington + @havocp + http://ometer.com/ + + + + + com.typesafe + config-test-lib_2.12 + 1.4.2 + test + + + org.jacoco + org.jacoco.agent + 0.7.9 + test + runtime + + + net.liftweb + lift-json_2.12 + 3.3.0 + test + + + com.novocode + junit-interface + 0.11 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.6.1/.ssl-config-core_2.12-0.6.1.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.6.1/.ssl-config-core_2.12-0.6.1.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.6.1/.ssl-config-core_2.12-0.6.1.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.6.1/.ssl-config-core_2.12-0.6.1.jar__md5 new file mode 100644 index 0000000..7f51676 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.6.1/.ssl-config-core_2.12-0.6.1.jar__md5 @@ -0,0 +1 @@ +9ea8d212550e22ac7fce3ecc11e4f5bf \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.6.1/.ssl-config-core_2.12-0.6.1.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.6.1/.ssl-config-core_2.12-0.6.1.jar__sha1 new file mode 100644 index 0000000..a402bdc --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.6.1/.ssl-config-core_2.12-0.6.1.jar__sha1 @@ -0,0 +1 @@ +ae098ad2155d228e70b002ac3d6099214ad4aa9e \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.6.1/.ssl-config-core_2.12-0.6.1.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.6.1/.ssl-config-core_2.12-0.6.1.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.6.1/.ssl-config-core_2.12-0.6.1.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.6.1/.ssl-config-core_2.12-0.6.1.pom__md5 new file mode 100644 index 0000000..49fed69 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.6.1/.ssl-config-core_2.12-0.6.1.pom__md5 @@ -0,0 +1 @@ +be0ec8294da50963c72029cd583e4a99 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.6.1/.ssl-config-core_2.12-0.6.1.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.6.1/.ssl-config-core_2.12-0.6.1.pom__sha1 new file mode 100644 index 0000000..426573c --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.6.1/.ssl-config-core_2.12-0.6.1.pom__sha1 @@ -0,0 +1 @@ +c4d48dffd315a806be37409c6324284b14636927 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.6.1/ssl-config-core_2.12-0.6.1.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.6.1/ssl-config-core_2.12-0.6.1.pom new file mode 100644 index 0000000..bbccef1 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.6.1/ssl-config-core_2.12-0.6.1.pom @@ -0,0 +1,88 @@ + + + 4.0.0 + com.typesafe + ssl-config-core_2.12 + bundle + ssl-config-core + https://github.com/lightbend/ssl-config + 0.6.1 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + ssl-config-core + 2015 + + Lightbend + https://github.com/lightbend/ssl-config + + + https://github.com/lightbend/ssl-config + scm:git:https://github.com/lightbend/ssl-config.git + scm:git:git@github.com:lightbend/ssl-config.git + + + + wsargent + Will Sargent + https://tersesystems.com + + + ktoso + Konrad Malawski + https://project13.pl + + + + + org.scala-lang + scala-library + 2.12.15 + + + com.typesafe + config + 1.4.2 + + + org.specs2 + specs2-core_2.12 + 4.8.3 + test + + + org.specs2 + specs2-junit_2.12 + 4.8.3 + test + + + org.specs2 + specs2-mock_2.12 + 4.8.3 + test + + + org.specs2 + specs2-matcher-extra_2.12 + 4.8.3 + test + + + joda-time + joda-time + 2.10.13 + test + + + org.joda + joda-convert + 2.2.2 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.13/.lm-coursier-shaded_2.12-2.0.13.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.13/.lm-coursier-shaded_2.12-2.0.13.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.13/.lm-coursier-shaded_2.12-2.0.13.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.13/.lm-coursier-shaded_2.12-2.0.13.jar__md5 new file mode 100644 index 0000000..a6c1c27 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.13/.lm-coursier-shaded_2.12-2.0.13.jar__md5 @@ -0,0 +1 @@ +51e8771112fea9c7c688f870c91480e4 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.13/.lm-coursier-shaded_2.12-2.0.13.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.13/.lm-coursier-shaded_2.12-2.0.13.jar__sha1 new file mode 100644 index 0000000..d59358a --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.13/.lm-coursier-shaded_2.12-2.0.13.jar__sha1 @@ -0,0 +1 @@ +1c63155b89c0a1e133b7c3a6f13a36c617397281 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.13/.lm-coursier-shaded_2.12-2.0.13.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.13/.lm-coursier-shaded_2.12-2.0.13.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.13/.lm-coursier-shaded_2.12-2.0.13.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.13/.lm-coursier-shaded_2.12-2.0.13.pom__md5 new file mode 100644 index 0000000..f9b5de0 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.13/.lm-coursier-shaded_2.12-2.0.13.pom__md5 @@ -0,0 +1 @@ +a72d56b6782dcf7c42a90d16de25fcff \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.13/.lm-coursier-shaded_2.12-2.0.13.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.13/.lm-coursier-shaded_2.12-2.0.13.pom__sha1 new file mode 100644 index 0000000..6df923d --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.13/.lm-coursier-shaded_2.12-2.0.13.pom__sha1 @@ -0,0 +1 @@ +11026787b475b0e109f50e2506778ef2a704aa14 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.13/lm-coursier-shaded_2.12-2.0.13.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.13/lm-coursier-shaded_2.12-2.0.13.pom new file mode 100644 index 0000000..056de40 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.13/lm-coursier-shaded_2.12-2.0.13.pom @@ -0,0 +1,97 @@ + + + 4.0.0 + io.get-coursier + lm-coursier-shaded_2.12 + jar + lm-coursier-shaded + https://github.com/coursier/sbt-coursier + 2.0.13 + + + Apache 2.0 + http://opensource.org/licenses/Apache-2.0 + repo + + + lm-coursier-shaded + + io.get-coursier + https://github.com/coursier/sbt-coursier + + + https://github.com/coursier/sbt-coursier + scm:git:https://github.com/coursier/sbt-coursier.git + scm:git:git@github.com:coursier/sbt-coursier.git + + + + alexarchambault + Alexandre Archambault + https://github.com/alexarchambault + + + + + org.scala-lang + scala-library + 2.12.17 + + + + + net.hamnaberg + dataclass-annotation_2.12 + 0.1.0 + provided + + + org.scala-lang.modules + scala-collection-compat_2.12 + 2.8.1 + + + org.scala-lang.modules + scala-xml_2.12 + 2.1.0 + + + org.slf4j + slf4j-api + 2.0.3 + + + org.scala-sbt + librarymanagement-ivy_2.12 + 1.3.4 + + + org.scalatest + scalatest_2.12 + 3.2.14 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.12.0/.jna-platform-5.12.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.12.0/.jna-platform-5.12.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.12.0/.jna-platform-5.12.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.12.0/.jna-platform-5.12.0.jar__md5 new file mode 100644 index 0000000..9e29c4f --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.12.0/.jna-platform-5.12.0.jar__md5 @@ -0,0 +1 @@ +73c69c7a13d8507b9106437b174cf2ad \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.12.0/.jna-platform-5.12.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.12.0/.jna-platform-5.12.0.jar__sha1 new file mode 100644 index 0000000..21e0008 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.12.0/.jna-platform-5.12.0.jar__sha1 @@ -0,0 +1 @@ +2cb83816043588c73cce30df9611c2d8099ca13f \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.12.0/.jna-platform-5.12.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.12.0/.jna-platform-5.12.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.12.0/.jna-platform-5.12.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.12.0/.jna-platform-5.12.0.pom__md5 new file mode 100644 index 0000000..816fdde --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.12.0/.jna-platform-5.12.0.pom__md5 @@ -0,0 +1 @@ +e2e7e01a492e14d1558b34ec0b6b7122 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.12.0/.jna-platform-5.12.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.12.0/.jna-platform-5.12.0.pom__sha1 new file mode 100644 index 0000000..6fbbe2b --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.12.0/.jna-platform-5.12.0.pom__sha1 @@ -0,0 +1 @@ +8ff540acac4a627eb3a53c55f565a6ed80625961 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.12.0/jna-platform-5.12.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.12.0/jna-platform-5.12.0.pom new file mode 100644 index 0000000..eb246c0 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.12.0/jna-platform-5.12.0.pom @@ -0,0 +1,71 @@ + + 4.0.0 + + net.java.dev.jna + jna-platform + 5.12.0 + jar + + Java Native Access Platform + Java Native Access Platform + https://github.com/java-native-access/jna + + + + LGPL-2.1-or-later + https://www.gnu.org/licenses/old-licenses/lgpl-2.1 + repo + + Java Native Access (JNA) is licensed under the LGPL, version 2.1 or + later, or the Apache License, version 2.0. You can freely decide which + license you want to apply to the project. + + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + Java Native Access (JNA) is licensed under the LGPL, version 2.1 or + later, or the Apache License, version 2.0. You can freely decide which + license you want to apply to the project. + + + + + + scm:git:https://github.com/java-native-access/jna + scm:git:ssh://git@github.com/java-native-access/jna.git + https://github.com/java-native-access/jna + + + + + twall + Timothy Wall + + Owner + + + + mblaesing@doppel-helix.eu + Matthias Bläsing + https://github.com/matthiasblaesing/ + + Developer + + + + + + + net.java.dev.jna + jna + 5.12.0 + + + + diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/5.12.0/.jna-5.12.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/5.12.0/.jna-5.12.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/5.12.0/.jna-5.12.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/5.12.0/.jna-5.12.0.jar__md5 new file mode 100644 index 0000000..77c5045 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/5.12.0/.jna-5.12.0.jar__md5 @@ -0,0 +1 @@ +6eb97bedc79e08dc763c0bcab0e8f3a4 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/5.12.0/.jna-5.12.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/5.12.0/.jna-5.12.0.jar__sha1 new file mode 100644 index 0000000..4f41e25 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/5.12.0/.jna-5.12.0.jar__sha1 @@ -0,0 +1 @@ +327e0a41641a308198ada9010cccb01a06261956 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/5.12.0/.jna-5.12.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/5.12.0/.jna-5.12.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/5.12.0/.jna-5.12.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/5.12.0/.jna-5.12.0.pom__md5 new file mode 100644 index 0000000..9251713 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/5.12.0/.jna-5.12.0.pom__md5 @@ -0,0 +1 @@ +aa0ffd3a9a7822480a47f45a3b5237d9 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/5.12.0/.jna-5.12.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/5.12.0/.jna-5.12.0.pom__sha1 new file mode 100644 index 0000000..b65f56f --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/5.12.0/.jna-5.12.0.pom__sha1 @@ -0,0 +1 @@ +bde14298833a1ff80f4c9dc3d0c4eb777cece34f \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/5.12.0/jna-5.12.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/5.12.0/jna-5.12.0.pom new file mode 100644 index 0000000..c9b9997 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/5.12.0/jna-5.12.0.pom @@ -0,0 +1,63 @@ + + 4.0.0 + + net.java.dev.jna + jna + 5.12.0 + jar + + Java Native Access + Java Native Access + https://github.com/java-native-access/jna + + + + LGPL-2.1-or-later + https://www.gnu.org/licenses/old-licenses/lgpl-2.1 + repo + + Java Native Access (JNA) is licensed under the LGPL, version 2.1 or + later, or the Apache License, version 2.0. You can freely decide which + license you want to apply to the project. + + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + Java Native Access (JNA) is licensed under the LGPL, version 2.1 or + later, or the Apache License, version 2.0. You can freely decide which + license you want to apply to the project. + + + + + + scm:git:https://github.com/java-native-access/jna + scm:git:ssh://git@github.com/java-native-access/jna.git + https://github.com/java-native-access/jna + + + + + twall + Timothy Wall + + Owner + + + + mblaesing@doppel-helix.eu + Matthias Bläsing + https://github.com/matthiasblaesing/ + + Developer + + + + + diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/root-parent-pom/1.1.13/.root-parent-pom-1.1.13.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/root-parent-pom/1.1.13/.root-parent-pom-1.1.13.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/root-parent-pom/1.1.13/.root-parent-pom-1.1.13.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/root-parent-pom/1.1.13/.root-parent-pom-1.1.13.pom__md5 new file mode 100644 index 0000000..65bf33f --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/root-parent-pom/1.1.13/.root-parent-pom-1.1.13.pom__md5 @@ -0,0 +1 @@ +04ca2b1c06226dfba96bfe6653737a0b \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/root-parent-pom/1.1.13/.root-parent-pom-1.1.13.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/root-parent-pom/1.1.13/.root-parent-pom-1.1.13.pom__sha1 new file mode 100644 index 0000000..37a3af5 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/root-parent-pom/1.1.13/.root-parent-pom-1.1.13.pom__sha1 @@ -0,0 +1 @@ +0de4d17f300ec74d243a403ad659dff17094ec3f \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/root-parent-pom/1.1.13/root-parent-pom-1.1.13.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/root-parent-pom/1.1.13/root-parent-pom-1.1.13.pom new file mode 100644 index 0000000..981821f --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/root-parent-pom/1.1.13/root-parent-pom-1.1.13.pom @@ -0,0 +1,261 @@ + + + + + 4.0.0 + + net.openhft + root-parent-pom + 1.1.13 + pom + + Root Parent Pom + This root parent pom is used by all of OpenHft + http://chronicle.software + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0 + + + + + + Peter Lawrey + peter.lawrey@chronicle.software + + + Luca Burgazzoli + luca.burgazzoli@chronicle.software + + + Roman Leventov + roman.leventov@chronicle.software + + + Rob Austin + rob.austin@chronicle.software + + + + + + UTF-8 + + + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.3 + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + + true + forked-path + false + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.4.1 + + + enforce-no-snapshots + + enforce + + + + + No Snapshots Allowed! + true + + + true + + + + + + + + + + + sign-artifact + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + + + nexus-staging-maven-plugin + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.8 + true + + sonatype-nexus-staging + https://oss.sonatype.org/ + 37e36645f0e22 + true + true + + + + + + + bundled-nexus-staging + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.8 + true + + sonatype-nexus-staging + https://oss.sonatype.org/ + + + + + + + java10 + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.21.0 + + ${JAVA_10_HOME}/bin/java + --add-exports java.base/jdk.internal.ref=ALL-UNNAMED --add-exports + java.base/jdk.internal.misc=ALL-UNNAMED --add-exports java.base/sun.nio.ch=ALL-UNNAMED + + + + + + + + java11 + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.21.0 + + ${JAVA_11_HOME}/bin/java + --add-exports java.base/jdk.internal.ref=ALL-UNNAMED --add-exports + java.base/jdk.internal.misc=ALL-UNNAMED --add-exports java.base/sun.nio.ch=ALL-UNNAMED + + + + + + + + + + + sonatype-nexus-snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + + + sonatype-nexus-staging + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + + Snapshot Repository + Snapshot Repository + https://oss.sonatype.org/content/repositories/snapshots + + true + + + + + + scm:git:git@github.com:OpenHFT/OpenHFT.git + scm:git:git@github.com:OpenHFT/OpenHFT.git + scm:git:git@github.com:OpenHFT/OpenHFT.git + root-parent-pom-1.1.13 + + + diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/.zero-allocation-hashing-0.10.1.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/.zero-allocation-hashing-0.10.1.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/.zero-allocation-hashing-0.10.1.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/.zero-allocation-hashing-0.10.1.jar__md5 new file mode 100644 index 0000000..30843f7 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/.zero-allocation-hashing-0.10.1.jar__md5 @@ -0,0 +1 @@ +a85249eba171949f28b79a45cc5107c9 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/.zero-allocation-hashing-0.10.1.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/.zero-allocation-hashing-0.10.1.jar__sha1 new file mode 100644 index 0000000..5b77f37 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/.zero-allocation-hashing-0.10.1.jar__sha1 @@ -0,0 +1 @@ +76065147c8a8161d82c715b33dcd1bdbd09ed593 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/.zero-allocation-hashing-0.10.1.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/.zero-allocation-hashing-0.10.1.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/.zero-allocation-hashing-0.10.1.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/.zero-allocation-hashing-0.10.1.pom__md5 new file mode 100644 index 0000000..38f9380 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/.zero-allocation-hashing-0.10.1.pom__md5 @@ -0,0 +1 @@ +c4899f9658878880d1721a90d7f9e5a1 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/.zero-allocation-hashing-0.10.1.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/.zero-allocation-hashing-0.10.1.pom__sha1 new file mode 100644 index 0000000..1a3eff0 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/.zero-allocation-hashing-0.10.1.pom__sha1 @@ -0,0 +1 @@ +dc3f8d0b3e851dadc0760f33358cdca0f2b3a769 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1.pom new file mode 100644 index 0000000..fa923d9 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1.pom @@ -0,0 +1,214 @@ + + + + + + + net.openhft + root-parent-pom + 1.1.13 + + + + 4.0.0 + zero-allocation-hashing + 0.10.1 + Zero-allocation Hashing + Zero-allocation implementations of fast non-cryptographic hash functions + for byte sequences or blocks of memory + 2014 + https://github.com/OpenHFT/Zero-Allocation-Hashing + bundle + + + + + com.intellij + annotations + 12.0 + provided + + + + + + junit + junit + 4.11 + test + + + + com.google.guava + guava + 18.0 + test + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.0 + + 1.7 + 1.7 + true + UTF-8 + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + ${project.build.directory} + + true + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + ${javadoc.opts} + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + maven-release-plugin + 2.4.2 + + + org.apache.maven.scm + maven-scm-provider-gitexe + 1.8.1 + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + 3.0.0 + + ${project.build.directory}/scmpublish/javadoc + + Publishing javadoc for ${project.artifactId}:${project.version} + + ${project.reporting.outputDirectory} + true + scm:git:git@github.com:OpenHFT/zero-allocation-hashing + gh-pages + + + + + org.apache.felix + maven-bundle-plugin + 3.5.1 + true + + + ${project.groupId}.${project.artifactId} + + OpenHFT :: ${project.artifactId} + ${project.version} + + net.openhft.hashing.*;-noimport:=true + + + * + + + + + + + + manifest + + + + + + + + + + scm:git:git@github.com:OpenHFT/zero-allocation-hashing.git + scm:git:git@github.com:OpenHFT/zero-allocation-hashing.git + scm:git:git@github.com:OpenHFT/zero-allocation-hashing.git + + zero-allocation-hashing-0.10.1 + + + + + doclint-java8-disable + + [1.8,) + + + -Xdoclint:none + + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/apache/23/.apache-23.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/apache/23/.apache-23.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/apache/23/.apache-23.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/apache/23/.apache-23.pom__md5 new file mode 100644 index 0000000..69fe561 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/apache/23/.apache-23.pom__md5 @@ -0,0 +1 @@ +299e015affdc6b789dab3a2f72c73fef \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/apache/23/.apache-23.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/apache/23/.apache-23.pom__sha1 new file mode 100644 index 0000000..abc6492 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/apache/23/.apache-23.pom__sha1 @@ -0,0 +1 @@ +0404949e96725e63a10a6d8f9d9b521948d170d5 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/apache/23/apache-23.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/apache/23/apache-23.pom new file mode 100644 index 0000000..447a0f3 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/apache/23/apache-23.pom @@ -0,0 +1,492 @@ + + + + + + 4.0.0 + + + org.apache + apache + 23 + pom + + The Apache Software Foundation + + The Apache Software Foundation provides support for the Apache community of open-source software projects. + The Apache projects are characterized by a collaborative, consensus based development process, an open and + pragmatic software license, and a desire to create high quality software that leads the way in its field. + We consider ourselves not simply a group of projects sharing a server, but rather a community of developers + and users. + + https://www.apache.org/ + + The Apache Software Foundation + https://www.apache.org/ + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + announce@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} + apache-23 + + + + + apache.releases.https + Apache Release Distribution Repository + https://repository.apache.org/service/local/staging/deploy/maven2 + + + apache.snapshots.https + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + + + Apache Development Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + https://www.apache.org/images/asf_logo_wide_2016.png + UTF-8 + UTF-8 + source-release + true + + 1.7 + 1.7 + 2.22.0 + posix + 2020-01-22T15:10:15Z + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/snapshots + + false + + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.8 + + + org.apache.maven.plugins + maven-assembly-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-clean-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + + org.apache.maven.plugins + maven-dependency-plugin + 3.1.1 + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-docck-plugin + 1.1 + + + org.apache.maven.plugins + maven-ear-plugin + 3.0.1 + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.4.1 + + + org.apache.maven.plugins + maven-failsafe-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + --digest-algo=SHA512 + + + + + org.apache.maven.plugins + maven-help-plugin + 3.2.0 + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-invoker-plugin + 3.2.1 + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + + true + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.0.1 + + + org.apache.maven.plugins + maven-plugin-plugin + 3.5.2 + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 3.0.0 + + + + org.apache.maven.plugins + maven-release-plugin + 3.0.0-M1 + + false + deploy + -Papache-release ${arguments} + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + 1.7.0 + + + org.apache.maven.plugins + maven-resources-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-scm-plugin + 1.9.5 + + + org.apache.maven.plugins + maven-scm-publish-plugin + 3.0.0 + + + org.apache.maven.scm + maven-scm-api + 1.10.0 + + + org.apache.maven.scm + maven-scm-provider-gitexe + 1.10.0 + + + org.apache.maven.scm + maven-scm-provider-svn-commons + 1.10.0 + + + org.apache.maven.scm + maven-scm-provider-svnexe + 1.10.0 + + + + + org.apache.maven.plugins + maven-site-plugin + 3.7.1 + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-war-plugin + 3.2.2 + + + org.apache.maven.plugins + maven-shade-plugin + 3.1.1 + + + org.apache.rat + apache-rat-plugin + 0.13 + + + org.codehaus.mojo + clirr-maven-plugin + 2.8 + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + process-resource-bundles + + process + + + + org.apache:apache-jar-resource-bundle:1.4 + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven-version + + enforce + + + + + 3.0.5 + + + + + + + + org.apache.maven.plugins + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + + + + + apache-release + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + org.apache.apache.resources + apache-source-release-assembly-descriptor + 1.0.6 + + + + + source-release-assembly + package + + single + + + true + + ${sourceReleaseAssemblyDescriptor} + + posix + + + + + + + true + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-release-artifacts + + sign + + + + + + + net.nicoulaj.maven.plugins + checksum-maven-plugin + 1.7 + + + source-release-checksum + + files + + + + + + SHA-512 + + false + + + ${project.build.directory} + + ${project.artifactId}-${project.version}-source-release.zip + ${project.artifactId}-${project.version}-source-release.tar* + + + + false + + + + + + + + diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/.log4j-api-2.17.1.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/.log4j-api-2.17.1.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/.log4j-api-2.17.1.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/.log4j-api-2.17.1.jar__md5 new file mode 100644 index 0000000..8266f9b --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/.log4j-api-2.17.1.jar__md5 @@ -0,0 +1 @@ +dfd5f2d81aba31583ee87fe16c7b78f8 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/.log4j-api-2.17.1.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/.log4j-api-2.17.1.jar__sha1 new file mode 100644 index 0000000..9d0e5dc --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/.log4j-api-2.17.1.jar__sha1 @@ -0,0 +1 @@ +d771af8e336e372fb5399c99edabe0919aeaf5b2 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/.log4j-api-2.17.1.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/.log4j-api-2.17.1.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/.log4j-api-2.17.1.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/.log4j-api-2.17.1.pom__md5 new file mode 100644 index 0000000..1728ed9 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/.log4j-api-2.17.1.pom__md5 @@ -0,0 +1 @@ +10c9a327ac0bcaf46797847edb575d8d \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/.log4j-api-2.17.1.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/.log4j-api-2.17.1.pom__sha1 new file mode 100644 index 0000000..ded2c20 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/.log4j-api-2.17.1.pom__sha1 @@ -0,0 +1 @@ +6761bf5b5204fdb16605513364e53ef8438a3aa8 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/log4j-api-2.17.1.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/log4j-api-2.17.1.pom new file mode 100644 index 0000000..df8766b --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/log4j-api-2.17.1.pom @@ -0,0 +1,356 @@ + + + + 4.0.0 + + org.apache.logging.log4j + log4j + 2.17.1 + ../ + + log4j-api + jar + Apache Log4j API + The Apache Log4j API + + ${basedir}/.. + API Documentation + /api + true + + + + + org.apache.felix + org.apache.felix.framework + test + + + org.osgi + org.osgi.core + provided + + + org.junit.vintage + junit-vintage-engine + + + org.junit.jupiter + junit-jupiter-migrationsupport + + + org.junit.jupiter + junit-jupiter-params + + + org.junit.jupiter + junit-jupiter-engine + + + org.assertj + assertj-core + + + org.eclipse.tycho + org.eclipse.osgi + test + + + org.apache.maven + maven-core + test + + + org.apache.commons + commons-lang3 + test + + + + com.fasterxml.jackson.core + jackson-core + test + + + + com.fasterxml.jackson.core + jackson-databind + test + + + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.0.2 + + + unpack-classes + prepare-package + + unpack + + + + + org.apache.logging.log4j + log4j-api-java9 + ${project.version} + zip + false + + + **/*.class + **/*.java + ${project.build.directory} + false + true + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 1.7 + + + add-source + generate-sources + + add-source + + + + ${project.build.directory}/log4j-api-java9 + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + default-compile + + + 1.8 + 1.8 + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + + + junit.jupiter.execution.parallel.enabled = true + junit.jupiter.execution.parallel.mode.default = concurrent + + + true + true + performance,smoke + + + + org.apache.maven.plugins + maven-jar-plugin + + + default-jar + + jar + + + + ${manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${maven.compiler.source} + ${maven.compiler.target} + true + + + + + + default + + test-jar + + + + ${manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + + process + + + false + + + + + + org.apache.felix + maven-bundle-plugin + + + org.apache.logging.log4j.* + + sun.reflect;resolution:=optional, + * + + org.apache.logging.log4j.util.Activator + <_fixupmessages>"Classes found in the wrong directory";is:=warning + + + + + org.apache.maven.plugins + maven-deploy-plugin + ${deploy.plugin.version} + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${changes.plugin.version} + + + + changes-report + + + + + %URL%/show_bug.cgi?id=%ISSUE% + true + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${checkstyle.plugin.version} + + + ${log4jParentDir}/checkstyle.xml + ${log4jParentDir}/checkstyle-suppressions.xml + false + basedir=${basedir} + licensedir=${log4jParentDir}/checkstyle-header.txt + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${javadoc.plugin.version} + + Copyright © {inceptionYear}-{currentYear} {organizationName}. All Rights Reserved.
+ Apache Logging, Apache Log4j, Log4j, Apache, the Apache feather logo, the Apache Logging project logo, + and the Apache Log4j logo are trademarks of The Apache Software Foundation.

]]>
+ + none + false + true + + http://www.osgi.org/javadoc/r4v43/core/ + +
+ + + non-aggregate + + javadoc + + + +
+ + com.github.spotbugs + spotbugs-maven-plugin + + + org.apache.maven.plugins + maven-jxr-plugin + ${jxr.plugin.version} + + + non-aggregate + + jxr + + + + aggregate + + aggregate + + + + + + org.apache.maven.plugins + maven-pmd-plugin + ${pmd.plugin.version} + + ${maven.compiler.target} + + +
+
+
+ diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/.log4j-core-2.17.1.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/.log4j-core-2.17.1.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/.log4j-core-2.17.1.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/.log4j-core-2.17.1.jar__md5 new file mode 100644 index 0000000..305875f --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/.log4j-core-2.17.1.jar__md5 @@ -0,0 +1 @@ +8d2f5c52700336dae846b2c3ecde7a6e \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/.log4j-core-2.17.1.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/.log4j-core-2.17.1.jar__sha1 new file mode 100644 index 0000000..7d4634f --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/.log4j-core-2.17.1.jar__sha1 @@ -0,0 +1 @@ +779f60f3844dadc3ef597976fcb1e5127b1f343d \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/.log4j-core-2.17.1.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/.log4j-core-2.17.1.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/.log4j-core-2.17.1.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/.log4j-core-2.17.1.pom__md5 new file mode 100644 index 0000000..eea5a56 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/.log4j-core-2.17.1.pom__md5 @@ -0,0 +1 @@ +7616a3cb5d833eadf7707f0589976e3c \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/.log4j-core-2.17.1.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/.log4j-core-2.17.1.pom__sha1 new file mode 100644 index 0000000..4d39846 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/.log4j-core-2.17.1.pom__sha1 @@ -0,0 +1 @@ +eb8b8548c75f74638bcfc530c03892cc22b589f8 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/log4j-core-2.17.1.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/log4j-core-2.17.1.pom new file mode 100644 index 0000000..5e8dfec --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.17.1/log4j-core-2.17.1.pom @@ -0,0 +1,634 @@ + + + + 4.0.0 + + org.apache.logging.log4j + log4j + 2.17.1 + ../ + + log4j-core + jar + Apache Log4j Core + The Apache Log4j Implementation + + ${basedir}/.. + Core Documentation + /core + true + + + + + + org.apache.logging.log4j + log4j-api + + + + org.osgi + org.osgi.core + provided + + + + com.lmax + disruptor + true + + + + com.conversantmedia + disruptor + true + + + + org.jctools + jctools-core + true + + + + com.fasterxml.jackson.core + jackson-core + true + + + + com.fasterxml.jackson.core + jackson-databind + true + + + + com.fasterxml.jackson.dataformat + jackson-dataformat-yaml + true + + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + true + + + + com.fasterxml.woodstox + woodstox-core + ${woodstox.version} + true + + + + org.fusesource.jansi + jansi + true + + + + com.sun.mail + javax.mail + true + + + + org.jboss.spec.javax.jms + jboss-jms-api_1.1_spec + provided + true + + + + org.apache.kafka + kafka-clients + true + + + + org.zeromq + jeromq + true + + + + org.apache.commons + commons-compress + true + + + + org.apache.commons + commons-csv + true + + + + org.slf4j + slf4j-api + true + + + + + + + org.apache.logging.log4j + log4j-api + test-jar + test + + + + org.tukaani + xz + test + + + + org.jmdns + jmdns + 3.5.7 + test + + + + log4j + log4j + 1.2.17 + test + + + + org.slf4j + slf4j-ext + test + + + + org.junit.vintage + junit-vintage-engine + + + org.junit.jupiter + junit-jupiter-engine + + + org.junit.jupiter + junit-jupiter-params + + + org.hamcrest + hamcrest + test + + + + org.mockito + mockito-core + + + org.mockito + mockito-junit-jupiter + + + + org.hsqldb + hsqldb + test + + + com.h2database + h2 + test + + + + org.springframework + spring-test + test + + + + org.apache.activemq + activemq-broker + test + + + org.apache.geronimo.specs + geronimo-jms_1.1_spec + + + + + commons-logging + commons-logging + test + + + + ch.qos.logback + logback-core + test + + + ch.qos.logback + logback-classic + test + + + + org.eclipse.tycho + org.eclipse.osgi + test + + + org.apache.felix + org.apache.felix.framework + test + + + org.codehaus.plexus + plexus-utils + test + + + org.apache.maven + maven-core + test + + + + net.javacrumbs.json-unit + json-unit + test + + + org.xmlunit + xmlunit-core + test + + + org.xmlunit + xmlunit-matchers + test + + + commons-io + commons-io + test + + + + commons-codec + commons-codec + test + + + org.apache.commons + commons-lang3 + test + + + org.apache-extras.beanshell + bsh + test + + + org.codehaus.groovy + groovy-jsr223 + test + + + org.codehaus.groovy + groovy-dateutil + test + + + + com.github.tomakehurst + wiremock + test + + + + com.google.code.java-allocation-instrumenter + java-allocation-instrumenter + test + + + org.hdrhistogram + HdrHistogram + test + + + org.awaitility + awaitility + test + + + org.zapodot + embedded-ldap-junit + test + + + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.0.2 + + + unpack-classes + prepare-package + + unpack + + + + + org.apache.logging.log4j + log4j-core-java9 + ${project.version} + zip + false + + + **/*.class + **/*.java + ${project.build.directory} + false + true + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 1.7 + + + add-source + generate-sources + + add-source + + + + ${project.build.directory}/log4j-core-java9 + + + + + + + maven-compiler-plugin + + + + default-compile + + + module-info.java + + none + + + + + process-plugins + + compile + + process-classes + + + module-info.java + + only + + + + + + maven-surefire-plugin + + + org.apache.logging.log4j.categories.PerformanceTests + + + * + + + + + org.apache.maven.plugins + maven-failsafe-plugin + + true + + + + org.apache.maven.plugins + maven-jar-plugin + + + default-jar + + jar + + + + ${manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${maven.compiler.source} + ${maven.compiler.target} + org.apache.logging.log4j.core + true + + + + + + default + + test-jar + + + + ${manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + + + org.apache.felix + maven-bundle-plugin + + + org.apache.logging.log4j.core + + org.apache.logging.log4j.core.* + + sun.reflect;resolution:=optional, + * + + org.apache.logging.log4j.core.osgi.Activator + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${changes.plugin.version} + + + + changes-report + + + + + %URL%/show_bug.cgi?id=%ISSUE% + true + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${checkstyle.plugin.version} + + + ${log4jParentDir}/checkstyle.xml + ${log4jParentDir}/checkstyle-suppressions.xml + false + basedir=${basedir} + licensedir=${log4jParentDir}/checkstyle-header.txt + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${javadoc.plugin.version} + + false + Copyright © {inceptionYear}-{currentYear} {organizationName}. All Rights Reserved.
+ Apache Logging, Apache Log4j, Log4j, Apache, the Apache feather logo, the Apache Logging project logo, + and the Apache Log4j logo are trademarks of The Apache Software Foundation.

]]>
+ + false + true + + http://docs.oracle.com/javaee/6/api/ + http://www.osgi.org/javadoc/r4v43/core/ + https://commons.apache.org/proper/commons-lang/javadocs/api-release/ + + + + Core API + org.apache.logging.log4j.core + + + Configuration + org.apache.logging.log4j.core.config*:org.apache.logging.log4j.core.selector + + + Core Plugins + org.apache.logging.log4j.core.appender*:org.apache.logging.log4j.core.filter:org.apache.logging.log4j.core.layout:org.apache.logging.log4j.core.lookup:org.apache.logging.log4j.core.pattern:org.apache.logging.log4j.core.script + + + Tools + org.apache.logging.log4j.core.net*:org.apache.logging.log4j.core.tools + + + Internals + org.apache.logging.log4j.core.async:org.apache.logging.log4j.core.impl:org.apache.logging.log4j.core.util*:org.apache.logging.log4j.core.osgi:org.apache.logging.log4j.core.jackson:org.apache.logging.log4j.core.jmx + + +
+ + + non-aggregate + + javadoc + + + +
+ + com.github.spotbugs + spotbugs-maven-plugin + + + org.apache.maven.plugins + maven-jxr-plugin + ${jxr.plugin.version} + + + non-aggregate + + jxr + + + + aggregate + + aggregate + + + + + + org.apache.maven.plugins + maven-pmd-plugin + ${pmd.plugin.version} + + ${maven.compiler.target} + + +
+
+
+ diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.17.1/.log4j-slf4j-impl-2.17.1.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.17.1/.log4j-slf4j-impl-2.17.1.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.17.1/.log4j-slf4j-impl-2.17.1.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.17.1/.log4j-slf4j-impl-2.17.1.jar__md5 new file mode 100644 index 0000000..f15f02d --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.17.1/.log4j-slf4j-impl-2.17.1.jar__md5 @@ -0,0 +1 @@ +8d0e5934a9c341dbc3493d4039afd985 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.17.1/.log4j-slf4j-impl-2.17.1.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.17.1/.log4j-slf4j-impl-2.17.1.jar__sha1 new file mode 100644 index 0000000..894ed8d --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.17.1/.log4j-slf4j-impl-2.17.1.jar__sha1 @@ -0,0 +1 @@ +84692d456bcce689355d33d68167875e486954dd \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.17.1/.log4j-slf4j-impl-2.17.1.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.17.1/.log4j-slf4j-impl-2.17.1.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.17.1/.log4j-slf4j-impl-2.17.1.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.17.1/.log4j-slf4j-impl-2.17.1.pom__md5 new file mode 100644 index 0000000..5fac22b --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.17.1/.log4j-slf4j-impl-2.17.1.pom__md5 @@ -0,0 +1 @@ +e2cfb428f1b4347a7ddd02d7e9fdeef3 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.17.1/.log4j-slf4j-impl-2.17.1.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.17.1/.log4j-slf4j-impl-2.17.1.pom__sha1 new file mode 100644 index 0000000..58fff69 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.17.1/.log4j-slf4j-impl-2.17.1.pom__sha1 @@ -0,0 +1 @@ +c4028cee7547aa86a898e239e7f7cdd249444db6 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.17.1/log4j-slf4j-impl-2.17.1.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.17.1/log4j-slf4j-impl-2.17.1.pom new file mode 100644 index 0000000..8c3fd7e --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.17.1/log4j-slf4j-impl-2.17.1.pom @@ -0,0 +1,303 @@ + + + + 4.0.0 + + org.apache.logging.log4j + log4j + 2.17.1 + ../ + + log4j-slf4j-impl + jar + Apache Log4j SLF4J Binding + The Apache Log4j SLF4J API binding to Log4j 2 Core + + ${basedir}/.. + SLF4J Documentation + /slf4j-impl + + 1.7.25 + org.apache.logging.log4j.slf4j + true + + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.slf4j + slf4j-ext + ${slf4j.version} + true + + + org.apache.logging.log4j + log4j-api + + + org.apache.logging.log4j + log4j-core + runtime + + + org.apache.logging.log4j + log4j-api + test-jar + test + + + org.apache.commons + commons-lang3 + test + + + org.apache.commons + commons-csv + test + + + org.apache.logging.log4j + log4j-core + test-jar + test + + + org.apache.logging.log4j + log4j-to-slf4j + test + ${project.version} + + + org.junit.vintage + junit-vintage-engine + + + org.junit.jupiter + junit-jupiter-engine + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + + process + + + false + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + default-jar + + jar + + + + ${manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${maven.compiler.source} + ${maven.compiler.target} + ${module.name} + + + + + + default + + test-jar + + + + ${manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + loop-test + test + + test + + + + **/OverflowTest.java + + + + + default-test + test + + test + + + + **/*Test.java + + + **/OverflowTest.java + + + org.apache.logging.log4j:log4j-to-slf4j + + + + + + + org.apache.felix + maven-bundle-plugin + + + + org.apache.logging.slf4j, + org.slf4j.impl + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${changes.plugin.version} + + + + changes-report + + + + + %URL%/show_bug.cgi?id=%ISSUE% + true + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${checkstyle.plugin.version} + + + ${log4jParentDir}/checkstyle.xml + ${log4jParentDir}/checkstyle-suppressions.xml + false + basedir=${basedir} + licensedir=${log4jParentDir}/checkstyle-header.txt + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${javadoc.plugin.version} + + Copyright © {inceptionYear}-{currentYear} {organizationName}. All Rights Reserved.
+ Apache Logging, Apache Log4j, Log4j, Apache, the Apache feather logo, the Apache Logging project logo, + and the Apache Log4j logo are trademarks of The Apache Software Foundation.

]]>
+ + false + true +
+ + + non-aggregate + + javadoc + + + +
+ + com.github.spotbugs + spotbugs-maven-plugin + + + org.apache.maven.plugins + maven-jxr-plugin + ${jxr.plugin.version} + + + non-aggregate + + jxr + + + + aggregate + + aggregate + + + + + + org.apache.maven.plugins + maven-pmd-plugin + ${pmd.plugin.version} + + ${maven.compiler.target} + + +
+
+
+ diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j/2.17.1/.log4j-2.17.1.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j/2.17.1/.log4j-2.17.1.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j/2.17.1/.log4j-2.17.1.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j/2.17.1/.log4j-2.17.1.pom__md5 new file mode 100644 index 0000000..eb77ff2 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j/2.17.1/.log4j-2.17.1.pom__md5 @@ -0,0 +1 @@ +b65fe2e4c8f22ade04b5080848927e14 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j/2.17.1/.log4j-2.17.1.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j/2.17.1/.log4j-2.17.1.pom__sha1 new file mode 100644 index 0000000..08101b6 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j/2.17.1/.log4j-2.17.1.pom__sha1 @@ -0,0 +1 @@ +a2dfa3b5d5ad65dcd6cb19dc721ea3c35d81a13e \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j/2.17.1/log4j-2.17.1.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j/2.17.1/log4j-2.17.1.pom new file mode 100644 index 0000000..ffe0788 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j/2.17.1/log4j-2.17.1.pom @@ -0,0 +1,1864 @@ + + + 4.0.0 + org.apache.logging.log4j + log4j + pom + Apache Log4j 2 + 2.17.1 + + org.apache.logging + logging-parent + 3 + + + Apache Log4j 2 + https://logging.apache.org/log4j/2.x/ + + JIRA + https://issues.apache.org/jira/browse/LOG4J2 + + + Jenkins + https://ci-builds.apache.org/job/Logging/job/log4j/ + + 1999 + + + rgoers + Ralph Goers + rgoers@apache.org + Nextiva + + PMC Member + + America/Phoenix + + + ggregory + Gary Gregory + ggregory@apache.org + Rocket Software + + PMC Member + + America/Denver + + + sdeboy + Scott Deboy + sdeboy@apache.org + + PMC Member + + America/Los_Angeles + + + rpopma + Remko Popma + rpopma@apache.org + + PMC Member + + Asia/Tokyo + + http://people.apache.org/~rpopma/img/profilepic.jpg + + + + nickwilliams + Nick Williams + nickwilliams@apache.org + + PMC Member + + America/Chicago + + + mattsicker + Matt Sicker + mattsicker@apache.org + CloudBees + + PMC Chair + + America/Chicago + + + bbrouwer + Bruce Brouwer + bruce.brouwer@gmail.com + + Committer + + America/Detroit + + + mikes + Mikael StÃ¥ldal + mikes@apache.org + Spotify + + PMC Member + + Europe/Stockholm + + + ckozak + Carter Kozak + ckozak@apache.org + + PMC Member + + America/New York + + + vy + Volkan Yazıcı + vy@apache.org + + PMC Member + + Europe/Amsterdam + + + + + + Murad Ersoy + muradersoy@gmail.com + https://www.behance.net/muradersoy + + Illustrator and Designer + created the new Log4j 2 logo. + + Europe/Istanbul + + https://mir-s3-cdn-cf.behance.net/user/138/403dcf1521581.54d67f8fb01f7.jpg + + + + + + log4j-user + log4j-user-subscribe@logging.apache.org + log4j-user-unsubscribe@logging.apache.org + log4j-user@logging.apache.org + https://lists.apache.org/list.html?log4j-user@logging.apache.org + + http://mail-archives.apache.org/mod_mbox/logging-log4j-user/ + http://marc.info/?l=log4j-user + http://dir.gmane.org/gmane.comp.jakarta.log4j.user + + + + dev + dev-subscribe@logging.apache.org + dev-unsubscribe@logging.apache.org + dev@logging.apache.org + https://lists.apache.org/list.html?dev@logging.apache.org + + http://mail-archives.apache.org/mod_mbox/logging-dev/ + http://marc.info/?l=dev + http://dir.gmane.org/gmane.comp.jakarta.log4j.devel + + + + + scm:git:https://gitbox.apache.org/repos/asf/logging-log4j2.git + scm:git:https://gitbox.apache.org/repos/asf/logging-log4j2.git + https://gitbox.apache.org/repos/asf?p=logging-log4j2.git + log4j-2.17.1-rc1 + + + + ${basedir} + 2.17.1 + 2.12.3 + 2.3.1 + Matt Sicker + D7C92B70FA1C814D + mattsicker@apache.org + + 1.7.25 + 1.2.3 + 1.9.13 + 2.12.4 + 2.5.7 + 5.3.13 + 4.6.1 + 1.9.0 + 3.4.4 + 1.2.15 + 7.6.2 + 3.12.7 + 4.2.2 + + 6.2.6 + 3.0.8 + 3.8.1 + 3.10.0 + 2.12.1 + 3.3.1 + + + + 3.0.0-M5 + 3.0.0-M5 + 3.0.0 + 2.8.2 + 0.13 + 1.2 + 2.7 + 0.8.6 + 2.5.3 + 1.9.5 + 2.5 + 0.11.1 + false + 2.8 + 3.8.2 + + + 1.5 + 1.5.6 + 1.5 + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + 1.8 + 1.8 + false + UTF-8 + + 10 + Site Documentation + + 1.2 + 2.2.1 + + 4.3.1 + 5.16.3 + + info + 1.2.1 + 4.13.2 + 5.7.2 + 3.11.2 + 2.8.3 + -Xms256m -Xmx1024m + 1.8 + + + + + apache + https://repository.apache.org/content/repositories/releases/ + + + + + + + + + + + + + + org.slf4j + slf4j-api + ${slf4jVersion} + + + org.slf4j + slf4j-ext + ${slf4jVersion} + + + ch.qos.logback + logback-core + ${logbackVersion} + test + + + ch.qos.logback + logback-core + test-jar + ${logbackVersion} + test + + + org.eclipse.tycho + org.eclipse.osgi + 3.13.0.v20180226-1711 + + + org.apache.felix + org.apache.felix.framework + 5.6.12 + + + org.apache.maven + maven-core + 3.6.3 + + + commons-codec + commons-codec + 1.15 + + + org.apache.commons + commons-lang3 + 3.12.0 + + + org.apache.commons + commons-pool2 + 2.11.1 + + + org.apache.commons + commons-dbcp2 + 2.9.0 + + + ch.qos.logback + logback-classic + ${logbackVersion} + test + + + ch.qos.logback + logback-classic + ${logbackVersion} + test-jar + test + + + org.apache.logging.log4j + log4j-api-java9 + ${project.version} + zip + + + org.apache.logging.log4j + log4j-api + ${project.version} + + + org.apache.logging.log4j + log4j-api + ${project.version} + test-jar + test + + + org.apache.logging.log4j + log4j-core-java9 + ${project.version} + zip + + + org.apache.logging.log4j + log4j-core + ${project.version} + + + org.apache.logging.log4j + log4j-core + ${project.version} + test-jar + test + + + org.apache.logging.log4j + log4j-layout-template-json + ${project.version} + test-jar + + + org.apache.logging.log4j + log4j-slf4j-impl + ${project.version} + + + org.apache.logging.log4j + log4j-slf4j-impl + ${project.version} + zip + + + org.apache.logging.log4j + log4j-slf4j18-impl + ${project.version} + + + org.apache.logging.log4j + log4j-jcl + ${project.version} + + + commons-logging + commons-logging + ${commonsLoggingVersion} + + + org.apache.logging.log4j + log4j-1.2-api + ${project.version} + + + org.apache.logging.log4j + log4j-flume-ng + ${project.version} + + + org.apache.logging.log4j + log4j-iostreams + ${project.version} + + + org.apache.logging.log4j + log4j-jul + ${project.version} + + + org.apache.logging.log4j + log4j-jpl + ${project.version} + + + org.apache.logging.log4j + log4j-taglib + ${project.version} + + + org.apache.logging.log4j + log4j-web + ${project.version} + + + org.apache.logging.log4j + log4j-jakarta-web + ${project.version} + + + com.sleepycat + je + 5.0.73 + + + org.osgi + org.osgi.core + ${osgi.api.version} + provided + + + org.fusesource.jansi + jansi + 2.3.4 + true + + + org.apache.flume + flume-ng-sdk + ${flumeVersion} + + + org.codehaus.jackson + jackson-core-asl + + + org.codehaus.jackson + jackson-mapper-asl + + + + + org.apache.flume + flume-ng-core + ${flumeVersion} + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + + + org.apache.flume + flume-ng-embedded-agent + ${flumeVersion} + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + org.codehaus.jackson + jackson-core-asl + + + org.codehaus.jackson + jackson-mapper-asl + + + + + org.apache.flume + flume-ng-node + ${flumeVersion} + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + org.codehaus.jackson + jackson-core-asl + + + org.codehaus.jackson + jackson-mapper-asl + + + + + org.apache.flume.flume-ng-channels + flume-file-channel + ${flumeVersion} + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + org.mortbay.jetty + servlet-api + + + org.mortbay.jetty + servlet-api-2.5 + + + junit + junit + + + + + org.apache.hadoop + hadoop-core + 1.2.1 + + + org.codehaus.jackson + jackson-core-asl + + + org.codehaus.jackson + jackson-mapper-asl + + + org.mortbay.jetty + servlet-api + + + junit + junit + + + + + + org.codehaus.jackson + jackson-core-asl + ${jackson1Version} + runtime + + + org.codehaus.jackson + jackson-mapper-asl + ${jackson1Version} + runtime + + + + + com.fasterxml.jackson.core + jackson-core + ${jackson2Version} + true + + + com.fasterxml.jackson.core + jackson-databind + ${jackson2Version} + true + + + com.fasterxml.jackson.core + jackson-annotations + ${jackson2Version} + true + + + com.fasterxml.jackson.dataformat + jackson-dataformat-yaml + ${jackson2Version} + true + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + ${jackson2Version} + true + + + com.fasterxml.jackson.module + jackson-module-jaxb-annotations + ${jackson2Version} + true + + + + com.sun.mail + javax.mail + 1.6.2 + + + org.jboss.spec.javax.jms + jboss-jms-api_1.1_spec + 1.0.1.Final + provided + + + org.apache.activemq + activemq-broker + ${activemq.version} + + + org.apache.kafka + kafka-clients + 1.1.1 + + + org.zeromq + jeromq + 0.4.3 + + + javax.servlet + servlet-api + 2.5 + provided + + + com.lmax + disruptor + ${disruptorVersion} + + + com.conversantmedia + disruptor + ${conversantDisruptorVersion} + + + org.jctools + jctools-core + ${jctoolsVersion} + + + + org.junit.jupiter + junit-jupiter-engine + ${junitJupiterVersion} + test + + + + org.junit.jupiter + junit-jupiter-migrationsupport + ${junitJupiterVersion} + test + + + + org.junit.jupiter + junit-jupiter-params + ${junitJupiterVersion} + test + + + + junit + junit + ${junitVersion} + test + + + + org.junit.vintage + junit-vintage-engine + ${junitJupiterVersion} + test + + + org.assertj + assertj-core + 3.20.2 + test + + + org.hamcrest + hamcrest + 2.2 + test + + + org.awaitility + awaitility + 4.0.3 + test + + + org.codehaus.plexus + plexus-utils + 3.4.0 + test + + + org.mockito + mockito-core + ${mockitoVersion} + test + + + org.mockito + mockito-junit-jupiter + ${mockitoVersion} + test + + + org.springframework + spring-aop + ${springVersion} + + + org.springframework + spring-beans + ${springVersion} + + + org.springframework + spring-context + ${springVersion} + + + org.springframework + spring-core + ${springVersion} + + + org.springframework + spring-expression + ${springVersion} + + + org.springframework + spring-oxm + ${springVersion} + + + org.springframework + spring-test + ${springVersion} + + + org.springframework + spring-web + ${springVersion} + + + org.springframework + spring-webmvc + ${springVersion} + + + org.springframework + spring-context-support + ${springVersion} + + + io.fabric8 + kubernetes-client + ${kubernetes-client.version} + + + org.hsqldb + hsqldb + 2.5.2 + + + com.h2database + h2 + 1.4.200 + + + org.eclipse.persistence + org.eclipse.persistence.jpa + 2.7.9 + + + org.eclipse.persistence + javax.persistence + ${javax.persistence} + provided + + + org.lightcouch + lightcouch + 0.0.6 + + + com.datastax.cassandra + cassandra-driver-core + 3.1.4 + + + org.liquibase + liquibase-core + + 3.5.5 + + + net.javacrumbs.json-unit + json-unit + 2.27.0 + test + + + org.xmlunit + xmlunit-core + ${xmlunitVersion} + test + + + org.xmlunit + xmlunit-matchers + ${xmlunitVersion} + test + + + commons-io + commons-io + 2.11.0 + test + + + + co.elastic.logging + log4j2-ecs-layout + 1.0.1 + + + org.elasticsearch.client + elasticsearch-rest-high-level-client + ${elastic.version} + + + + com.github.tomakehurst + wiremock + test + + 2.26.3 + + + + org.apache.commons + commons-compress + 1.21 + + + org.tukaani + xz + 1.9 + test + + + + org.apache.commons + commons-csv + 1.9.0 + + + + com.google.code.java-allocation-instrumenter + java-allocation-instrumenter + 3.0.1 + + + org.hdrhistogram + HdrHistogram + 2.1.9 + + + org.apache-extras.beanshell + bsh + 2.0b6 + + + org.codehaus.groovy + groovy-jsr223 + ${groovy.version} + + + org.codehaus.groovy + groovy-dateutil + ${groovy.version} + + + + de.flapdoodle.embed + de.flapdoodle.embed.mongo + 3.0.0 + test + + + + org.zapodot + embedded-ldap-junit + 0.8.1 + test + + + + + + + + org.apache.felix + maven-bundle-plugin + 3.5.0 + true + true + + + + manifest + + process-classes + + + + + org.apache.maven.plugins + maven-changes-plugin + ${changes.plugin.version} + + + org.apache.maven.plugins + maven-release-plugin + ${release.plugin.version} + + + org.apache.maven.plugins + maven-scm-plugin + ${scm.plugin.version} + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${checkstyle.plugin.version} + + + org.apache.maven.plugins + maven-javadoc-plugin + ${javadoc.plugin.version} + + Copyright © {inceptionYear}-{currentYear} {organizationName}. All Rights Reserved.
+ Apache Logging, Apache Log4j, Log4j, Apache, the Apache feather logo, the Apache Logging project logo, + and the Apache Log4j logo are trademarks of The Apache Software Foundation.

]]>
+ none +
+
+ + org.apache.maven.plugins + maven-pmd-plugin + ${pmd.plugin.version} + + + + org.apache.maven.plugins + maven-compiler-plugin + ${compiler.plugin.version} + + ${maven.compiler.source} + ${maven.compiler.target} + true + true + true + UTF-8 + true + 256 + 1024 + + 10000 + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.plugin.version} + + + org.apache.maven.plugins + maven-failsafe-plugin + ${failsafe.plugin.version} + + + com.github.spotbugs + spotbugs-maven-plugin + 4.0.4 + + + + com.h3xstream.findsecbugs + findsecbugs-plugin + 1.10.1 + + + ${log4jParentDir}/findbugs-exclude-filter.xml + true + Default + Normal + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + attach-sources + verify + + jar-no-fork + test-jar-no-fork + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${jxr.plugin.version} + + + org.eluder.coveralls + coveralls-maven-plugin + 4.3.0 + + + org.jacoco + jacoco-maven-plugin + ${jacoco.plugin.version} + + + prepare-agent + + prepare-agent + + + + default-report + prepare-package + + report + + + + + + org.apache.maven.plugins + maven-assembly-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-jar-plugin + 3.1.0 + + + default-jar + + jar + + + + ${manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${maven.compiler.source} + ${maven.compiler.target} + ${module.name} + + + + + + + + io.fabric8 + docker-maven-plugin + 0.33.0 + +
+
+ + + org.apache.maven.plugins + maven-checkstyle-plugin + + + maven-clean-plugin + 3.1.0 + + + maven-resources-plugin + 3.0.2 + + + copy-sitecss + + pre-site + + copy-resources + + + ${project.build.directory}/site + + + ${log4jParentDir}/src/site/resources + + **/* + + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.plugin.version} + + + true + + 1 + false + + + + org.apache.maven.plugins + maven-failsafe-plugin + ${failsafe.plugin.version} + + + + integration-test + verify + + + + + + true + + -Xms256m -Xmx1024m + 1 + false + UTF-8 + + + + org.codehaus.mojo + build-helper-maven-plugin + 1.12 + + + timestamp-property + + timestamp-property + + pre-site + + currentYear + yyyy + + + + + + org.apache.maven.plugins + maven-site-plugin + ${site.plugin.version} + + + org.asciidoctor + asciidoctor-maven-plugin + ${asciidoc.plugin.version} + + + org.asciidoctor + asciidoctor-maven-plugin + ${asciidoc.plugin.version} + + + + + en + + + navigation.xml,changes.xml + + + + + ${Log4jReleaseVersion} + ${Log4jReleaseManager} + ${Log4jReleaseKey} + + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + + process + + + true + + + + + + + org.apache.maven.plugins + maven-pdf-plugin + ${pdf.plugin.version} + + + pdf + site + + pdf + + + ${project.reporting.outputDirectory} + + + + + + org.apache.maven.plugins + maven-source-plugin + + + + org.apache.rat + apache-rat-plugin + ${rat.plugin.version} + + + + src/main/resources/META-INF/services/**/* + + .idea/**/* + src/test/resources/**/* + + src/ide/** + + **/*.asc + + src/site/resources/js/jquery.js + src/site/resources/js/jquery.min.js + + log4j-distribution/target/**/* + log4j-distribution/.project + log4j-distribution/.settings/** + velocity.log + + felix-cache/** + **/README.md + RELEASE-NOTES.md + SECURITY.md + .java-version + **/*.yml + **/*.yaml + **/*.json + **/images/*.drawio + **/fluent-bit.conf + **/rabbitmq.config + **/MANIFEST.MF + + + + + + org.apache.maven.plugins + maven-doap-plugin + 1.2 + + + + com.ibm.icu + icu4j + 4.6.1 + + + + + Java + library + + + + The Apache Logging Services Project creates and maintains open-source software related to the logging of + application behavior and released at no charge to the public. + + https://logging.apache.org + + ${maven.doap.skip} + + + + site + site + + generate + + + + + +
+ + + + + org.apache.maven.plugins + maven-changes-plugin + ${changes.plugin.version} + + + + changes-report + jira-report + + + + + Resolved, Closed + Type,Key,Summary,Assignee,Status,Resolution,Fix Version + true + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.9 + + + + index + dependencies + dependency-info + dependency-convergence + dependency-management + project-team + mailing-list + issue-tracking + license + scm + summary + + + + + + ${project.basedir}/src/site/custom/project-info-report.properties + ${project.scm.url} + ${project.scm.connection} + ${project.scm.developerConnection} + rel/${Log4jReleaseVersion} + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${surefire.plugin.version} + + + integration-tests + + failsafe-report-only + + + + + + + org.apache.rat + apache-rat-plugin + ${rat.plugin.version} + + + + src/main/resources/META-INF/services/**/* + + .idea/**/* + src/test/resources/**/* + + src/ide/** + + **/*.asc + + src/site/resources/js/jquery.js + src/site/resources/js/jquery.min.js + + log4j-distribution/target/**/* + log4j-distribution/.project + log4j-distribution/.settings/** + velocity.log + + felix-cache/** + **/README.md + SECURITY.md + RELEASE-NOTES.md + **/*.yml + **/*.yaml + **/*.json + **/images/*.drawio + **/fluent-bit.conf + **/rabbitmq.config + **/MANIFEST.MF + .java-version + + + + + + + https://logging.apache.org/log4j/2.x/download.html + + + www.example.com + scp://www.example.com/www/docs/project/ + + + + log4j-api-java9 + log4j-api + log4j-core-java9 + log4j-core + log4j-layout-template-json + log4j-core-its + log4j-1.2-api + log4j-slf4j-impl + log4j-slf4j18-impl + log4j-to-slf4j + log4j-jcl + log4j-flume-ng + log4j-taglib + log4j-jmx-gui + log4j-samples + log4j-bom + log4j-jdbc-dbcp2 + log4j-jpa + log4j-couchdb + log4j-mongodb3 + log4j-mongodb4 + log4j-cassandra + log4j-web + log4j-jakarta-web + log4j-perf + log4j-iostreams + log4j-jul + log4j-jpl + log4j-liquibase + log4j-appserver + log4j-osgi + log4j-docker + log4j-kubernetes + log4j-spring-boot + log4j-spring-cloud-config + + + + pdf + + + + org.apache.maven.plugins + maven-pdf-plugin + ${pdf.plugin.version} + + + pdf + generate-resources + + pdf + + + ${project.reporting.outputDirectory} + + + + + + + + + release-notes + + + + org.apache.maven.plugins + maven-changes-plugin + ${changes.plugin.version} + + + src/changes + true + . + RELEASE-NOTES.md + + changes.xml + + + ${Log4jReleaseVersion} + + ${Log4jReleaseVersion} + ${Log4jReleaseCount} + + true + + + + create-release-notes + generate-resources + + announcement-generate + + + + + + + + + apache-release + + + + maven-assembly-plugin + + + source-release-assembly + + true + + + + + + + + log4j-distribution + + + + rat + + + + + org.apache.rat + apache-rat-plugin + ${rat.plugin.version} + + + + src/main/resources/META-INF/services/**/* + + .idea/**/* + src/test/resources/**/* + + src/ide/** + + **/*.asc + + src/site/resources/js/jquery.js + src/site/resources/js/jquery.min.js + + log4j-distribution/target/**/* + log4j-distribution/.project + log4j-distribution/.settings/** + velocity.log + + felix-cache/** + **/README.md + RELEASE-NOTES.md + SECURITY.md + **/*.yml + **/*.yaml + **/*.json + **/images/*.drawio + **/fluent-bit.conf + **/rabbitmq.config + **/MANIFEST.MF + .java-version + + + + + verify + + check + + + + + + + + + + yourkit-mac + + + /Applications/YJP.app + + + + com.yourkit + yjp-controller-api-redist + 2013 + system + ${yourkit.home}/lib/yjp-controller-api-redist.jar + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + -agentpath:"${yourkit.home}/bin/mac/libyjpagent.jnilib" + + + + maven-failsafe-plugin + + -agentpath:"${yourkit.home}/bin/mac/libyjpagent.jnilib" + + + + + + + jdk8orGreater + + [1.8,) + + + + + org.revapi + revapi-maven-plugin + ${revapi.plugin.version} + + + org.revapi + revapi-java + 0.18.2 + + + + + check + + false + ${revapi.skip} + false + + revapi.json + + >> B org.apache.logging.log4j.core.appender.OutputStreamAppender::newBuilder()", + "justification": "The compiler erases types (https://docs.oracle.com/javase/specs/jls/se8/html/jls-4.html#jls-4.6)" + }, + { + "code": "java.generics.elementNowParameterized", + "old": "method org.apache.logging.log4j.core.appender.OutputStreamAppender.Builder org.apache.logging.log4j.core.appender.OutputStreamAppender::newBuilder()", + "new": "method >> B org.apache.logging.log4j.core.appender.OutputStreamAppender::newBuilder()", + "justification": "The compiler erases types (https://docs.oracle.com/javase/specs/jls/se8/html/jls-4.html#jls-4.6)" + }, + { + "code": "java.generics.formalTypeParameterAdded", + "old": "method org.apache.logging.log4j.core.appender.OutputStreamAppender.Builder org.apache.logging.log4j.core.appender.OutputStreamAppender::newBuilder()", + "new": "method >> B org.apache.logging.log4j.core.appender.OutputStreamAppender::newBuilder()", + "typeParameter": "B extends org.apache.logging.log4j.core.appender.OutputStreamAppender.Builder>", + "justification": "The compiler erases types (https://docs.oracle.com/javase/specs/jls/se8/html/jls-4.html#jls-4.6)" + } + ] + } +] + ]]> + + + + + + + + + + org.revapi + revapi-maven-plugin + ${revapi.plugin.version} + + + false + + report-aggregate + + + + + report + + + + + + + + + java8-doclint-disabled + + [1.8,) + + + -Xdoclint:none + + + +
diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/logging-parent/3/.logging-parent-3.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/logging-parent/3/.logging-parent-3.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/logging-parent/3/.logging-parent-3.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/logging-parent/3/.logging-parent-3.pom__md5 new file mode 100644 index 0000000..8f6b49c --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/logging-parent/3/.logging-parent-3.pom__md5 @@ -0,0 +1 @@ +f5a890013b424b1b5d607a5fb05bad9c \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/logging-parent/3/.logging-parent-3.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/logging-parent/3/.logging-parent-3.pom__sha1 new file mode 100644 index 0000000..57dc426 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/logging-parent/3/.logging-parent-3.pom__sha1 @@ -0,0 +1 @@ +5aacbd3590605400bd3b29892751c6d70d810a75 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/logging-parent/3/logging-parent-3.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/logging-parent/3/logging-parent-3.pom new file mode 100644 index 0000000..fceea3f --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/apache/logging/logging-parent/3/logging-parent-3.pom @@ -0,0 +1,84 @@ + + + + + 4.0.0 + + + org.apache + apache + 23 + + + org.apache.logging + logging-parent + pom + 3 + + Apache Logging Services + + Parent pom for Apache Logging Services projects. + + https://logging.apache.org/ + 1999 + + + + 1.8 + 1.8 + + + + scm:git:https://gitbox.apache.org/repos/asf/logging-parent.git + scm:git:https://gitbox.apache.org/repos/asf/logging-parent.git + https://gitbox.apache.org/repos/asf?p=logging-parent.git + logging-parent-3 + + + + + log4j-user + log4j-user-subscribe@logging.apache.org + log4j-user-unsubscribe@logging.apache.org + log4j-user@logging.apache.org + https://lists.apache.org/list.html?log4j-user@logging.apache.org + + + dev + dev-subscribe@logging.apache.org + dev-unsubscribe@logging.apache.org + dev@logging.apache.org + https://lists.apache.org/list.html?dev@logging.apache.org + + + + + JIRA + https://issues.apache.org/jira/browse/LOG4J2 + + + + + diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.4.1/.checker-qual-3.4.1.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.4.1/.checker-qual-3.4.1.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.4.1/.checker-qual-3.4.1.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.4.1/.checker-qual-3.4.1.jar__md5 new file mode 100644 index 0000000..fff278f --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.4.1/.checker-qual-3.4.1.jar__md5 @@ -0,0 +1 @@ +eadcb1a003dd324cfecbe0a2ec862be3 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.4.1/.checker-qual-3.4.1.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.4.1/.checker-qual-3.4.1.jar__sha1 new file mode 100644 index 0000000..e5819fc --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.4.1/.checker-qual-3.4.1.jar__sha1 @@ -0,0 +1 @@ +b3df2bf4d7d258e5aa192c3ac6f7f84688046262 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.4.1/.checker-qual-3.4.1.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.4.1/.checker-qual-3.4.1.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.4.1/.checker-qual-3.4.1.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.4.1/.checker-qual-3.4.1.pom__md5 new file mode 100644 index 0000000..3c37914 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.4.1/.checker-qual-3.4.1.pom__md5 @@ -0,0 +1 @@ +2692eaca549dd19a34d16b378e8676bb \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.4.1/.checker-qual-3.4.1.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.4.1/.checker-qual-3.4.1.pom__sha1 new file mode 100644 index 0000000..52891e8 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.4.1/.checker-qual-3.4.1.pom__sha1 @@ -0,0 +1 @@ +48f9d7fe1e9df19b41d95388fed313dacddcea69 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.4.1/checker-qual-3.4.1.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.4.1/checker-qual-3.4.1.pom new file mode 100644 index 0000000..013c957 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.4.1/checker-qual-3.4.1.pom @@ -0,0 +1,63 @@ + + + 4.0.0 + jar + org.checkerframework + checker-qual + 3.4.1 + + Checker Qual + https://checkerframework.org + + Checker Qual is the set of annotations (qualifiers) and supporting classes + used by the Checker Framework to type check Java source code. + + Please + see artifact: + org.checkerframework:checker + + + + + The MIT License + http://opensource.org/licenses/MIT + repo + + + + + https://github.com/typetools/checker-framework.git + https://github.com/typetools/checker-framework.git + + + + + + mernst + Michael Ernst + mernst@cs.washington.edu + https://homes.cs.washington.edu/~mernst/ + University of Washington + https://www.cs.washington.edu/ + + + + wmdietl + Werner M. Dietl + wdietl@uwaterloo.ca + University of Waterloo + http://uwaterloo.ca/ + + + + smillst + Suzanne Millstein + smillst@cs.washington.edu + University of Washington + https://www.cs.washington.edu/research/plse/ + + + + + diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/fusesource-pom/1.12/.fusesource-pom-1.12.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/fusesource-pom/1.12/.fusesource-pom-1.12.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/fusesource-pom/1.12/.fusesource-pom-1.12.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/fusesource-pom/1.12/.fusesource-pom-1.12.pom__md5 new file mode 100644 index 0000000..abf0daa --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/fusesource-pom/1.12/.fusesource-pom-1.12.pom__md5 @@ -0,0 +1 @@ +f94505b0fa8d067337b0b2c416da71a2 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/fusesource-pom/1.12/.fusesource-pom-1.12.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/fusesource-pom/1.12/.fusesource-pom-1.12.pom__sha1 new file mode 100644 index 0000000..a0c0f26 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/fusesource-pom/1.12/.fusesource-pom-1.12.pom__sha1 @@ -0,0 +1 @@ +778b55850b2bb4ebf48c02bc57a9afb1eec8f52e \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/fusesource-pom/1.12/fusesource-pom-1.12.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/fusesource-pom/1.12/fusesource-pom-1.12.pom new file mode 100644 index 0000000..2fd2dff --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/fusesource-pom/1.12/fusesource-pom-1.12.pom @@ -0,0 +1,436 @@ + + + + + 4.0.0 + + org.fusesource + fusesource-pom + 1.12 + pom + + FuseSource POM + This is a shared POM parent for FuseSource Maven projects + + + UTF-8 + + + http://fusesource.com/ + + FuseSource, Corp. + http://fusesource.com/ + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + fusesource-nexus-staging + Fusesource Release Repository + https://repository.jboss.org/nexus/service/local/staging/deploy/maven2 + + + fusesource-nexus-snapshots + Fusesource Nexus Snapshots + https://repository.jboss.org/nexus/content/repositories/fs-snapshots + + + + + scm:git:git://forge.fusesource.com/mvnplugins.git + scm:git:ssh://git@forge.fusesource.com/mvnplugins.git + http://github.com/chirino/mvnplugins/tree/master + HEAD + + + + + + geeks + FuseSource Development Team + FuseSource + http://fusesource.com/ + + + + + + + + + org.apache.maven.wagon + wagon-webdav-jackrabbit + 1.0-beta-7 + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.6 + + + org.apache.maven.plugins + maven-assembly-plugin + 2.2.1 + + + org.apache.maven.plugins + maven-clean-plugin + 2.4.1 + + + org.apache.maven.plugins + maven-compiler-plugin + 2.3.2 + + 1.4 + 1.4 + ${project.build.sourceEncoding} + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.6 + + + org.apache.maven.plugins + maven-docck-plugin + 1.0 + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.0.1 + + + org.apache.maven.plugins + maven-gpg-plugin + 1.3 + + + org.apache.maven.plugins + maven-install-plugin + 2.3.1 + + + org.apache.maven.plugins + maven-invoker-plugin + 1.5 + + + org.apache.maven.plugins + maven-jar-plugin + 2.3.1 + + + + true + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.5 + + + org.apache.maven.plugins + maven-plugin-plugin + 2.8 + + + + org.apache.maven.plugins + maven-remote-resources-plugin + 1.2.1 + + + org.apache.maven.plugins + maven-resources-plugin + 2.5 + + ${project.build.sourceEncoding} + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + org.apache.maven.plugins + maven-surefire-plugin + 2.6 + + + org.codehaus.mojo + clirr-maven-plugin + 2.3 + + + org.codehaus.plexus + plexus-maven-plugin + 1.3.8 + + + org.codehaus.modello + modello-maven-plugin + 1.5 + + + + org.apache.maven.plugins + maven-release-plugin + 2.5 + + false + true + true + false + clean install + deploy + -Prelease + + + + + + + + + + + + org.apache.maven.plugins + maven-scm-plugin + 1.5 + + + + + + + + + + + + + + + + release + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + ${gpg.passphrase} + + + + + sign + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + ${project.build.sourceEncoding} + + + + + attach-javadocs + + jar + + + + + + + + + + + enforce-no-snapshots + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.0 + + + enforce-no-snapshots + enforce + + + + No Snapshots Allowed! + + + No Snapshots Allowed! + + + + + + + + + + + + + download + + + fusesource-releases + FuseSource Release Repository + https://repo.fusesource.com/nexus/content/groups/public + true + false + + + fusesource-snapshots + FuseSource Snapshot Repository + https://repo.fusesource.com/nexus/content/groups/public-snapshots + false + true + + + + + fusesource-releases + FuseSource Release Repository + https://repo.fusesource.com/nexus/content/groups/public + true + false + + + fusesource-snapshots + FuseSource Snapshot Repository + https://repo.fusesource.com/nexus/content/groups/public-snapshots + false + true + + + + + + + fusesource-proxy + + + fusesource-proxy + FuseSource Proxy Repository + https://repo.fusesource.com/nexus/content/groups/m2-proxy + + + + + fusesource-proxy + FuseSource Proxy Repository + https://repo.fusesource.com/nexus/content/groups/m2-proxy + + + + + + + graph + + + + org.fusesource.mvnplugins + maven-graph-plugin + 1.15 + + + + + + + diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/.jansi-2.1.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/.jansi-2.1.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/.jansi-2.1.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/.jansi-2.1.0.jar__md5 new file mode 100644 index 0000000..ab2fa15 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/.jansi-2.1.0.jar__md5 @@ -0,0 +1 @@ +31bc4466e404217ca889f933a5540780 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/.jansi-2.1.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/.jansi-2.1.0.jar__sha1 new file mode 100644 index 0000000..d77cfe4 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/.jansi-2.1.0.jar__sha1 @@ -0,0 +1 @@ +605acb1326439709ac32b1bdf7c2606b9ba7fc35 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/.jansi-2.1.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/.jansi-2.1.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/.jansi-2.1.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/.jansi-2.1.0.pom__md5 new file mode 100644 index 0000000..1c13c15 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/.jansi-2.1.0.pom__md5 @@ -0,0 +1 @@ +6d3950b93879aee73e13cdc018747e5d \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/.jansi-2.1.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/.jansi-2.1.0.pom__sha1 new file mode 100644 index 0000000..1493b14 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/.jansi-2.1.0.pom__sha1 @@ -0,0 +1 @@ +ca03fdce484ffe07ca8608ffc314fe0a2f7a36a8 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0.pom new file mode 100644 index 0000000..339837b --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0.pom @@ -0,0 +1,330 @@ + + + + + 4.0.0 + + org.fusesource + fusesource-pom + 1.12 + + + org.fusesource.jansi + jansi + 2.1.0 + jar + + ${project.artifactId} + Jansi is a java library for generating and interpreting ANSI escape sequences. + + + UTF-8 + 1.6.1 + + + http://fusesource.github.io/jansi + 2009 + + + jira + https://github.com/fusesource/jansi/issues + + + + + Discussion List + http://groups.google.com/group/jansi + jansi-dev@googlegroups.com + jansi-dev+subscribe@googlegroups.com + jansi-dev+unsubscribe@googlegroups.com + + + Commits and Issue Tracker List + http://groups.google.com/group/jansi-commits + jansi-commits@googlegroups.com + jansi-commits+subscribe@googlegroups.com + jansi-commisots+unsubscribe@googlegroups.com + + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + scm:git:https://github.com/fusesource/jansi.git + scm:git:https://github.com/fusesource/jansi.git + https://github.com/fusesource/jansi/tree/${project.scm.tag} + jansi-2.1.0 + + + + + sonatype-nexus-staging + Sonatype Staging Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2 + + + sonatype-nexus-snapshots + Sonatype Snapshot Repository + https://oss.sonatype.org/content/repositories/snapshots + + + + + + sonatype-nexus-snapshots + Sonatype Snapshot Repository + https://oss.sonatype.org/content/repositories/snapshots + + true + + + + + + + chirino + Hiram Chirino + hiram@hiramchirino.com + http://hiramchirino.com + GMT-5 + + + gnodet + Guillaume Nodet + gnodet@gmail.com + GMT+1 + + + + + + + org.fusesource.mvnplugins + fuse-jxr-skin + 1.9 + + + + + + src/main/resources + true + + **/*.properties + + + + src/main/resources + false + + **/*.properties + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + + 1.6 + 1.6 + + + + org.apache.felix + maven-bundle-plugin + 5.1.1 + + + bundle-manifest + process-classes + + manifest + + + + org.fusesource.jansi.AnsiMain + + org.fusesource.jansi; + org.fusesource.jansi.internal; + -noimport:=true + + + + + + + + org.codehaus.mojo + exec-maven-plugin + 3.0.0 + + + generate-graalvm-info + process-classes + + java + + + true + test + + info.picocli + picocli-codegen + + picocli.codegen.aot.graalvm.JniConfigGenerator + + org.fusesource.jansi.internal.CLibrary + org.fusesource.jansi.internal.Kernel32 + -o=target/classes/META-INF/native-image/jansi/jni-config.json + + + + + + + info.picocli + picocli-codegen + 4.5.2 + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.0.0-M5 + + true + 1 + true + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + + org.fusesource.jansi + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.2.0 + + ${project.name} API Reference (${project.version}) + ${project.name} API Reference (${project.version}) + en_US + true + *.internal + true + true + UTF-8 + false + true + true + 6 + + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-source-plugin + 2.2.1 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-deploy-plugin + 3.0.0-M1 + + + org.apache.maven.plugins + maven-release-plugin + 3.0.0-M1 + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.8 + true + + ossrh + https://oss.sonatype.org/ + + + + + + + + org.junit.jupiter + junit-jupiter-engine + 5.7.0 + test + + + info.picocli + picocli-codegen + 4.5.2 + test + + + + diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-builtins/3.19.0/.jline-builtins-3.19.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-builtins/3.19.0/.jline-builtins-3.19.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-builtins/3.19.0/.jline-builtins-3.19.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-builtins/3.19.0/.jline-builtins-3.19.0.jar__md5 new file mode 100644 index 0000000..28de011 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-builtins/3.19.0/.jline-builtins-3.19.0.jar__md5 @@ -0,0 +1 @@ +67c8807dc4df210e00801692f745ef74 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-builtins/3.19.0/.jline-builtins-3.19.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-builtins/3.19.0/.jline-builtins-3.19.0.jar__sha1 new file mode 100644 index 0000000..64ccf56 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-builtins/3.19.0/.jline-builtins-3.19.0.jar__sha1 @@ -0,0 +1 @@ +49c2c6dbd9d26de02cab6af631b293a3b3c72fd5 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-builtins/3.19.0/.jline-builtins-3.19.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-builtins/3.19.0/.jline-builtins-3.19.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-builtins/3.19.0/.jline-builtins-3.19.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-builtins/3.19.0/.jline-builtins-3.19.0.pom__md5 new file mode 100644 index 0000000..3709fb3 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-builtins/3.19.0/.jline-builtins-3.19.0.pom__md5 @@ -0,0 +1 @@ +99bcccbbf4df05e61db1ff7d14e5cb8d \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-builtins/3.19.0/.jline-builtins-3.19.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-builtins/3.19.0/.jline-builtins-3.19.0.pom__sha1 new file mode 100644 index 0000000..618ac2e --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-builtins/3.19.0/.jline-builtins-3.19.0.pom__sha1 @@ -0,0 +1 @@ +22ab6b4f32e4ffedeec9c2522a01e9efe8585d9a \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-builtins/3.19.0/jline-builtins-3.19.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-builtins/3.19.0/jline-builtins-3.19.0.pom new file mode 100644 index 0000000..5c6edfd --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-builtins/3.19.0/jline-builtins-3.19.0.pom @@ -0,0 +1,97 @@ + + + + + 4.0.0 + + + org.jline + jline-parent + 3.19.0 + + + jline-builtins + JLine Builtins + + + org.jline.builtins + + + + + org.jline + jline-reader + + + org.jline + jline-style + + + + com.googlecode.juniversalchardet + juniversalchardet + true + + + + junit + junit + test + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + true + true + + + + default-compile + + + **/ConsoleEngineImpl.java + **/TTop.java + + + -Xlint:all,-options + -Werror + + + + + compact + + compile + + + + **/ConsoleEngineImpl.java + **/TTop.java + + + -Xlint:all,-options + -Werror + -profile + compact1 + + + + + + + + diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-parent/3.19.0/.jline-parent-3.19.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-parent/3.19.0/.jline-parent-3.19.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-parent/3.19.0/.jline-parent-3.19.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-parent/3.19.0/.jline-parent-3.19.0.pom__md5 new file mode 100644 index 0000000..ece515b --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-parent/3.19.0/.jline-parent-3.19.0.pom__md5 @@ -0,0 +1 @@ +8702f100dac2c3fc666fac6e15069461 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-parent/3.19.0/.jline-parent-3.19.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-parent/3.19.0/.jline-parent-3.19.0.pom__sha1 new file mode 100644 index 0000000..b44d03d --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-parent/3.19.0/.jline-parent-3.19.0.pom__sha1 @@ -0,0 +1 @@ +f4a06cc11e50bd9e069558d19e9715d039d64451 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-parent/3.19.0/jline-parent-3.19.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-parent/3.19.0/jline-parent-3.19.0.pom new file mode 100644 index 0000000..0c9b95e --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-parent/3.19.0/jline-parent-3.19.0.pom @@ -0,0 +1,634 @@ + + + + + 4.0.0 + + + org.sonatype.oss + oss-parent + 9 + + + org.jline + jline-parent + JLine Parent + JLine + 3.19.0 + pom + + + + The BSD License + https://opensource.org/licenses/BSD-3-Clause + repo + + + + + scm:git:git://github.com/jline/jline3.git + scm:git:ssh://git@github.com/jline/jline3.git + http://github.com/jline/jline3 + jline-parent-3.19.0 + + + + github + https://github.com/jline/jline3/issues + + + + travis + https://travis-ci.org/jline/jline3 + + + + + jline-users + mailto:jline-users@googlegroups.com + mailto:jline-users+unsubscribe@googlegroups.com + https://groups.google.com/group/jline-users + https://groups.google.com/group/jline-users + + + + + + gnodet + Guillaume Nodet + gnodet@gmail.com + + Developer + + + + + + UTF-8 + + 1.8 + 1.8 + + true + + + 5.3.1 + 2.1.0 + 1.0.3 + 2.1.0 + 3.3.1 + 4.13.1 + 1.1.2 + 1.1.4 + 1.7.21 + 3.0.2 + 3.0.7 + 2.5.0 + 19.3.1 + + + + + + 3.5.0 + + + + + apache-snapshots + Apache Snapshots + https://repository.apache.org/content/groups/snapshots + + false + + + true + + + + + + + + org.jline + jline-terminal + ${project.version} + + + + org.jline + jline-terminal-jansi + ${project.version} + + + + org.jline + jline-terminal-jna + ${project.version} + + + + org.jline + jline-reader + ${project.version} + + + + org.jline + jline-builtins + ${project.version} + + + + org.jline + jline-remote-ssh + ${project.version} + + + + org.jline + jline-remote-telnet + ${project.version} + + + + org.jline + jline + ${project.version} + + + + org.jline + jline-style + ${project.version} + + + + org.jline + jline-groovy + ${project.version} + + + + org.jline + jline-console + ${project.version} + + + + org.fusesource.jansi + jansi + ${jansi.version} + + + + net.java.dev.jna + jna + ${jna.version} + + + + com.googlecode.juniversalchardet + juniversalchardet + ${juniversalchardet.version} + + + + org.apache.sshd + sshd-common + ${sshd.version} + + + + org.apache.sshd + sshd-core + ${sshd.version} + + + + org.apache.sshd + sshd-scp + ${sshd.version} + + + + org.apache.sshd + sshd-sftp + ${sshd.version} + + + + org.apache.felix + org.apache.felix.gogo.runtime + ${gogo.runtime.version} + + + + org.apache.felix + org.apache.felix.gogo.jline + ${gogo.jline.version} + + + + org.codehaus.groovy + groovy + ${groovy.version} + + + + org.codehaus.groovy + groovy-json + ${groovy.version} + + + + org.codehaus.groovy + groovy-console + ${groovy.version} + + + + org.graalvm.sdk + graal-sdk + ${graal.version} + + + + org.apache.ivy + ivy + ${ivy.version} + + + + org.slf4j + slf4j-api + ${slf4j.version} + + + + org.slf4j + slf4j-jdk14 + ${slf4j.version} + + + + org.easymock + easymock + ${easymock.version} + + + + junit + junit + ${junit.version} + + + + com.google.code.findbugs + jsr305 + ${findbugs.version} + + + + + + install + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + true + + -Xlint:all,-options + -Werror + -profile + compact1 + + true + + + + + org.apache.maven.plugins + maven-deploy-plugin + 3.0.0-M1 + + true + + + + + com.mycila + license-maven-plugin + 3.0 + + UTF-8 + true + false +
${project.basedir}/header.txt
+ true + + **/pom.xml + **/*.xml + **/*.xsd + **/*.xjb + **/*.properties + **/*.ini + **/*.java + **/*.groovy + **/*.scala + **/*.aj + **/*.js + **/*.css + **/*.help + **/*.proto + **/*.sm + **/*.bat + **/*.xsl + **/*.html + **/*.vm + **/*.md + **/*.sh + **/*.bash + **/*.rb + + + **/target/** + **/.*/** + **/dependency-reduced-pom.xml + **/nbactions*.xml + **/nb-configuration.xml + **/atlassian-ide-plugin.xml + **/release.properties + **/META-INF/services/** + + + JAVADOC_STYLE + SLASHSTAR_STYLE + SCRIPT_STYLE + SCRIPT_STYLE + SLASHSTAR_STYLE + XML_STYLE + DOUBLESLASH_STYLE + SLASHSTAR_STYLE + DOUBLESLASH_STYLE + VELOCITY_STYLE + XML_STYLE + +
+
+ + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + gpg + + --pinentry-mode + loopback + + ${gpg.passphrase} + true + + + + +
+
+ + + + org.apache.felix + maven-bundle-plugin + 3.5.0 + + + *;-noimport:=true + + + + + process-classes + + manifest + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + + + org.codehaus.gmavenplus + gmavenplus-plugin + 1.8.1 + + + + org.apache.maven.plugins + maven-resources-plugin + 3.2.0 + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + ${automatic.module.name} + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.0.0-M5 + + true + ${surefire.argLine} + false + + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + + JLine Sources Bundle + ${project.groupId}.source + ${project.version} + ${project.groupId};version="${project.version}" + + + + + + attach-sources + + jar-no-fork + + + + + + + org.apache.maven.plugins + maven-release-plugin + 3.0.0-M1 + + true + + + + org.graalvm.nativeimage + native-image-maven-plugin + ${graal.version} + + +
+ + + + bundle + + + !nobundle + + + + jline + + + + + javadoc + + + !nojavadoc + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.2.0 + + none + true + ${javadocOptions} + false + + + + javadoc + + jar + + + + + + org.apache.commons + commons-lang3 + 3.7 + + + + + + + + + java9 + + --add-opens java.base/java.io=ALL-UNNAMED + + + [9,) + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.6.0 + + 8 + + + + + + + + license-check + + com.mycila:license-maven-plugin:check + + + + + license-format + + com.mycila:license-maven-plugin:format + + + + + native-image + + false + + + + + + terminal + terminal-jna + terminal-jansi + reader + builtins + console + groovy + remote-ssh + remote-telnet + style + demo + graal + + +
diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.19.0/.jline-reader-3.19.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.19.0/.jline-reader-3.19.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.19.0/.jline-reader-3.19.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.19.0/.jline-reader-3.19.0.jar__md5 new file mode 100644 index 0000000..b5ba820 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.19.0/.jline-reader-3.19.0.jar__md5 @@ -0,0 +1 @@ +fc14cc9855612b181c76eea3badb6002 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.19.0/.jline-reader-3.19.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.19.0/.jline-reader-3.19.0.jar__sha1 new file mode 100644 index 0000000..fb8a55d --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.19.0/.jline-reader-3.19.0.jar__sha1 @@ -0,0 +1 @@ +0645d72953711ee4e61705bc5e576fdd1f22c087 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.19.0/.jline-reader-3.19.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.19.0/.jline-reader-3.19.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.19.0/.jline-reader-3.19.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.19.0/.jline-reader-3.19.0.pom__md5 new file mode 100644 index 0000000..357c7a7 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.19.0/.jline-reader-3.19.0.pom__md5 @@ -0,0 +1 @@ +685a40f705082d7d76ef251016ddcc4b \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.19.0/.jline-reader-3.19.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.19.0/.jline-reader-3.19.0.pom__sha1 new file mode 100644 index 0000000..3625a91 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.19.0/.jline-reader-3.19.0.pom__sha1 @@ -0,0 +1 @@ +0320eed80caeca3f9cc0391b24eba59060704348 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.19.0/jline-reader-3.19.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.19.0/jline-reader-3.19.0.pom new file mode 100644 index 0000000..3888f4f --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.19.0/jline-reader-3.19.0.pom @@ -0,0 +1,42 @@ + + + + + 4.0.0 + + + org.jline + jline-parent + 3.19.0 + + + jline-reader + JLine Reader + + + org.jline.reader + + + + + org.jline + jline-terminal + + + + junit + junit + test + + + + diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-style/3.19.0/.jline-style-3.19.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-style/3.19.0/.jline-style-3.19.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-style/3.19.0/.jline-style-3.19.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-style/3.19.0/.jline-style-3.19.0.jar__md5 new file mode 100644 index 0000000..051bfd8 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-style/3.19.0/.jline-style-3.19.0.jar__md5 @@ -0,0 +1 @@ +acfd1be756a3057f2f3ffebced5a71e8 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-style/3.19.0/.jline-style-3.19.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-style/3.19.0/.jline-style-3.19.0.jar__sha1 new file mode 100644 index 0000000..7706e22 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-style/3.19.0/.jline-style-3.19.0.jar__sha1 @@ -0,0 +1 @@ +d99f3ff54a354b5b69237582faddd7b1af894a44 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-style/3.19.0/.jline-style-3.19.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-style/3.19.0/.jline-style-3.19.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-style/3.19.0/.jline-style-3.19.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-style/3.19.0/.jline-style-3.19.0.pom__md5 new file mode 100644 index 0000000..ecf34ae --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-style/3.19.0/.jline-style-3.19.0.pom__md5 @@ -0,0 +1 @@ +7c33ebb708e5e559ce8636721d68cfca \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-style/3.19.0/.jline-style-3.19.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-style/3.19.0/.jline-style-3.19.0.pom__sha1 new file mode 100644 index 0000000..202be34 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-style/3.19.0/.jline-style-3.19.0.pom__sha1 @@ -0,0 +1 @@ +e4cc6f13bff53a4ad238b39bcfdc3c34976277e9 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-style/3.19.0/jline-style-3.19.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-style/3.19.0/jline-style-3.19.0.pom new file mode 100644 index 0000000..179d5b2 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-style/3.19.0/jline-style-3.19.0.pom @@ -0,0 +1,48 @@ + + + + + 4.0.0 + + + org.jline + jline-parent + 3.19.0 + + + jline-style + JLine Style + + + org.jline.style + + + + + org.jline + jline-terminal + + + + com.google.code.findbugs + jsr305 + true + + + + junit + junit + test + + + + diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/.jline-terminal-jansi-3.19.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/.jline-terminal-jansi-3.19.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/.jline-terminal-jansi-3.19.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/.jline-terminal-jansi-3.19.0.jar__md5 new file mode 100644 index 0000000..fe09da1 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/.jline-terminal-jansi-3.19.0.jar__md5 @@ -0,0 +1 @@ +58f6d3c78fdbcd611cb6be4b23402e0c \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/.jline-terminal-jansi-3.19.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/.jline-terminal-jansi-3.19.0.jar__sha1 new file mode 100644 index 0000000..8a65795 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/.jline-terminal-jansi-3.19.0.jar__sha1 @@ -0,0 +1 @@ +0fdfbc23f42bf80176586b67179d8d7ee5261cff \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/.jline-terminal-jansi-3.19.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/.jline-terminal-jansi-3.19.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/.jline-terminal-jansi-3.19.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/.jline-terminal-jansi-3.19.0.pom__md5 new file mode 100644 index 0000000..ff1663f --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/.jline-terminal-jansi-3.19.0.pom__md5 @@ -0,0 +1 @@ +051b435f4948dd581a938655ae014f60 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/.jline-terminal-jansi-3.19.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/.jline-terminal-jansi-3.19.0.pom__sha1 new file mode 100644 index 0000000..6fad356 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/.jline-terminal-jansi-3.19.0.pom__sha1 @@ -0,0 +1 @@ +0d2a61ac9659ec718646d4e2a140b8de025b11c4 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0.pom new file mode 100644 index 0000000..257a218 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0.pom @@ -0,0 +1,66 @@ + + + + + 4.0.0 + + + org.jline + jline-parent + 3.19.0 + + + jline-terminal-jansi + JLine JANSI Terminal + + + org.jline.terminal.jansi + + + + + org.fusesource.jansi + jansi + + + + org.jline + jline-terminal + + + + junit + junit + test + + + + + + + org.apache.felix + maven-bundle-plugin + + + *;-noimport:=true + + org.fusesource.jansi;version="[1.12,2)", + org.fusesource.jansi.internal;version="[1.6,2)" + + org.jline.terminal + + + + + + + diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/.jline-terminal-jna-3.19.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/.jline-terminal-jna-3.19.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/.jline-terminal-jna-3.19.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/.jline-terminal-jna-3.19.0.jar__md5 new file mode 100644 index 0000000..633f173 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/.jline-terminal-jna-3.19.0.jar__md5 @@ -0,0 +1 @@ +6af35abeb5c507d2db7e771d67ed794b \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/.jline-terminal-jna-3.19.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/.jline-terminal-jna-3.19.0.jar__sha1 new file mode 100644 index 0000000..81a4137 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/.jline-terminal-jna-3.19.0.jar__sha1 @@ -0,0 +1 @@ +c9f9071612424157ca3d5a774a42f2c9b44c10ef \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/.jline-terminal-jna-3.19.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/.jline-terminal-jna-3.19.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/.jline-terminal-jna-3.19.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/.jline-terminal-jna-3.19.0.pom__md5 new file mode 100644 index 0000000..9770d79 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/.jline-terminal-jna-3.19.0.pom__md5 @@ -0,0 +1 @@ +bea0d11951ab2558adaef2222bfd8966 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/.jline-terminal-jna-3.19.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/.jline-terminal-jna-3.19.0.pom__sha1 new file mode 100644 index 0000000..32c96f6 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/.jline-terminal-jna-3.19.0.pom__sha1 @@ -0,0 +1 @@ +7c8af8828dc1db0cee54289b3e0f92edf7bcb4ef \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0.pom new file mode 100644 index 0000000..4483747 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0.pom @@ -0,0 +1,62 @@ + + + + + 4.0.0 + + + org.jline + jline-parent + 3.19.0 + + + jline-terminal-jna + JLine JNA Terminal + + + org.jline.terminal.jna + + + + + net.java.dev.jna + jna + + + + org.jline + jline-terminal + + + + junit + junit + test + + + + + + + org.apache.felix + maven-bundle-plugin + + + *;-noimport:=true + org.jline.terminal + + + + + + + diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/.jline-terminal-3.19.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/.jline-terminal-3.19.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/.jline-terminal-3.19.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/.jline-terminal-3.19.0.jar__md5 new file mode 100644 index 0000000..4999424 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/.jline-terminal-3.19.0.jar__md5 @@ -0,0 +1 @@ +0adbaa04db2ea07b08256cffd55dcd1e \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/.jline-terminal-3.19.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/.jline-terminal-3.19.0.jar__sha1 new file mode 100644 index 0000000..cb1615f --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/.jline-terminal-3.19.0.jar__sha1 @@ -0,0 +1 @@ +d4a75a8be7490c8529c029d6baa59e838f45f22e \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/.jline-terminal-3.19.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/.jline-terminal-3.19.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/.jline-terminal-3.19.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/.jline-terminal-3.19.0.pom__md5 new file mode 100644 index 0000000..dd11dd3 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/.jline-terminal-3.19.0.pom__md5 @@ -0,0 +1 @@ +8593ad7706adefb73e4ce622fe68d183 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/.jline-terminal-3.19.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/.jline-terminal-3.19.0.pom__sha1 new file mode 100644 index 0000000..ee3489d --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/.jline-terminal-3.19.0.pom__sha1 @@ -0,0 +1 @@ +0d2068e491253784e69118ef310880d32eccd429 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0.pom new file mode 100644 index 0000000..b4a35a0 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0.pom @@ -0,0 +1,43 @@ + + + + + 4.0.0 + + + org.jline + jline-parent + 3.19.0 + + + jline-terminal + JLine Terminal + + + org.jline.terminal + + + + + org.easymock + easymock + test + + + + junit + junit + test + + + + diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/.reactive-streams-1.0.3.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/.reactive-streams-1.0.3.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/.reactive-streams-1.0.3.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/.reactive-streams-1.0.3.jar__md5 new file mode 100644 index 0000000..e72aadc --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/.reactive-streams-1.0.3.jar__md5 @@ -0,0 +1 @@ +69122b098fff1c6b1bf2cd3b355e7e03 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/.reactive-streams-1.0.3.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/.reactive-streams-1.0.3.jar__sha1 new file mode 100644 index 0000000..77210f7 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/.reactive-streams-1.0.3.jar__sha1 @@ -0,0 +1 @@ +d9fb7a7926ffa635b3dcaa5049fb2bfa25b3e7d0 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/.reactive-streams-1.0.3.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/.reactive-streams-1.0.3.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/.reactive-streams-1.0.3.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/.reactive-streams-1.0.3.pom__md5 new file mode 100644 index 0000000..7004d9f --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/.reactive-streams-1.0.3.pom__md5 @@ -0,0 +1 @@ +e594421b22c069526d99006f595f3d53 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/.reactive-streams-1.0.3.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/.reactive-streams-1.0.3.pom__sha1 new file mode 100644 index 0000000..d2e718c --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/.reactive-streams-1.0.3.pom__sha1 @@ -0,0 +1 @@ +6c6a88f6bb5071c2490f889309703eb485d1d760 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.pom new file mode 100644 index 0000000..6374c55 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.pom @@ -0,0 +1,30 @@ + + + 4.0.0 + org.reactivestreams + reactive-streams + 1.0.3 + reactive-streams + A Protocol for Asynchronous Non-Blocking Data Sequence + http://www.reactive-streams.org/ + 2014 + + + CC0 + http://creativecommons.org/publicdomain/zero/1.0/ + repo + + + + + reactive-streams-sig + Reactive Streams SIG + http://www.reactive-streams.org/ + + + + scm:git:git@github.com:reactive-streams/reactive-streams.git + git@github.com:reactive-streams/reactive-streams.git + + diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.8.1/.scala-collection-compat_2.12-2.8.1.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.8.1/.scala-collection-compat_2.12-2.8.1.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.8.1/.scala-collection-compat_2.12-2.8.1.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.8.1/.scala-collection-compat_2.12-2.8.1.jar__md5 new file mode 100644 index 0000000..c4fd8ac --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.8.1/.scala-collection-compat_2.12-2.8.1.jar__md5 @@ -0,0 +1 @@ +e635844893f95ab0600575abcfd52c3e \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.8.1/.scala-collection-compat_2.12-2.8.1.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.8.1/.scala-collection-compat_2.12-2.8.1.jar__sha1 new file mode 100644 index 0000000..8c4f269 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.8.1/.scala-collection-compat_2.12-2.8.1.jar__sha1 @@ -0,0 +1 @@ +ad627f8c71febbb8b398f55c0c90f07219c34aca \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.8.1/.scala-collection-compat_2.12-2.8.1.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.8.1/.scala-collection-compat_2.12-2.8.1.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.8.1/.scala-collection-compat_2.12-2.8.1.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.8.1/.scala-collection-compat_2.12-2.8.1.pom__md5 new file mode 100644 index 0000000..3918a5c --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.8.1/.scala-collection-compat_2.12-2.8.1.pom__md5 @@ -0,0 +1 @@ +c28c26bdcd16e7aee08d2b9f7fa721de \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.8.1/.scala-collection-compat_2.12-2.8.1.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.8.1/.scala-collection-compat_2.12-2.8.1.pom__sha1 new file mode 100644 index 0000000..cf9a1e5 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.8.1/.scala-collection-compat_2.12-2.8.1.pom__sha1 @@ -0,0 +1 @@ +3fb548d98e250aa353b2a4f63e7f23163293f1d5 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.8.1/scala-collection-compat_2.12-2.8.1.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.8.1/scala-collection-compat_2.12-2.8.1.pom new file mode 100644 index 0000000..93c2e86 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.8.1/scala-collection-compat_2.12-2.8.1.pom @@ -0,0 +1,57 @@ + + + 4.0.0 + org.scala-lang.modules + scala-collection-compat_2.12 + jar + scala-collection-compat + http://www.scala-lang.org/ + 2.8.1 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + scala-collection-compat + 2002 + + org.scala-lang.modules + http://www.scala-lang.org/ + + + https://github.com/scala/scala-collection-compat + scm:git:git://github.com/scala/scala-collection-compat.git + + + GitHub + https://github.com/scala/scala-collection-compat/issues + + + + lamp + LAMP/EPFL + + + Lightbend + Lightbend, Inc. + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.16 + + + com.github.sbt + junit-interface + 0.13.3 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/.scala-parser-combinators_2.12-1.1.2.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/.scala-parser-combinators_2.12-1.1.2.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/.scala-parser-combinators_2.12-1.1.2.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/.scala-parser-combinators_2.12-1.1.2.jar__md5 new file mode 100644 index 0000000..5cb5e81 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/.scala-parser-combinators_2.12-1.1.2.jar__md5 @@ -0,0 +1 @@ +b687df70f489bc911396c996a864f13b \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/.scala-parser-combinators_2.12-1.1.2.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/.scala-parser-combinators_2.12-1.1.2.jar__sha1 new file mode 100644 index 0000000..7eb1986 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/.scala-parser-combinators_2.12-1.1.2.jar__sha1 @@ -0,0 +1 @@ +2ad65ccbeed662b51e2b96221cb4e7d7d6b7b87a \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/.scala-parser-combinators_2.12-1.1.2.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/.scala-parser-combinators_2.12-1.1.2.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/.scala-parser-combinators_2.12-1.1.2.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/.scala-parser-combinators_2.12-1.1.2.pom__md5 new file mode 100644 index 0000000..1a3dfb0 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/.scala-parser-combinators_2.12-1.1.2.pom__md5 @@ -0,0 +1 @@ +710d7981274f9d4f20d352dbfe85ce31 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/.scala-parser-combinators_2.12-1.1.2.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/.scala-parser-combinators_2.12-1.1.2.pom__sha1 new file mode 100644 index 0000000..569562e --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/.scala-parser-combinators_2.12-1.1.2.pom__sha1 @@ -0,0 +1 @@ +399fa77ec0460546870accf11e0b8c595c5e5ba3 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.pom new file mode 100644 index 0000000..362ff62 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.pom @@ -0,0 +1,60 @@ + + + 4.0.0 + org.scala-lang.modules + scala-parser-combinators_2.12 + bundle + scala-parser-combinators + http://www.scala-lang.org/ + 1.1.2 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + scala-parser-combinators + 2002 + + org.scala-lang.modules + http://www.scala-lang.org/ + + + https://github.com/scala/scala-parser-combinators + scm:git:git://github.com/scala/scala-parser-combinators.git + + + GitHub + https://github.com/scala/scala-parser-combinators/issues + + + + lamp + LAMP/EPFL + + + Lightbend + Lightbend, Inc. + + + + + org.scala-lang + scala-library + 2.12.8 + + + junit + junit + 4.12 + test + + + com.novocode + junit-interface + 0.11 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.1.0/.scala-xml_2.12-2.1.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.1.0/.scala-xml_2.12-2.1.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.1.0/.scala-xml_2.12-2.1.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.1.0/.scala-xml_2.12-2.1.0.jar__md5 new file mode 100644 index 0000000..f587b82 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.1.0/.scala-xml_2.12-2.1.0.jar__md5 @@ -0,0 +1 @@ +eb4a36f663f35e5d97ba7f51b0e8bbca \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.1.0/.scala-xml_2.12-2.1.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.1.0/.scala-xml_2.12-2.1.0.jar__sha1 new file mode 100644 index 0000000..620237a --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.1.0/.scala-xml_2.12-2.1.0.jar__sha1 @@ -0,0 +1 @@ +16b228fa6f9d5afece0f2d2d6d5b03d5372dbea4 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.1.0/.scala-xml_2.12-2.1.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.1.0/.scala-xml_2.12-2.1.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.1.0/.scala-xml_2.12-2.1.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.1.0/.scala-xml_2.12-2.1.0.pom__md5 new file mode 100644 index 0000000..26e614f --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.1.0/.scala-xml_2.12-2.1.0.pom__md5 @@ -0,0 +1 @@ +729e19e7eac062fba72846fd46315fc0 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.1.0/.scala-xml_2.12-2.1.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.1.0/.scala-xml_2.12-2.1.0.pom__sha1 new file mode 100644 index 0000000..4e848b8 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.1.0/.scala-xml_2.12-2.1.0.pom__sha1 @@ -0,0 +1 @@ +d07e9c55f4e6c91902087aeac9d2a9d351119c68 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.1.0/scala-xml_2.12-2.1.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.1.0/scala-xml_2.12-2.1.0.pom new file mode 100644 index 0000000..9045a0c --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.1.0/scala-xml_2.12-2.1.0.pom @@ -0,0 +1,75 @@ + + + 4.0.0 + org.scala-lang.modules + scala-xml_2.12 + bundle + scala-xml + http://www.scala-lang.org/ + 2.1.0 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + scala-xml + 2002 + + org.scala-lang.modules + http://www.scala-lang.org/ + + + https://github.com/scala/scala-xml + scm:git:git://github.com/scala/scala-xml.git + + + GitHub + https://github.com/scala/scala-xml/issues + + + + lamp + LAMP/EPFL + + + Lightbend + Lightbend, Inc. + + + + early-semver + + + + org.scala-lang + scala-compiler + 2.12.15 + test + + + org.scala-lang + scala-library + 2.12.15 + + + junit + junit + 4.13.2 + test + + + com.github.sbt + junit-interface + 0.13.3 + test + + + org.apache.commons + commons-lang3 + 3.12.0 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.17/.scala-compiler-2.12.17.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.17/.scala-compiler-2.12.17.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.17/.scala-compiler-2.12.17.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.17/.scala-compiler-2.12.17.jar__md5 new file mode 100644 index 0000000..877df60 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.17/.scala-compiler-2.12.17.jar__md5 @@ -0,0 +1 @@ +ae27f3583f5b54596f6d081c486df32a \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.17/.scala-compiler-2.12.17.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.17/.scala-compiler-2.12.17.jar__sha1 new file mode 100644 index 0000000..9787005 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.17/.scala-compiler-2.12.17.jar__sha1 @@ -0,0 +1 @@ +29b4e911d1e2349a62e55ef76987acd92f0e8eed \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.17/.scala-compiler-2.12.17.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.17/.scala-compiler-2.12.17.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.17/.scala-compiler-2.12.17.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.17/.scala-compiler-2.12.17.pom__md5 new file mode 100644 index 0000000..af65c89 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.17/.scala-compiler-2.12.17.pom__md5 @@ -0,0 +1 @@ +738518b1db5f97b7441ff70bff7927da \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.17/.scala-compiler-2.12.17.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.17/.scala-compiler-2.12.17.pom__sha1 new file mode 100644 index 0000000..722f5a2 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.17/.scala-compiler-2.12.17.pom__sha1 @@ -0,0 +1 @@ +f415bf9d08a7661e669c9dc108de2977d834beb3 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.17/scala-compiler-2.12.17.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.17/scala-compiler-2.12.17.pom new file mode 100644 index 0000000..dc7d069 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.17/scala-compiler-2.12.17.pom @@ -0,0 +1,70 @@ + + + 4.0.0 + org.scala-lang + scala-compiler + jar + Compiler for the Scala Programming Language + https://www.scala-lang.org/ + 2.12.17 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + Scala Compiler + 2002 + + LAMP/EPFL + https://lamp.epfl.ch/ + + + scm:git:git://github.com/scala/scala.git + https://github.com/scala/scala + + + GitHub + https://github.com/scala/bug/issues + + + + lamp + LAMP/EPFL + + + Lightbend + Lightbend, Inc. + + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-lang + scala-reflect + 2.12.17 + + + org.scala-lang.modules + scala-xml_2.12 + 2.1.0 + + + org.scala-lang + * + + + + + jline + jline + 2.14.6 + true + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.17/.scala-library-2.12.17.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.17/.scala-library-2.12.17.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.17/.scala-library-2.12.17.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.17/.scala-library-2.12.17.jar__md5 new file mode 100644 index 0000000..885a06a --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.17/.scala-library-2.12.17.jar__md5 @@ -0,0 +1 @@ +1b31b3bd2d82c3ad05895815423e0caf \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.17/.scala-library-2.12.17.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.17/.scala-library-2.12.17.jar__sha1 new file mode 100644 index 0000000..2576786 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.17/.scala-library-2.12.17.jar__sha1 @@ -0,0 +1 @@ +4a4dee1ebb59ed1dbce014223c7c42612e4cddde \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.17/.scala-library-2.12.17.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.17/.scala-library-2.12.17.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.17/.scala-library-2.12.17.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.17/.scala-library-2.12.17.pom__md5 new file mode 100644 index 0000000..fd901bd --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.17/.scala-library-2.12.17.pom__md5 @@ -0,0 +1 @@ +91d7e79a1b55fd67387617ea4f524c32 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.17/.scala-library-2.12.17.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.17/.scala-library-2.12.17.pom__sha1 new file mode 100644 index 0000000..03e6b6c --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.17/.scala-library-2.12.17.pom__sha1 @@ -0,0 +1 @@ +0c3453e5b48b62b74b903b4cfda9d53753e34104 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.17/scala-library-2.12.17.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.17/scala-library-2.12.17.pom new file mode 100644 index 0000000..c3cbb84 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.17/scala-library-2.12.17.pom @@ -0,0 +1,44 @@ + + + 4.0.0 + org.scala-lang + scala-library + jar + Standard library for the Scala Programming Language + https://www.scala-lang.org/ + 2.12.17 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + Scala Library + 2002 + + LAMP/EPFL + https://lamp.epfl.ch/ + + + scm:git:git://github.com/scala/scala.git + https://github.com/scala/scala + + + GitHub + https://github.com/scala/bug/issues + + + + lamp + LAMP/EPFL + + + Lightbend + Lightbend, Inc. + + + + https://www.scala-lang.org/api/2.12.17/ + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.17/.scala-reflect-2.12.17.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.17/.scala-reflect-2.12.17.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.17/.scala-reflect-2.12.17.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.17/.scala-reflect-2.12.17.jar__md5 new file mode 100644 index 0000000..e095875 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.17/.scala-reflect-2.12.17.jar__md5 @@ -0,0 +1 @@ +a46012d6791564e644aa983cdc9f7135 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.17/.scala-reflect-2.12.17.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.17/.scala-reflect-2.12.17.jar__sha1 new file mode 100644 index 0000000..17261b1 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.17/.scala-reflect-2.12.17.jar__sha1 @@ -0,0 +1 @@ +c0fcfc7932ee0c92e6d00d1c7c47d5042391a987 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.17/.scala-reflect-2.12.17.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.17/.scala-reflect-2.12.17.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.17/.scala-reflect-2.12.17.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.17/.scala-reflect-2.12.17.pom__md5 new file mode 100644 index 0000000..e34a426 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.17/.scala-reflect-2.12.17.pom__md5 @@ -0,0 +1 @@ +fd1e8ace77ba91ef6de870119e23633a \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.17/.scala-reflect-2.12.17.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.17/.scala-reflect-2.12.17.pom__sha1 new file mode 100644 index 0000000..f852111 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.17/.scala-reflect-2.12.17.pom__sha1 @@ -0,0 +1 @@ +9e7a016f73f580ac736d24680e3825a9e1654d5a \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.17/scala-reflect-2.12.17.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.17/scala-reflect-2.12.17.pom new file mode 100644 index 0000000..37df6b8 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.17/scala-reflect-2.12.17.pom @@ -0,0 +1,51 @@ + + + 4.0.0 + org.scala-lang + scala-reflect + jar + Reflection Library for the Scala Programming Language + https://www.scala-lang.org/ + 2.12.17 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + Scala Reflect + 2002 + + LAMP/EPFL + https://lamp.epfl.ch/ + + + scm:git:git://github.com/scala/scala.git + https://github.com/scala/scala + + + GitHub + https://github.com/scala/bug/issues + + + + lamp + LAMP/EPFL + + + Lightbend + Lightbend, Inc. + + + + https://www.scala-lang.org/api/2.12.17/ + + + + org.scala-lang + scala-library + 2.12.17 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.8.0/.actions_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.8.0/.actions_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.8.0/.actions_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.8.0/.actions_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..7a6cc9b --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.8.0/.actions_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +ebc078c98c614ea426411f1a1af73446 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.8.0/.actions_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.8.0/.actions_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..9d9f7a2 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.8.0/.actions_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +f6690ff257a3a99426901945edb0e51d5f013b87 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.8.0/.actions_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.8.0/.actions_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.8.0/.actions_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.8.0/.actions_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..96f8897 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.8.0/.actions_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +cef6eb93b4619d6acb7ef900ef3ba309 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.8.0/.actions_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.8.0/.actions_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..ce0ec61 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.8.0/.actions_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +674ac3b592c0f8cc1ae5b4e94a4db88d370b5fe7 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.8.0/actions_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.8.0/actions_2.12-1.8.0.pom new file mode 100644 index 0000000..5b018d5 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.8.0/actions_2.12-1.8.0.pom @@ -0,0 +1,190 @@ + + + 4.0.0 + org.scala-sbt + actions_2.12 + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + Actions + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + completion_2.12 + 1.8.0 + + + org.scala-sbt + run_2.12 + 1.8.0 + + + org.scala-sbt + task-system_2.12 + 1.8.0 + + + org.scala-sbt + tasks_2.12 + 1.8.0 + + + org.scala-sbt + testing_2.12 + 1.8.0 + + + org.scala-sbt + util-logging_2.12 + 1.8.0 + + + org.scala-sbt + util-relation_2.12 + 1.8.0 + + + org.scala-sbt + util-tracking_2.12 + 1.8.0 + + + org.scalacheck + scalacheck_2.12 + 1.15.4 + test + + + junit + junit + 4.13.1 + test + + + org.scalatest + scalatest_2.12 + 3.2.10 + test + + + com.eed3si9n.verify + verify_2.12 + 1.0.0 + test + + + qa.hedgehog + hedgehog-sbt_2.12 + 0.7.0 + test + + + com.eed3si9n + sjson-new-scalajson_2.12 + 0.9.1 + + + org.jline + jline-terminal + 3.19.0 + + + org.scala-sbt + io_2.12 + 1.8.0 + + + org.scala-sbt + compiler-interface + 1.8.0 + + + org.scala-sbt + zinc-classpath_2.12 + 1.8.0 + + + org.scala-sbt + zinc-apiinfo_2.12 + 1.8.0 + + + org.scala-sbt + librarymanagement-core_2.12 + 1.8.0 + + + org.scala-sbt + zinc_2.12 + 1.8.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.8.0/.collections_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.8.0/.collections_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.8.0/.collections_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.8.0/.collections_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..84b9de6 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.8.0/.collections_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +a87356b7a721bc0b14ece65aecdc61b5 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.8.0/.collections_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.8.0/.collections_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..4ac7b8f --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.8.0/.collections_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +f61ed7ce62af452470e3bc0e15a325a619f98971 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.8.0/.collections_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.8.0/.collections_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.8.0/.collections_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.8.0/.collections_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..010f49e --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.8.0/.collections_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +9a8351352cc4b2b2bdb175559b3d02b3 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.8.0/.collections_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.8.0/.collections_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..1305230 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.8.0/.collections_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +df2f45e3b338fa7985047c3fb077b0348fb30429 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.8.0/collections_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.8.0/collections_2.12-1.8.0.pom new file mode 100644 index 0000000..4310105 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.8.0/collections_2.12-1.8.0.pom @@ -0,0 +1,120 @@ + + + 4.0.0 + org.scala-sbt + collections_2.12 + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + Collections + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + util-position_2.12 + 1.8.0 + + + org.scalacheck + scalacheck_2.12 + 1.15.4 + test + + + junit + junit + 4.13.1 + test + + + org.scalatest + scalatest_2.12 + 3.2.10 + test + + + com.eed3si9n.verify + verify_2.12 + 1.0.0 + test + + + qa.hedgehog + hedgehog-sbt_2.12 + 0.7.0 + test + + + com.eed3si9n + sjson-new-scalajson_2.12 + 0.9.1 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.8.0/.command_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.8.0/.command_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.8.0/.command_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.8.0/.command_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..d7d144a --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.8.0/.command_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +925218d43f508b8a7cf0dffd935e3d80 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.8.0/.command_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.8.0/.command_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..0e4305c --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.8.0/.command_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +0624fae244d7a6447ad3f19aa89c5d7cac45b380 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.8.0/.command_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.8.0/.command_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.8.0/.command_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.8.0/.command_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..9bcb468 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.8.0/.command_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +d9acada9157efcee4cc83c21d196a89f \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.8.0/.command_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.8.0/.command_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..1622a78 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.8.0/.command_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +32b12708c4b594774be868344b78e59727886f7c \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.8.0/command_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.8.0/command_2.12-1.8.0.pom new file mode 100644 index 0000000..af5ba4e --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.8.0/command_2.12-1.8.0.pom @@ -0,0 +1,170 @@ + + + 4.0.0 + org.scala-sbt + command_2.12 + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + Command + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + protocol_2.12 + 1.8.0 + + + org.scala-sbt + completion_2.12 + 1.8.0 + + + org.scala-sbt + util-logging_2.12 + 1.8.0 + + + com.eed3si9n + sjson-new-core_2.12 + 0.9.0 + + + org.scalacheck + scalacheck_2.12 + 1.15.4 + test + + + junit + junit + 4.13.1 + test + + + org.scalatest + scalatest_2.12 + 3.2.10 + test + + + com.eed3si9n.verify + verify_2.12 + 1.0.0 + test + + + qa.hedgehog + hedgehog-sbt_2.12 + 0.7.0 + test + + + org.scala-sbt + launcher-interface + 1.4.1 + + + com.eed3si9n + sjson-new-scalajson_2.12 + 0.9.1 + + + org.scala-sbt + template-resolver + 0.1 + + + org.scala-sbt + io_2.12 + 1.8.0 + + + org.scala-sbt + compiler-interface + 1.8.0 + + + org.scala-sbt + zinc-classpath_2.12 + 1.8.0 + + + org.scala-sbt + librarymanagement-core_2.12 + 1.8.0 + + + org.scala-sbt + zinc_2.12 + 1.8.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.8.0/.compiler-bridge_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.8.0/.compiler-bridge_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.8.0/.compiler-bridge_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.8.0/.compiler-bridge_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..eae6d93 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.8.0/.compiler-bridge_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +a45c0de174020fd8ad2577fe53e93a23 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.8.0/.compiler-bridge_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.8.0/.compiler-bridge_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..b0b2514 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.8.0/.compiler-bridge_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +778e6132f893c217830909ba2acaffb455c43fca \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.8.0/.compiler-bridge_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.8.0/.compiler-bridge_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.8.0/.compiler-bridge_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.8.0/.compiler-bridge_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..7358966 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.8.0/.compiler-bridge_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +14b0e85e8aeb966f0569952d7ce9a48a \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.8.0/.compiler-bridge_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.8.0/.compiler-bridge_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..347c63a --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.8.0/.compiler-bridge_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +3b28b2bd63c2f62c8b83d012ec5cfeaa90468c26 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.8.0/compiler-bridge_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.8.0/compiler-bridge_2.12-1.8.0.pom new file mode 100644 index 0000000..75c2700 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.8.0/compiler-bridge_2.12-1.8.0.pom @@ -0,0 +1,80 @@ + + + 4.0.0 + org.scala-sbt + compiler-bridge_2.12 + jar + Incremental compiler of Scala + https://github.com/sbt/zinc + 1.8.0 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + Compiler Bridge + + org.scala-sbt + https://github.com/sbt/zinc + + + https://github.com/sbt/zinc + git@github.com:sbt/zinc.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + http://eed3si9n.com/ + @eed3si9n + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + jvican + Jorge Vicente Cantero + https://github.com/jvican + @jvican + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-compiler + 2.12.17 + provided + + + org.scala-sbt + compiler-interface + 1.8.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.8.0/.compiler-interface-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.8.0/.compiler-interface-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.8.0/.compiler-interface-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.8.0/.compiler-interface-1.8.0.jar__md5 new file mode 100644 index 0000000..ecd9827 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.8.0/.compiler-interface-1.8.0.jar__md5 @@ -0,0 +1 @@ +9e70b60e9b58ba3f378156f7e4f4dc37 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.8.0/.compiler-interface-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.8.0/.compiler-interface-1.8.0.jar__sha1 new file mode 100644 index 0000000..b48fde4 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.8.0/.compiler-interface-1.8.0.jar__sha1 @@ -0,0 +1 @@ +0371d589d4c2347cfa76593cbcb84fb4e44fd6e3 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.8.0/.compiler-interface-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.8.0/.compiler-interface-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.8.0/.compiler-interface-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.8.0/.compiler-interface-1.8.0.pom__md5 new file mode 100644 index 0000000..f7082ba --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.8.0/.compiler-interface-1.8.0.pom__md5 @@ -0,0 +1 @@ +a2de5610b50bd790f982dc7a8494db81 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.8.0/.compiler-interface-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.8.0/.compiler-interface-1.8.0.pom__sha1 new file mode 100644 index 0000000..b843d5d --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.8.0/.compiler-interface-1.8.0.pom__sha1 @@ -0,0 +1 @@ +30249780931463be0970b27539f4cc29f12e7a7d \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.8.0/compiler-interface-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.8.0/compiler-interface-1.8.0.pom new file mode 100644 index 0000000..c987dfb --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.8.0/compiler-interface-1.8.0.pom @@ -0,0 +1,86 @@ + + + 4.0.0 + org.scala-sbt + compiler-interface + jar + Incremental compiler of Scala + https://github.com/sbt/zinc + 1.8.0 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + Compiler Interface + + org.scala-sbt + https://github.com/sbt/zinc + + + https://github.com/sbt/zinc + git@github.com:sbt/zinc.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + http://eed3si9n.com/ + @eed3si9n + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + jvican + Jorge Vicente Cantero + https://github.com/jvican + @jvican + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + test + + + org.scalatest + scalatest_2.12 + 3.2.13 + test + + + org.scala-sbt + util-interface + 1.8.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.8.0/.completion_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.8.0/.completion_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.8.0/.completion_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.8.0/.completion_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..ec5c3a9 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.8.0/.completion_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +7bf0082792b9f925dc6231439593d0aa \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.8.0/.completion_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.8.0/.completion_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..3ae5193 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.8.0/.completion_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +584c4288b5de55fb7dafdc1a3ff823baebd6c38b \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.8.0/.completion_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.8.0/.completion_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.8.0/.completion_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.8.0/.completion_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..3dde513 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.8.0/.completion_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +904d03f999fbc6918664af7d1e328706 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.8.0/.completion_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.8.0/.completion_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..e3095c9 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.8.0/.completion_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +0101723641ca977aaeb446b8726657c12f971ac4 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.8.0/completion_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.8.0/completion_2.12-1.8.0.pom new file mode 100644 index 0000000..d944846 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.8.0/completion_2.12-1.8.0.pom @@ -0,0 +1,145 @@ + + + 4.0.0 + org.scala-sbt + completion_2.12 + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + Completion + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + collections_2.12 + 1.8.0 + + + org.scala-sbt + util-control_2.12 + 1.8.0 + + + org.scala-sbt + util-logging_2.12 + 1.8.0 + + + org.scalacheck + scalacheck_2.12 + 1.15.4 + test + + + junit + junit + 4.13.1 + test + + + org.scalatest + scalatest_2.12 + 3.2.10 + test + + + com.eed3si9n.verify + verify_2.12 + 1.0.0 + test + + + qa.hedgehog + hedgehog-sbt_2.12 + 0.7.0 + test + + + org.scala-sbt.jline + jline + 2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493 + + + org.jline + jline-reader + 3.19.0 + + + org.jline + jline-builtins + 3.19.0 + + + org.scala-sbt + io_2.12 + 1.8.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.8.0/.core-macros_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.8.0/.core-macros_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.8.0/.core-macros_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.8.0/.core-macros_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..dfe79e5 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.8.0/.core-macros_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +041e7983e673be1031dd05f508614f0c \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.8.0/.core-macros_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.8.0/.core-macros_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..3358ebd --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.8.0/.core-macros_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +d1724cd0424f8b00a59870aee49962d70bf4a86a \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.8.0/.core-macros_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.8.0/.core-macros_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.8.0/.core-macros_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.8.0/.core-macros_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..1b21330 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.8.0/.core-macros_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +11f2a4866221ba990f114bd1bc810b37 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.8.0/.core-macros_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.8.0/.core-macros_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..7c102cb --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.8.0/.core-macros_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +9dd54259623215b70b11533ba64ce29e8fcb18b1 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.8.0/core-macros_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.8.0/core-macros_2.12-1.8.0.pom new file mode 100644 index 0000000..1893c9d --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.8.0/core-macros_2.12-1.8.0.pom @@ -0,0 +1,90 @@ + + + 4.0.0 + org.scala-sbt + core-macros_2.12 + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + Core Macros + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-compiler + 2.12.17 + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + collections_2.12 + 1.8.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.8.0/.io_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.8.0/.io_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.8.0/.io_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.8.0/.io_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..aaf8553 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.8.0/.io_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +058dcfecf29001d320fedce149021c09 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.8.0/.io_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.8.0/.io_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..15d673f --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.8.0/.io_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +d083295da0867f4e435e488222abd2f6f024ea83 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.8.0/.io_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.8.0/.io_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.8.0/.io_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.8.0/.io_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..907457d --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.8.0/.io_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +de1212ef1e5caa08cccd57db4fbe990f \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.8.0/.io_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.8.0/.io_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..5a9a81d --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.8.0/.io_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +23a90ab33bcf874576d0484a7ebf8e63dec5a646 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.8.0/io_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.8.0/io_2.12-1.8.0.pom new file mode 100644 index 0000000..db5a4a4 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.8.0/io_2.12-1.8.0.pom @@ -0,0 +1,95 @@ + + + 4.0.0 + org.scala-sbt + io_2.12 + jar + IO module for sbt + https://github.com/sbt/io + 1.8.0 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + IO + + org.scala-sbt + https://github.com/sbt/io + + + https://github.com/sbt/io + git@github.com:sbt/io.git + + + + eatkins + Ethan Atkins + https://www.ethanatkins.com/ + @eatkins + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + http://eed3si9n.com/ + @eed3si9n + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + + early-semver + + + + org.scala-lang + scala-compiler + 2.12.16 + test + + + org.scala-lang + scala-library + 2.12.16 + + + org.scalacheck + scalacheck_2.12 + 1.15.4 + test + + + org.scalatest + scalatest_2.12 + 3.2.10 + test + + + com.swoval + file-tree-views + 2.1.9 + + + net.java.dev.jna + jna + 5.12.0 + + + net.java.dev.jna + jna-platform + 5.12.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.5.0/.ipcsocket-1.5.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.5.0/.ipcsocket-1.5.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.5.0/.ipcsocket-1.5.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.5.0/.ipcsocket-1.5.0.jar__md5 new file mode 100644 index 0000000..16e912d --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.5.0/.ipcsocket-1.5.0.jar__md5 @@ -0,0 +1 @@ +263bec542963dab1bacbced615bc2bd2 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.5.0/.ipcsocket-1.5.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.5.0/.ipcsocket-1.5.0.jar__sha1 new file mode 100644 index 0000000..5eefc19 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.5.0/.ipcsocket-1.5.0.jar__sha1 @@ -0,0 +1 @@ +ba54806324fa2d95ed5f6ca7baed468bd77e11f8 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.5.0/.ipcsocket-1.5.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.5.0/.ipcsocket-1.5.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.5.0/.ipcsocket-1.5.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.5.0/.ipcsocket-1.5.0.pom__md5 new file mode 100644 index 0000000..c03aa08 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.5.0/.ipcsocket-1.5.0.pom__md5 @@ -0,0 +1 @@ +2acbfb66903a97a46b01792f54868754 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.5.0/.ipcsocket-1.5.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.5.0/.ipcsocket-1.5.0.pom__sha1 new file mode 100644 index 0000000..90562c1 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.5.0/.ipcsocket-1.5.0.pom__sha1 @@ -0,0 +1 @@ +619701d6fe609f76da1e458302ca5e0a2c2b9bf2 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.5.0/ipcsocket-1.5.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.5.0/ipcsocket-1.5.0.pom new file mode 100644 index 0000000..c12731e --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.5.0/ipcsocket-1.5.0.pom @@ -0,0 +1,52 @@ + + + 4.0.0 + org.scala-sbt.ipcsocket + ipcsocket + jar + IPC: Unix Domain Socket and Windows Named Pipes for Java + https://github.com/sbt/ipcsocket + 1.5.0 + + + Apache 2 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + ipcsocket + + sbt + http://scala-sbt.org/ + + + https://github.com/sbt/ipcsocket + git@github.com:sbt/ipcsocket.git + + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + + + net.java.dev.jna + jna + 5.12.0 + + + net.java.dev.jna + jna-platform + 5.12.0 + + + com.novocode + junit-interface + 0.11 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e/.ivy-2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e/.ivy-2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e/.ivy-2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e/.ivy-2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e.jar__md5 new file mode 100644 index 0000000..2684c9a --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e/.ivy-2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e.jar__md5 @@ -0,0 +1 @@ +776f111ae5a3ff9b9ebc4c7a87e8342b \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e/.ivy-2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e/.ivy-2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e.jar__sha1 new file mode 100644 index 0000000..93e1669 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e/.ivy-2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e.jar__sha1 @@ -0,0 +1 @@ +411f3a9b8ef6ec117f6fcd2090eead6afc61b13c \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e/.ivy-2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e/.ivy-2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e/.ivy-2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e/.ivy-2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e.pom__md5 new file mode 100644 index 0000000..39e8e10 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e/.ivy-2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e.pom__md5 @@ -0,0 +1 @@ +c9207424e3cebc6c07a61ce2650974ba \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e/.ivy-2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e/.ivy-2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e.pom__sha1 new file mode 100644 index 0000000..9b3c9d7 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e/.ivy-2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e.pom__sha1 @@ -0,0 +1 @@ +6673bd9f6353a5e514ba9452b65d07a5a17ce943 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e/ivy-2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e/ivy-2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e.pom new file mode 100644 index 0000000..5ae8a16 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e/ivy-2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e.pom @@ -0,0 +1,84 @@ + + + 4.0.0 + org.scala-sbt.ivy + ivy + jar + patched Ivy for sbt + https://github.com/sbt/ivy + 2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e + + + Apache-2.0 + https://github.com/sbt/ivy/blob/2.3.x-sbt/LICENSE + repo + + + ivy + + org.scala-sbt.ivy + https://github.com/sbt/ivy + + + https://github.com/sbt/ivy + git@github.com:sbt/ivy.git + + + + eed3si9n + Eugene Yokota + @eed3si9n + https://github.com/eed3si9n + + + + + org.apache.ant + ant-nodeps + 1.7.1 + provided + + + commons-httpclient + commons-httpclient + 3.0 + provided + + + org.bouncycastle + bcpg-jdk14 + 1.45 + provided + + + com.jcraft + jsch.agentproxy.jsch + 0.0.6 + provided + + + com.jcraft + jsch.agentproxy + 0.0.6 + provided + + + com.jcraft + jsch.agentproxy.connector-factory + 0.0.6 + provided + + + commons-vfs + commons-vfs + 1.0 + provided + + + oro + oro + 2.0.8 + provided + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/.jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/.jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/.jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/.jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.jar__md5 new file mode 100644 index 0000000..eee9c9c --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/.jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.jar__md5 @@ -0,0 +1 @@ +e55e4efbc013da3f9fedb26efa64cdf8 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/.jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/.jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.jar__sha1 new file mode 100644 index 0000000..606b3cb --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/.jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.jar__sha1 @@ -0,0 +1 @@ +52532bf3c4845940d5ea7d7ad7c0625ffad4f21a \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/.jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/.jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/.jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/.jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.pom__md5 new file mode 100644 index 0000000..f604ff8 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/.jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.pom__md5 @@ -0,0 +1 @@ +171dbe023c9a305122614a5b9242d21f \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/.jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/.jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.pom__sha1 new file mode 100644 index 0000000..485429e --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/.jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.pom__sha1 @@ -0,0 +1 @@ +526b901ef5218b9458b8581568ad875f68c5f9f3 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.pom new file mode 100644 index 0000000..5c4332b --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.pom @@ -0,0 +1,71 @@ + + + 4.0.0 + org.scala-sbt.jline + jline + jar + patched jline2 for sbt + https://github.com/sbt/jline2 + 2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493 + + + The BSD License + http://www.opensource.org/licenses/bsd-license.php + repo + + + jline + + org.scala-sbt.jline + https://scala-sbt.org/ + + + https://github.com/sbt/jline2 + git@github.com:sbt/jline2.git + + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + eatkins + Ethan Atkins + https://www.ethanatkins.com + @eatkins + + + + + org.fusesource.jansi + jansi + 2.1.0 + + + com.novocode + junit-interface + 0.11 + test + + + org.easymock + easymock + 3.3.1 + test + + + org.powermock + powermock-module-junit4 + 1.6.2 + test + + + org.powermock + powermock-api-easymock + 1.6.2 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.4.1/.launcher-interface-1.4.1.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.4.1/.launcher-interface-1.4.1.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.4.1/.launcher-interface-1.4.1.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.4.1/.launcher-interface-1.4.1.jar__md5 new file mode 100644 index 0000000..3cd4836 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.4.1/.launcher-interface-1.4.1.jar__md5 @@ -0,0 +1 @@ +13530c1fca7a8a75f7f275685724ef98 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.4.1/.launcher-interface-1.4.1.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.4.1/.launcher-interface-1.4.1.jar__sha1 new file mode 100644 index 0000000..72aacd1 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.4.1/.launcher-interface-1.4.1.jar__sha1 @@ -0,0 +1 @@ +626c466cbd407c6bc02dd76d312d606efa432b8c \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.4.1/.launcher-interface-1.4.1.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.4.1/.launcher-interface-1.4.1.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.4.1/.launcher-interface-1.4.1.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.4.1/.launcher-interface-1.4.1.pom__md5 new file mode 100644 index 0000000..ad4ecef --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.4.1/.launcher-interface-1.4.1.pom__md5 @@ -0,0 +1 @@ +bf5d4d1db069a9be28e7e0c5b1bf6d9f \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.4.1/.launcher-interface-1.4.1.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.4.1/.launcher-interface-1.4.1.pom__sha1 new file mode 100644 index 0000000..320fc34 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.4.1/.launcher-interface-1.4.1.pom__sha1 @@ -0,0 +1 @@ +70b6948e3cd4e5a71830bab7346b0a2319b194b3 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.4.1/launcher-interface-1.4.1.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.4.1/launcher-interface-1.4.1.pom new file mode 100644 index 0000000..5fc7a4a --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.4.1/launcher-interface-1.4.1.pom @@ -0,0 +1,46 @@ + + + 4.0.0 + org.scala-sbt + launcher-interface + jar + Interfaces for launching projects with the sbt launcher + https://scala-sbt.org + 1.4.1 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + Launcher Interface + + org.scala-sbt + https://scala-sbt.org + + + https://github.com/sbt/launcher + scm:git@github.com:sbt/launcher.git + + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.8.0/.librarymanagement-core_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.8.0/.librarymanagement-core_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.8.0/.librarymanagement-core_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.8.0/.librarymanagement-core_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..5210c6b --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.8.0/.librarymanagement-core_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +280f90f532dc2f4cc53a34eaae02a9ca \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.8.0/.librarymanagement-core_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.8.0/.librarymanagement-core_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..2a865f5 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.8.0/.librarymanagement-core_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +2a68f12453bb1e8ec8d1dd92dbe39a0a9400c3db \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.8.0/.librarymanagement-core_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.8.0/.librarymanagement-core_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.8.0/.librarymanagement-core_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.8.0/.librarymanagement-core_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..24dd604 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.8.0/.librarymanagement-core_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +e96fd16eefa5d2f832e79081ee5b855a \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.8.0/.librarymanagement-core_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.8.0/.librarymanagement-core_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..af50f81 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.8.0/.librarymanagement-core_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +855f91943a7ebfa8733d6763874a40c6f87bdf65 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.8.0/librarymanagement-core_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.8.0/librarymanagement-core_2.12-1.8.0.pom new file mode 100644 index 0000000..908f894 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.8.0/librarymanagement-core_2.12-1.8.0.pom @@ -0,0 +1,135 @@ + + + 4.0.0 + org.scala-sbt + librarymanagement-core_2.12 + jar + Library management module for sbt + https://github.com/sbt/librarymanagement + 1.8.0 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + librarymanagement-core + + org.scala-sbt + https://github.com/sbt/librarymanagement + + + https://github.com/sbt/librarymanagement + git@github.com:sbt/librarymanagement.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + http://eed3si9n.com/ + @eed3si9n + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + + early-semver + + + + org.scala-lang + scala-compiler + 2.12.17 + + + org.scala-lang + scala-library + 2.12.17 + + + com.eed3si9n + sjson-new-core_2.12 + 0.9.0 + + + com.jcraft + jsch + 0.1.54 + + + org.scala-lang + scala-reflect + 2.12.17 + + + org.scala-sbt + launcher-interface + 1.0.0 + + + com.eed3si9n + gigahorse-apache-http_2.12 + 0.7.0 + + + com.eed3si9n + sjson-new-scalajson_2.12 + 0.9.0 + true + + + org.scalatest + scalatest_2.12 + 3.2.0 + test + + + org.scalacheck + scalacheck_2.12 + 1.14.0 + test + + + com.eed3si9n.verify + verify_2.12 + 1.0.0 + test + + + org.scala-lang.modules + scala-xml_2.12 + 2.1.0 + + + org.scala-sbt + io_2.12 + 1.8.0 + + + org.scala-sbt + util-logging_2.12 + 1.8.0 + + + org.scala-sbt + util-position_2.12 + 1.8.0 + + + org.scala-sbt + util-cache_2.12 + 1.8.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.8.0/.librarymanagement-ivy_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.8.0/.librarymanagement-ivy_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.8.0/.librarymanagement-ivy_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.8.0/.librarymanagement-ivy_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..3967a4e --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.8.0/.librarymanagement-ivy_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +d7341ead4be3adc7ea9df35ff1b2ade0 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.8.0/.librarymanagement-ivy_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.8.0/.librarymanagement-ivy_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..12a376a --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.8.0/.librarymanagement-ivy_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +f0491d0395cd888176153ff2bb80ec126d586e19 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.8.0/.librarymanagement-ivy_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.8.0/.librarymanagement-ivy_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.8.0/.librarymanagement-ivy_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.8.0/.librarymanagement-ivy_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..22a90fb --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.8.0/.librarymanagement-ivy_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +38833f480181781b3656b4e33d5bee91 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.8.0/.librarymanagement-ivy_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.8.0/.librarymanagement-ivy_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..6d6c6ed --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.8.0/.librarymanagement-ivy_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +97bbdc7d97fe64084160c431ce3886cf21808261 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.8.0/librarymanagement-ivy_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.8.0/librarymanagement-ivy_2.12-1.8.0.pom new file mode 100644 index 0000000..719623e --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.8.0/librarymanagement-ivy_2.12-1.8.0.pom @@ -0,0 +1,89 @@ + + + 4.0.0 + org.scala-sbt + librarymanagement-ivy_2.12 + jar + Library management module for sbt + https://github.com/sbt/librarymanagement + 1.8.0 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + librarymanagement-ivy + + org.scala-sbt + https://github.com/sbt/librarymanagement + + + https://github.com/sbt/librarymanagement + git@github.com:sbt/librarymanagement.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + http://eed3si9n.com/ + @eed3si9n + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + librarymanagement-core_2.12 + 1.8.0 + + + com.eed3si9n + sjson-new-core_2.12 + 0.9.0 + + + org.scala-sbt.ivy + ivy + 2.3.0-sbt-a8f9eb5bf09d0539ea3658a2c2d4e09755b5133e + + + org.scalatest + scalatest_2.12 + 3.2.0 + test + + + org.scalacheck + scalacheck_2.12 + 1.14.0 + test + + + com.eed3si9n.verify + verify_2.12 + 1.0.0 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.8.0/.logic_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.8.0/.logic_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.8.0/.logic_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.8.0/.logic_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..fa4974d --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.8.0/.logic_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +b4dbcb02a60d4ac34bf671503ab36cb8 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.8.0/.logic_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.8.0/.logic_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..24cff0e --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.8.0/.logic_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +5885648c4ea665a04f85c0fe75ec9e1a8552f8a8 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.8.0/.logic_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.8.0/.logic_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.8.0/.logic_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.8.0/.logic_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..bdacb72 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.8.0/.logic_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +05f1ab64b9de11141315d940745c63e4 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.8.0/.logic_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.8.0/.logic_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..4842ff2 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.8.0/.logic_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +c68e410480477464b9afe4026f6b94b7839f66b0 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.8.0/logic_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.8.0/logic_2.12-1.8.0.pom new file mode 100644 index 0000000..b33dcee --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.8.0/logic_2.12-1.8.0.pom @@ -0,0 +1,120 @@ + + + 4.0.0 + org.scala-sbt + logic_2.12 + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + Logic + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + collections_2.12 + 1.8.0 + + + org.scala-sbt + util-relation_2.12 + 1.8.0 + + + org.scalacheck + scalacheck_2.12 + 1.15.4 + test + + + junit + junit + 4.13.1 + test + + + org.scalatest + scalatest_2.12 + 3.2.10 + test + + + com.eed3si9n.verify + verify_2.12 + 1.0.0 + test + + + qa.hedgehog + hedgehog-sbt_2.12 + 0.7.0 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.8.0/.main-settings_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.8.0/.main-settings_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.8.0/.main-settings_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.8.0/.main-settings_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..29e9340 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.8.0/.main-settings_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +dae1e656fa46e6a8883e719b16932365 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.8.0/.main-settings_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.8.0/.main-settings_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..9c05536 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.8.0/.main-settings_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +49c57bd89176cbf788e464e8600fa97526d2fa7f \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.8.0/.main-settings_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.8.0/.main-settings_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.8.0/.main-settings_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.8.0/.main-settings_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..ce89559 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.8.0/.main-settings_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +a8ea08726e30a78ba9e953c75d02b074 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.8.0/.main-settings_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.8.0/.main-settings_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..5b18afb --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.8.0/.main-settings_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +ad6294d5e4799cac0e8e433a3dbb3a57c2015d28 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.8.0/main-settings_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.8.0/main-settings_2.12-1.8.0.pom new file mode 100644 index 0000000..b0bb4d1 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.8.0/main-settings_2.12-1.8.0.pom @@ -0,0 +1,165 @@ + + + 4.0.0 + org.scala-sbt + main-settings_2.12 + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + Main Settings + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + completion_2.12 + 1.8.0 + + + org.scala-sbt + command_2.12 + 1.8.0 + + + org.scala-sbt + task-system_2.12 + 1.8.0 + + + org.scala-sbt + core-macros_2.12 + 1.8.0 + + + org.scala-sbt + util-logging_2.12 + 1.8.0 + + + org.scala-sbt + util-cache_2.12 + 1.8.0 + + + org.scala-sbt + util-relation_2.12 + 1.8.0 + + + org.scalacheck + scalacheck_2.12 + 1.15.4 + test + + + junit + junit + 4.13.1 + test + + + org.scalatest + scalatest_2.12 + 3.2.10 + test + + + com.eed3si9n.verify + verify_2.12 + 1.0.0 + test + + + qa.hedgehog + hedgehog-sbt_2.12 + 0.7.0 + test + + + org.scala-sbt + io_2.12 + 1.8.0 + + + org.scala-sbt + compiler-interface + 1.8.0 + + + org.scala-sbt + zinc-classpath_2.12 + 1.8.0 + + + org.scala-sbt + librarymanagement-core_2.12 + 1.8.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.8.0/.main_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.8.0/.main_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.8.0/.main_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.8.0/.main_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..d9229ec --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.8.0/.main_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +41f2408fa3ac0851bede9a016b29ad66 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.8.0/.main_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.8.0/.main_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..5ab6479 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.8.0/.main_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +0812094cfff14350854b10267e16ea362265fe63 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.8.0/.main_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.8.0/.main_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.8.0/.main_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.8.0/.main_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..b23fd89 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.8.0/.main_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +e7c3f44c83399cef506574005e0a3bcd \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.8.0/.main_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.8.0/.main_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..732d31b --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.8.0/.main_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +d23ed7d688611dcfff35ce3afff8545eee5eb33c \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.8.0/main_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.8.0/main_2.12-1.8.0.pom new file mode 100644 index 0000000..6a80117 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.8.0/main_2.12-1.8.0.pom @@ -0,0 +1,215 @@ + + + 4.0.0 + org.scala-sbt + main_2.12 + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + Main + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + logic_2.12 + 1.8.0 + + + org.scala-sbt + actions_2.12 + 1.8.0 + + + org.scala-sbt + main-settings_2.12 + 1.8.0 + + + org.scala-sbt + run_2.12 + 1.8.0 + + + org.scala-sbt + command_2.12 + 1.8.0 + + + org.scala-sbt + collections_2.12 + 1.8.0 + + + org.scala-sbt + scripted-plugin_2.12 + 1.8.0 + + + org.scala-sbt + zinc-lm-integration_2.12 + 1.8.0 + + + org.scala-sbt + util-logging_2.12 + 1.8.0 + + + org.scalacheck + scalacheck_2.12 + 1.15.4 + test + + + junit + junit + 4.13.1 + test + + + org.scalatest + scalatest_2.12 + 3.2.10 + test + + + com.eed3si9n.verify + verify_2.12 + 1.0.0 + test + + + qa.hedgehog + hedgehog-sbt_2.12 + 0.7.0 + test + + + org.scala-lang.modules + scala-xml_2.12 + 2.1.0 + + + org.scala-sbt + launcher-interface + 1.4.1 + + + com.github.ben-manes.caffeine + caffeine + 2.8.5 + + + io.get-coursier + lm-coursier-shaded_2.12 + 2.0.13 + + + org.apache.logging.log4j + log4j-api + 2.17.1 + + + org.apache.logging.log4j + log4j-core + 2.17.1 + + + org.apache.logging.log4j + log4j-slf4j-impl + 2.17.1 + + + org.scala-sbt + io_2.12 + 1.8.0 + + + org.scala-sbt + librarymanagement-core_2.12 + 1.8.0 + + + org.scala-sbt + librarymanagement-ivy_2.12 + 1.8.0 + + + org.scala-sbt + compiler-interface + 1.8.0 + + + org.scala-sbt + zinc-compile_2.12 + 1.8.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.8.0/.protocol_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.8.0/.protocol_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.8.0/.protocol_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.8.0/.protocol_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..6dcb825 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.8.0/.protocol_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +8536381576ac00b9f499c419ce08b844 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.8.0/.protocol_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.8.0/.protocol_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..03a218a --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.8.0/.protocol_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +26b742fe3d642d33373789b49835cfea4ea6ed0d \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.8.0/.protocol_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.8.0/.protocol_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.8.0/.protocol_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.8.0/.protocol_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..ae2ddef --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.8.0/.protocol_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +0384636cf4a25bb52d1281226d4f8eea \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.8.0/.protocol_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.8.0/.protocol_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..a0f1d78 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.8.0/.protocol_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +f49905c281f1382c303df485771e279c846f8f01 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.8.0/protocol_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.8.0/protocol_2.12-1.8.0.pom new file mode 100644 index 0000000..0db5a91 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.8.0/protocol_2.12-1.8.0.pom @@ -0,0 +1,135 @@ + + + 4.0.0 + org.scala-sbt + protocol_2.12 + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + Protocol + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + collections_2.12 + 1.8.0 + + + org.scala-sbt + util-logging_2.12 + 1.8.0 + + + com.eed3si9n + sjson-new-core_2.12 + 0.9.0 + + + org.scalacheck + scalacheck_2.12 + 1.15.4 + test + + + junit + junit + 4.13.1 + test + + + org.scalatest + scalatest_2.12 + 3.2.10 + test + + + com.eed3si9n.verify + verify_2.12 + 1.0.0 + test + + + qa.hedgehog + hedgehog-sbt_2.12 + 0.7.0 + test + + + com.eed3si9n + sjson-new-scalajson_2.12 + 0.9.1 + + + org.scala-sbt.ipcsocket + ipcsocket + 1.5.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.8.0/.run_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.8.0/.run_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.8.0/.run_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.8.0/.run_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..18bff89 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.8.0/.run_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +836677e861ff9918662b5c15a229d123 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.8.0/.run_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.8.0/.run_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..7cfef5f --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.8.0/.run_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +ef17e69a9b71ff5bbf91841370c30c0746e3bbd6 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.8.0/.run_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.8.0/.run_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.8.0/.run_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.8.0/.run_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..c7ec558 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.8.0/.run_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +f28831e5a5f5ac12d6d408951967f3d0 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.8.0/.run_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.8.0/.run_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..ae752e7 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.8.0/.run_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +3c0a3e56f433a1b343c0148443069476d44faf4d \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.8.0/run_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.8.0/run_2.12-1.8.0.pom new file mode 100644 index 0000000..570f1de --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.8.0/run_2.12-1.8.0.pom @@ -0,0 +1,135 @@ + + + 4.0.0 + org.scala-sbt + run_2.12 + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + Run + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + collections_2.12 + 1.8.0 + + + org.scala-sbt + util-logging_2.12 + 1.8.0 + + + org.scala-sbt + util-control_2.12 + 1.8.0 + + + org.scalacheck + scalacheck_2.12 + 1.15.4 + test + + + junit + junit + 4.13.1 + test + + + org.scalatest + scalatest_2.12 + 3.2.10 + test + + + com.eed3si9n.verify + verify_2.12 + 1.0.0 + test + + + qa.hedgehog + hedgehog-sbt_2.12 + 0.7.0 + test + + + org.scala-sbt + io_2.12 + 1.8.0 + + + org.scala-sbt + zinc-classpath_2.12 + 1.8.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.1/.sbinary_2.12-0.5.1.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.1/.sbinary_2.12-0.5.1.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.1/.sbinary_2.12-0.5.1.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.1/.sbinary_2.12-0.5.1.jar__md5 new file mode 100644 index 0000000..08d80ff --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.1/.sbinary_2.12-0.5.1.jar__md5 @@ -0,0 +1 @@ +5d787a53d12e89e82492ed7c17b50ecb \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.1/.sbinary_2.12-0.5.1.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.1/.sbinary_2.12-0.5.1.jar__sha1 new file mode 100644 index 0000000..bdf80e5 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.1/.sbinary_2.12-0.5.1.jar__sha1 @@ -0,0 +1 @@ +079c623888eae9dc6c7c0aabcd491fb5ff896a49 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.1/.sbinary_2.12-0.5.1.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.1/.sbinary_2.12-0.5.1.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.1/.sbinary_2.12-0.5.1.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.1/.sbinary_2.12-0.5.1.pom__md5 new file mode 100644 index 0000000..bbf4d88 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.1/.sbinary_2.12-0.5.1.pom__md5 @@ -0,0 +1 @@ +13e6e91c5ec5b81435e52f7f98922f09 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.1/.sbinary_2.12-0.5.1.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.1/.sbinary_2.12-0.5.1.pom__sha1 new file mode 100644 index 0000000..44d163a --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.1/.sbinary_2.12-0.5.1.pom__sha1 @@ -0,0 +1 @@ +ee81b3d769f0bb98a51a931c46805522c161a220 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.1/sbinary_2.12-0.5.1.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.1/sbinary_2.12-0.5.1.pom new file mode 100644 index 0000000..53d4315 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.1/sbinary_2.12-0.5.1.pom @@ -0,0 +1,72 @@ + + + 4.0.0 + org.scala-sbt + sbinary_2.12 + jar + Library for describing binary formats for Scala types + https://github.com/sbt/sbinary + 0.5.1 + + + MIT + https://github.com/sbt/sbinary/blob/master/LICENSE + repo + + + SBinary + + org.scala-sbt + http://scala-sbt.org/ + + + https://github.com/sbt/sbinary + git@github.com:sbt/sbinary.git + + + + drmaciver + David R. MacIver + https://github.com/DRMacIver + @drmaciver + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + + + org.scala-lang + scala-library + 2.12.11 + + + org.scalacheck + scalacheck_2.12 + 1.14.3 + test + + + org.scala-lang.modules + scala-xml_2.12 + 1.0.6 + + + + + bintraysbtmavenreleases + bintray-sbt-maven-releases + https://dl.bintray.com/sbt/maven-releases/ + default + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.8.0/.sbt-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.8.0/.sbt-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.8.0/.sbt-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.8.0/.sbt-1.8.0.jar__md5 new file mode 100644 index 0000000..d2bb799 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.8.0/.sbt-1.8.0.jar__md5 @@ -0,0 +1 @@ +40c103845aefe10c36c976c8a5adbc6c \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.8.0/.sbt-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.8.0/.sbt-1.8.0.jar__sha1 new file mode 100644 index 0000000..1f1b259 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.8.0/.sbt-1.8.0.jar__sha1 @@ -0,0 +1 @@ +11d76d66b4e22f91a810a8749a7deacc6aaef6dc \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.8.0/.sbt-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.8.0/.sbt-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.8.0/.sbt-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.8.0/.sbt-1.8.0.pom__md5 new file mode 100644 index 0000000..cfbb7a4 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.8.0/.sbt-1.8.0.pom__md5 @@ -0,0 +1 @@ +6fa2f23daa91d45c4a79ef7a9b84a17c \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.8.0/.sbt-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.8.0/.sbt-1.8.0.pom__sha1 new file mode 100644 index 0000000..2bfdda9 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.8.0/.sbt-1.8.0.pom__sha1 @@ -0,0 +1 @@ +5b6463355aa24f6b879c15c299349e2cc41880e1 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.8.0/sbt-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.8.0/sbt-1.8.0.pom new file mode 100644 index 0000000..7e6ebe5 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.8.0/sbt-1.8.0.pom @@ -0,0 +1,120 @@ + + + 4.0.0 + org.scala-sbt + sbt + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + sbt + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + main_2.12 + 1.8.0 + + + org.scalacheck + scalacheck_2.12 + 1.15.4 + test + + + junit + junit + 4.13.1 + test + + + org.scalatest + scalatest_2.12 + 3.2.10 + test + + + com.eed3si9n.verify + verify_2.12 + 1.0.0 + test + + + qa.hedgehog + hedgehog-sbt_2.12 + 0.7.0 + test + + + org.scala-sbt + io_2.12 + 1.8.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.8.0/.scripted-plugin_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.8.0/.scripted-plugin_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.8.0/.scripted-plugin_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.8.0/.scripted-plugin_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..8c4e335 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.8.0/.scripted-plugin_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +62f30f3bc872254722bb4ea36d4ded3c \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.8.0/.scripted-plugin_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.8.0/.scripted-plugin_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..3e906b8 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.8.0/.scripted-plugin_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +806e618299e614db64e4a45cfe1eff4ff8f1cc56 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.8.0/.scripted-plugin_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.8.0/.scripted-plugin_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.8.0/.scripted-plugin_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.8.0/.scripted-plugin_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..c0958f8 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.8.0/.scripted-plugin_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +9fb4c5d5e2a6f47ab8ec84e774b98a73 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.8.0/.scripted-plugin_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.8.0/.scripted-plugin_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..9f0a927 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.8.0/.scripted-plugin_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +61e1b9111920a9e0befe895b8b19cc2e87015e92 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.8.0/scripted-plugin_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.8.0/scripted-plugin_2.12-1.8.0.pom new file mode 100644 index 0000000..955588e --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.8.0/scripted-plugin_2.12-1.8.0.pom @@ -0,0 +1,80 @@ + + + 4.0.0 + org.scala-sbt + scripted-plugin_2.12 + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + Scripted Plugin + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.8.0/.task-system_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.8.0/.task-system_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.8.0/.task-system_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.8.0/.task-system_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..19a159f --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.8.0/.task-system_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +0510234682d50324bbc1672a9cc7bb49 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.8.0/.task-system_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.8.0/.task-system_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..7e3753e --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.8.0/.task-system_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +10ab1e9e826e08bf3a59ceb7f238d11017798996 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.8.0/.task-system_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.8.0/.task-system_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.8.0/.task-system_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.8.0/.task-system_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..be4c759 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.8.0/.task-system_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +3c2c9004cae9cdb6f928b4ea32000c1b \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.8.0/.task-system_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.8.0/.task-system_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..16a9399 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.8.0/.task-system_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +dc277b38ac762377fa444a0d91ec77ceaab9ab57 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.8.0/task-system_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.8.0/task-system_2.12-1.8.0.pom new file mode 100644 index 0000000..92ae99d --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.8.0/task-system_2.12-1.8.0.pom @@ -0,0 +1,135 @@ + + + 4.0.0 + org.scala-sbt + task-system_2.12 + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + Task System + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + collections_2.12 + 1.8.0 + + + org.scala-sbt + util-logging_2.12 + 1.8.0 + + + org.scala-sbt + util-cache_2.12 + 1.8.0 + + + org.scala-sbt + tasks_2.12 + 1.8.0 + + + org.scalacheck + scalacheck_2.12 + 1.15.4 + test + + + junit + junit + 4.13.1 + test + + + org.scalatest + scalatest_2.12 + 3.2.10 + test + + + com.eed3si9n.verify + verify_2.12 + 1.0.0 + test + + + qa.hedgehog + hedgehog-sbt_2.12 + 0.7.0 + test + + + org.scala-sbt + io_2.12 + 1.8.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.8.0/.tasks_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.8.0/.tasks_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.8.0/.tasks_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.8.0/.tasks_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..ac2d69b --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.8.0/.tasks_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +903bf0511e430e58db82370317a4eed7 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.8.0/.tasks_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.8.0/.tasks_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..9382f37 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.8.0/.tasks_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +b2b8dbca754995d0661f3a3de9991330a79ffe11 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.8.0/.tasks_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.8.0/.tasks_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.8.0/.tasks_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.8.0/.tasks_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..986c3dc --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.8.0/.tasks_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +ad52299baf9d81f5554ad045b2ec9c50 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.8.0/.tasks_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.8.0/.tasks_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..645b049 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.8.0/.tasks_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +a8eada758bdd7e8b8cf4b27e5dfb21e67eef6502 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.8.0/tasks_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.8.0/tasks_2.12-1.8.0.pom new file mode 100644 index 0000000..880fff6 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.8.0/tasks_2.12-1.8.0.pom @@ -0,0 +1,120 @@ + + + 4.0.0 + org.scala-sbt + tasks_2.12 + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + Tasks + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + collections_2.12 + 1.8.0 + + + org.scala-sbt + util-control_2.12 + 1.8.0 + + + org.scalacheck + scalacheck_2.12 + 1.15.4 + test + + + junit + junit + 4.13.1 + test + + + org.scalatest + scalatest_2.12 + 3.2.10 + test + + + com.eed3si9n.verify + verify_2.12 + 1.0.0 + test + + + qa.hedgehog + hedgehog-sbt_2.12 + 0.7.0 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/.template-resolver-0.1.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/.template-resolver-0.1.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/.template-resolver-0.1.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/.template-resolver-0.1.jar__md5 new file mode 100644 index 0000000..173fbe3 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/.template-resolver-0.1.jar__md5 @@ -0,0 +1 @@ +236b5344ba5e1783a3e4be260eb73a45 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/.template-resolver-0.1.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/.template-resolver-0.1.jar__sha1 new file mode 100644 index 0000000..77ca67e --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/.template-resolver-0.1.jar__sha1 @@ -0,0 +1 @@ +758dcd28de14b3a6eaa39d314a074d59218f4de3 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/.template-resolver-0.1.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/.template-resolver-0.1.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/.template-resolver-0.1.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/.template-resolver-0.1.pom__md5 new file mode 100644 index 0000000..fe4f44b --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/.template-resolver-0.1.pom__md5 @@ -0,0 +1 @@ +afb6a2390e5d32a15f60a4773fb59717 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/.template-resolver-0.1.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/.template-resolver-0.1.pom__sha1 new file mode 100644 index 0000000..a370ad2 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/.template-resolver-0.1.pom__sha1 @@ -0,0 +1 @@ +11cea4adfac54d7dac6b6941ca663caee2d54cab \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/template-resolver-0.1.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/template-resolver-0.1.pom new file mode 100644 index 0000000..d28cc3c --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/template-resolver-0.1.pom @@ -0,0 +1,42 @@ + + + 4.0.0 + org.scala-sbt + template-resolver + jar + template-resolver is a contract API for template resolvers. + https://github.com/sbt/template-resolver + 0.1 + + + Apache-2.0 + http://www.apache.org/licenses/LICENSE-2.0.html + repo + + + template-resolver + + org.scala-sbt + http://scala-sbt.org/ + + + https://github.com/sbt/template-resolver + git@github.com:sbt/template-resolver + + + + eed3si9n + Eugene Yokota + @eed3si9n + https://github.com/eed3si9n + + + + + org.scalatest + scalatest_2.11 + 3.0.0 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.8.0/.test-agent-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.8.0/.test-agent-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.8.0/.test-agent-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.8.0/.test-agent-1.8.0.jar__md5 new file mode 100644 index 0000000..c3cf414 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.8.0/.test-agent-1.8.0.jar__md5 @@ -0,0 +1 @@ +3f0def48c1ca003a309c68ef1de46f29 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.8.0/.test-agent-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.8.0/.test-agent-1.8.0.jar__sha1 new file mode 100644 index 0000000..c3d2ba1 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.8.0/.test-agent-1.8.0.jar__sha1 @@ -0,0 +1 @@ +5929ed4bacb6b00fd6f4d6f3cb27e9a280574673 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.8.0/.test-agent-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.8.0/.test-agent-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.8.0/.test-agent-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.8.0/.test-agent-1.8.0.pom__md5 new file mode 100644 index 0000000..958af7d --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.8.0/.test-agent-1.8.0.pom__md5 @@ -0,0 +1 @@ +7df4cd95b66ca3605c44f3f7f06a6444 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.8.0/.test-agent-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.8.0/.test-agent-1.8.0.pom__sha1 new file mode 100644 index 0000000..6b1f61e --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.8.0/.test-agent-1.8.0.pom__sha1 @@ -0,0 +1 @@ +d95a0514461ac708a94624042f5dad38f8dfac63 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.8.0/test-agent-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.8.0/test-agent-1.8.0.pom new file mode 100644 index 0000000..cbda301 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.8.0/test-agent-1.8.0.pom @@ -0,0 +1,80 @@ + + + 4.0.0 + org.scala-sbt + test-agent + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + Test Agent + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-sbt + test-interface + 1.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/.test-interface-1.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/.test-interface-1.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/.test-interface-1.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/.test-interface-1.0.jar__md5 new file mode 100644 index 0000000..9a24c38 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/.test-interface-1.0.jar__md5 @@ -0,0 +1 @@ +e227c486e53b6c5f50fb5defb743933b \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/.test-interface-1.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/.test-interface-1.0.jar__sha1 new file mode 100644 index 0000000..1269a89 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/.test-interface-1.0.jar__sha1 @@ -0,0 +1 @@ +0a3f14d010c4cb32071f863d97291df31603b521 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/.test-interface-1.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/.test-interface-1.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/.test-interface-1.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/.test-interface-1.0.pom__md5 new file mode 100644 index 0000000..9c6b764 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/.test-interface-1.0.pom__md5 @@ -0,0 +1 @@ +1767ef0bb5457cdcdd6afbbf781f250b \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/.test-interface-1.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/.test-interface-1.0.pom__sha1 new file mode 100644 index 0000000..7fdc3b2 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/.test-interface-1.0.pom__sha1 @@ -0,0 +1 @@ +083d315a2a91434400796dffe6a94e9dd5e91e2e \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0.pom new file mode 100644 index 0000000..add7196 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0.pom @@ -0,0 +1,50 @@ + + + 4.0.0 + org.scala-sbt + test-interface + jar + Uniform test interface to Scala/Java test frameworks (specs, ScalaCheck, ScalaTest, JUnit and other) + 1.0 + test-interface + + org.scala-sbt + + http://www.scala-sbt.org + + + BSD + https://github.com/sbt/test-interface/blob/master/LICENSE + repo + + + + https://github.com/sbt/test-interface + + + + harrah + Mark Harrah + + + josh + Josh Cough + + + bill + Bill Venners + + + cheeseng + Chua Chee Seng + + + + + org.scalatest + scalatest_2.10 + 2.0.M6-SNAP24 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.8.0/.testing_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.8.0/.testing_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.8.0/.testing_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.8.0/.testing_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..6ca75e7 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.8.0/.testing_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +646f2a77637f28a69ff6da02582669b2 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.8.0/.testing_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.8.0/.testing_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..52fa7d4 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.8.0/.testing_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +d9c2e6687cd1a6cd286e192feffe86bbb93940e0 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.8.0/.testing_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.8.0/.testing_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.8.0/.testing_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.8.0/.testing_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..533d591 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.8.0/.testing_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +62766567686ed8cd6cdcb70d337a4ea7 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.8.0/.testing_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.8.0/.testing_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..7adf151 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.8.0/.testing_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +d6ff9c8e50da2cf07009c4aca90f9d27a60a9b0e \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.8.0/testing_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.8.0/testing_2.12-1.8.0.pom new file mode 100644 index 0000000..7f36d31 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.8.0/testing_2.12-1.8.0.pom @@ -0,0 +1,125 @@ + + + 4.0.0 + org.scala-sbt + testing_2.12 + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + Testing + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + test-agent + 1.8.0 + + + org.scala-sbt + util-logging_2.12 + 1.8.0 + + + com.eed3si9n + sjson-new-core_2.12 + 0.9.0 + + + org.scala-lang.modules + scala-xml_2.12 + 2.1.0 + + + org.scala-sbt + test-interface + 1.0 + + + org.scala-sbt + launcher-interface + 1.4.1 + + + com.eed3si9n + sjson-new-scalajson_2.12 + 0.9.1 + + + org.scala-sbt + io_2.12 + 1.8.0 + + + org.scala-sbt + zinc-classpath_2.12 + 1.8.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.8.0/.util-cache_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.8.0/.util-cache_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.8.0/.util-cache_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.8.0/.util-cache_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..687443e --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.8.0/.util-cache_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +db892be1ea3af611eb236b3fb922cdd1 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.8.0/.util-cache_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.8.0/.util-cache_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..8456b63 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.8.0/.util-cache_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +6f9128500a24417cff6b8581760f48f43bd06ade \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.8.0/.util-cache_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.8.0/.util-cache_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.8.0/.util-cache_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.8.0/.util-cache_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..16f7e1c --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.8.0/.util-cache_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +ccbe7b7914fc1fd9461a7208edabf42c \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.8.0/.util-cache_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.8.0/.util-cache_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..e2121a1 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.8.0/.util-cache_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +8143f683e5187cc171fe8ad0114e71583d630882 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.8.0/util-cache_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.8.0/util-cache_2.12-1.8.0.pom new file mode 100644 index 0000000..398b374 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.8.0/util-cache_2.12-1.8.0.pom @@ -0,0 +1,106 @@ + + + 4.0.0 + org.scala-sbt + util-cache_2.12 + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + Util Cache + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + com.eed3si9n + sjson-new-scalajson_2.12 + 0.9.1 + + + com.eed3si9n + sjson-new-murmurhash_2.12 + 0.9.1 + + + org.scala-lang + scala-reflect + 2.12.17 + + + org.scalatest + scalatest_2.12 + 3.2.10 + test + + + org.scala-sbt + io_2.12 + 1.8.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.8.0/.util-control_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.8.0/.util-control_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.8.0/.util-control_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.8.0/.util-control_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..0a1426d --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.8.0/.util-control_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +cd9bccb1012a7acd69b0a959e31ea03d \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.8.0/.util-control_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.8.0/.util-control_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..284821c --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.8.0/.util-control_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +bb1ee6f4ca551b5817793c4bd1b0c7fbe0c600e7 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.8.0/.util-control_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.8.0/.util-control_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.8.0/.util-control_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.8.0/.util-control_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..89c29a7 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.8.0/.util-control_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +78db4327741e672e0322f8c575da8a10 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.8.0/.util-control_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.8.0/.util-control_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..0362e78 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.8.0/.util-control_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +563a141d7d556a6367600415b12346b4cddda3d8 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.8.0/util-control_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.8.0/util-control_2.12-1.8.0.pom new file mode 100644 index 0000000..fceade5 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.8.0/util-control_2.12-1.8.0.pom @@ -0,0 +1,80 @@ + + + 4.0.0 + org.scala-sbt + util-control_2.12 + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + Util Control + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.8.0/.util-interface-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.8.0/.util-interface-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.8.0/.util-interface-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.8.0/.util-interface-1.8.0.jar__md5 new file mode 100644 index 0000000..b7aaeb0 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.8.0/.util-interface-1.8.0.jar__md5 @@ -0,0 +1 @@ +510f2363e123e546a8f17efc03993972 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.8.0/.util-interface-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.8.0/.util-interface-1.8.0.jar__sha1 new file mode 100644 index 0000000..1004191 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.8.0/.util-interface-1.8.0.jar__sha1 @@ -0,0 +1 @@ +e7dc0e2bd57f86bf17b980e6b87bb63dbf6c2610 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.8.0/.util-interface-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.8.0/.util-interface-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.8.0/.util-interface-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.8.0/.util-interface-1.8.0.pom__md5 new file mode 100644 index 0000000..e8e92e9 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.8.0/.util-interface-1.8.0.pom__md5 @@ -0,0 +1 @@ +4f923b3650ca724675bf08b5ea48e0ef \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.8.0/.util-interface-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.8.0/.util-interface-1.8.0.pom__sha1 new file mode 100644 index 0000000..944a7d2 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.8.0/.util-interface-1.8.0.pom__sha1 @@ -0,0 +1 @@ +42c2f0466e775e3444134e7eac05fc1dd4ca66d6 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.8.0/util-interface-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.8.0/util-interface-1.8.0.pom new file mode 100644 index 0000000..50ad802 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.8.0/util-interface-1.8.0.pom @@ -0,0 +1,73 @@ + + + 4.0.0 + org.scala-sbt + util-interface + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + Util Interface + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.8.0/.util-logging_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.8.0/.util-logging_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.8.0/.util-logging_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.8.0/.util-logging_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..db233fd --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.8.0/.util-logging_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +534498b442a9a4eb3b92fcc5fac984b1 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.8.0/.util-logging_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.8.0/.util-logging_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..3947efb --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.8.0/.util-logging_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +e1c356d48c8a5994c97a27650b998106eb0cea22 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.8.0/.util-logging_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.8.0/.util-logging_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.8.0/.util-logging_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.8.0/.util-logging_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..a4ad5b1 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.8.0/.util-logging_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +a8e5564966938b2af9ac2c7dc45608d8 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.8.0/.util-logging_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.8.0/.util-logging_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..c582bc5 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.8.0/.util-logging_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +9268b71eff5e3f3f79183b6ab27adc6de36b8659 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.8.0/util-logging_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.8.0/util-logging_2.12-1.8.0.pom new file mode 100644 index 0000000..4298bc3 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.8.0/util-logging_2.12-1.8.0.pom @@ -0,0 +1,162 @@ + + + 4.0.0 + org.scala-sbt + util-logging_2.12 + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + Util Logging + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + util-interface + 1.8.0 + + + org.scala-sbt + collections_2.12 + 1.8.0 + + + org.scala-sbt + core-macros_2.12 + 1.8.0 + + + com.eed3si9n + sjson-new-core_2.12 + 0.9.0 + + + org.scala-sbt.jline + jline + 2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493 + + + org.jline + jline-terminal + 3.19.0 + + + org.jline + jline-terminal-jna + 3.19.0 + + + org.jline + jline-terminal-jansi + 3.19.0 + + + org.apache.logging.log4j + log4j-api + 2.17.1 + + + org.apache.logging.log4j + log4j-core + 2.17.1 + + + com.lmax + disruptor + 3.4.2 + + + com.eed3si9n + sjson-new-scalajson_2.12 + 0.9.1 + + + org.scala-lang + scala-reflect + 2.12.17 + + + org.scalacheck + scalacheck_2.12 + 1.15.4 + test + + + org.scalatest + scalatest_2.12 + 3.2.10 + test + + + org.scala-sbt + io_2.12 + 1.8.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.8.0/.util-position_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.8.0/.util-position_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.8.0/.util-position_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.8.0/.util-position_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..3907a63 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.8.0/.util-position_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +9a3c75de8aac02cf9784be7eb2f3d185 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.8.0/.util-position_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.8.0/.util-position_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..0a6f4e1 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.8.0/.util-position_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +83b7cc4c89a5f3755509d99389f641ad814c07be \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.8.0/.util-position_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.8.0/.util-position_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.8.0/.util-position_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.8.0/.util-position_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..04180e7 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.8.0/.util-position_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +ff45734bdb8190a76e584eb287bd2fc9 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.8.0/.util-position_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.8.0/.util-position_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..c439a0c --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.8.0/.util-position_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +2564e04f75b48a89d8e8169d06859059199fa924 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.8.0/util-position_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.8.0/util-position_2.12-1.8.0.pom new file mode 100644 index 0000000..3d595f9 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.8.0/util-position_2.12-1.8.0.pom @@ -0,0 +1,91 @@ + + + 4.0.0 + org.scala-sbt + util-position_2.12 + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + Util Position + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-lang + scala-reflect + 2.12.17 + + + org.scalatest + scalatest_2.12 + 3.2.10 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.8.0/.util-relation_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.8.0/.util-relation_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.8.0/.util-relation_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.8.0/.util-relation_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..1cd5327 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.8.0/.util-relation_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +f6b228b263b6186fc130f06fe593e324 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.8.0/.util-relation_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.8.0/.util-relation_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..9691506 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.8.0/.util-relation_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +78500f3dbf755c72993b1f5d5685a3c9050c71a5 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.8.0/.util-relation_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.8.0/.util-relation_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.8.0/.util-relation_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.8.0/.util-relation_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..29fadb4 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.8.0/.util-relation_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +6e79472e609b51d6a0f2f1db345daec7 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.8.0/.util-relation_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.8.0/.util-relation_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..efe9a6a --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.8.0/.util-relation_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +4809d1c665fd7b9515fbbe6072cf5bbc7cffd63f \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.8.0/util-relation_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.8.0/util-relation_2.12-1.8.0.pom new file mode 100644 index 0000000..b88ecf3 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.8.0/util-relation_2.12-1.8.0.pom @@ -0,0 +1,86 @@ + + + 4.0.0 + org.scala-sbt + util-relation_2.12 + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + Util Relation + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scalacheck + scalacheck_2.12 + 1.15.4 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.8.0/.util-tracking_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.8.0/.util-tracking_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.8.0/.util-tracking_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.8.0/.util-tracking_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..91bdd1d --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.8.0/.util-tracking_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +b9543e9b2165b826a39d717da3b3f46a \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.8.0/.util-tracking_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.8.0/.util-tracking_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..00d9b69 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.8.0/.util-tracking_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +13c50a6db1628a6637acb0944b8d761c258121fc \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.8.0/.util-tracking_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.8.0/.util-tracking_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.8.0/.util-tracking_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.8.0/.util-tracking_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..851dab0 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.8.0/.util-tracking_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +f1eb217aba6b1a20e2405778400bf0df \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.8.0/.util-tracking_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.8.0/.util-tracking_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..f6dd10f --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.8.0/.util-tracking_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +1ec97631177f78638216eb35d035819db47fe912 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.8.0/util-tracking_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.8.0/util-tracking_2.12-1.8.0.pom new file mode 100644 index 0000000..984acad --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.8.0/util-tracking_2.12-1.8.0.pom @@ -0,0 +1,96 @@ + + + 4.0.0 + org.scala-sbt + util-tracking_2.12 + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + Util Tracking + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + util-cache_2.12 + 1.8.0 + + + org.scalatest + scalatest_2.12 + 3.2.10 + test + + + org.scala-sbt + io_2.12 + 1.8.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.8.0/.zinc-apiinfo_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.8.0/.zinc-apiinfo_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.8.0/.zinc-apiinfo_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.8.0/.zinc-apiinfo_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..c447347 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.8.0/.zinc-apiinfo_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +5680775d4342794582072d6ec8ae75bf \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.8.0/.zinc-apiinfo_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.8.0/.zinc-apiinfo_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..4e321b8 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.8.0/.zinc-apiinfo_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +3e48727c5c6ca7de63aa466ed0aed654b85f905b \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.8.0/.zinc-apiinfo_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.8.0/.zinc-apiinfo_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.8.0/.zinc-apiinfo_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.8.0/.zinc-apiinfo_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..455d7ed --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.8.0/.zinc-apiinfo_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +f111ee5e69db5f90bee5efc96a91df78 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.8.0/.zinc-apiinfo_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.8.0/.zinc-apiinfo_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..291d507 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.8.0/.zinc-apiinfo_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +d3ae5b13dfbe55288d50bc88358a0b1477e75b4a \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.8.0/zinc-apiinfo_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.8.0/zinc-apiinfo_2.12-1.8.0.pom new file mode 100644 index 0000000..f6ccdd4 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.8.0/zinc-apiinfo_2.12-1.8.0.pom @@ -0,0 +1,107 @@ + + + 4.0.0 + org.scala-sbt + zinc-apiinfo_2.12 + jar + Incremental compiler of Scala + https://github.com/sbt/zinc + 1.8.0 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + zinc ApiInfo + + org.scala-sbt + https://github.com/sbt/zinc + + + https://github.com/sbt/zinc + git@github.com:sbt/zinc.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + http://eed3si9n.com/ + @eed3si9n + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + jvican + Jorge Vicente Cantero + https://github.com/jvican + @jvican + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + compiler-interface + 1.8.0 + + + org.scala-sbt + compiler-bridge_2.12 + 1.8.0 + + + org.scala-sbt + zinc-classfile_2.12 + 1.8.0 + + + org.scalacheck + scalacheck_2.12 + 1.17.0 + test + + + org.scalatest + scalatest_2.12 + 3.2.13 + test + + + com.eed3si9n.verify + verify_2.12 + 2.0.1 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.8.0/.zinc-classfile_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.8.0/.zinc-classfile_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.8.0/.zinc-classfile_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.8.0/.zinc-classfile_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..464c9d2 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.8.0/.zinc-classfile_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +806e6351506e9092e2cacb5f225c4b3a \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.8.0/.zinc-classfile_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.8.0/.zinc-classfile_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..3cdeca8 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.8.0/.zinc-classfile_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +a0819bf8fbc4f34b1e65c7e48255291181db278a \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.8.0/.zinc-classfile_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.8.0/.zinc-classfile_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.8.0/.zinc-classfile_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.8.0/.zinc-classfile_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..89bd961 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.8.0/.zinc-classfile_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +d91cd56b11e442ae7dac27d76e8894ae \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.8.0/.zinc-classfile_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.8.0/.zinc-classfile_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..31e0e98 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.8.0/.zinc-classfile_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +8b63033bffcdd2adb4aa6a1f4668d1613df33175 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.8.0/zinc-classfile_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.8.0/zinc-classfile_2.12-1.8.0.pom new file mode 100644 index 0000000..2bff68a --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.8.0/zinc-classfile_2.12-1.8.0.pom @@ -0,0 +1,113 @@ + + + 4.0.0 + org.scala-sbt + zinc-classfile_2.12 + jar + Incremental compiler of Scala + https://github.com/sbt/zinc + 1.8.0 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + zinc Classfile + + org.scala-sbt + https://github.com/sbt/zinc + + + https://github.com/sbt/zinc + git@github.com:sbt/zinc.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + http://eed3si9n.com/ + @eed3si9n + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + jvican + Jorge Vicente Cantero + https://github.com/jvican + @jvican + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + compiler-interface + 1.8.0 + + + org.scala-sbt + zinc-testing_2.12 + 1.8.0 + test + + + org.scalacheck + scalacheck_2.12 + 1.17.0 + test + + + org.scalatest + scalatest_2.12 + 3.2.13 + test + + + com.eed3si9n.verify + verify_2.12 + 2.0.1 + test + + + org.scala-sbt + io_2.12 + 1.8.0 + + + org.scala-sbt + util-logging_2.12 + 1.8.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.8.0/.zinc-classpath_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.8.0/.zinc-classpath_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.8.0/.zinc-classpath_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.8.0/.zinc-classpath_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..e27fcf6 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.8.0/.zinc-classpath_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +58ef6f4a56fdcdb9c485b8d71b99866e \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.8.0/.zinc-classpath_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.8.0/.zinc-classpath_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..cb96e1c --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.8.0/.zinc-classpath_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +d99cea107ce0308e40014e906e11cb61a3c3d8bd \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.8.0/.zinc-classpath_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.8.0/.zinc-classpath_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.8.0/.zinc-classpath_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.8.0/.zinc-classpath_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..7c5e05f --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.8.0/.zinc-classpath_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +f9b332d6a2efd9444281ec4c1af360fc \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.8.0/.zinc-classpath_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.8.0/.zinc-classpath_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..a193891 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.8.0/.zinc-classpath_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +5caf3ef4583187bc2ae55162a6efa23cf47b2a33 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.8.0/zinc-classpath_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.8.0/zinc-classpath_2.12-1.8.0.pom new file mode 100644 index 0000000..6f8a870 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.8.0/zinc-classpath_2.12-1.8.0.pom @@ -0,0 +1,112 @@ + + + 4.0.0 + org.scala-sbt + zinc-classpath_2.12 + jar + Incremental compiler of Scala + https://github.com/sbt/zinc + 1.8.0 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + zinc Classpath + + org.scala-sbt + https://github.com/sbt/zinc + + + https://github.com/sbt/zinc + git@github.com:sbt/zinc.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + http://eed3si9n.com/ + @eed3si9n + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + jvican + Jorge Vicente Cantero + https://github.com/jvican + @jvican + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-compiler + 2.12.17 + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + compiler-interface + 1.8.0 + + + org.scala-sbt + launcher-interface + 1.3.3 + + + org.scalacheck + scalacheck_2.12 + 1.17.0 + test + + + org.scalatest + scalatest_2.12 + 3.2.13 + test + + + com.eed3si9n.verify + verify_2.12 + 2.0.1 + test + + + org.scala-sbt + io_2.12 + 1.8.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.8.0/.zinc-compile-core_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.8.0/.zinc-compile-core_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.8.0/.zinc-compile-core_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.8.0/.zinc-compile-core_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..86c5415 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.8.0/.zinc-compile-core_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +356cd900a396b186ed768c8915840f2c \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.8.0/.zinc-compile-core_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.8.0/.zinc-compile-core_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..5845319 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.8.0/.zinc-compile-core_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +5e79f7842f4fc02ffcec6a86ea7b4ef24e59f179 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.8.0/.zinc-compile-core_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.8.0/.zinc-compile-core_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.8.0/.zinc-compile-core_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.8.0/.zinc-compile-core_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..6a824e5 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.8.0/.zinc-compile-core_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +20d3ba8a8053b8242384c49b9e221765 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.8.0/.zinc-compile-core_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.8.0/.zinc-compile-core_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..42c2856 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.8.0/.zinc-compile-core_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +32485bc441f8dfee888e4607ba130e85b2496140 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.8.0/zinc-compile-core_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.8.0/zinc-compile-core_2.12-1.8.0.pom new file mode 100644 index 0000000..7a5e9c9 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.8.0/zinc-compile-core_2.12-1.8.0.pom @@ -0,0 +1,154 @@ + + + 4.0.0 + org.scala-sbt + zinc-compile-core_2.12 + jar + Incremental compiler of Scala + https://github.com/sbt/zinc + 1.8.0 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + zinc Compile Core + + org.scala-sbt + https://github.com/sbt/zinc + + + https://github.com/sbt/zinc + git@github.com:sbt/zinc.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + http://eed3si9n.com/ + @eed3si9n + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + jvican + Jorge Vicente Cantero + https://github.com/jvican + @jvican + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-compiler + 2.12.17 + test + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + compiler-interface + 1.8.0 + + + org.scala-sbt + zinc-classpath_2.12 + 1.8.0 + + + org.scala-sbt + zinc-apiinfo_2.12 + 1.8.0 + + + org.scala-sbt + zinc-classfile_2.12 + 1.8.0 + + + org.scala-sbt + zinc-testing_2.12 + 1.8.0 + test + + + org.scala-sbt + launcher-interface + 1.3.3 + + + org.scala-lang.modules + scala-parser-combinators_2.12 + 1.1.2 + + + net.openhft + zero-allocation-hashing + 0.10.1 + + + org.scalacheck + scalacheck_2.12 + 1.17.0 + test + + + org.scalatest + scalatest_2.12 + 3.2.13 + test + + + com.eed3si9n.verify + verify_2.12 + 2.0.1 + test + + + org.scala-sbt + util-logging_2.12 + 1.8.0 + + + org.scala-sbt + io_2.12 + 1.8.0 + + + org.scala-sbt + util-control_2.12 + 1.8.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.8.0/.zinc-compile_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.8.0/.zinc-compile_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.8.0/.zinc-compile_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.8.0/.zinc-compile_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..7cd3155 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.8.0/.zinc-compile_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +ebdd044dc8518e2d78eae83ad0dda504 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.8.0/.zinc-compile_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.8.0/.zinc-compile_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..9770100 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.8.0/.zinc-compile_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +5cedb2a50f846f542f4bfab78fe9873e5ed72353 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.8.0/.zinc-compile_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.8.0/.zinc-compile_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.8.0/.zinc-compile_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.8.0/.zinc-compile_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..f0d27f8 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.8.0/.zinc-compile_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +0f599094c00f95bb59c9ffaa1ca90a2e \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.8.0/.zinc-compile_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.8.0/.zinc-compile_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..36b38f3 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.8.0/.zinc-compile_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +baeca936358b33041a52aeccb915184ae0c6476e \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.8.0/zinc-compile_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.8.0/zinc-compile_2.12-1.8.0.pom new file mode 100644 index 0000000..cfcc6f4 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.8.0/zinc-compile_2.12-1.8.0.pom @@ -0,0 +1,102 @@ + + + 4.0.0 + org.scala-sbt + zinc-compile_2.12 + jar + Incremental compiler of Scala + https://github.com/sbt/zinc + 1.8.0 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + zinc Compile + + org.scala-sbt + https://github.com/sbt/zinc + + + https://github.com/sbt/zinc + git@github.com:sbt/zinc.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + http://eed3si9n.com/ + @eed3si9n + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + jvican + Jorge Vicente Cantero + https://github.com/jvican + @jvican + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + zinc-compile-core_2.12 + 1.8.0 + + + org.scalacheck + scalacheck_2.12 + 1.17.0 + test + + + org.scalatest + scalatest_2.12 + 3.2.13 + test + + + com.eed3si9n.verify + verify_2.12 + 2.0.1 + test + + + org.scala-sbt + util-tracking_2.12 + 1.8.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.8.0/.zinc-core_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.8.0/.zinc-core_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.8.0/.zinc-core_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.8.0/.zinc-core_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..9ed81aa --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.8.0/.zinc-core_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +6bcaa07e4f516bf66e75c4956b858d4a \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.8.0/.zinc-core_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.8.0/.zinc-core_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..0b2c93a --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.8.0/.zinc-core_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +696a0205452807a15d4d33f5ce83842878bec4a3 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.8.0/.zinc-core_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.8.0/.zinc-core_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.8.0/.zinc-core_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.8.0/.zinc-core_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..f55d698 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.8.0/.zinc-core_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +cc171b6c916088863a5d59d037aa8264 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.8.0/.zinc-core_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.8.0/.zinc-core_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..9d81d48 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.8.0/.zinc-core_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +5335764063df05016424d9cf3f0e1ac1dfa3a16f \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.8.0/zinc-core_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.8.0/zinc-core_2.12-1.8.0.pom new file mode 100644 index 0000000..bf15bc3 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.8.0/zinc-core_2.12-1.8.0.pom @@ -0,0 +1,144 @@ + + + 4.0.0 + org.scala-sbt + zinc-core_2.12 + jar + Incremental compiler of Scala + https://github.com/sbt/zinc + 1.8.0 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + zinc Core + + org.scala-sbt + https://github.com/sbt/zinc + + + https://github.com/sbt/zinc + git@github.com:sbt/zinc.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + http://eed3si9n.com/ + @eed3si9n + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + jvican + Jorge Vicente Cantero + https://github.com/jvican + @jvican + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + zinc-compile-core_2.12 + 1.8.0 + + + org.scala-sbt + zinc-apiinfo_2.12 + 1.8.0 + + + org.scala-sbt + zinc-classpath_2.12 + 1.8.0 + + + org.scala-sbt + compiler-interface + 1.8.0 + + + org.scala-sbt + zinc-persist-core-assembly + 1.8.0 + + + org.scala-sbt + compiler-bridge_2.12 + 1.8.0 + test + + + org.scala-sbt + zinc-testing_2.12 + 1.8.0 + test + + + org.scalacheck + scalacheck_2.12 + 1.17.0 + test + + + org.scalatest + scalatest_2.12 + 3.2.13 + test + + + com.eed3si9n.verify + verify_2.12 + 2.0.1 + test + + + org.scala-sbt + io_2.12 + 1.8.0 + + + org.scala-sbt + util-logging_2.12 + 1.8.0 + + + org.scala-sbt + util-relation_2.12 + 1.8.0 + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.8.0/.zinc-lm-integration_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.8.0/.zinc-lm-integration_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.8.0/.zinc-lm-integration_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.8.0/.zinc-lm-integration_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..d6aea5c --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.8.0/.zinc-lm-integration_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +9457dea48acd235dee1a034965898b8c \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.8.0/.zinc-lm-integration_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.8.0/.zinc-lm-integration_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..6a01619 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.8.0/.zinc-lm-integration_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +f5e95e950ab2dc432a61eca78df6f39120c6f201 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.8.0/.zinc-lm-integration_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.8.0/.zinc-lm-integration_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.8.0/.zinc-lm-integration_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.8.0/.zinc-lm-integration_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..bde4ecb --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.8.0/.zinc-lm-integration_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +71dce2322d825616d4b05deb89ed3393 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.8.0/.zinc-lm-integration_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.8.0/.zinc-lm-integration_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..4b42922 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.8.0/.zinc-lm-integration_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +06ae2451cc5ca636a2faf5e66343cb6ee8485af5 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.8.0/zinc-lm-integration_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.8.0/zinc-lm-integration_2.12-1.8.0.pom new file mode 100644 index 0000000..b146937 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.8.0/zinc-lm-integration_2.12-1.8.0.pom @@ -0,0 +1,131 @@ + + + 4.0.0 + org.scala-sbt + zinc-lm-integration_2.12 + jar + sbt is an interactive build tool + https://github.com/sbt/sbt + 1.8.0 + + + Apache-2.0 + https://github.com/sbt/sbt/blob/develop/LICENSE + repo + + + Zinc LM Integration + + org.scala-sbt + https://github.com/sbt/sbt + + + https://github.com/sbt/sbt + git@github.com:sbt/sbt.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + https://github.com/eed3si9n + @eed3si9n + + + jsuereth + Josh Suereth + https://github.com/jsuereth + @jsuereth + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + eatkins + Ethan Atkins + https://github.com/eatkins + @eatkins + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scalacheck + scalacheck_2.12 + 1.15.4 + test + + + junit + junit + 4.13.1 + test + + + org.scalatest + scalatest_2.12 + 3.2.10 + test + + + com.eed3si9n.verify + verify_2.12 + 1.0.0 + test + + + qa.hedgehog + hedgehog-sbt_2.12 + 0.7.0 + test + + + org.scala-sbt + launcher-interface + 1.4.1 + + + org.scala-sbt + zinc-compile-core_2.12 + 1.8.0 + + + org.scala-sbt + librarymanagement-core_2.12 + 1.8.0 + + + org.scala-sbt + librarymanagement-ivy_2.12 + 1.8.0 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.8.0/.zinc-persist-core-assembly-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.8.0/.zinc-persist-core-assembly-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.8.0/.zinc-persist-core-assembly-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.8.0/.zinc-persist-core-assembly-1.8.0.jar__md5 new file mode 100644 index 0000000..e92bb91 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.8.0/.zinc-persist-core-assembly-1.8.0.jar__md5 @@ -0,0 +1 @@ +70c351e6b83c43016f297d96bde4acc8 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.8.0/.zinc-persist-core-assembly-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.8.0/.zinc-persist-core-assembly-1.8.0.jar__sha1 new file mode 100644 index 0000000..fb5ec76 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.8.0/.zinc-persist-core-assembly-1.8.0.jar__sha1 @@ -0,0 +1 @@ +95894b5464c7d7931d7d46f94391eeeecec76ceb \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.8.0/.zinc-persist-core-assembly-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.8.0/.zinc-persist-core-assembly-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.8.0/.zinc-persist-core-assembly-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.8.0/.zinc-persist-core-assembly-1.8.0.pom__md5 new file mode 100644 index 0000000..8c2ad62 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.8.0/.zinc-persist-core-assembly-1.8.0.pom__md5 @@ -0,0 +1 @@ +43d9bbbf91309c6486cbd63d93cbdf51 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.8.0/.zinc-persist-core-assembly-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.8.0/.zinc-persist-core-assembly-1.8.0.pom__sha1 new file mode 100644 index 0000000..c388700 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.8.0/.zinc-persist-core-assembly-1.8.0.pom__sha1 @@ -0,0 +1 @@ +64d402f7501305bdddbd9829c5956f6244bb9c8e \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.8.0/zinc-persist-core-assembly-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.8.0/zinc-persist-core-assembly-1.8.0.pom new file mode 100644 index 0000000..ef2a42b --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.8.0/zinc-persist-core-assembly-1.8.0.pom @@ -0,0 +1,67 @@ + + + 4.0.0 + org.scala-sbt + zinc-persist-core-assembly + jar + Incremental compiler of Scala + https://github.com/sbt/zinc + 1.8.0 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + zinc-persist-core-assembly + + org.scala-sbt + https://github.com/sbt/zinc + + + https://github.com/sbt/zinc + git@github.com:sbt/zinc.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + http://eed3si9n.com/ + @eed3si9n + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + jvican + Jorge Vicente Cantero + https://github.com/jvican + @jvican + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.8.0/.zinc-persist_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.8.0/.zinc-persist_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.8.0/.zinc-persist_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.8.0/.zinc-persist_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..d61a11d --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.8.0/.zinc-persist_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +67afca35cbbde148335302f78d596302 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.8.0/.zinc-persist_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.8.0/.zinc-persist_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..9b4747e --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.8.0/.zinc-persist_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +fddfae157645b5dad35a32aed2248c08d974a838 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.8.0/.zinc-persist_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.8.0/.zinc-persist_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.8.0/.zinc-persist_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.8.0/.zinc-persist_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..c3fdcab --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.8.0/.zinc-persist_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +f461df38dbe594b9087bb36947426a58 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.8.0/.zinc-persist_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.8.0/.zinc-persist_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..dff9516 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.8.0/.zinc-persist_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +31b2ab7079e74e4816b7fa296647474d9d2f617a \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.8.0/zinc-persist_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.8.0/zinc-persist_2.12-1.8.0.pom new file mode 100644 index 0000000..df3fdf7 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.8.0/zinc-persist_2.12-1.8.0.pom @@ -0,0 +1,123 @@ + + + 4.0.0 + org.scala-sbt + zinc-persist_2.12 + jar + Incremental compiler of Scala + https://github.com/sbt/zinc + 1.8.0 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + zinc Persist + + org.scala-sbt + https://github.com/sbt/zinc + + + https://github.com/sbt/zinc + git@github.com:sbt/zinc.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + http://eed3si9n.com/ + @eed3si9n + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + jvican + Jorge Vicente Cantero + https://github.com/jvican + @jvican + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + zinc-core_2.12 + 1.8.0 + + + org.scala-sbt + zinc-compile-core_2.12 + 1.8.0 + + + org.scala-sbt + zinc-persist-core-assembly + 1.8.0 + + + org.scala-sbt + sbinary_2.12 + 0.5.1 + + + org.scala-lang.modules + scala-xml_2.12 + + + + + org.scala-lang.modules + scala-xml_2.12 + 2.1.0 + + + org.scalacheck + scalacheck_2.12 + 1.17.0 + test + + + org.scalatest + scalatest_2.12 + 3.2.13 + test + + + com.eed3si9n.verify + verify_2.12 + 2.0.1 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.8.0/.zinc_2.12-1.8.0.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.8.0/.zinc_2.12-1.8.0.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.8.0/.zinc_2.12-1.8.0.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.8.0/.zinc_2.12-1.8.0.jar__md5 new file mode 100644 index 0000000..029492b --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.8.0/.zinc_2.12-1.8.0.jar__md5 @@ -0,0 +1 @@ +f753d95bd98b368a129e9d64058cc766 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.8.0/.zinc_2.12-1.8.0.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.8.0/.zinc_2.12-1.8.0.jar__sha1 new file mode 100644 index 0000000..6cd094e --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.8.0/.zinc_2.12-1.8.0.jar__sha1 @@ -0,0 +1 @@ +eec21f1295a121445ded0e51be3ed2959ebff003 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.8.0/.zinc_2.12-1.8.0.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.8.0/.zinc_2.12-1.8.0.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.8.0/.zinc_2.12-1.8.0.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.8.0/.zinc_2.12-1.8.0.pom__md5 new file mode 100644 index 0000000..4573336 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.8.0/.zinc_2.12-1.8.0.pom__md5 @@ -0,0 +1 @@ +937f0f69c7b219a2df016984c070d13d \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.8.0/.zinc_2.12-1.8.0.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.8.0/.zinc_2.12-1.8.0.pom__sha1 new file mode 100644 index 0000000..44734e6 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.8.0/.zinc_2.12-1.8.0.pom__sha1 @@ -0,0 +1 @@ +853e72cfc0817c21a70c5064259f7cdb89d9686d \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.8.0/zinc_2.12-1.8.0.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.8.0/zinc_2.12-1.8.0.pom new file mode 100644 index 0000000..e479d6e --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.8.0/zinc_2.12-1.8.0.pom @@ -0,0 +1,118 @@ + + + 4.0.0 + org.scala-sbt + zinc_2.12 + jar + Incremental compiler of Scala + https://github.com/sbt/zinc + 1.8.0 + + + Apache-2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + zinc + + org.scala-sbt + https://github.com/sbt/zinc + + + https://github.com/sbt/zinc + git@github.com:sbt/zinc.git + + + + harrah + Mark Harrah + https://github.com/harrah + @harrah + + + eed3si9n + Eugene Yokota + http://eed3si9n.com/ + @eed3si9n + + + dwijnand + Dale Wijnand + https://github.com/dwijnand + @dwijnand + + + gkossakowski + Grzegorz Kossakowski + https://github.com/gkossakowski + @gkossakowski + + + jvican + Jorge Vicente Cantero + https://github.com/jvican + @jvican + + + Duhemm + Martin Duhem + https://github.com/Duhemm + @Duhemm + + + + early-semver + + + + org.scala-lang + scala-library + 2.12.17 + + + org.scala-sbt + zinc-core_2.12 + 1.8.0 + + + org.scala-sbt + zinc-persist_2.12 + 1.8.0 + + + org.scala-sbt + zinc-compile-core_2.12 + 1.8.0 + + + org.scala-sbt + zinc-classfile_2.12 + 1.8.0 + + + org.scala-sbt + zinc-testing_2.12 + 1.8.0 + test + + + org.scalacheck + scalacheck_2.12 + 1.17.0 + test + + + org.scalatest + scalatest_2.12 + 3.2.13 + test + + + com.eed3si9n.verify + verify_2.12 + 2.0.1 + test + + + \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.3/.slf4j-api-2.0.3.jar.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.3/.slf4j-api-2.0.3.jar.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.3/.slf4j-api-2.0.3.jar__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.3/.slf4j-api-2.0.3.jar__md5 new file mode 100644 index 0000000..22d5df8 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.3/.slf4j-api-2.0.3.jar__md5 @@ -0,0 +1 @@ +6a0d2df2735d23889e5e6ea1d79bfe6c \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.3/.slf4j-api-2.0.3.jar__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.3/.slf4j-api-2.0.3.jar__sha1 new file mode 100644 index 0000000..964a3c4 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.3/.slf4j-api-2.0.3.jar__sha1 @@ -0,0 +1 @@ +deef7fc81f00bd5e6205bb097be1040b4094f007 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.3/.slf4j-api-2.0.3.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.3/.slf4j-api-2.0.3.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.3/.slf4j-api-2.0.3.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.3/.slf4j-api-2.0.3.pom__md5 new file mode 100644 index 0000000..b94b329 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.3/.slf4j-api-2.0.3.pom__md5 @@ -0,0 +1 @@ +7387e09f333ba4a036a22f6e0c2d5b35 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.3/.slf4j-api-2.0.3.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.3/.slf4j-api-2.0.3.pom__sha1 new file mode 100644 index 0000000..63baff1 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.3/.slf4j-api-2.0.3.pom__sha1 @@ -0,0 +1 @@ +ec630d554e845fceb4042dfee02931d5adc806d6 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.3/slf4j-api-2.0.3.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.3/slf4j-api-2.0.3.pom new file mode 100644 index 0000000..d196f6b --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.3/slf4j-api-2.0.3.pom @@ -0,0 +1,59 @@ + + + + 4.0.0 + + + org.slf4j + slf4j-parent + 2.0.3 + + + slf4j-api + + jar + SLF4J API Module + The slf4j API + + http://www.slf4j.org + + + org.slf4j + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + once + plain + false + + **/AllTest.java + **/PackageTest.java + + + + + + org.apache.maven.plugins + maven-jar-plugin + ${maven-jar-plugin.version} + + + bundle-test-jar + package + + test-jar + + + + + + + + + diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-parent/2.0.3/.slf4j-parent-2.0.3.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-parent/2.0.3/.slf4j-parent-2.0.3.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-parent/2.0.3/.slf4j-parent-2.0.3.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-parent/2.0.3/.slf4j-parent-2.0.3.pom__md5 new file mode 100644 index 0000000..72bb32e --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-parent/2.0.3/.slf4j-parent-2.0.3.pom__md5 @@ -0,0 +1 @@ +ce06e50c10426ec2a6edc67d6026226c \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-parent/2.0.3/.slf4j-parent-2.0.3.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-parent/2.0.3/.slf4j-parent-2.0.3.pom__sha1 new file mode 100644 index 0000000..3fe9584 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-parent/2.0.3/.slf4j-parent-2.0.3.pom__sha1 @@ -0,0 +1 @@ +18036388a342028d03ba4404621764d717049b16 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-parent/2.0.3/slf4j-parent-2.0.3.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-parent/2.0.3/slf4j-parent-2.0.3.pom new file mode 100644 index 0000000..e639a18 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-parent/2.0.3/slf4j-parent-2.0.3.pom @@ -0,0 +1,522 @@ + + + + 4.0.0 + + org.slf4j + slf4j-parent + 2.0.3 + + pom + SLF4J + Top SLF4J project pom.xml file + http://www.slf4j.org + + + QOS.ch + http://www.qos.ch + + 2005 + + + + MIT License + http://www.opensource.org/licenses/mit-license.php + repo + + + + + https://github.com/qos-ch/slf4j + scm:git:https://github.com/qos-ch/slf4j.git + + + + + 2022-09-28T10:14:00Z + 1.7.36 + 2.0.0-alpha7 + + 8 + ${jdk.version} + ${jdk.version} + UTF-8 + UTF-8 + UTF-8 + + 1.6.0 + 0.8.1 + 1.2.22 + 1.2.17 + 1.2.10 + 4.13.1 + 3.7.1 + 3.8.1 + 3.0.0-M5 + 3.1.0 + 3.2.1 + 3.0.0-M1 + 3.2.0 + 3.1.1 + 3.2.0 + + + + + + ceki + Ceki Gulcu + ceki@qos.ch + + + + + slf4j-api + slf4j-simple + slf4j-nop + slf4j-jdk14 + slf4j-jdk-platform-logging + slf4j-log4j12 + slf4j-reload4j + slf4j-ext + jcl-over-slf4j + log4j-over-slf4j + jul-to-slf4j + osgi-over-slf4j + integration + slf4j-migrator + + + + + + junit + junit + ${junit.version} + test + + + + + + + + org.slf4j + slf4j-api + ${project.version} + + + + org.slf4j + slf4j-jdk14 + ${project.version} + + + + + org.slf4j + slf4j-simple + ${project.version} + + + + + log4j + log4j + ${log4j.version} + + + + ch.qos.reload4j + reload4j + ${reload4j.version} + + + + ch.qos.cal10n + cal10n-api + ${cal10n.version} + + + + + + + + + org.apache.maven.wagon + wagon-ssh + 2.10 + + + + + + ${project.basedir}/src/main/resources + true + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.14 + + + org.codehaus.mojo.signature + java16 + 1.0 + + + + + + org.apache.maven.plugins + maven-deploy-plugin + ${maven-deploy-plugin.version} + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven-compiler-plugin.version} + + + + default-compile + + compile + + + ${jdk.version} + ${jdk.version} + + + + + module-compile + compile + + compile + + + 9 + + ${project.basedir}/src/main/java9 + + true + + + + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + ${maven-jar-plugin.version} + + + + default-jar + package + + jar + + + + + ${parsedVersion.osgiVersion} + ${project.description} + ${maven.compiler.source} + ${maven.compiler.target} + ${project.version} + true + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + true + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven-surefire-plugin.version} + + 1 + false + plain + false + + **/AllTest.java + **/PackageTest.java + + + + + + org.apache.maven.plugins + maven-source-plugin + ${maven-source-plugin.version} + + + package + + jar + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + ${build-helper-maven-plugin.version} + + + parse-version + + parse-version + + + + + + + org.apache.maven.plugins + maven-site-plugin + ${maven-site-plugin.version} + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 3.0.0 + + + + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${maven-jxr-plugin.version} + + true + target/site/apidocs/ + true + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + true + true + true + + -Xdoclint:none + + org.slf4j.migrator:org.slf4j.migrator.* + + **/module-info.java + + + + + SLF4J packages + org.slf4j:org.slf4j.* + + + + SLF4J extensions + + org.slf4j.cal10n:org.slf4j.profiler:org.slf4j.ext:org.slf4j.instrumentation:org.slf4j.agent + + + + + Jakarta Commons Logging packages + org.apache.commons.* + + + + java.util.logging (JUL) to SLF4J bridge + org.slf4j.bridge + + + + Apache log4j + org.apache.log4j:org.apache.log4j.* + + + + + + + + + + + skipTests + + true + + + + + javadocjar + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + attach-javadocs + + jar + + + + + -Xdoclint:none + false + + **/module-info.java + + + + + + + + + license + + + + com.google.code.maven-license-plugin + maven-license-plugin + +
src/main/licenseHeader.txt
+ false + true + true + + src/**/*.java + + true + true + + 1999 + + + src/main/javadocHeaders.xml + +
+
+
+
+ + + +
+ + + sign-artifacts + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.1 + + + sign-artifacts + verify + + sign + + + + + + + + + +
+ + + + apache-snapshot-repo + apache-snapshot-repo + https://repository.apache.org/content/groups/snapshots/ + + false + + + true + + + + + + + + + + + sonatype-nexus-staging + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + +
diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/6/.oss-parent-6.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/6/.oss-parent-6.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/6/.oss-parent-6.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/6/.oss-parent-6.pom__md5 new file mode 100644 index 0000000..26dcba7 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/6/.oss-parent-6.pom__md5 @@ -0,0 +1 @@ +b5f5bdffc48fec678905a5213a78f3bc \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/6/.oss-parent-6.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/6/.oss-parent-6.pom__sha1 new file mode 100644 index 0000000..d3e98ea --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/6/.oss-parent-6.pom__sha1 @@ -0,0 +1 @@ +765c355ec09ad070065d9d12a9245bba5c689d96 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom new file mode 100644 index 0000000..a2f4252 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom @@ -0,0 +1,155 @@ + + + + 4.0.0 + + org.sonatype.oss + oss-parent + 6 + pom + + Sonatype OSS Parent + http://nexus.sonatype.org/oss-repository-hosting.html + Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/ + + + scm:svn:http://svn.sonatype.org/spice/tags/oss-parent-6 + scm:svn:https://svn.sonatype.org/spice/tags/oss-parent-6 + http://svn.sonatype.org/spice/tags/oss-parent-6 + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + ${sonatypeOssDistMgmtSnapshotsUrl} + + + sonatype-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.0-beta-1 + + + enforce-maven + + enforce + + + + + (,2.1.0),(2.1.0,2.2.0),(2.2.0,) + Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively. + + + + + + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.0 + + forked-path + false + -Psonatype-oss-release + + + + + + + + UTF-8 + https://oss.sonatype.org/content/repositories/snapshots/ + + + + + sonatype-oss-release + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.7 + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.1 + + + sign-artifacts + verify + + sign + + + + + + + + + + diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/7/.oss-parent-7.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/7/.oss-parent-7.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/7/.oss-parent-7.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/7/.oss-parent-7.pom__md5 new file mode 100644 index 0000000..2b5bdaf --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/7/.oss-parent-7.pom__md5 @@ -0,0 +1 @@ +3e418cf7f2607bf359e6c514a992cb38 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/7/.oss-parent-7.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/7/.oss-parent-7.pom__sha1 new file mode 100644 index 0000000..800e284 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/7/.oss-parent-7.pom__sha1 @@ -0,0 +1 @@ +46b8a785b60a2767095b8611613b58577e96d4c9 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom new file mode 100644 index 0000000..3963952 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom @@ -0,0 +1,155 @@ + + + + 4.0.0 + + org.sonatype.oss + oss-parent + 7 + pom + + Sonatype OSS Parent + http://nexus.sonatype.org/oss-repository-hosting.html + Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/ + + + scm:svn:http://svn.sonatype.org/spice/tags/oss-parent-7 + scm:svn:https://svn.sonatype.org/spice/tags/oss-parent-7 + http://svn.sonatype.org/spice/tags/oss-parent-7 + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + ${sonatypeOssDistMgmtSnapshotsUrl} + + + sonatype-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.0 + + + enforce-maven + + enforce + + + + + (,2.1.0),(2.1.0,2.2.0),(2.2.0,) + Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively. + + + + + + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.1 + + forked-path + false + -Psonatype-oss-release + + + + + + + + UTF-8 + https://oss.sonatype.org/content/repositories/snapshots/ + + + + + sonatype-oss-release + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.7 + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.1 + + + sign-artifacts + verify + + sign + + + + + + + + + + diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/9/.oss-parent-9.pom.checked b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/9/.oss-parent-9.pom.checked new file mode 100644 index 0000000..e69de29 diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/9/.oss-parent-9.pom__md5 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/9/.oss-parent-9.pom__md5 new file mode 100644 index 0000000..3445e58 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/9/.oss-parent-9.pom__md5 @@ -0,0 +1 @@ +c2944a5a8a424e93d315ab18c994b4ee \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/9/.oss-parent-9.pom__sha1 b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/9/.oss-parent-9.pom__sha1 new file mode 100644 index 0000000..7e0d2b6 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/9/.oss-parent-9.pom__sha1 @@ -0,0 +1 @@ +e5cdc4d23b86d79c436f16fed20853284e868f65 \ No newline at end of file diff --git a/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom new file mode 100644 index 0000000..cc10b98 --- /dev/null +++ b/null/Coursier/cache/v1/https/repo1.maven.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom @@ -0,0 +1,156 @@ + + + + 4.0.0 + + org.sonatype.oss + oss-parent + 9 + pom + + Sonatype OSS Parent + http://nexus.sonatype.org/oss-repository-hosting.html + Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/ + + + scm:svn:http://svn.sonatype.org/spice/trunk/oss/oss-parenti-9 + scm:svn:https://svn.sonatype.org/spice/trunk/oss/oss-parent-9 + http://svn.sonatype.org/spice/trunk/oss/oss-parent-9 + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + ${sonatypeOssDistMgmtSnapshotsUrl} + + + sonatype-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.2 + + + enforce-maven + + enforce + + + + + (,2.1.0),(2.1.0,2.2.0),(2.2.0,) + Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively. + + + + + + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.1 + + forked-path + false + ${arguments} -Psonatype-oss-release + + + + + + + + UTF-8 + https://oss.sonatype.org/content/repositories/snapshots/ + + + + + + sonatype-oss-release + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.7 + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.1 + + + sign-artifacts + verify + + sign + + + + + + + + + + diff --git a/src/.bsp/sbt.json b/src/.bsp/sbt.json new file mode 100644 index 0000000..2adc79f --- /dev/null +++ b/src/.bsp/sbt.json @@ -0,0 +1 @@ +{"name":"sbt","version":"1.7.1","bspVersion":"2.0.0-M5","languages":["scala"],"argv":["C:\\Program Files\\Java\\jdk-20/bin/java","-Xms100m","-Xmx100m","-classpath","C:\\Program Files (x86)\\sbt\\\\bin\\sbt-launch.jar","xsbt.boot.Boot","-bsp","--sbt-launch-jar=C:\\Program%20Files%20(x86)\\sbt\\\\bin\\sbt-launch.jar"]} \ No newline at end of file diff --git a/src/main/scala/fetch_unit/FetchUnit1.scala b/src/main/scala/fetch_unit/FetchUnit1.scala index 139e571..987d5ac 100644 --- a/src/main/scala/fetch_unit/FetchUnit1.scala +++ b/src/main/scala/fetch_unit/FetchUnit1.scala @@ -1,8 +1,14 @@ package fetch_unit +// import chisel3._ +// import circt.stage.ChiselStage +// import chisel3._ +import chisel3.util._ + import chisel3._ -import circt.stage.ChiselStage +import chisel3.experimental.BundleLiterals._ + class FetchUnitIO1 extends Bundle { val pc: UInt = Output(UInt(32.W)) @@ -26,6 +32,6 @@ class FetchUnit1 extends Module { -object VerilogMain1 extends App { - emitVerilog(new FetchUnit1) -} \ No newline at end of file +// object VerilogMain1 extends App { +// emitVerilog(new FetchUnit1) +// } \ No newline at end of file diff --git a/src/main/scala/fetch_unit/FetchUnit10.scala b/src/main/scala/fetch_unit/FetchUnit10.scala index 8ff3116..60b58d8 100644 --- a/src/main/scala/fetch_unit/FetchUnit10.scala +++ b/src/main/scala/fetch_unit/FetchUnit10.scala @@ -5,6 +5,11 @@ import chisel3._ import chisel3.util._ +import chisel3._ + +import chisel3.experimental.BundleLiterals._ + + class FetchUnit10 extends Module { //noinspection TypeAnnotation val io = IO(new Bundle { @@ -25,6 +30,6 @@ class FetchUnit10 extends Module { } -object VerilogMain10 extends App { - ChiselStage.emitSystemVerilogFile(new FetchUnit10) -} \ No newline at end of file +// object VerilogMain10 extends App { +// ChiselStage.emitSystemVerilogFile(new FetchUnit10) +// } \ No newline at end of file diff --git a/src/main/scala/fetch_unit/FetchUnit11.scala b/src/main/scala/fetch_unit/FetchUnit11.scala index d895b08..a07ebbe 100644 --- a/src/main/scala/fetch_unit/FetchUnit11.scala +++ b/src/main/scala/fetch_unit/FetchUnit11.scala @@ -5,6 +5,11 @@ import circt.stage.ChiselStage, chisel3.util._ +import chisel3._ + +import chisel3.experimental.BundleLiterals._ + + class FetchUnit11 extends Module { //noinspection TypeAnnotation val io = IO(new Bundle { @@ -26,6 +31,6 @@ class FetchUnit11 extends Module { } -object VerilogMain11 extends App { - ChiselStage.emitSystemVerilogFile(new FetchUnit11) -} \ No newline at end of file +// object VerilogMain11 extends App { +// ChiselStage.emitSystemVerilogFile(new FetchUnit11) +// } \ No newline at end of file diff --git a/src/main/scala/fetch_unit/FetchUnit12.scala b/src/main/scala/fetch_unit/FetchUnit12.scala index b9ece43..91f8d67 100644 --- a/src/main/scala/fetch_unit/FetchUnit12.scala +++ b/src/main/scala/fetch_unit/FetchUnit12.scala @@ -4,7 +4,11 @@ import circt.stage.ChiselStage import chisel3._ import chisel3.util._ +import chisel3._ + +import chisel3.experimental.BundleLiterals._ + class FetchUnit12 extends Module { //noinspection TypeAnnotation val io = IO(new Bundle { @@ -26,6 +30,6 @@ class FetchUnit12 extends Module { } -object VerilogMain12 extends App { - ChiselStage.emitSystemVerilogFile(new FetchUnit12) -} +// object VerilogMain12 extends App { +// ChiselStage.emitSystemVerilogFile(new FetchUnit12) +// } diff --git a/src/main/scala/fetch_unit/FetchUnit13.scala b/src/main/scala/fetch_unit/FetchUnit13.scala index a0706f7..3856ef8 100644 --- a/src/main/scala/fetch_unit/FetchUnit13.scala +++ b/src/main/scala/fetch_unit/FetchUnit13.scala @@ -4,7 +4,11 @@ import circt.stage.ChiselStage, chisel3._, chisel3.util._ +import chisel3._ +import chisel3.experimental.BundleLiterals._ + + class FetchUnit13 extends Module { //noinspection TypeAnnotation val io = IO(new Bundle { @@ -28,6 +32,6 @@ class FetchUnit13 extends Module { } -object VerilogMain13 extends App { - ChiselStage.emitSystemVerilogFile(new FetchUnit13) -} +// object VerilogMain13 extends App { +// ChiselStage.emitSystemVerilogFile(new FetchUnit13) +// } diff --git a/src/main/scala/fetch_unit/FetchUnit14.scala b/src/main/scala/fetch_unit/FetchUnit14.scala index 04e2151..69438c4 100644 --- a/src/main/scala/fetch_unit/FetchUnit14.scala +++ b/src/main/scala/fetch_unit/FetchUnit14.scala @@ -5,6 +5,9 @@ import chisel3._ import chisel3.util._ +import chisel3.experimental.BundleLiterals._ + + class FetchUnit14 extends Module { //noinspection TypeAnnotation val io = IO(new Bundle { @@ -26,6 +29,6 @@ class FetchUnit14 extends Module { } -object VerilogMain14 extends App { - ChiselStage.emitSystemVerilogFile(new FetchUnit14) -} +// object VerilogMain14 extends App { +// ChiselStage.emitSystemVerilogFile(new FetchUnit14) +// } diff --git a/src/main/scala/fetch_unit/FetchUnit15.scala b/src/main/scala/fetch_unit/FetchUnit15.scala index b8c94d5..51e5395 100644 --- a/src/main/scala/fetch_unit/FetchUnit15.scala +++ b/src/main/scala/fetch_unit/FetchUnit15.scala @@ -5,6 +5,9 @@ import circt.stage.ChiselStage, chisel3.util._ +import chisel3.experimental.BundleLiterals._ + + class FetchUnit15 extends Module { //noinspection TypeAnnotation val io = IO(new Bundle { @@ -25,6 +28,6 @@ class FetchUnit15 extends Module { } -object VerilogMain15 extends App { - ChiselStage.emitSystemVerilogFile(new FetchUnit15) -} +// object VerilogMain15 extends App { +// ChiselStage.emitSystemVerilogFile(new FetchUnit15) +// } diff --git a/src/main/scala/fetch_unit/FetchUnit16.scala b/src/main/scala/fetch_unit/FetchUnit16.scala index bac0006..ccbf9fa 100644 --- a/src/main/scala/fetch_unit/FetchUnit16.scala +++ b/src/main/scala/fetch_unit/FetchUnit16.scala @@ -4,7 +4,9 @@ import circt.stage.ChiselStage, chisel3._, chisel3.util._ +import chisel3.experimental.BundleLiterals._ + class FetchUnit16 extends Module { //noinspection TypeAnnotation val io = IO(new Bundle { @@ -28,6 +30,6 @@ class FetchUnit16 extends Module { } -object VerilogMain16 extends App { - ChiselStage.emitSystemVerilogFile(new FetchUnit16) -} +// object VerilogMain16 extends App { +// ChiselStage.emitSystemVerilogFile(new FetchUnit16) +// } diff --git a/src/main/scala/fetch_unit/FetchUnit17.scala b/src/main/scala/fetch_unit/FetchUnit17.scala index 38dadf5..8be8eb8 100644 --- a/src/main/scala/fetch_unit/FetchUnit17.scala +++ b/src/main/scala/fetch_unit/FetchUnit17.scala @@ -5,6 +5,9 @@ import circt.stage.ChiselStage, chisel3.util._ +import chisel3.experimental.BundleLiterals._ + + class FetchUnit17 extends Module { //noinspection TypeAnnotation val io = IO(new Bundle { @@ -28,6 +31,6 @@ class FetchUnit17 extends Module { } -object VerilogMain17 extends App { - ChiselStage.emitSystemVerilogFile(new FetchUnit17) -} +// object VerilogMain17 extends App { +// ChiselStage.emitSystemVerilogFile(new FetchUnit17) +// } diff --git a/src/main/scala/fetch_unit/FetchUnit18.scala b/src/main/scala/fetch_unit/FetchUnit18.scala index 51ba083..14c9575 100644 --- a/src/main/scala/fetch_unit/FetchUnit18.scala +++ b/src/main/scala/fetch_unit/FetchUnit18.scala @@ -5,6 +5,9 @@ import circt.stage.ChiselStage, chisel3.util._ +import chisel3.experimental.BundleLiterals._ + + class FetchUnit18 extends Module { //noinspection TypeAnnotation val io = IO(new Bundle { @@ -28,6 +31,6 @@ class FetchUnit18 extends Module { } -object VerilogMain18 extends App { - ChiselStage.emitSystemVerilogFile(new FetchUnit18) -} +// object VerilogMain18 extends App { +// ChiselStage.emitSystemVerilogFile(new FetchUnit18) +// } diff --git a/src/main/scala/fetch_unit/FetchUnit19.scala b/src/main/scala/fetch_unit/FetchUnit19.scala index 82d8ba1..20b935e 100644 --- a/src/main/scala/fetch_unit/FetchUnit19.scala +++ b/src/main/scala/fetch_unit/FetchUnit19.scala @@ -4,7 +4,9 @@ import circt.stage.ChiselStage, chisel3._, chisel3.util._ +import chisel3.experimental.BundleLiterals._ + class FetchUnit19 extends Module { //noinspection TypeAnnotation val io = IO(new Bundle { @@ -28,6 +30,6 @@ class FetchUnit19 extends Module { } -object VerilogMain19 extends App { - ChiselStage.emitSystemVerilogFile(new FetchUnit19) -} +// object VerilogMain19 extends App { +// ChiselStage.emitSystemVerilogFile(new FetchUnit19) +// } diff --git a/src/main/scala/fetch_unit/FetchUnit2.scala b/src/main/scala/fetch_unit/FetchUnit2.scala index 3a36d2b..772e461 100644 --- a/src/main/scala/fetch_unit/FetchUnit2.scala +++ b/src/main/scala/fetch_unit/FetchUnit2.scala @@ -1,8 +1,15 @@ package fetch_unit +// import chisel3._ +// import circt.stage.ChiselStage + +// import chisel3._ +import chisel3.util._ import chisel3._ -import circt.stage.ChiselStage +import chisel3.experimental.BundleLiterals._ + + class FetchUnitIO2 extends Bundle { val stall: Bool = Input(Bool()) @@ -27,6 +34,6 @@ class FetchUnit2 extends Module { } -object VerilogMain2 extends App { - ChiselStage.emitSystemVerilogFile(new FetchUnit2) -} +// object VerilogMain2 extends App { +// ChiselStage.emitSystemVerilogFile(new FetchUnit2) +// } diff --git a/src/main/scala/fetch_unit/FetchUnit20.scala b/src/main/scala/fetch_unit/FetchUnit20.scala index f2f3694..0e0b246 100644 --- a/src/main/scala/fetch_unit/FetchUnit20.scala +++ b/src/main/scala/fetch_unit/FetchUnit20.scala @@ -4,7 +4,9 @@ import circt.stage.ChiselStage, chisel3._, chisel3.util._ +import chisel3.experimental.BundleLiterals._ + class FetchUnit20 extends Module { //noinspection TypeAnnotation val io = IO(new Bundle { @@ -28,6 +30,6 @@ class FetchUnit20 extends Module { } -object VerilogMain20 extends App { - ChiselStage.emitSystemVerilogFile(new FetchUnit20) -} +// object VerilogMain20 extends App { +// ChiselStage.emitSystemVerilogFile(new FetchUnit20) +// } diff --git a/src/main/scala/fetch_unit/FetchUnit3.scala b/src/main/scala/fetch_unit/FetchUnit3.scala index 5cadb4a..c58fca3 100644 --- a/src/main/scala/fetch_unit/FetchUnit3.scala +++ b/src/main/scala/fetch_unit/FetchUnit3.scala @@ -1,9 +1,15 @@ package fetch_unit +// import chisel3._ +// import circt.stage.ChiselStage + +// import chisel3._ +import chisel3.util._ import chisel3._ -import circt.stage.ChiselStage +import chisel3.experimental.BundleLiterals._ + class FetchUnitIO3 extends Bundle { val npc: UInt = Input(UInt(32.W)) val npc_en: Bool = Input(Bool()) @@ -28,6 +34,6 @@ class FetchUnit3 extends Module { } -object VerilogMain3 extends App { - ChiselStage.emitSystemVerilogFile(new FetchUnit3) -} +// object VerilogMain3 extends App { +// ChiselStage.emitSystemVerilogFile(new FetchUnit3) +// } diff --git a/src/main/scala/fetch_unit/FetchUnit4.scala b/src/main/scala/fetch_unit/FetchUnit4.scala index 9e498a3..9eea7da 100644 --- a/src/main/scala/fetch_unit/FetchUnit4.scala +++ b/src/main/scala/fetch_unit/FetchUnit4.scala @@ -1,9 +1,16 @@ package fetch_unit +// import chisel3._ +// import circt.stage.ChiselStage + +// import chisel3._ +import chisel3.util._ + import chisel3._ -import circt.stage.ChiselStage +import chisel3.experimental.BundleLiterals._ + class FetchUnitIO4 extends Bundle { val imm: SInt = Input(SInt(32.W)) val jal_en: Bool = Input(Bool()) @@ -28,6 +35,6 @@ class FetchUnit4 extends Module { } -object VerilogMain4 extends App { - ChiselStage.emitSystemVerilogFile(new FetchUnit4) -} +// object VerilogMain4 extends App { +// ChiselStage.emitSystemVerilogFile(new FetchUnit4) +// } diff --git a/src/main/scala/fetch_unit/FetchUnit5.scala b/src/main/scala/fetch_unit/FetchUnit5.scala index 0da72d1..2f34f2d 100644 --- a/src/main/scala/fetch_unit/FetchUnit5.scala +++ b/src/main/scala/fetch_unit/FetchUnit5.scala @@ -1,9 +1,15 @@ package fetch_unit +// import chisel3._ +// import circt.stage.ChiselStage + +// import chisel3._ +import chisel3.util._ import chisel3._ -import circt.stage.ChiselStage +import chisel3.experimental.BundleLiterals._ + class FetchUnitIO5 extends Bundle { val imm: SInt = Input(SInt(32.W)) val rs1: SInt = Input(SInt(32.W)) @@ -29,6 +35,6 @@ class FetchUnit5 extends Module { } -object VerilogMain5 extends App { - ChiselStage.emitSystemVerilogFile(new FetchUnit5) -} +// object VerilogMain5 extends App { +// ChiselStage.emitSystemVerilogFile(new FetchUnit5) +// } diff --git a/src/main/scala/fetch_unit/FetchUnit6.scala b/src/main/scala/fetch_unit/FetchUnit6.scala index d652eb7..577f26d 100644 --- a/src/main/scala/fetch_unit/FetchUnit6.scala +++ b/src/main/scala/fetch_unit/FetchUnit6.scala @@ -1,10 +1,14 @@ package fetch_unit -import chisel3._ -import circt.stage.ChiselStage +// import chisel3._ +// import circt.stage.ChiselStage import chisel3.util._ +import chisel3._ + +import chisel3.experimental.BundleLiterals._ + class FetchUnitIO6 extends Bundle { val imm: SInt = Input(SInt(32.W)) val rs1: SInt = Input(SInt(32.W)) @@ -34,6 +38,6 @@ class FetchUnit6 extends Module { } -object VerilogMain6 extends App { - ChiselStage.emitSystemVerilogFile(new FetchUnit6) -} +// object VerilogMain6 extends App { +// ChiselStage.emitSystemVerilogFile(new FetchUnit6) +// } diff --git a/src/main/scala/fetch_unit/FetchUnit7.scala b/src/main/scala/fetch_unit/FetchUnit7.scala index 9852b12..fe6fc5b 100644 --- a/src/main/scala/fetch_unit/FetchUnit7.scala +++ b/src/main/scala/fetch_unit/FetchUnit7.scala @@ -1,10 +1,15 @@ package fetch_unit import chisel3._ -import circt.stage.ChiselStage +// import circt.stage.ChiselStage import chisel3.util._ + + +import chisel3.experimental.BundleLiterals._ + + class FetchUnitIO7 extends Bundle { val npc: UInt = Input(UInt(32.W)) val npc_en: Bool = Input(Bool()) @@ -33,6 +38,6 @@ class FetchUnit7 extends Module { } -object VerilogMain7 extends App { - ChiselStage.emitSystemVerilogFile(new FetchUnit7) -} +// object VerilogMain7 extends App { +// ChiselStage.emitSystemVerilogFile(new FetchUnit7) +// } diff --git a/src/main/scala/fetch_unit/FetchUnit8.scala b/src/main/scala/fetch_unit/FetchUnit8.scala index ecd8f4b..1d5a229 100644 --- a/src/main/scala/fetch_unit/FetchUnit8.scala +++ b/src/main/scala/fetch_unit/FetchUnit8.scala @@ -5,6 +5,11 @@ import circt.stage.ChiselStage import chisel3.util._ +import chisel3._ + +import chisel3.experimental.BundleLiterals._ + + class FetchUnitIO8 extends Bundle { val npc: UInt = Input(UInt(32.W)) val ctrl: Vec[Bool] = Input(Vec(2, Bool())) @@ -32,6 +37,6 @@ class FetchUnit8 extends Module { } -object VerilogMain8 extends App { - ChiselStage.emitSystemVerilogFile(new FetchUnit8) -} +// object VerilogMain8 extends App { +// ChiselStage.emitSystemVerilogFile(new FetchUnit8) +// } diff --git a/src/main/scala/fetch_unit/FetchUnit9.scala b/src/main/scala/fetch_unit/FetchUnit9.scala index 95a6826..6e2d378 100644 --- a/src/main/scala/fetch_unit/FetchUnit9.scala +++ b/src/main/scala/fetch_unit/FetchUnit9.scala @@ -1,10 +1,16 @@ package fetch_unit -import circt.stage.ChiselStage, - chisel3._, - chisel3.util._ +// import circt.stage.ChiselStage, +// chisel3._, +// chisel3.util._ +import chisel3._ +import chisel3.util._ +import chisel3._ +import chisel3.experimental.BundleLiterals._ + + class FetchUnit9 extends Module { //noinspection TypeAnnotation val io = IO(new Bundle { @@ -25,6 +31,6 @@ class FetchUnit9 extends Module { } -object VerilogMain9 extends App { - ChiselStage.emitSystemVerilogFile(new FetchUnit9) -} \ No newline at end of file +// object VerilogMain9 extends App { +// ChiselStage.emitSystemVerilogFile(new FetchUnit9) +// } \ No newline at end of file diff --git a/src/project/build.properties b/src/project/build.properties new file mode 100644 index 0000000..22af262 --- /dev/null +++ b/src/project/build.properties @@ -0,0 +1 @@ +sbt.version=1.7.1 diff --git a/src/test/scala/decoder/Decoder1test.scala b/src/test/scala/decoder/Decoder1test.scala new file mode 100644 index 0000000..f4c7e58 --- /dev/null +++ b/src/test/scala/decoder/Decoder1test.scala @@ -0,0 +1,24 @@ +// package pc + +// import chiseltest._ +// import fetch_unit.PC1 +// import org.scalatest.freespec.AnyFreeSpec + +// class Decoder1test extends AnyFreeSpec with ChiselScalatestTester{ +// "Decoder1Test" in { +// test(new Decoder1()){ a=> +// a.io.inst.poke(0.U) +// a.io.ctrl(0).poke(1.U) +// a.io.ctrl(1).poke(1.U) +// a.io.ctrl(2).poke(1.U) +// a.io.ctrl(3).poke(1.U) +// a.io.opcode.expect(0.U)} +// a.io.rAddr(0).expect(1.U) +// a.io.rAddr(1).expect(1.U) +// a.io.rAddr(2).expect(1.U) +// a.io.rAddr(3).expect(1.U) +// a.io.funct3.expect(0.U) +// a.io.funct7.expect(0.U) +// a.io.imm.expect(0.S) +// } +// } \ No newline at end of file diff --git a/src/test/scala/fetch_unit/FetchUnit10test.scala b/src/test/scala/fetch_unit/FetchUnit10test.scala new file mode 100644 index 0000000..e27fcfc --- /dev/null +++ b/src/test/scala/fetch_unit/FetchUnit10test.scala @@ -0,0 +1,20 @@ +package fetch_unit + +import chiseltest._ +// import fetch_unit.PC1 +import org.scalatest.freespec.AnyFreeSpec +import chisel3._ +import org.scalatest._ + +class FetchUnit10Test extends AnyFreeSpec with ChiselScalatestTester { + "FetchUnit10 Test" in { + test(new FetchUnit10()) { a => + + a.io.ctrl(0).poke(true.B) + a.io.ctrl(1).poke(false.B) + a.io.imm.poke(123.S) + a.io.pc.expect(0.U) + a.clock.step(20) + } + } +} diff --git a/src/test/scala/fetch_unit/FetchUnit11test.scala b/src/test/scala/fetch_unit/FetchUnit11test.scala new file mode 100644 index 0000000..faa7a5e --- /dev/null +++ b/src/test/scala/fetch_unit/FetchUnit11test.scala @@ -0,0 +1,21 @@ +package fetch_unit + +import chiseltest._ +// import fetch_unit.PC1 +import org.scalatest.freespec.AnyFreeSpec +import chisel3._ +import org.scalatest._ + +class FetchUnit11Test extends AnyFreeSpec with ChiselScalatestTester { + "FetchUnit11 Test" in { + test(new FetchUnit11()) { a => + + a.io.imm.poke(123.S) + a.io.rs1.poke(456.S) + a.io.stall_en.poke(false.B) + a.io.jalr_en.poke(true.B) + a.io.pc.expect(0.U) + a.clock.step(20) + } + } +} diff --git a/src/test/scala/fetch_unit/FetchUnit12test.scala b/src/test/scala/fetch_unit/FetchUnit12test.scala new file mode 100644 index 0000000..af01b24 --- /dev/null +++ b/src/test/scala/fetch_unit/FetchUnit12test.scala @@ -0,0 +1,21 @@ +package fetch_unit + +import chiseltest._ +// import fetch_unit.PC1 +import org.scalatest.freespec.AnyFreeSpec +import chisel3._ +import org.scalatest._ + +class FetchUnit12Test extends AnyFreeSpec with ChiselScalatestTester { + "FetchUnit12 Test" in { + test(new FetchUnit12()) { a => + + a.io.ctrl(0).poke(true.B) + a.io.ctrl(1).poke(false.B) + a.io.imm.poke(123.S) + a.io.rs1.poke(456.S) + a.io.pc.expect(0.U) + a.clock.step(20) + } + } +} diff --git a/src/test/scala/fetch_unit/FetchUnit13test.scala b/src/test/scala/fetch_unit/FetchUnit13test.scala new file mode 100644 index 0000000..811d8c5 --- /dev/null +++ b/src/test/scala/fetch_unit/FetchUnit13test.scala @@ -0,0 +1,22 @@ +package fetch_unit + +import chiseltest._ +// import fetch_unit.PC1 +import org.scalatest.freespec.AnyFreeSpec +import chisel3._ +import org.scalatest._ + +class FetchUnit13Test extends AnyFreeSpec with ChiselScalatestTester { + "FetchUnit13 Test" in { + test(new FetchUnit13()) { a => + + a.io.imm.poke(123.S) + a.io.rs1.poke(456.S) + a.io.stall_en.poke(false.B) + a.io.jalr_en.poke(true.B) + a.io.jal_en.poke(true.B) + a.io.pc.expect(0.U) + a.clock.step(20) + } + } +} diff --git a/src/test/scala/fetch_unit/FetchUnit14test.scala b/src/test/scala/fetch_unit/FetchUnit14test.scala new file mode 100644 index 0000000..7b1ecef --- /dev/null +++ b/src/test/scala/fetch_unit/FetchUnit14test.scala @@ -0,0 +1,22 @@ +package fetch_unit + +import chiseltest._ +// import fetch_unit.PC1 +import org.scalatest.freespec.AnyFreeSpec +import chisel3._ +import org.scalatest._ + +class FetchUnit14Test extends AnyFreeSpec with ChiselScalatestTester { + "FetchUnit14 Test" in { + test(new FetchUnit14()) { a => + + a.io.ctrl(0).poke(true.B) + a.io.ctrl(1).poke(false.B) + a.io.ctrl(2).poke(true.B) + a.io.imm.poke(123.S) + a.io.rs1.poke(456.S) + a.io.pc.expect(0.U) + a.clock.step(20) + } + } +} diff --git a/src/test/scala/fetch_unit/FetchUnit15test.scala b/src/test/scala/fetch_unit/FetchUnit15test.scala new file mode 100644 index 0000000..44a098a --- /dev/null +++ b/src/test/scala/fetch_unit/FetchUnit15test.scala @@ -0,0 +1,20 @@ +package fetch_unit + +import chiseltest._ +// import fetch_unit.PC1 +import org.scalatest.freespec.AnyFreeSpec +import chisel3._ +import org.scalatest._ + +class FetchUnit15Test extends AnyFreeSpec with ChiselScalatestTester { + "FetchUnit15 Test" in { + test(new FetchUnit15()) { a => + + a.io.stall_en.poke(false.B) + a.io.br_en.poke(true.B) + a.io.imm.poke(123.S) + a.io.pc.expect(0.U) + a.clock.step(20) + } + } +} diff --git a/src/test/scala/fetch_unit/FetchUnit16test.scala b/src/test/scala/fetch_unit/FetchUnit16test.scala new file mode 100644 index 0000000..29347eb --- /dev/null +++ b/src/test/scala/fetch_unit/FetchUnit16test.scala @@ -0,0 +1,22 @@ +package fetch_unit + +import chiseltest._ +// import fetch_unit.PC1 +import org.scalatest.freespec.AnyFreeSpec +import chisel3._ +import org.scalatest._ + +class FetchUnit16Test extends AnyFreeSpec with ChiselScalatestTester { + "FetchUnit16 Test" in { + test(new FetchUnit16()) { a => + + a.io.imm.poke(123.S) + a.io.rs1.poke(456.S) + a.io.stall_en.poke(false.B) + a.io.jalr_en.poke(true.B) + a.io.jal_en.poke(true.B) + a.io.pc.expect(0.U) + a.clock.step(20) + } + } +} diff --git a/src/test/scala/fetch_unit/FetchUnit17test.scala b/src/test/scala/fetch_unit/FetchUnit17test.scala new file mode 100644 index 0000000..be7ffc8 --- /dev/null +++ b/src/test/scala/fetch_unit/FetchUnit17test.scala @@ -0,0 +1,22 @@ +package fetch_unit + +import chiseltest._ +// import fetch_unit.PC1 +import org.scalatest.freespec.AnyFreeSpec +import chisel3._ +import org.scalatest._ + +class FetchUnit17Test extends AnyFreeSpec with ChiselScalatestTester { + "FetchUnit17 Test" in { + test(new FetchUnit17()) { a => + + a.io.imm.poke(123.S) + a.io.rs1.poke(456.S) + a.io.stall_en.poke(false.B) + a.io.jalr_en.poke(true.B) + a.io.jal_en.poke(true.B) + a.io.pc.expect(0.U) + a.clock.step(20) + } + } +} diff --git a/src/test/scala/fetch_unit/FetchUnit18test.scala b/src/test/scala/fetch_unit/FetchUnit18test.scala new file mode 100644 index 0000000..53a05c6 --- /dev/null +++ b/src/test/scala/fetch_unit/FetchUnit18test.scala @@ -0,0 +1,22 @@ +package fetch_unit + +import chiseltest._ +// import fetch_unit.PC1 +import org.scalatest.freespec.AnyFreeSpec +import chisel3._ +import org.scalatest._ + +class FetchUnit18Test extends AnyFreeSpec with ChiselScalatestTester { + "FetchUnit18 Test" in { + test(new FetchUnit18()) { a => + + a.io.imm.poke(123.S) + a.io.rs1.poke(456.S) + a.io.stall_en.poke(false.B) + a.io.jalr_en.poke(true.B) + a.io.jal_en.poke(true.B) + a.io.pc.expect(0.U) + a.clock.step(20) + } + } +} diff --git a/src/test/scala/fetch_unit/FetchUnit19test.scala b/src/test/scala/fetch_unit/FetchUnit19test.scala new file mode 100644 index 0000000..12807ce --- /dev/null +++ b/src/test/scala/fetch_unit/FetchUnit19test.scala @@ -0,0 +1,22 @@ +package fetch_unit + +import chiseltest._ +// import fetch_unit.PC1 +import org.scalatest.freespec.AnyFreeSpec +import chisel3._ +import org.scalatest._ + +class FetchUnit19Test extends AnyFreeSpec with ChiselScalatestTester { + "FetchUnit19 Test" in { + test(new FetchUnit19()) { a => + + a.io.imm.poke(123.S) + a.io.rs1.poke(456.S) + a.io.stall_en.poke(0.B) + a.io.jalr_en.poke(1.B) + a.io.jal_en.poke(1.B) + a.io.pc.expect(0.U) + a.clock.step(20) + } + } +} diff --git a/src/test/scala/fetch_unit/FetchUnit1test.scala b/src/test/scala/fetch_unit/FetchUnit1test.scala new file mode 100644 index 0000000..3b05f40 --- /dev/null +++ b/src/test/scala/fetch_unit/FetchUnit1test.scala @@ -0,0 +1,18 @@ +package fetch_unit + +import chisel3._ +import chiseltest._ +// import fetch_unit.PC1 +import org.scalatest.freespec.AnyFreeSpec + +import org.scalatest._ +import chiseltest._ + + +class FetchUnit1test extends AnyFreeSpec with ChiselScalatestTester{ + "FetchUnit1Test" in { + test(new FetchUnit1()){ a=> + a.clock.step(20) + a.io.pc.expect(1.U) + } + }} \ No newline at end of file diff --git a/src/test/scala/fetch_unit/FetchUnit20test.scala b/src/test/scala/fetch_unit/FetchUnit20test.scala new file mode 100644 index 0000000..75e5420 --- /dev/null +++ b/src/test/scala/fetch_unit/FetchUnit20test.scala @@ -0,0 +1,23 @@ +package fetch_unit + +import chiseltest._ +// import fetch_unit.PC1 +import org.scalatest.freespec.AnyFreeSpec + +import chisel3._ +import org.scalatest._ + +class FetchUnit20Test extends AnyFreeSpec with ChiselScalatestTester { + "FetchUnit20 Test" in { + test(new FetchUnit20()) { a => + + a.io.imm.poke(123.S) + a.io.rs1.poke(456.S) + a.io.stall_en.poke(false.B) + a.io.jalr_en.poke(true.B) + a.io.jal_en.poke(true.B) + a.io.pc.expect(0.U) + a.clock.step(20) + } + } +} diff --git a/src/test/scala/fetch_unit/FetchUnit2test.scala b/src/test/scala/fetch_unit/FetchUnit2test.scala new file mode 100644 index 0000000..cd16841 --- /dev/null +++ b/src/test/scala/fetch_unit/FetchUnit2test.scala @@ -0,0 +1,20 @@ +package fetch_unit + +import chiseltest._ +// import fetch_unit.PC1 +import org.scalatest.freespec.AnyFreeSpec + +import chisel3._ +import org.scalatest._ + + + +class FetchUnit2test extends AnyFreeSpec with ChiselScalatestTester{ + "FetchUnit2Test" in { + test(new FetchUnit2()){ a=> + a.io.stall.poke(0.B) + a.clock.step(20) + a.io.pc.expect(0.U) + + } + }} \ No newline at end of file diff --git a/src/test/scala/fetch_unit/FetchUnit3test.scala b/src/test/scala/fetch_unit/FetchUnit3test.scala new file mode 100644 index 0000000..1805180 --- /dev/null +++ b/src/test/scala/fetch_unit/FetchUnit3test.scala @@ -0,0 +1,20 @@ +package fetch_unit + +import chiseltest._ +// import fetch_unit.PC1 +import org.scalatest.freespec.AnyFreeSpec + +import chisel3._ +import org.scalatest._ + +class FetchUnit3test extends AnyFreeSpec with ChiselScalatestTester{ + "FetchUnit3Test" in { + test(new FetchUnit3()){ a=> + a.io.npc.poke(0.U) + a.io.npc_en.poke(0.B) + a.io.pc.expect(0.U) + a.clock.step(20) + } + + } + } \ No newline at end of file diff --git a/src/test/scala/fetch_unit/FetchUnit4test.scala b/src/test/scala/fetch_unit/FetchUnit4test.scala new file mode 100644 index 0000000..a7f93c6 --- /dev/null +++ b/src/test/scala/fetch_unit/FetchUnit4test.scala @@ -0,0 +1,20 @@ +package fetch_unit + +import chiseltest._ +// import fetch_unit.PC1 +import org.scalatest.freespec.AnyFreeSpec + +import chisel3._ +import org.scalatest._ +class FetchUnit4test extends AnyFreeSpec with ChiselScalatestTester { + "FetchUnit4Test" in { + test(new FetchUnit4()){ a => + a.io.imm.poke(1.S) + a.io.jal_en.poke(1.U) + a.io.pc.expect(1.U) + a.clock.step(20) + } + + } +} + diff --git a/src/test/scala/fetch_unit/FetchUnit5test.scala b/src/test/scala/fetch_unit/FetchUnit5test.scala new file mode 100644 index 0000000..d72a9fc --- /dev/null +++ b/src/test/scala/fetch_unit/FetchUnit5test.scala @@ -0,0 +1,19 @@ +package fetch_unit + +import chiseltest._ +// import fetch_unit.PC1 +import org.scalatest.freespec.AnyFreeSpec +import chisel3._ +import org.scalatest._ + +class FetchUnit5Test extends AnyFreeSpec with ChiselScalatestTester { + "FetchUnit5Test" in { + test(new FetchUnit5()) { a => + a.io.imm.poke(123.S) + a.io.rs1.poke(456.S) + a.io.npc_en.poke(true.B) + a.io.pc.expect(0.U) + a.clock.step(20) + } + } +} diff --git a/src/test/scala/fetch_unit/FetchUnit6test.scala b/src/test/scala/fetch_unit/FetchUnit6test.scala new file mode 100644 index 0000000..8f02be9 --- /dev/null +++ b/src/test/scala/fetch_unit/FetchUnit6test.scala @@ -0,0 +1,19 @@ +package fetch_unit + +import chiseltest._ +// import fetch_unit.PC1 +import org.scalatest.freespec.AnyFreeSpec +import chisel3._ +import org.scalatest._ + +class FetchUnit6Test extends AnyFreeSpec with ChiselScalatestTester { + "FetchUnit6Test" in { + test(new FetchUnit6()) { a => + a.io.imm.poke(123.S) + a.io.rs1.poke(456.S) + a.io.npc_en.poke(2.U) + a.io.pc.expect(0.U) + a.clock.step(20) + } + } +} diff --git a/src/test/scala/fetch_unit/FetchUnit7test.scala b/src/test/scala/fetch_unit/FetchUnit7test.scala new file mode 100644 index 0000000..7546299 --- /dev/null +++ b/src/test/scala/fetch_unit/FetchUnit7test.scala @@ -0,0 +1,20 @@ +package fetch_unit + +import chiseltest._ +// import fetch_unit.PC1 +import org.scalatest.freespec.AnyFreeSpec +import chisel3._ +import org.scalatest._ + +class FetchUnit7Test extends AnyFreeSpec with ChiselScalatestTester { + "FetchUnit7 Test" in { + test(new FetchUnit7()) { a => + + a.io.npc.poke(123.U) + a.io.npc_en.poke(true.B) + a.io.stall_en.poke(false.B) + a.io.pc.expect(123.U) + a.clock.step(20) + } + } +} diff --git a/src/test/scala/fetch_unit/FetchUnit8test.scala b/src/test/scala/fetch_unit/FetchUnit8test.scala new file mode 100644 index 0000000..284da63 --- /dev/null +++ b/src/test/scala/fetch_unit/FetchUnit8test.scala @@ -0,0 +1,20 @@ +package fetch_unit + +import chiseltest._ +// import fetch_unit.PC1 +import org.scalatest.freespec.AnyFreeSpec +import chisel3._ +import org.scalatest._ + +class FetchUnit8Test extends AnyFreeSpec with ChiselScalatestTester { + "FetchUnit8 Test" in { + test(new FetchUnit8()) { a => + + a.io.npc.poke(123.U) + a.io.ctrl(0).poke(true.B) + a.io.ctrl(1).poke(false.B) + a.io.pc.expect(123.U) + a.clock.step(20) + } + } +} diff --git a/src/test/scala/fetch_unit/FetchUnit9test.scala b/src/test/scala/fetch_unit/FetchUnit9test.scala new file mode 100644 index 0000000..134eef2 --- /dev/null +++ b/src/test/scala/fetch_unit/FetchUnit9test.scala @@ -0,0 +1,20 @@ +package fetch_unit + +import chiseltest._ +// import fetch_unit.PC1 +import org.scalatest.freespec.AnyFreeSpec +import chisel3._ +import org.scalatest._ + +class FetchUnit9Test extends AnyFreeSpec with ChiselScalatestTester { + "FetchUnit9 Test" in { + test(new FetchUnit9()) { a => + + a.io.stall_en.poke(false.B) + a.io.jal_en.poke(true.B) + a.io.imm.poke(123.S) + a.io.pc.expect(0.U) + a.clock.step(20) + } + } +} diff --git a/src/test/scala/pc/PC1Test.scala b/src/test/scala/pc/PC1Test.scala index 160c542..d77b441 100644 --- a/src/test/scala/pc/PC1Test.scala +++ b/src/test/scala/pc/PC1Test.scala @@ -1,13 +1,13 @@ -package pc +// package pc -import chiseltest._ -import fetch_unit.PC1 -import org.scalatest.freespec.AnyFreeSpec +// import chiseltest._ +// import fetch_unit.PC1 +// import org.scalatest.freespec.AnyFreeSpec -class PC1Test extends AnyFreeSpec with ChiselScalatestTester { - "PC1" in { - test(new PC1) { - pc => pc.clock.step(20) - } - } -} +// class PC1Test extends AnyFreeSpec with ChiselScalatestTester { +// "PC1" in { +// test(new PC1) { +// pc => pc.clock.step(20) +// } +// } +// }